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

2023-04-03 Thread Hans de Graaff
commit: 6ee17f3a41bbcc7cfaabe6c9d0b513e6a4b578be
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Apr  2 07:00:26 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Apr  4 05:54:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ee17f3a

profiles/package.mask: mask turbolinks for removal

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index b7db461b44dc..e5a99801ab96 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,13 @@
 
 #--- END OF EXAMPLES ---
 
+# Hans de Graaff  (2023-04-02)
+# Archived upstream since two years, meant to be used with Rails
+# 5.2. Continued as Turbo as part of the hotwire project in Rails.
+# Masked for removal on 2023-05-02
+dev-ruby/turbolinks
+dev-ruby/turbolinks-source
+
 # Michał Górny  (2023-03-31)
 # Packages with non-functional tests and no py3.11 support.  They were
 # only needed for media-fonts/noto-emoji[buildfont], and that variant



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

2023-04-03 Thread Hans de Graaff
commit: 7717f684986360d239ee03d43409b03b33af21b6
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Apr  2 07:02:26 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Apr  4 05:54:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7717f684

dev-ruby/pathutil: add missing patch file

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

 .../pathutil/files/pathutil-0.16.2-ruby30.patch| 195 +
 1 file changed, 195 insertions(+)

diff --git a/dev-ruby/pathutil/files/pathutil-0.16.2-ruby30.patch 
b/dev-ruby/pathutil/files/pathutil-0.16.2-ruby30.patch
new file mode 100644
index ..374cd4005930
--- /dev/null
+++ b/dev-ruby/pathutil/files/pathutil-0.16.2-ruby30.patch
@@ -0,0 +1,195 @@
+From 3451a10c362fc867b20c7e471a551b31c40a0246 Mon Sep 17 00:00:00 2001
+From: Tom Dunlap 
+Date: Tue, 9 Jun 2020 12:59:32 -0400
+Subject: [PATCH] Fix ruby keyword parameter deprecation warnings
+
+In ruby 2.7, using the last argument as keyword parameters became
+deprecated in preparation for ruby 3.0. When running the tests, we saw
+numerous deprecation warnings. This commit fixes up those deprecation
+warnings by explicitly passing the last argument(s) as keyword
+argument(s).
+
+See: 
https://www.ruby-lang.org/en/news/2019/12/12/separation-of-positional-and-keyword-arguments-in-ruby-3-0/
+
+Fixes #4
+
+Side note: this commit did not fix the `#binread` method because it was
+untested, and when attempting to add tests, we got the following failing
+test:
+
+```
+1) Pathutil#binread when set to normalize should use encode to convert CRLF to 
LF
+   Failure/Error:
+ File.binread(self, *args, kwd).encode({
+   :universal_newline => true
+ })
+
+   TypeError:
+ no implicit conversion of Hash into Integer
+   # ./lib/pathutil.rb:509:in `binread'
+   # ./lib/pathutil.rb:509:in `binread'
+   # ./spec/tests/lib/pathutil_spec.rb:943:in `block (4 levels) in '
+```
+
+...which appears to be occuring because of an interface mismatch as
+`IO#binread` does not take keyword arguments.
+
+https://ruby-doc.org/core-2.7.1/IO.html#method-c-binread
+---
+ lib/pathutil.rb | 36 -
+ spec/tests/lib/pathutil/helpers_spec.rb |  4 +--
+ spec/tests/lib/pathutil_spec.rb | 13 +++--
+ 3 files changed, 16 insertions(+), 37 deletions(-)
+
+diff --git a/lib/pathutil.rb b/lib/pathutil.rb
+index 1a15873..80913f2 100644
+--- a/lib/pathutil.rb
 b/lib/pathutil.rb
+@@ -456,14 +456,10 @@ def safe_copy(to, root: nil, ignore: [])
+ to   = self.class.new(to)
+ 
+ if directory?
+-  safe_copy_directory(to, {
+-:root => root, :ignore => ignore
+-  })
++  safe_copy_directory(to, root: root, ignore: ignore)
+ 
+ else
+-  safe_copy_file(to, {
+-:root => root
+-  })
++  safe_copy_file(to, root: root)
+ end
+   end
+ 
+@@ -494,14 +490,10 @@ def read(*args, **kwd)
+ kwd[:encoding] ||= encoding
+ 
+ if normalize[:read]
+-  File.read(self, *args, kwd).encode({
+-:universal_newline => true
+-  })
++  File.read(self, *args, **kwd).encode(universal_newline: true)
+ 
+ else
+-  File.read(
+-self, *args, kwd
+-  )
++  File.read(self, *args, **kwd)
+ end
+   end
+ 
+@@ -534,13 +526,13 @@ def readlines(*args, **kwd)
+ kwd[:encoding] ||= encoding
+ 
+ if normalize[:read]
+-  File.readlines(self, *args, kwd).encode({
++  File.readlines(self, *args, **kwd).encode({
+ :universal_newline => true
+   })
+ 
+ else
+   File.readlines(
+-self, *args, kwd
++self, *args, **kwd
+   )
+ end
+   end
+@@ -556,11 +548,11 @@ def write(data, *args, **kwd)
+ if normalize[:write]
+   File.write(self, data.encode(
+ :crlf_newline => true
+-  ), *args, kwd)
++  ), *args, **kwd)
+ 
+ else
+   File.write(
+-self, data, *args, kwd
++self, data, *args, **kwd
+   )
+ end
+   end
+@@ -670,9 +662,7 @@ def expanded_paths(path)
+   private
+   def safe_copy_file(to, root: nil)
+ raise Errno::EPERM, "#{self} not in #{root}" unless in_path?(root)
+-FileUtils.cp(self, to, {
+-  :preserve => true
+-})
++FileUtils.cp(self, to, preserve: true)
+   end
+ 
+   # --
+@@ -697,15 +687,11 @@ def safe_copy_directory(to, root: nil, ignore: [])
+ }"
+ 
+   elsif file.file?
+-FileUtils.cp(file, to, {
+-  :preserve => true
+-})
++FileUtils.cp(file, to, preserve: true)
+ 
+   else
+ path = file.realpath
+-path.safe_copy(to.join(file.basename), {
+-  :root => root, :ignore => ignore
+-})
++path.safe_copy(to.join(file.basename), root: root, ignore: ignore)
+   end
+ end
+   end
+diff --git a/spec/tests/lib/pathutil/helpers_spec.rb 

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

2023-04-03 Thread Hans de Graaff
commit: 0045be4d9bbac95e1901154f4f26db5b6b9a120c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Apr  3 15:26:26 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Apr  4 05:54:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0045be4d

dev-ruby/websocket: drop 1.2.9-r1

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

 dev-ruby/websocket/websocket-1.2.9-r1.ebuild | 20 
 1 file changed, 20 deletions(-)

diff --git a/dev-ruby/websocket/websocket-1.2.9-r1.ebuild 
b/dev-ruby/websocket/websocket-1.2.9-r1.ebuild
deleted file mode 100644
index 3c499c7c78fb..
--- a/dev-ruby/websocket/websocket-1.2.9-r1.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-USE_RUBY="ruby26 ruby27 ruby30"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Universal Ruby library to handle WebSocket protocol"
-HOMEPAGE="https://github.com/imanel/websocket-ruby;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
-IUSE=""
-
-ruby_add_bdepend "test? ( dev-ruby/rspec-its )"



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

2023-04-03 Thread Miroslav Šulc
commit: 5ebeddfaadb9c7e5c9b0aa8f7ecb5b20aa01b025
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Tue Apr  4 05:39:32 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Tue Apr  4 05:41:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ebeddfa

net-analyzer/zabbix: bump to 6.4.1

Signed-off-by: Miroslav Šulc  gentoo.org>

 net-analyzer/zabbix/Manifest|   2 +
 net-analyzer/zabbix/zabbix-6.4.1.ebuild | 397 
 2 files changed, 399 insertions(+)

diff --git a/net-analyzer/zabbix/Manifest b/net-analyzer/zabbix/Manifest
index 96b776e5ca81..9f607ff68d4d 100644
--- a/net-analyzer/zabbix/Manifest
+++ b/net-analyzer/zabbix/Manifest
@@ -26,3 +26,5 @@ DIST zabbix-6.2.9-go-deps.tar.xz 17974816 BLAKE2B 
a942d2ee65aaee0286d335951f8641
 DIST zabbix-6.2.9.tar.gz 41776052 BLAKE2B 
59f103883e982296cb7b400db81c02e602b5cf39c9ed10670d0c8017c77331e2a378d1a0f716671d1a9a0670a5800fde2f9b6663eaae85fce9a1c0a91a3487d9
 SHA512 
a2712bc194adfc707831f32360984332591fe0b9e2f72a92f96c2d4994b1539d27ca53963a98b68c7f94cf13c1afc0438d9bbc7db733773fdb05d507873f09a9
 DIST zabbix-6.4.0-go-deps.tar.xz 21481908 BLAKE2B 
83280695c1f47c9d5c794e8da0e4140ff2c432aa2d2ff14e755f855a621472c81d2dbd5dfad7fd0d735d784f834e0a2c220acb35cb5c3dddeba22494a5a0d674
 SHA512 
f07faa620d885a3fb81ec1e273de44831f6e95295c309997cc650958b870a9d458289e3dfaf9cea97f1e8067a9b624d2e9a5125394ac3a3117c0875f9f76f8ea
 DIST zabbix-6.4.0.tar.gz 42787621 BLAKE2B 
defb3819e5320488f5f35d6fbc52877a30313e9f745447559eea40b74d786a55d4a3971b1ff6072eedf805296c9b5bfe98fa3395affb50e2ba5be439091212d6
 SHA512 
e572c6de1a7e2f1cf5ea4a56886aabe0915d41c0f8fb6e6812dba6f7766deebe8cd743dbc8a80839fc49a794b799b93cd30dfa0741cf6fa7e1652058211f97bb
+DIST zabbix-6.4.1-go-deps.tar.xz 21571696 BLAKE2B 
e312fdfdc5687b94c6b2368a42d9189e7671624100d908af8ecca55fd8d590cbbea986301e638ab6b423a2b3f58bd2e1a1719b4dc6535564ba65e5aed476f3d3
 SHA512 
9db079435e6ececf692c9ba4d3b2af4eaedf79c742def69566e285ddd065fe9647e2472464a7a28eb99c3e6008142d7df3f5a49d71d1fb5eb73203a9996faf93
+DIST zabbix-6.4.1.tar.gz 43014634 BLAKE2B 
498358bf2a5de028b1bb0c8a5ebbe45451ec9be8fe2b08726f5c853b750a504f1dd7fe1b7c68d7f05fe65382077b65716dcd554d225019433d61ecd4dd6656c9
 SHA512 
4f82cdbf527b34e3689b280e8a0405faa1d9066a6288b273ac50f3b3008c0a6b8fcc325b760de4204dbf52a1301d7e59eadbe74a3f7a5fc3e26d6eb2f7a5c17f

diff --git a/net-analyzer/zabbix/zabbix-6.4.1.ebuild 
b/net-analyzer/zabbix/zabbix-6.4.1.ebuild
new file mode 100644
index ..f3edadcff0ce
--- /dev/null
+++ b/net-analyzer/zabbix/zabbix-6.4.1.ebuild
@@ -0,0 +1,397 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# To create the go modules tarball:
+#   cd src/go
+#   GOMODCACHE="${PWD}"/go-mod go mod download -modcacherw
+#   tar -acf zabbix-${PV}-go-deps.tar.xz go-mod
+
+EAPI=8
+
+GO_OPTIONAL="yes"
+# needed to make webapp-config dep optional
+WEBAPP_OPTIONAL="yes"
+inherit webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module 
user-info
+
+DESCRIPTION="ZABBIX is software for monitoring of your applications, network 
and servers"
+HOMEPAGE="https://www.zabbix.com/;
+MY_P=${P/_/}
+MY_PV=${PV/_/}
+SRC_URI="https://cdn.zabbix.com/${PN}/sources/stable/$(ver_cut 1-2)/${P}.tar.gz
+   agent2? ( 
https://dev.gentoo.org/~fordfrog/distfiles/${P}-go-deps.tar.xz )
+"
+
+LICENSE="GPL-2"
+SLOT="0/$(ver_cut 1-2)"
+WEBAPP_MANUAL_SLOT="yes"
+KEYWORDS="~amd64 ~x86"
+IUSE="agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc 
openipmi +openssl oracle +postgres proxy server snmp sqlite ssh static"
+REQUIRED_USE="|| ( agent agent2 frontend proxy server )
+   ?? ( gnutls openssl )
+   proxy? ( ^^ ( mysql oracle postgres sqlite ) )
+   server? ( ^^ ( mysql oracle postgres ) !sqlite )
+   static? ( !oracle !snmp )"
+
+COMMON_DEPEND="
+   curl? ( net-misc/curl )
+   gnutls? ( net-libs/gnutls:0= )
+   java? ( >=virtual/jdk-1.8:* )
+   ldap? (
+   =dev-libs/cyrus-sasl-2*
+   net-libs/gnutls:=
+   net-nds/openldap:=
+   )
+   libxml2? ( dev-libs/libxml2 )
+   mysql? ( dev-db/mysql-connector-c:= )
+   odbc? ( dev-db/unixODBC )
+   openipmi? ( sys-libs/openipmi )
+   openssl? ( dev-libs/openssl:=[-bindist(-)] )
+   oracle? ( dev-db/oracle-instantclient[odbc,sdk] )
+   postgres? ( dev-db/postgresql:* )
+   proxy?  (
+   dev-libs/libevent:=
+   sys-libs/zlib
+   )
+   server? (
+   dev-libs/libevent:=
+   sys-libs/zlib
+   )
+   snmp? ( net-analyzer/net-snmp:= )
+   sqlite? ( dev-db/sqlite )
+   ssh? ( net-libs/libssh2 )
+"
+
+RDEPEND="${COMMON_DEPEND}
+   acct-group/zabbix
+   acct-user/zabbix
+   java? ( >=virtual/jre-1.8:* )
+   mysql? ( virtual/mysql )
+   proxy? (
+   dev-libs/libpcre2:=
+   

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

2023-04-03 Thread Sam James
commit: 771227a18866c9cf4de619824610f71b6ed69e0b
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr  4 05:09:58 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr  4 05:09:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=771227a1

dev-db/sqlite: Stabilize 3.41.2-r1 ppc, #903750

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

 dev-db/sqlite/sqlite-3.41.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/sqlite/sqlite-3.41.2-r1.ebuild 
b/dev-db/sqlite/sqlite-3.41.2-r1.ebuild
index 2d99e76f4ee1..994648f6fe83 100644
--- a/dev-db/sqlite/sqlite-3.41.2-r1.ebuild
+++ b/dev-db/sqlite/sqlite-3.41.2-r1.ebuild
@@ -24,7 +24,7 @@ else
"
S="${WORKDIR}/${PN}-src-${SRC_PV}"
 
-   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="public-domain"



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

2023-04-03 Thread Sam James
commit: 39740c41344af9bd496ceb7f68207fad96c50d94
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr  4 05:09:55 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr  4 05:09:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39740c41

dev-db/sqlite: Stabilize 3.41.2-r1 amd64, #903750

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

 dev-db/sqlite/sqlite-3.41.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/sqlite/sqlite-3.41.2-r1.ebuild 
b/dev-db/sqlite/sqlite-3.41.2-r1.ebuild
index 974872e2ee81..f530176fe60a 100644
--- a/dev-db/sqlite/sqlite-3.41.2-r1.ebuild
+++ b/dev-db/sqlite/sqlite-3.41.2-r1.ebuild
@@ -24,7 +24,7 @@ else
"
S="${WORKDIR}/${PN}-src-${SRC_PV}"
 
-   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="public-domain"



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

2023-04-03 Thread Sam James
commit: ca7659f3764c816fc6bdd39dcd1c65962ae67390
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr  4 05:09:56 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr  4 05:09:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca7659f3

dev-db/sqlite: Stabilize 3.41.2-r1 hppa, #903750

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

 dev-db/sqlite/sqlite-3.41.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/sqlite/sqlite-3.41.2-r1.ebuild 
b/dev-db/sqlite/sqlite-3.41.2-r1.ebuild
index f530176fe60a..2d99e76f4ee1 100644
--- a/dev-db/sqlite/sqlite-3.41.2-r1.ebuild
+++ b/dev-db/sqlite/sqlite-3.41.2-r1.ebuild
@@ -24,7 +24,7 @@ else
"
S="${WORKDIR}/${PN}-src-${SRC_PV}"
 
-   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="public-domain"



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

2023-04-03 Thread Sam James
commit: 8bef15fd513539b1de512eb80d5223b32352fae4
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr  4 05:09:46 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr  4 05:09:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bef15fd

dev-java/jakarta-activation-api: Stabilize 2.1.1 x86, #903719

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

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

diff --git 
a/dev-java/jakarta-activation-api/jakarta-activation-api-2.1.1.ebuild 
b/dev-java/jakarta-activation-api/jakarta-activation-api-2.1.1.ebuild
index c2eded75a497..78d5d13f9fcb 100644
--- a/dev-java/jakarta-activation-api/jakarta-activation-api-2.1.1.ebuild
+++ b/dev-java/jakarta-activation-api/jakarta-activation-api-2.1.1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}/jaf-api-${PV}/api"
 
 LICENSE="EPL-1.0"
 SLOT="2"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
 
 DEPEND=">=virtual/jdk-11:*"
 RDEPEND=">=virtual/jre-1.8:*"



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

2023-04-03 Thread Sam James
commit: f695a46158ed7829398a4a9009c7c745fd8f4fdb
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr  4 05:09:49 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr  4 05:09:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f695a461

dev-java/byte-buddy: Stabilize 1.14.0 amd64, #903720

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

 dev-java/byte-buddy/byte-buddy-1.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/byte-buddy/byte-buddy-1.14.0.ebuild 
b/dev-java/byte-buddy/byte-buddy-1.14.0.ebuild
index 24240d077be8..ed2c40b5bb64 100644
--- a/dev-java/byte-buddy/byte-buddy-1.14.0.ebuild
+++ b/dev-java/byte-buddy/byte-buddy-1.14.0.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/raphw/byte-buddy/archive/${P}.tar.gz;
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 x86"
 
 DEPEND="
>=virtual/jdk-11:*



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

2023-04-03 Thread Sam James
commit: a6b83a82835d1a4b16a8c48b2bbc3a767fda5e5c
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr  4 05:09:47 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr  4 05:09:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6b83a82

dev-java/jakarta-mail-api: Stabilize 2.1.1 x86, #903719

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

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

diff --git a/dev-java/jakarta-mail-api/jakarta-mail-api-2.1.1.ebuild 
b/dev-java/jakarta-mail-api/jakarta-mail-api-2.1.1.ebuild
index ded09b444ccb..dc408005e8a2 100644
--- a/dev-java/jakarta-mail-api/jakarta-mail-api-2.1.1.ebuild
+++ b/dev-java/jakarta-mail-api/jakarta-mail-api-2.1.1.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/mail-api-${PV}/api"
 
 LICENSE="EPL-1.0 EPL-2.0 GPL-2-with-classpath-exception"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
 
 DEPEND="
dev-java/jakarta-activation-api:2



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

2023-04-03 Thread Sam James
commit: fbb17968274a1c9d20e4958dc7a2d96e4f24f6aa
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr  4 05:09:53 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr  4 05:09:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbb17968

dev-db/sqlite: Stabilize 3.41.2-r1 arm, #903750

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

 dev-db/sqlite/sqlite-3.41.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/sqlite/sqlite-3.41.2-r1.ebuild 
b/dev-db/sqlite/sqlite-3.41.2-r1.ebuild
index d306ea335da1..974872e2ee81 100644
--- a/dev-db/sqlite/sqlite-3.41.2-r1.ebuild
+++ b/dev-db/sqlite/sqlite-3.41.2-r1.ebuild
@@ -24,7 +24,7 @@ else
"
S="${WORKDIR}/${PN}-src-${SRC_PV}"
 
-   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="public-domain"



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

2023-04-03 Thread Sam James
commit: 50c893dae62e47f133e09f2b6a959ba1271aaeec
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr  4 05:09:51 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr  4 05:09:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50c893da

dev-db/sqlite: Stabilize 3.41.2-r1 arm64, #903750

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

 dev-db/sqlite/sqlite-3.41.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/sqlite/sqlite-3.41.2-r1.ebuild 
b/dev-db/sqlite/sqlite-3.41.2-r1.ebuild
index 95cbc793093a..d306ea335da1 100644
--- a/dev-db/sqlite/sqlite-3.41.2-r1.ebuild
+++ b/dev-db/sqlite/sqlite-3.41.2-r1.ebuild
@@ -24,7 +24,7 @@ else
"
S="${WORKDIR}/${PN}-src-${SRC_PV}"
 
-   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="public-domain"



[gentoo-commits] proj/sci:master commit in: sci-biology/ants/

2023-04-03 Thread Horea Christian
commit: e308a2697588847fd872c972a303f278b549595b
Author: Horea Christian  chymera  eu>
AuthorDate: Tue Apr  4 05:03:56 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue Apr  4 05:03:56 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=e308a269

sci-biology/ants: add 2.4.3

Signed-off-by: Horea Christian  chymera.eu>

 sci-biology/ants/ants-2.4.3.ebuild | 69 ++
 1 file changed, 69 insertions(+)

diff --git a/sci-biology/ants/ants-2.4.3.ebuild 
b/sci-biology/ants/ants-2.4.3.ebuild
new file mode 100644
index 0..8ccad3c24
--- /dev/null
+++ b/sci-biology/ants/ants-2.4.3.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CMAKE_MAKEFILE_GENERATOR="emake"
+inherit cmake
+
+MY_PN="ANTs"
+
+DESCRIPTION="Advanced Normalitazion Tools for neuroimaging"
+HOMEPAGE="https://stnava.github.io/ANTs/;
+SRC_URI="
+   https://github.com/ANTsX/ANTs/archive/v${PV}.tar.gz ->  ${P}.tar.gz
+   test? (
+   http://resources.chymera.eu/distfiles/ants_testdata-${PV}.tar.xz
+   )
+"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~amd64 ~x86"
+IUSE="test vtk"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+   !vtk? ( =sci-libs/itk-5.3*[fftw,-vtkglue] )
+   vtk? (
+   =sci-libs/itk-5.3*[fftw,vtkglue]
+   =sci-libs/vtk-9.2*
+   )
+"
+RDEPEND="${DEPEND}"
+
+src_unpack() {
+   default
+   if use test; then
+   mkdir -p "${S}/.ExternalData/SHA512" || die "Could not create test 
data directory."
+   tar xvf "${DISTDIR}/ants_testdata-${PV}.tar.xz" -C 
"${S}/.ExternalData/SHA512/" > /dev/null || die "Could not unpack test data."
+   fi
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_EXAMPLES=OFF
+   -DUSE_SYSTEM_ITK=ON
+   -DITK_USE_SYSTEM_FFTW=ON
+   -DITK_DIR="${EPREFIX}/usr/include/ITK-5.3/"
+   -DBUILD_TESTING="$(usex test ON OFF)"
+   -DUSE_VTK=$(usex vtk ON OFF)
+   -DUSE_SYSTEM_VTK=$(usex vtk ON OFF)
+   )
+   use vtk && mycmakeargs+=(
+   -DVTK_DIR="${EPREFIX}/usr/include/vtk-9.2/"
+   )
+   cmake_src_configure
+}
+
+src_install() {
+   BUILD_DIR="${WORKDIR}/${MY_PN}-${PV}_build/ANTS-build"
+   cmake_src_install
+   cd "${S}/Scripts" || die "scripts dir not found"
+   dobin *.sh
+   dodir /usr/$(get_libdir)/ants
+   insinto "/usr/$(get_libdir)/ants"
+   doins *
+   doenvd "${FILESDIR}"/99ants
+}



[gentoo-commits] repo/gentoo:master commit in: net-im/mattermost-desktop-bin/

2023-04-03 Thread Viorel Munteanu
commit: 81dd640063ffa8e8061cb6bdeeba3721d832ba01
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Tue Apr  4 04:50:03 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Tue Apr  4 04:55:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81dd6400

net-im/mattermost-desktop-bin: drop 5.3.0_rc7

Signed-off-by: Viorel Munteanu  gentoo.org>

 net-im/mattermost-desktop-bin/Manifest |  2 -
 .../mattermost-desktop-bin-5.3.0_rc7.ebuild| 94 --
 2 files changed, 96 deletions(-)

diff --git a/net-im/mattermost-desktop-bin/Manifest 
b/net-im/mattermost-desktop-bin/Manifest
index 6ec3429b0f02..19b7066c0262 100644
--- a/net-im/mattermost-desktop-bin/Manifest
+++ b/net-im/mattermost-desktop-bin/Manifest
@@ -2,7 +2,5 @@ DIST mattermost-desktop-5.2.2-linux-arm64.tar.gz 116257022 
BLAKE2B 42019e849b415
 DIST mattermost-desktop-5.2.2-linux-x64.tar.gz 115646636 BLAKE2B 
f3d01c913205dcf2c14cfcfcfc8eba06909c36446a8d6f450270f50328adaf585c5eefa68de212fcc61d012d74b69053790ba9494ee291a90c2b382b530e2e23
 SHA512 
5ef578c2af8afcd55b75f93904eead8257c0f1e9614de34a13705da2c8ce8f0da2ea57cc62b1fffb12b8effa2a2a98bb200c43a7f43635dc910fa91f7e629f35
 DIST mattermost-desktop-5.3.0-linux-arm64.tar.gz 99876870 BLAKE2B 
1934720e90900195ac3a560dae0e41f3b809b924fafbad23d1b7fc382b7dc0d22fdce6b128c0ff080a51bc804919b7d6006ed3df1ee7ed1d42975cfde22d
 SHA512 
1eac35df02d9228f5256d10101b19cdc62faf04eba01f1d41ec8c10ac91e603d28d097fbcc92db5a14b6cb0c00bf696d22e4aad57a7a229036c09218962d3bfc
 DIST mattermost-desktop-5.3.0-linux-x64.tar.gz 99665838 BLAKE2B 
6d607ffec23ea8a9fb4a28f304bae49f17332a8dda9a4a803e378ea4c029e2e05a6d0af37fbb698677676e3c6192de2b2e2b0a8a5d2ed41366f5664efb0c9481
 SHA512 
87a8f8eaea60c2a2543f31d0d241170b606f13766f706927cc088d76de5a7c6d6ef766bf4f4a3d8a882dec87f51dc3732678849b97caa02c1e5124e4847ade80
-DIST mattermost-desktop-5.3.0-rc.7-linux-arm64.tar.gz 99876187 BLAKE2B 
65e3b197ae8518fe4b30009471473c7b39aa4e0bf6f74e0bd0ad0b44dbca551fb195aaf5357828037d791c716a69b713cf9f787eb7456ff6ae126328eb89bc61
 SHA512 
0903015f786e712c5bcdf3268966161c8efe8e7bc5b75934a885655457112229bc40e466c0b146621416c336f6bde8d4de15769258d486376382f0db28d95f4f
-DIST mattermost-desktop-5.3.0-rc.7-linux-x64.tar.gz 99666928 BLAKE2B 
7a41fd359d47a109f5e54729a582215228dcd1e0466672a13278b9efc90d8a8b2d849dc07f29443c6655a0a5f45e934ea0c5064655fbd7cb76e9604d2dd56e0e
 SHA512 
b4a6f08c2c95e09087f2eb34e3ba0600d2f5dca24bd419cb20ae47eb55f6810195bf0fea46b4b17782453348da148c2814018cd68f3935d42bfcc65a318cdb17
 DIST mattermost-desktop-5.3.1-rc.1-linux-arm64.tar.gz 99877655 BLAKE2B 
2687bf25445c57c22f640cc112b7aaeffa44e0d2f23d94df7acc48fa008f7f00a8e7d584a627a3e53d638f599084def76db2528e194ec42fb8774dc484f143c3
 SHA512 
4ec2ea132893139bdf0d70e66533a080c92a78cdd3633d7b2ad569a31103eb5aaacb13a7ae2d7ee2806793fd242e5816aaf6c2e5b8eb9aee7ecdc179385e8a57
 DIST mattermost-desktop-5.3.1-rc.1-linux-x64.tar.gz 99666860 BLAKE2B 
ded28bc1229723572b8419549a8c8707629da9f27d817fdd595f42a21749ad89bdaef3679f8af29f4d14bbd9dfec702686af1dea929907c3be8365e5d9fa5b5d
 SHA512 
5d532e756b4331ffb88fadbf422faa9831828da1ad5061557cdf4c63c7d5425203d21fa57699de22863730a79ed1e243042b1070ad44363a20517b89d00648ba

diff --git 
a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.3.0_rc7.ebuild 
b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.3.0_rc7.ebuild
deleted file mode 100644
index 6239ac543889..
--- a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.3.0_rc7.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_PN="${PN%-*}"
-MY_PV="${PV/_rc/-rc.}"
-
-inherit desktop xdg
-
-DESCRIPTION="Mattermost Desktop application"
-HOMEPAGE="https://mattermost.com/;
-
-SRC_URI="
-   amd64? ( 
https://releases.mattermost.com/desktop/${MY_PV}/mattermost-desktop-${MY_PV}-linux-x64.tar.gz
 )
-   arm64? ( 
https://releases.mattermost.com/desktop/${MY_PV}/mattermost-desktop-${MY_PV}-linux-arm64.tar.gz
 )
-"
-
-LICENSE="Apache-2.0 GPL-2+ LGPL-2.1+ MIT"
-SLOT="0"
-# Starting with 5.2.0 upstream dropped x86 for their binary release #879519
-if [[ ${PV} != *rc* ]]; then
-   KEYWORDS="~amd64 ~arm64"
-fi
-
-RDEPEND="
-   >=app-accessibility/at-spi2-core-2.46.0:2[X]
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   dev-libs/wayland
-   media-libs/alsa-lib
-   media-libs/mesa
-   net-print/cups
-   sys-apps/dbus
-   sys-libs/glibc
-   x11-libs/cairo
-   x11-libs/gtk+:3[X]
-   x11-libs/libX11
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXrandr
-   x11-libs/libdrm
-   x11-libs/libxcb
-   x11-libs/libxkbcommon
-   x11-libs/pango
-"
-
-QA_PREBUILT="
-   opt/mattermost-desktop/mattermost-desktop
-   

[gentoo-commits] repo/gentoo:master commit in: net-im/mattermost-desktop-bin/

2023-04-03 Thread Viorel Munteanu
commit: 90ec524bf552a212deb1cd9739634a36cbd71fcf
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Tue Apr  4 04:49:54 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Tue Apr  4 04:55:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90ec524b

net-im/mattermost-desktop-bin: add 5.3.0

Signed-off-by: Viorel Munteanu  gentoo.org>

 net-im/mattermost-desktop-bin/Manifest |  2 +
 .../mattermost-desktop-bin-5.3.0.ebuild| 94 ++
 2 files changed, 96 insertions(+)

diff --git a/net-im/mattermost-desktop-bin/Manifest 
b/net-im/mattermost-desktop-bin/Manifest
index a41bb6c532f9..6ec3429b0f02 100644
--- a/net-im/mattermost-desktop-bin/Manifest
+++ b/net-im/mattermost-desktop-bin/Manifest
@@ -1,5 +1,7 @@
 DIST mattermost-desktop-5.2.2-linux-arm64.tar.gz 116257022 BLAKE2B 
42019e849b415870e0f3cda7fd9c0e559945456ac4d06319edf074aecc9ca9bb330aa8547104d4d132f00e237324b6c9bc94dd8e1cd1bc83f50ab50f094a7fc3
 SHA512 
67f32eff87eae54c4cbfe2ffbec3aca1f6be39836d4e912870809a62bbe12c2c30a16c7abc1caab0bba77c1f1b97baa01ee10d3f91615b89a57041a4c64a
 DIST mattermost-desktop-5.2.2-linux-x64.tar.gz 115646636 BLAKE2B 
f3d01c913205dcf2c14cfcfcfc8eba06909c36446a8d6f450270f50328adaf585c5eefa68de212fcc61d012d74b69053790ba9494ee291a90c2b382b530e2e23
 SHA512 
5ef578c2af8afcd55b75f93904eead8257c0f1e9614de34a13705da2c8ce8f0da2ea57cc62b1fffb12b8effa2a2a98bb200c43a7f43635dc910fa91f7e629f35
+DIST mattermost-desktop-5.3.0-linux-arm64.tar.gz 99876870 BLAKE2B 
1934720e90900195ac3a560dae0e41f3b809b924fafbad23d1b7fc382b7dc0d22fdce6b128c0ff080a51bc804919b7d6006ed3df1ee7ed1d42975cfde22d
 SHA512 
1eac35df02d9228f5256d10101b19cdc62faf04eba01f1d41ec8c10ac91e603d28d097fbcc92db5a14b6cb0c00bf696d22e4aad57a7a229036c09218962d3bfc
+DIST mattermost-desktop-5.3.0-linux-x64.tar.gz 99665838 BLAKE2B 
6d607ffec23ea8a9fb4a28f304bae49f17332a8dda9a4a803e378ea4c029e2e05a6d0af37fbb698677676e3c6192de2b2e2b0a8a5d2ed41366f5664efb0c9481
 SHA512 
87a8f8eaea60c2a2543f31d0d241170b606f13766f706927cc088d76de5a7c6d6ef766bf4f4a3d8a882dec87f51dc3732678849b97caa02c1e5124e4847ade80
 DIST mattermost-desktop-5.3.0-rc.7-linux-arm64.tar.gz 99876187 BLAKE2B 
65e3b197ae8518fe4b30009471473c7b39aa4e0bf6f74e0bd0ad0b44dbca551fb195aaf5357828037d791c716a69b713cf9f787eb7456ff6ae126328eb89bc61
 SHA512 
0903015f786e712c5bcdf3268966161c8efe8e7bc5b75934a885655457112229bc40e466c0b146621416c336f6bde8d4de15769258d486376382f0db28d95f4f
 DIST mattermost-desktop-5.3.0-rc.7-linux-x64.tar.gz 99666928 BLAKE2B 
7a41fd359d47a109f5e54729a582215228dcd1e0466672a13278b9efc90d8a8b2d849dc07f29443c6655a0a5f45e934ea0c5064655fbd7cb76e9604d2dd56e0e
 SHA512 
b4a6f08c2c95e09087f2eb34e3ba0600d2f5dca24bd419cb20ae47eb55f6810195bf0fea46b4b17782453348da148c2814018cd68f3935d42bfcc65a318cdb17
 DIST mattermost-desktop-5.3.1-rc.1-linux-arm64.tar.gz 99877655 BLAKE2B 
2687bf25445c57c22f640cc112b7aaeffa44e0d2f23d94df7acc48fa008f7f00a8e7d584a627a3e53d638f599084def76db2528e194ec42fb8774dc484f143c3
 SHA512 
4ec2ea132893139bdf0d70e66533a080c92a78cdd3633d7b2ad569a31103eb5aaacb13a7ae2d7ee2806793fd242e5816aaf6c2e5b8eb9aee7ecdc179385e8a57

diff --git a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.3.0.ebuild 
b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.3.0.ebuild
new file mode 100644
index ..6239ac543889
--- /dev/null
+++ b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.3.0.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="${PN%-*}"
+MY_PV="${PV/_rc/-rc.}"
+
+inherit desktop xdg
+
+DESCRIPTION="Mattermost Desktop application"
+HOMEPAGE="https://mattermost.com/;
+
+SRC_URI="
+   amd64? ( 
https://releases.mattermost.com/desktop/${MY_PV}/mattermost-desktop-${MY_PV}-linux-x64.tar.gz
 )
+   arm64? ( 
https://releases.mattermost.com/desktop/${MY_PV}/mattermost-desktop-${MY_PV}-linux-arm64.tar.gz
 )
+"
+
+LICENSE="Apache-2.0 GPL-2+ LGPL-2.1+ MIT"
+SLOT="0"
+# Starting with 5.2.0 upstream dropped x86 for their binary release #879519
+if [[ ${PV} != *rc* ]]; then
+   KEYWORDS="~amd64 ~arm64"
+fi
+
+RDEPEND="
+   >=app-accessibility/at-spi2-core-2.46.0:2[X]
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   dev-libs/wayland
+   media-libs/alsa-lib
+   media-libs/mesa
+   net-print/cups
+   sys-apps/dbus
+   sys-libs/glibc
+   x11-libs/cairo
+   x11-libs/gtk+:3[X]
+   x11-libs/libX11
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXrandr
+   x11-libs/libdrm
+   x11-libs/libxcb
+   x11-libs/libxkbcommon
+   x11-libs/pango
+"
+
+QA_PREBUILT="
+   opt/mattermost-desktop/mattermost-desktop
+   opt/mattermost-desktop/libnode.so
+   opt/mattermost-desktop/libffmpeg.so
+   opt/mattermost-desktop/libGLESv2.so
+   

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

2023-04-03 Thread Michał Górny
commit: 65a031f4c9d702c4fc8b6ce6b0541453a6db8c08
Author: Raul E Rangel  chromium  org>
AuthorDate: Mon Apr  3 17:28:49 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr  4 04:48:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65a031f4

sgml-catalog-r1.eclass: Strip ROOT when generating catalog

When cross compiling by setting the ROOT variable, the eclass was
writing the full EROOT path into the catalog file. This results in an
invalid path at runtime.

i.e.,
$ cat /build/amd64-host/etc/sgml/catalog
CATALOG "/build/amd64-host/etc/sgml/sgml-docbook.cat"
CATALOG "/build/amd64-host/etc/sgml/sgml-ent.cat"
CATALOG "/build/amd64-host/etc/sgml/xml-docbook-4.1.2.cat"

Instead we should be stripping off the ROOT so we get a valid path:

$ cat /build/amd64-host/etc/sgml/catalog
CATALOG "/etc/sgml/sgml-docbook.cat"
CATALOG "/etc/sgml/sgml-ent.cat"
CATALOG "/etc/sgml/xml-docbook-4.1.2.cat"

We don't strip EROOT because we want to keep the prefix if it's
present.

Closes: https://bugs.gentoo.org/903747
Signed-off-by: Raul E Rangel  chromium.org>
Closes: https://github.com/gentoo/gentoo/pull/30462
Signed-off-by: Michał Górny  gentoo.org>

 eclass/sgml-catalog-r1.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/sgml-catalog-r1.eclass b/eclass/sgml-catalog-r1.eclass
index 2258b3e2bf0f..eff6db31062f 100644
--- a/eclass/sgml-catalog-r1.eclass
+++ b/eclass/sgml-catalog-r1.eclass
@@ -35,7 +35,7 @@ sgml-catalog-r1_update_catalog() {
 
if [[ ${#cats[@]} -gt 0 ]]; then
ebegin "Updating ${EROOT}/etc/sgml/catalog"
-   printf 'CATALOG "%s"\n' "${cats[@]}" > "${T}"/catalog &&
+   printf 'CATALOG "%s"\n' "${cats[@]#${ROOT}}" > "${T}"/catalog &&
mv "${T}"/catalog "${EROOT}"/etc/sgml/catalog
eend "${?}"
else



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

2023-04-03 Thread Michał Górny
commit: 7cfe827e342f364d0228948e5eec3d2f3df8b982
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Apr  4 04:31:27 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr  4 04:48:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cfe827e

dev-python/zeroconf: Bump to 0.54.0

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

 dev-python/zeroconf/Manifest   |  1 +
 dev-python/zeroconf/zeroconf-0.54.0.ebuild | 55 ++
 2 files changed, 56 insertions(+)

diff --git a/dev-python/zeroconf/Manifest b/dev-python/zeroconf/Manifest
index 8636d6a307a5..b8399346c0f7 100644
--- a/dev-python/zeroconf/Manifest
+++ b/dev-python/zeroconf/Manifest
@@ -2,3 +2,4 @@ DIST python-zeroconf-0.47.3.gh.tar.gz 151413 BLAKE2B 
eff81832a029cf173c552903552
 DIST python-zeroconf-0.47.4.gh.tar.gz 151640 BLAKE2B 
4591135e81fc0c1c22444fb8823f5ad246f234a79a9aa2697a947a7838f5880007e2acbfe8c60a3f69c0a1cf803e35b35b17b7cf013dc7408e759273bbca94b2
 SHA512 
2b8438e0832cfc6ac40d54eaed75749389fd9287b82b074f129bba76e7f31e3cfd58e5de28c54b3cf3e14d3c8540ff09b5f10d85f705ede2ef18718b1a87ebf1
 DIST python-zeroconf-0.51.0.gh.tar.gz 152236 BLAKE2B 
2339bd47e4f8abecb5b56c722e275c0cef63d4ab389c58b9a50e22e2a450b527f11727615a9c61e6e23d275195353121c5697f2fd496fbf9370465db5d9258c8
 SHA512 
e62d74ce164cd92913382e5a5530e2732a739e065f3f2fa7bc5cc7f62e863c98e8979ab08f5527f301e833cd1107c2d1c412db1dfafbf2bd1546b6e197d2c43a
 DIST zeroconf-0.53.0.tar.gz 138658 BLAKE2B 
9a0af4a08a51d8b39d6eac30a1ad92d5e7c14bdaa3a7d8b57b3664c91c0c740af6f08c3bbe1d5ffb4a950e4cc1bec12b9426b595f76232d48510dd5df25c1b57
 SHA512 
9309b385a1acdcdb7d2812e0b554373fc2a5324f804636cf32449aa158ac629387f670c1770bce5e11245f9e482a6bb379f7e3cbf935a1977fca8158181163d5
+DIST zeroconf-0.54.0.tar.gz 139937 BLAKE2B 
ef8e8ad309a73bd725ad1aa8af54dd14d338f68c5f23643a45cd88a2e8ec8a64b6c589ec0d00a341769003e858554da0edac49722d81c92ec36638cfe4d8d0e2
 SHA512 
ac2f2c76e8d551102919ae27dcbcdaea80e4ec1b0514edab7d9776feb20466933669590af5f9de90395df909c371a6d30cc086daa8861464ba51f2aafd3a0592

diff --git a/dev-python/zeroconf/zeroconf-0.54.0.ebuild 
b/dev-python/zeroconf/zeroconf-0.54.0.ebuild
new file mode 100644
index ..18c772b8a425
--- /dev/null
+++ b/dev-python/zeroconf/zeroconf-0.54.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=poetry
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Pure Python Multicast DNS Service Discovery Library 
(Bonjour/Avahi compatible)"
+HOMEPAGE="
+   https://github.com/python-zeroconf/python-zeroconf/
+   https://pypi.org/project/zeroconf/
+"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+   >=dev-python/ifaddr-0.1.7[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   >=dev-python/async-timeout-3.0.0[${PYTHON_USEDEP}]
+   ' 3.{9..10})
+"
+# the build system uses custom build script that uses distutils to build
+# C extensions, sigh
+BDEPEND="
+   >=dev-python/cython-0.29.32[${PYTHON_USEDEP}]
+   >=dev-python/setuptools-65.6.3[${PYTHON_USEDEP}]
+   test? (
+   dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # network
+   tests/test_core.py::Framework::test_close_multiple_times
+   tests/test_core.py::Framework::test_launch_and_close
+   
tests/test_core.py::Framework::test_launch_and_close_context_manager
+   tests/test_core.py::Framework::test_launch_and_close_v4_v6
+   tests/test_core.py::Framework::test_launch_and_close_v6_only
+   
tests/services/test_types.py::ServiceTypesQuery::test_integration_with_listener_ipv6
+
+   # fragile to timeouts (?)
+   
tests/services/test_browser.py::test_service_browser_expire_callbacks
+   tests/utils/test_asyncio.py::test_run_coro_with_timeout
+   )
+
+   epytest -o addopts=
+}



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

2023-04-03 Thread Michał Górny
commit: 74760e8a5cfbcc195c028b2307104610e475d475
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Apr  4 04:32:24 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr  4 04:48:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74760e8a

dev-python/nbclassic: Bump to 0.5.4

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

 dev-python/nbclassic/Manifest   |  1 +
 dev-python/nbclassic/nbclassic-0.5.4.ebuild | 85 +
 2 files changed, 86 insertions(+)

diff --git a/dev-python/nbclassic/Manifest b/dev-python/nbclassic/Manifest
index d17fd1113e08..9d872263ebe1 100644
--- a/dev-python/nbclassic/Manifest
+++ b/dev-python/nbclassic/Manifest
@@ -1,2 +1,3 @@
 DIST nbclassic-0.5.1.tar.gz 20178622 BLAKE2B 
1ff79c9af218011c697016ecef149f42e683607eebb8e199ef75957d9d3127858ce8f443aeedb60844e3277b4c8cd4959d123658a5103ab2112fec469ef01a96
 SHA512 
1dabc27ad115d1961e7881e7a51653449cae291c74aea222bbf92d49cb7bc9657ae1f1d9a81eafbd70bc0cafd57b75cd2c76bebf91aabc5fdd9eede534f1cec9
 DIST nbclassic-0.5.3.tar.gz 20199979 BLAKE2B 
aa509bbd2bab51b94f475e81b7e1c5661370e850680df8f64c86d76ff2aed7a84a0e6c00f36a695ef7f84cdc731fb7613107abc96fb13a3127ded6689d6e81a1
 SHA512 
07e26d4cb30e3388420ced182a31a050419f4a872256efca6684e4af0e08ec8bf7f6f14f127fe1391457ad5fc792377a1a7bafc0fa1a92eec455454c6321a9ec
+DIST nbclassic-0.5.4.tar.gz 20200456 BLAKE2B 
65f571da08f7b101e369aaa7e80d969a6b1ee989d7eea17d7de2638d4908c27dd20a874ee990f65a8fd7dd4535b2d518e4392501e5badc3fec309acfc22e5ff0
 SHA512 
f85e0388c02a4f601b00329787152fa74862e7a5d9148b63d52a48395898b3428d3b07f0733fa9a0b5336e37d6fb44158e45e2e265bba6bb9b82f45e7bbc

diff --git a/dev-python/nbclassic/nbclassic-0.5.4.ebuild 
b/dev-python/nbclassic/nbclassic-0.5.4.ebuild
new file mode 100644
index ..7bda1e205baf
--- /dev/null
+++ b/dev-python/nbclassic/nbclassic-0.5.4.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+DISTUTILS_USE_PEP517=jupyter
+
+inherit distutils-r1 pypi xdg-utils
+
+DESCRIPTION="Jupyter Notebook as a Jupyter Server Extension"
+HOMEPAGE="
+   https://jupyter.org/
+   https://github.com/jupyter/nbclassic/
+   https://pypi.org/project/nbclassic/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~riscv ~x86"
+
+RDEPEND="
+   dev-python/argon2-cffi[${PYTHON_USEDEP}]
+   dev-python/ipykernel[${PYTHON_USEDEP}]
+   dev-python/ipython_genutils[${PYTHON_USEDEP}]
+   dev-python/jinja[${PYTHON_USEDEP}]
+   >=dev-python/jupyter_client-6.1.1[${PYTHON_USEDEP}]
+   >=dev-python/jupyter_core-4.6.1[${PYTHON_USEDEP}]
+   >=dev-python/nbconvert-5[${PYTHON_USEDEP}]
+   dev-python/nbformat[${PYTHON_USEDEP}]
+   >=dev-python/nest_asyncio-1.5[${PYTHON_USEDEP}]
+   >=dev-python/notebook_shim-0.1.0[${PYTHON_USEDEP}]
+   dev-python/prometheus_client[${PYTHON_USEDEP}]
+   >=dev-python/send2trash-1.8.0[${PYTHON_USEDEP}]
+   >=dev-python/terminado-0.8.3[${PYTHON_USEDEP}]
+   >=dev-python/tornado-6.1[${PYTHON_USEDEP}]
+   >=dev-python/traitlets-4.2.1[${PYTHON_USEDEP}]
+"
+PDEPEND="
+   

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

2023-04-03 Thread Michał Górny
commit: a3f741255047bee69e85be0be262a5e38e7bebbe
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Apr  4 04:33:02 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr  4 04:48:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3f74125

dev-python/zstandard: Remove old

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

 dev-python/zstandard/Manifest|  1 -
 dev-python/zstandard/zstandard-0.19.0.ebuild | 68 
 2 files changed, 69 deletions(-)

diff --git a/dev-python/zstandard/Manifest b/dev-python/zstandard/Manifest
index d130bef396b6..3ba5c4e64297 100644
--- a/dev-python/zstandard/Manifest
+++ b/dev-python/zstandard/Manifest
@@ -1,2 +1 @@
-DIST python-zstandard-0.19.0.gh.tar.gz 683942 BLAKE2B 
5b28fb6360147f87fb658d28652e5e43b0e41ff3cc31e46d91b1dcdd5334869f9a10a598f3d1d15a8c0f02afc59d009a8088ba3e81066f1a5f1ad9c05ebd4a1d
 SHA512 
56e7b43161940f182ff5a0745bb6bdb2710c9a61140c4a84b690e0abd18c8b862211ab2b1ba36cfd99fe75bb0ae00af7de798b010b2bd4c5a44d691d4fa0c63d
 DIST python-zstandard-0.20.0.gh.tar.gz 712241 BLAKE2B 
6ec393a440eb2a0527e655ee1aec16a4712057869d2f208b4367be199041887bf02d8feeb74f87992d0ab2b5e668cf8b3d8cd8967bd6dc47d4e052781ebc
 SHA512 
bdbbd829e431a9b1ad1247b83e2e6102314a257a32c92a5c666c5ac050eb115bccd9d358240ac9ab41e975ade13bbbc155c66cb8fb583d2ee8dbd28ae323e4f8

diff --git a/dev-python/zstandard/zstandard-0.19.0.ebuild 
b/dev-python/zstandard/zstandard-0.19.0.ebuild
deleted file mode 100644
index 1a91f27e8b20..
--- a/dev-python/zstandard/zstandard-0.19.0.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-
-inherit distutils-r1
-
-MY_P=python-zstandard-${PV}
-DESCRIPTION="Zstandard Bindings for Python"
-HOMEPAGE="
-   https://github.com/indygreg/python-zstandard/
-   https://pypi.org/project/zstandard/
-"
-SRC_URI="
-   https://github.com/indygreg/python-zstandard/archive/${PV}.tar.gz
-   -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-SLOT="0"
-LICENSE="BSD"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
-
-#  zstd/zstdlib.c || die
-   # it does random preprocessing on that, so we can't use #include
-   cp "${ESYSROOT}/usr/include/zstd.h" zstd/zstd.h || die
-   sed -i -e '/include_dirs/alibraries=["zstd"],' make_cffi.py || die
-
-   distutils-r1_src_prepare
-
-   DISTUTILS_ARGS=(
-   --no-c-backend
-   )
-}
-
-src_test() {
-   rm -r zstandard || die
-   distutils-r1_src_test
-}



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

2023-04-03 Thread Michał Górny
commit: f4620d7e07eae7ca0e2650a1ca669e9aa280a580
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Apr  4 04:34:11 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr  4 04:48:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4620d7e

dev-python/pillow: Remove old

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

 dev-python/pillow/Manifest|   1 -
 dev-python/pillow/pillow-9.4.0.ebuild | 130 --
 2 files changed, 131 deletions(-)

diff --git a/dev-python/pillow/Manifest b/dev-python/pillow/Manifest
index f3d8b0423803..923fec76a57b 100644
--- a/dev-python/pillow/Manifest
+++ b/dev-python/pillow/Manifest
@@ -1,2 +1 @@
-DIST pillow-9.4.0.gh.tar.gz 50412873 BLAKE2B 
12003b8b9e582c47b45d82f4a10553e376dcb38e65154eca5753b2908d6ecad10fc732d622856c7742fb413abbf4afc926e3d30e1e9e410e966f18da4ddde6c1
 SHA512 
6c08336e5ca1e652bb3237ae092be61b78dc1cf65603d6b23369eb8e0554786114a8f87ab092a5fb9577e02cd0bb381353fa657e03090baeb91b4b8e3c740d51
 DIST pillow-9.5.0.gh.tar.gz 50491974 BLAKE2B 
663c14b89ddd1e2d49872994033a04e500d0b6eccbb8d6ce094f58ae1aaf3f215e9984f2afeb43fb83e0c3c93af1150beeb7d5f0abb77c59087901b53fd24e37
 SHA512 
da0c7a1bde4741ced168c013fdc7afa8af1100bba878bdaeeb9804fed4dcf70c07ed62004ab2c73694eae3d28e2d72d46c155f78b540075aafb36c8e7a5649ff

diff --git a/dev-python/pillow/pillow-9.4.0.ebuild 
b/dev-python/pillow/pillow-9.4.0.ebuild
deleted file mode 100644
index 6c245bd70d77..
--- a/dev-python/pillow/pillow-9.4.0.ebuild
+++ /dev/null
@@ -1,130 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-PYTHON_REQ_USE='tk?,threads(+)'
-
-inherit distutils-r1 toolchain-funcs virtualx
-
-MY_PN=Pillow
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Python Imaging Library (fork)"
-HOMEPAGE="
-   https://python-pillow.org/
-   https://github.com/python-pillow/
-   https://pypi.org/project/Pillow/
-"
-SRC_URI="
-   https://github.com/python-pillow/Pillow/archive/${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="HPND"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
-IUSE="examples imagequant +jpeg jpeg2k lcms test tiff tk truetype webp xcb 
zlib"
-REQUIRED_USE="test? ( jpeg jpeg2k lcms tiff truetype )"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-   imagequant? ( media-gfx/libimagequant:= )
-   jpeg? ( media-libs/libjpeg-turbo:= )
-   jpeg2k? ( media-libs/openjpeg:2= )
-   lcms? ( media-libs/lcms:2= )
-   tiff? ( media-libs/tiff:=[jpeg,zlib] )
-   truetype? ( media-libs/freetype:2= )
-   webp? ( media-libs/libwebp:= )
-   xcb? ( x11-libs/libxcb )
-   zlib? ( sys-libs/zlib:= )
-"
-RDEPEND="
-   ${DEPEND}
-   dev-python/olefile[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   virtual/pkgconfig
-   test? (
-   ${RDEPEND}
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   dev-python/packaging[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-timeout[${PYTHON_USEDEP}]
-   || (
-   media-gfx/imagemagick[png]
-   media-gfx/graphicsmagick[png]
-   )
-   )
-"
-
-EPYTEST_DESELECT=(
-   # TODO; incompatible Qt version?
-   Tests/test_qt_image_qapplication.py::test_sanity
-)
-
-usepil() {
-   usex "${1}" enable disable
-}
-
-python_configure_all() {
-   # It's important that these flags are also passed during the install 
phase
-   # as well. Make sure of that if you change the lines below. See bug 
661308.
-   cat >> setup.cfg <<-EOF || die
-   [build_ext]
-   disable_platform_guessing = True
-   $(usepil truetype)_freetype = True
-   $(usepil jpeg)_jpeg = True
-   $(usepil jpeg2k)_jpeg2000 = True
-   $(usepil lcms)_lcms = True
-   $(usepil tiff)_tiff = True
-   $(usepil imagequant)_imagequant = True
-   $(usepil webp)_webp = True
-   $(usepil webp)_webpmux = True
-   $(usepil xcb)_xcb = True
-   $(usepil zlib)_zlib = True
-   EOF
-
-   # setup.py won't let us add the right toolchain paths but it does
-   # accept additional ones from INCLUDE and LIB so set these. You
-   # wouldn't normally need these at all as the toolchain should look
-   # here anyway but it doesn't for this setup.py.
-   export \
-   INCLUDE="${ESYSROOT}"/usr/include \
-   LIB="${ESYSROOT}"/usr/$(get_libdir)
-
-   # We have patched in this env var.
-   tc-export PKG_CONFIG
-}
-
-src_test() {
-   virtx distutils-r1_src_test
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   

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

2023-04-03 Thread Michał Górny
commit: e44115cda42f40c074510f8aaabdb33f67a804c2
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Apr  4 04:27:58 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr  4 04:48:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e44115cd

dev-python/nbconvert: Bump to 7.3.0

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

 dev-python/nbconvert/Manifest   |  1 +
 dev-python/nbconvert/nbconvert-7.3.0.ebuild | 93 +
 2 files changed, 94 insertions(+)

diff --git a/dev-python/nbconvert/Manifest b/dev-python/nbconvert/Manifest
index 17b836706ef8..4a712b9921e1 100644
--- a/dev-python/nbconvert/Manifest
+++ b/dev-python/nbconvert/Manifest
@@ -1,2 +1,3 @@
 DIST nbconvert-7.2.10.tar.gz 870708 BLAKE2B 
837b5cf70f530b8fd3d566809d8d4faefdb3c4581b46e317d218a08bb06b80fdf59dcbd6c337b7fd62a9fdff676ea1cec941a7f6641c54ebee066a1bec19ffcd
 SHA512 
078d6f1375f595f30db9eeebab55842353d549a294290a185c3817fc0bb2459c392120f089890409eec7cfe0fec7909752d20e4c55123249a4685d34655e0c05
 DIST nbconvert-7.2.9.tar.gz 870386 BLAKE2B 
aea62f29d3e696c70d77ab73cc89347a4e0c8e077e98c45331608f7117fb3c98165bf3da89e4f3bf23b9d62c618289d98c9103c5b2998ca81f65cbfda65ca536
 SHA512 
0053e0e88f279d2fe430e516bcc19f98191e9ce414546ab1ff214f37c8f1cdfc4fc101faa4b5f1d5955fdc65c87aad367f5a5f12ce5991c68c015c5083f2f30c
+DIST nbconvert-7.3.0.tar.gz 879918 BLAKE2B 
cf1414f5c6a41222f576a66ca8aa49f98d5ee4a0cd6bedcd779a6c429d46550e0435e60723255358f1ccf51b508d74e7461521889cbb7e6dfb10377175ea78a2
 SHA512 
a7030cced31ae749d9625f7fb7cc2bee17c10fcd90e83f36efed1c00758d02e47ed9d90aa907c2acbe979810a561d48d9fe854a3786b60418beacdd471b14b8f

diff --git a/dev-python/nbconvert/nbconvert-7.3.0.ebuild 
b/dev-python/nbconvert/nbconvert-7.3.0.ebuild
new file mode 100644
index ..f8c9b4fd4ccd
--- /dev/null
+++ b/dev-python/nbconvert/nbconvert-7.3.0.ebuild
@@ -0,0 +1,93 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1 multiprocessing pypi virtualx
+
+DESCRIPTION="Converting Jupyter Notebooks"
+HOMEPAGE="
+   https://nbconvert.readthedocs.io/
+   https://github.com/jupyter/nbconvert/
+   https://pypi.org/project/nbconvert/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~riscv ~x86"
+
+RDEPEND="
+   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+   dev-python/bleach[${PYTHON_USEDEP}]
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   >=dev-python/importlib_metadata-3.6[${PYTHON_USEDEP}]
+   ' 3.9)
+   >=dev-python/jinja-3.0[${PYTHON_USEDEP}]
+   >=dev-python/jupyter_core-4.7[${PYTHON_USEDEP}]
+   dev-python/jupyterlab_pygments[${PYTHON_USEDEP}]
+   >=dev-python/markupsafe-2.0[${PYTHON_USEDEP}]
+   >=dev-python/mistune-2.0.2[${PYTHON_USEDEP}]
+   >=dev-python/nbclient-0.5.0[${PYTHON_USEDEP}]
+   >=dev-python/nbformat-5.1[${PYTHON_USEDEP}]
+   dev-python/packaging[${PYTHON_USEDEP}]
+   >=dev-python/pandocfilters-1.4.1[${PYTHON_USEDEP}]
+   >=dev-python/pygments-2.4.1[${PYTHON_USEDEP}]
+   dev-python/tinycss2[${PYTHON_USEDEP}]
+   >=dev-python/traitlets-5.1.1[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/ipykernel[${PYTHON_USEDEP}]
+   >=dev-python/ipywidgets-7[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   mkdir -p share/templates/classic/static || die
+   # tries to refetch stuff even if it's already present
+   sed -e 's:css = .*:raise PermissionError("You shall not fetch!"):' \
+   -i hatch_build.py || die
+   distutils-r1_src_prepare
+}
+
+src_test() {
+   virtx distutils-r1_src_test
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # Missing pyppeteer for now
+   # TODO: Doesn't skip?
+   nbconvert/exporters/tests/test_webpdf.py
+   # Needs pyppeteer too
+   
'nbconvert/tests/test_nbconvertapp.py::TestNbConvertApp::test_webpdf_with_chromium'
+   # TODO
+   
nbconvert/exporters/tests/test_qtpng.py::TestQtPNGExporter::test_export
+   
nbconvert/tests/test_nbconvertapp.py::TestNbConvertApp::test_convert_full_qualified_name
+   
nbconvert/tests/test_nbconvertapp.py::TestNbConvertApp::test_post_processor
+   # latex failing, might be too new pandoc
+   
nbconvert/tests/test_nbconvertapp.py::TestNbConvertApp::test_filename_spaces
+   nbconvert/tests/test_nbconvertapp.py::TestNbConvertApp::test_pdf
+   # too new pandoc but we don't have old anymore
+   
nbconvert/utils/tests/test_pandoc.py::TestPandoc::test_minimal_version
+   

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

2023-04-03 Thread Michał Górny
commit: 1ee090899b55517d36ed4d8a8d23ee20d592b451
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Apr  4 04:13:57 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr  4 04:48:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ee09089

dev-python/awxkit: Bump to 22.0.0

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

 dev-python/awxkit/Manifest |  1 +
 dev-python/awxkit/awxkit-22.0.0.ebuild | 50 ++
 2 files changed, 51 insertions(+)

diff --git a/dev-python/awxkit/Manifest b/dev-python/awxkit/Manifest
index aaacd39f7afa..06fdd3b0112e 100644
--- a/dev-python/awxkit/Manifest
+++ b/dev-python/awxkit/Manifest
@@ -1,2 +1,3 @@
 DIST awx-21.13.0.gh.tar.gz 16221713 BLAKE2B 
7e875efced94fb22d782deb9583fddfa13e10079a202298d0ca05af58048d4bf70480aacec7f0e3c408c9600fff126886cb6912bdadb3f48a33932c9debd2344
 SHA512 
90628347f71663d4e13fed2cc529b3bda858d07130b74593582e82e19b8c6e6049c9ad6cdd419e4efa4bd366771e993665ef4527f5de336edd5f020c9a93ca7a
 DIST awx-21.14.0.gh.tar.gz 16484659 BLAKE2B 
3541286c899eceb3a64719b08c0456abe34d70f6e97f3ecf24c4066da1173be02e613e42ecb1193f371703f8fa55abf0eba0106ccf884e6bb53bca9f2f2d2a0e
 SHA512 
5c7efae528cdebffbce745f5e63807944db5a3a4b72880515da6d25de414d2d8c8a1ffb74f9f78f8cf72a6584437b627d8d53fd555021b943653d28427bd1021
+DIST awx-22.0.0.gh.tar.gz 16988159 BLAKE2B 
88b2e8a1f035ca34c7dfd6ddb83ca9b72824153611861286c771a0493bf6c9fefa593d9e92116e9adf1968ee39c128af318fb7d5ef542e1d4603e235a7471412
 SHA512 
5ce0ea43d758e63ace024cee1c67e19a154104508dea2b67bdb275189e1f993b3b0c782e704d319196dcaabcf09db12ff36fcf73a35e5c4fdd5076a7e0649e10

diff --git a/dev-python/awxkit/awxkit-22.0.0.ebuild 
b/dev-python/awxkit/awxkit-22.0.0.ebuild
new file mode 100644
index ..d080ce8c4341
--- /dev/null
+++ b/dev-python/awxkit/awxkit-22.0.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..10} )
+
+inherit distutils-r1
+
+MY_P=awx-${PV}
+DESCRIPTION="Command line interface for Ansible AWX"
+HOMEPAGE="
+   https://github.com/ansible/awx/
+   https://pypi.org/project/awxkit/
+"
+# no sdist, as of 22.0.0
+SRC_URI="
+   https://github.com/ansible/awx/archive/${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S="${WORKDIR}/${MY_P}/awxkit"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/urllib3[${PYTHON_USEDEP}]
+   dev-python/websocket-client[${PYTHON_USEDEP}]
+   dev-python/pyjwt[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/setuptools-scm[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+   printf '%s\n' "${PV}" > VERSION || die
+
+   sed -e 's|websocket-client==[[:digit:]\.]*|websocket-client|' \
+   -e "/'clean'/d" \
+   -i setup.py || die
+   distutils-r1_src_prepare
+}



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

2023-04-03 Thread Michał Górny
commit: fb25ff3ccef8e653c57af830f527472dcc6438c1
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Apr  4 04:23:43 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr  4 04:48:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb25ff3c

dev-python/cfn-lint: Bump to 0.76.2

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

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-0.76.2.ebuild | 63 ++
 2 files changed, 64 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 1f6cfff3aeef..509c7b42a51e 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn-lint-0.74.3.gh.tar.gz 3456672 BLAKE2B 
9cc68ddefda86ee26e900989e40c7ded067fecb35cf077d559ebcacd6838378028010630e340dd52f04750dcc12094fb800e8e48a4c9e0607645463d3ca55827
 SHA512 
aad2209fa16f717d20127b2cf47d9aba586b85ccd41caf3ad8a50a6894cc3402d929be4cf9f76530223a3d69d79d843ef0edf802e53984b5c34563cf766f8189
 DIST cfn-lint-0.75.1.gh.tar.gz 3487870 BLAKE2B 
26aaf3b24023260d7a7d8f2b89fc9135e0c34786540c21d1c1763decad42167f1a29b01859bfcb17fe5ac1fbbb08aebf04191c6d1b21b335c92e2424c986cada
 SHA512 
d4dfa9331c77f7c323b217203c470e15b4a62a86b42497934a4f9609d54a499211058cba4c561034f6c3dd6ba52ade30084e9a9d25da135289f783ed972a14ae
 DIST cfn-lint-0.76.1.gh.tar.gz 3631194 BLAKE2B 
95d395369fc230fe4e6c5d5e2a0e4bf246f1f312c6595e998004d43a7662e43ed0612a56893956fbb15e99ed197d9af2723fc1c2ea9b14fc27d8b4ff7b29e484
 SHA512 
5c65111fa7f57b268f2f3f52157d464de467cfdf16cd672e399ab7b2d23d648346c6754c45cd169f993ae15180ffafc710c9f2fa0675a7ecb1d8fc5b3d0ec5ce
+DIST cfn-lint-0.76.2.tar.gz 3402554 BLAKE2B 
e5f9405d2852e3b81140a24d94c90a3bf8c919eb6823280a0a887c6acc56ec71d991cbc76532cc49d1189a8f64750ba3e9db02fb3b46b27a28ec3468f4dd268e
 SHA512 
96351ade16308be18baace1351e263a179eacc0b3635e9baa959baadaebb6a08825f6cb9cd83cb83b8635785c7f54405bfcf00f85d6d95d101d3298919cd1ea7

diff --git a/dev-python/cfn-lint/cfn-lint-0.76.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-0.76.2.ebuild
new file mode 100644
index ..1f880341bf0e
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-0.76.2.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.62.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema_to_python-1.2.3[${PYTHON_USEDEP}]
+   >=dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.15.0[${PYTHON_USEDEP}]
+   >=dev-python/sarif_om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i setup.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



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

2023-04-03 Thread Michał Górny
commit: fd67dbb34c1933a7e607e990be23224eb676daff
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Apr  4 04:25:24 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr  4 04:48:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd67dbb3

dev-python/fakeredis: Bump to 2.10.3

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

 dev-python/fakeredis/Manifest|  1 +
 dev-python/fakeredis/fakeredis-2.10.3.ebuild | 77 
 2 files changed, 78 insertions(+)

diff --git a/dev-python/fakeredis/Manifest b/dev-python/fakeredis/Manifest
index 082c6732d649..3ca33d3bfb0e 100644
--- a/dev-python/fakeredis/Manifest
+++ b/dev-python/fakeredis/Manifest
@@ -1,3 +1,4 @@
+DIST fakeredis-2.10.3.tar.gz 94025 BLAKE2B 
faf178d53e783c4475513bf9f485b6eaefc63bc45c5ebd95ecfa1aaed982e236877230ea19526d8d12f152f1c429c5003b04abd2cc4f7ed43dbde581b07fbdf1
 SHA512 
694b1b540e8b9b32a5a44e3094b8bab307c5af400335efe9eb034c5ed161c1583d4700c08ef16991a1f03502aeb835d89b327448c3385de548dd39aafdbcc2a8
 DIST fakeredis-py-2.10.0.gh.tar.gz 160050 BLAKE2B 
9c97abe80ca683cd068e3e8616b068c166f08f1b1eb360b76c57da4b9d68396a5dd6fb4152e92dcd73a1407c50e259db54ba5edd61bc2dca774672de84fcf2d3
 SHA512 
31df18ead5e2937a7a98297f4dc08790371968dd1fa6d9dfa54eb35ab27c2a4a88e2186c252c8a630e0e70fa04e67eccb68e687f9383b6770313cf8b79f6b3bc
 DIST fakeredis-py-2.10.1.gh.tar.gz 159626 BLAKE2B 
41d28b57c369273d96a985d6b47c8b162d1fc94c508daae12048e139c9d7bb9c44b39c95eb77cfb06d24cd1b44ccaa65f3d32f4976bfdda72e319d5da1cd69c4
 SHA512 
5659f5e3a638916bfe9ad88fff45b266488aa6d4e0b503f8594308ecfb8e97b1f588b658cb01a5dbe5fc06e64a1bbb6eafaa28aed0b8761b5e15638615ea
 DIST fakeredis-py-2.10.2.gh.tar.gz 159702 BLAKE2B 
ec385c01af9e32705435148c1c61d74c14d7b22a60b6a3466f1831f557bfe997af6ee96429cfdba00a1328db3cabe1579d65411e7c2b9972e5421963cd66815b
 SHA512 
2a3a87dcbe136465ff0465585562a5b8b0bc73504f491d3ec9c6e959b6cffaa3edbaa1c2e5199138f7a49dfdec3c3da6a2ae338228a8fe21c670a82c062c544a

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



[gentoo-commits] repo/gentoo:master commit in: sec-keys/openpgp-keys-gentoo-developers/

2023-04-03 Thread Sam James
commit: 35dacf2e7008c80b9c52cdd06d8f78597e03d70c
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr  4 04:18:47 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr  4 04:19:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35dacf2e

sec-keys/openpgp-keys-gentoo-developers: add 20230403

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

 sec-keys/openpgp-keys-gentoo-developers/Manifest   |   1 +
 .../openpgp-keys-gentoo-developers-20230403.ebuild | 233 +
 2 files changed, 234 insertions(+)

diff --git a/sec-keys/openpgp-keys-gentoo-developers/Manifest 
b/sec-keys/openpgp-keys-gentoo-developers/Manifest
index ccf1110a3fa0..6c322708970e 100644
--- a/sec-keys/openpgp-keys-gentoo-developers/Manifest
+++ b/sec-keys/openpgp-keys-gentoo-developers/Manifest
@@ -1 +1,2 @@
 DIST openpgp-keys-gentoo-developers-20230327-active-devs.gpg 3134134 BLAKE2B 
31a06e5552253c494cdb8defdc81198fa55d1d2e33950415125edeff0075243ce170243188c5b016e4ecf4184c99d072d79a8b0de49a642bcdd1b4d01971ff47
 SHA512 
9b67b485a323f08786552a0e6dcc378cbe331accc2960b7121c344275629933733e5e268d3d5d96b70c40a541a1b6447c983fc11caadc1455d0b7609d9360b9c
+DIST openpgp-keys-gentoo-developers-20230403-active-devs.gpg 3033398 BLAKE2B 
233549fa600d855df1f4130224c63b10d0df3312886bef1c0486553db3025554a4fff7af104a3f0869390d53837a8d0182d830432e855273da28c753ea579d7e
 SHA512 
33264b9ef002656f5c58dc2b2ff568d01b624c68e2e42db0d388b9a99b45c2d605df0d5db7b5029c0946f524fa7168252ba87908336e6f9ad0717c20d43cd112

diff --git 
a/sec-keys/openpgp-keys-gentoo-developers/openpgp-keys-gentoo-developers-20230403.ebuild
 
b/sec-keys/openpgp-keys-gentoo-developers/openpgp-keys-gentoo-developers-20230403.ebuild
new file mode 100644
index ..19dd6bb3b88d
--- /dev/null
+++ 
b/sec-keys/openpgp-keys-gentoo-developers/openpgp-keys-gentoo-developers-20230403.ebuild
@@ -0,0 +1,233 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+inherit edo python-any-r1
+
+DESCRIPTION="Gentoo Authority Keys (GLEP 79)"
+HOMEPAGE="https://www.gentoo.org/downloads/signatures/;
+if [[ ${PV} == * ]] ; then
+   PROPERTIES="live"
+
+   BDEPEND="net-misc/curl"
+else
+   
SRC_URI="https://qa-reports.gentoo.org/output/keys/active-devs-${PV}.gpg -> 
${P}-active-devs.gpg"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~sparc ~x86"
+fi
+
+S="${WORKDIR}"
+
+LICENSE="public-domain"
+SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND+="
+   $(python_gen_any_dep 'dev-python/python-gnupg[${PYTHON_USEDEP}]')
+   sec-keys/openpgp-keys-gentoo-auth
+   test? (
+   app-crypt/gnupg
+   sys-apps/grep[pcre]
+   )
+"
+
+python_check_deps() {
+   python_has_version "dev-python/python-gnupg[${PYTHON_USEDEP}]"
+}
+
+src_unpack() {
+   if [[ ${PV} == * ]] ; then
+   curl https://qa-reports.gentoo.org/output/active-devs.gpg -o 
${P}-active-devs.gpg || die
+   else
+   default
+   fi
+}
+
+src_compile() {
+   export GNUPGHOME="${T}"/.gnupg
+
+   get_gpg_keyring_dir() {
+   if [[ ${PV} == * ]] ; then
+   echo "${WORKDIR}"
+   else
+   echo "${DISTDIR}"
+   fi
+   }
+
+   local mygpgargs=(
+   --no-autostart
+   --no-default-keyring
+   --homedir "${GNUPGHOME}"
+   )
+
+   # From verify-sig.eclass:
+   # "GPG upstream knows better than to follow the spec, so we can't
+   # override this directory.  However, there is a clean fallback
+   # to GNUPGHOME."
+   addpredict /run/user
+
+   mkdir "${GNUPGHOME}" || die
+   chmod 700 "${GNUPGHOME}" || die
+
+   # Convert the binary keyring into an armored one so we can process it
+   edo gpg "${mygpgargs[@]}" --import 
"$(get_gpg_keyring_dir)"/${P}-active-devs.gpg
+   edo gpg "${mygpgargs[@]}" --export --armor > 
"${WORKDIR}"/gentoo-developers.asc
+
+   # Now strip out the keys which are expired and/or missing a signature
+   # from our L2 developer authority key
+   edo "${EPYTHON}" "${FILESDIR}"/keyring-mangler.py \
+   "${BROOT}"/usr/share/openpgp-keys/gentoo-auth.asc \
+   "${WORKDIR}"/gentoo-developers.asc \
+   "${WORKDIR}"/gentoo-developers-sanitised.asc
+}
+
+src_test() {
+   export GNUPGHOME="${T}"/tests/.gnupg
+
+   local mygpgargs=(
+   # We don't have --no-autostart here because we nee

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

2023-04-03 Thread Michał Górny
commit: d31a04fed300741e2ffd24762cafbd819f769ecb
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Apr  4 03:39:32 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr  4 03:39:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d31a04fe

dev-python/boto3: Bump to 1.26.105

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

 dev-python/boto3/Manifest  |  1 +
 dev-python/boto3/boto3-1.26.105.ebuild | 66 ++
 2 files changed, 67 insertions(+)

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index 27d230280700..fefb75c814a3 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -3,6 +3,7 @@ DIST boto3-1.26.101.gh.tar.gz 627662 BLAKE2B 
322a6e723851464409512e9d8dd17b5f2aa
 DIST boto3-1.26.102.gh.tar.gz 627980 BLAKE2B 
d9dc7d2f62496f2e78427b7fd96f4a210afabb4a4a574a8860767c5bb48e68410cc9f2f2b64aa5e0e5337721d2f59edc7993ee32ea5e1aa5543533d3f1e18d52
 SHA512 
0988f113a519ffbd6c8a2238dc66a21d4aa87a7dda77d99a4343088b7ea03855f6da12712251502e54cf60ee0bbe066b3fbb30ad7aeb18d67ed9ca96035eb1cf
 DIST boto3-1.26.103.gh.tar.gz 629982 BLAKE2B 
1b70ecf1bc7ec297f01dfd209597719eca2e9d3a8d2a772558696c8cf4df03df5d8f9ea6d6a34beeb8d0377dd0e8ee92ebf7e3fc82b5da59f4994e84321b9e93
 SHA512 
094a5edde02137d739c9d017f9331671b0b2b5701db9bcc3c7bcb5d42457b407811d70b8ef9b24cfa30229dda028d58e6bb45a043c18b5c765afa3204ce77244
 DIST boto3-1.26.104.gh.tar.gz 630394 BLAKE2B 
8444d5c3d0c60db0a77d7d96d518ffd6d10a62075a774173e990077b6e8a29ddc202eec997c0c7f4efbad5eb4235bc47b9a8144419a9d4d48006c1240732baea
 SHA512 
cf456b10474e50d666582c585a350bf6abb80f4357938909444a6795206e513655d1f63178851c33a73bce428c0f5de5bd252707cf959a6c92aaa4f5130a1550
+DIST boto3-1.26.105.gh.tar.gz 631136 BLAKE2B 
13dea08a41a45cd7ec5eba37e1980dc8f45592f7e8058739ed55e863c14c083cbdbf1bf9380bfd2845ffcea645570db9e0e61d4ce35315fbdd5ca1f7c14acab8
 SHA512 
abaeb464cf581ffcaf450ec33468d822960ffee7f5463c187d55ddb0955ae17f1fab8f2a486a9ad6425f850f067091a01aa356cebb441049ca126b0bce198a4d
 DIST boto3-1.26.89.gh.tar.gz 615718 BLAKE2B 
3257e6efafaf139daf935385c252c10929be2a4277a8f0f192afc6dbd7cc32fa8f940a4e59ebbe25931c399dedb926a3c1848bd9cc0a7f0d377acb302eabe3b0
 SHA512 
02ee02b05023e9184f779ab8ff21afa6f7e56f7d2e883d021b2567676c5fc57cad6b475d55316a2017c2a837c41d2f5604824f440060e2f96804c5a61ccdd143
 DIST boto3-1.26.94.gh.tar.gz 617861 BLAKE2B 
908b40868735038810cf75c903bbc8bad00a6ea8776b2a5a236683f18f2185971f8a13db5349086b1aef2c4d51361c8ebf30f2d671cea7f4101c9882a59b6acf
 SHA512 
036278668afa33dfdaab9cc2e02c2c3e0596ec1c1b407767f22bc6a4cd87913f883f85430ff6a120c5e0fdd2194b70c911fe7a207bc26ed5fcd415f3754cde35
 DIST boto3-1.26.99.gh.tar.gz 625932 BLAKE2B 
961a640995abdafbf2cd73f83ed5af0e1314cebbc5dc154771204e7c16532ad4a84aed08cbd7789af30de518bf2e8bd5204e9a540a2d3a08e75222c2eeb9a68a
 SHA512 
ff726483a83a11a8c088905998af0a1a791e87503b39422811d82b3122275a24eb955636407422af7552908eee22d4c1369779a7798f09f958a8af5234c0c11d

diff --git a/dev-python/boto3/boto3-1.26.105.ebuild 
b/dev-python/boto3/boto3-1.26.105.ebuild
new file mode 100644
index ..2a4a7643203e
--- /dev/null
+++ b/dev-python/boto3/boto3-1.26.105.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1 multiprocessing
+
+DESCRIPTION="The AWS SDK for Python"
+HOMEPAGE="
+   https://github.com/boto/boto3/
+   https://pypi.org/project/boto3/
+"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/boto3;
+   inherit git-r3
+   BOTOCORE_PV=${PV}
+else
+   SRC_URI="
+   https://github.com/boto/boto3/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux"
+
+   # botocore is x.(y+3).z
+   BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)"
+fi
+
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.6.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # don't lock versions to narrow ranges
+   sed -e '/botocore/ d' \
+   -e '/jmespath/ d' \
+   -e '/s3transfer/ d' \
+   -i setup.py || die
+
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_python_prepare_all
+}
+

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

2023-04-03 Thread Michał Górny
commit: 04818a0fa0d5b42cbd231f4f8c122ffb2932e93b
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Apr  4 03:39:23 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr  4 03:39:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04818a0f

dev-python/botocore: Bump to 1.29.105

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

 dev-python/botocore/Manifest |  1 +
 dev-python/botocore/botocore-1.29.105.ebuild | 72 
 2 files changed, 73 insertions(+)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 009bb4a98390..78eeb6a7caaa 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -3,6 +3,7 @@ DIST botocore-1.29.101.gh.tar.gz 11311820 BLAKE2B 
51be1b936b407a8d29912f6891c786
 DIST botocore-1.29.102.gh.tar.gz 11312537 BLAKE2B 
6e5ac46612a692c72c7b9f3587d651a37422143dfae1fd25e999e255028e82a185dbd51ecf0a5de7d66a1ee715a6296d5d9c1f9474c210286b2df4e84946a3b8
 SHA512 
c0f0a69f81e1f2e57b3c048bae8e297e488f3e18bd2a443a6a6e56d49b97776c6b0fd7e613353eda3a7ee1f807ed717b639cc5fb685f83708f24de9d432f20fd
 DIST botocore-1.29.103.gh.tar.gz 11356652 BLAKE2B 
4b583e094c1dce78257c7a21a1b1bb5fb5705af71f6fbd5215d34bc5dc745d47d19ec2ee4e667d9430f366385aaa45e4c2b139102c1c9de129b06ecb37338bda
 SHA512 
a430fad7d729853d0ea405e772d482e6c9db60e6f580f51ddcec87816e13aa3f7ddded9bf8ce288c84c0e28f2b4b29922b1af9a0a8934123f17bc351a267a6c7
 DIST botocore-1.29.104.gh.tar.gz 11360726 BLAKE2B 
f051024952f137e42a544d60cefbcf4f359a4b68bfad332060703db6e04ff448b6b501541bc1d372aa6d9f30be6931110a02b40505d3fb2de77560bddc0e0d88
 SHA512 
c97b01240c5502a94d9afaea061e47155efb8a9c11f86778ef3c1595f40cf24f600116a5728025df3af6ed3466115fb94a046dc2e0fb2ed47a1233ffa0def027
+DIST botocore-1.29.105.gh.tar.gz 11363053 BLAKE2B 
50cdf2f1c2bc60441e3083737509415355a80604f99de8c89026c743750570af3c9571c62d9d9469ccee6934c1fbf169656510da10be69e1360f7e1456cebc68
 SHA512 
ea68dcf04d006c7324c412ca8f664aa76020f32483fc4e9842a2eed3be7db42f0e13dca60517b372b09f18ffbbf9ba9de78a19e3713c79a1fcd46babe10fd078
 DIST botocore-1.29.89.gh.tar.gz 11227280 BLAKE2B 
41a1243972e591ea23fb2eebaa5b5fb9547bbd8ccd72fc907c487fd56ebf90d8120ceee472e34a29cd2b036926bc93bda33b564b1b7083e8984daf366eced1f8
 SHA512 
356298fd3be39957dd60e6268cfd2652998e62950b9060e0774c68e158506dcfea8188059b588c08f520617af38b91eb6b71c16b92f7a71f75f33cb73e7786cf
 DIST botocore-1.29.94.gh.tar.gz 11242930 BLAKE2B 
d6abdda0ad69bfa635c2cdccefff5c0feaa27fb1a307d5cacb140ded35c246a52ebbe5657a9317bdc1441939d2bd62d5829b2ecce01c05976f56737f92fc3f62
 SHA512 
23c1fb835d492f414a0a67ac03e50ea31f6343676c7e6e8649067b11e3213f84eb068562fe5bd9a49ead9e37381ab132ac820d98fa4af805b41eaf53b0f9cb1b
 DIST botocore-1.29.99.gh.tar.gz 11285143 BLAKE2B 
ba594544fb219cec77659cfa48fb6e3a8241b92c911d9983450648ce97652cad7654181637fed8373fe49e33524f63920128afd4ca9c00bce45603b1ab917648
 SHA512 
319d70412843149aa43c8d7faeff04122d96091081d30c2da0962fadb27104a24cc147fac2c95492aa407b2f8a25ebed9e7d149c29d5d38134d836581c801bdd

diff --git a/dev-python/botocore/botocore-1.29.105.ebuild 
b/dev-python/botocore/botocore-1.29.105.ebuild
new file mode 100644
index ..491b6bbc21f2
--- /dev/null
+++ b/dev-python/botocore/botocore-1.29.105.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1 multiprocessing
+
+DESCRIPTION="Low-level, data-driven core of boto 3"
+HOMEPAGE="
+   https://github.com/boto/botocore/
+   https://pypi.org/project/botocore/
+"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/botocore;
+   inherit git-r3
+else
+   SRC_URI="
+   https://github.com/boto/botocore/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux"
+fi
+
+RDEPEND="
+   dev-python/six[${PYTHON_USEDEP}]
+   =dev-python/urllib3-1.25.4[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin deps
+   sed -i -e "s:>=.*':':" setup.py || die
+
+   # unbundle deps
+   rm -r botocore/vendored || die
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # rely on bundled six
+   tests/functional/test_six_imports.py::test_no_bare_six_imports
+   tests/functional/test_six_threading.py::test_six_thread_safety

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

2023-04-03 Thread Michał Górny
commit: 846c41d13e9d3052c55b794d37b09fce7ba99ba3
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Apr  4 03:54:26 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr  4 03:54:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=846c41d1

dev-python/nbclient: Add missing test dep on dev-python/flaky

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

 dev-python/nbclient/nbclient-0.7.3.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/nbclient/nbclient-0.7.3.ebuild 
b/dev-python/nbclient/nbclient-0.7.3.ebuild
index 1f8c2146f764..2b4347e7c776 100644
--- a/dev-python/nbclient/nbclient-0.7.3.ebuild
+++ b/dev-python/nbclient/nbclient-0.7.3.ebuild
@@ -31,6 +31,7 @@ RDEPEND="
 "
 BDEPEND="
test? (
+   dev-python/flaky[${PYTHON_USEDEP}]
dev-python/ipython[${PYTHON_USEDEP}]
dev-python/ipykernel[${PYTHON_USEDEP}]
dev-python/ipywidgets[${PYTHON_USEDEP}]



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

2023-04-03 Thread Michał Górny
commit: 957681e2238b21e1537b3b165d5ebec5d1ac9576
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Apr  4 03:39:46 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr  4 03:39:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=957681e2

app-admin/awscli: Bump to 1.27.105

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

 app-admin/awscli/Manifest   |  1 +
 app-admin/awscli/awscli-1.27.105.ebuild | 80 +
 2 files changed, 81 insertions(+)

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index edadd39833ea..14ce5efe1a18 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -3,6 +3,7 @@ DIST aws-cli-1.27.101.gh.tar.gz 2390624 BLAKE2B 
ccb01bf7d3349c709b095b7a1fe3b0e3
 DIST aws-cli-1.27.102.gh.tar.gz 2390826 BLAKE2B 
b756ebd3f73d24f3456f4a1ece5230bc91335e2fd655220cfdfb85a4d853f6e18370adbf83ac650e6e5b375c681280bea414a1411fcda4a952f3788ddc11f1f5
 SHA512 
9a4018224bf1cd22377650ac5beabf44db3069196ef7bf21880edeb2e547e85b1ef9febb3355f22957d8c69e321a3be934ccf01ae817ab2151e1e51a503ad1b1
 DIST aws-cli-1.27.103.gh.tar.gz 2392724 BLAKE2B 
294a0cfc4d5ad4a258edf38728dced04d50937cadd5418b5be8fde36f75a3c0ffd8367db19b79ecbe0adc3467a09d855625bb0e6d6fde8d43ea0a04b7255
 SHA512 
771f28f6a6c3526aeee6b6487a018093b7ac60f4ecab4dec1af70a9dbc90ebcc39b56ffab6c5f3b965e27c545accc99910bfd28639f540dccb19461ccb237623
 DIST aws-cli-1.27.104.gh.tar.gz 2392876 BLAKE2B 
860f0d8ddf4c283d7b4e98ded1c9ca66b23e6a63107be0810b1ec3a513a05196aaa3d613a0597af84f4637621b05ab30e89f221bd47478342693611be5ee306d
 SHA512 
57e26dcca866ab7c30abf0c2e15ea7ce617c0abe123a983157ab188c6c7c8d217d8515f1c9e329ae1fd53561e6aa6711e2ee50d9258fe3aadeca7a9b5de92ac4
+DIST aws-cli-1.27.105.gh.tar.gz 2393577 BLAKE2B 
03c629f92caeb1c1ac7d11c214da1160b9147c75ebd88bf82fd4ae07dde2e4e5d6a8974bda42849afaa2648b2121a723c1f3112cece81e5cc21ac4bf7929f9ce
 SHA512 
2e0f3a9f034d84f0f20c0126e243e02786222cff045c562b59a8b5170c37f4b5892641cfd589e6b40278f3b40522bf8aa6df7a06b00eefa53337bd24e52d56cb
 DIST aws-cli-1.27.89.gh.tar.gz 2382599 BLAKE2B 
3a2dae3cc1928e149dd605de1e9a350989e1cf4f813dc14466ba40c0a2747e69b6a8c5716d48f2526920798f0d341dcaa7ec0c2fd95af1b5decd3830814a243b
 SHA512 
9a90c933e5ae3f25271ec369607cb6c44adf96dc9d324205714c9790b6744d7f2c8e4c6b901d4bb4f58b6871c315e0543b3f846cf530e7f95ed31d196f8c3326
 DIST aws-cli-1.27.94.gh.tar.gz 2385480 BLAKE2B 
8712056c53d704e368f81d38779201d0ef28d0b633ac4a877957b5d6338a6daf45b5408dcf0bee3f6c48a0b10af625bfee835f63e837814b42ec3a57745e4d61
 SHA512 
48dc09f0af71eb9b9d93ffd2c008511e2379f2a47d4913c6c4296804d3ec3c30a1811564c017388329cac9261b1c3021fadc60771ca9d0952982401f5e4f7c59
 DIST aws-cli-1.27.99.gh.tar.gz 2388286 BLAKE2B 
f9be204722470fdbc5b4a1f7453370033c78800dac6d4ca63480705988e6bd02899f0646c034f39a3e87a2988f79d9d23989ba9f4036e931102ca4c0e46989b1
 SHA512 
a07ac30eab8cd8f19f35bb7d203b6ef150c585a61df63dfa54d469591e57766f3cbdab3053a155837da82d1c9f702302f4821558c7b7cb9dc985fec7a58dacf1

diff --git a/app-admin/awscli/awscli-1.27.105.ebuild 
b/app-admin/awscli/awscli-1.27.105.ebuild
new file mode 100644
index ..62c19f3a63fb
--- /dev/null
+++ b/app-admin/awscli/awscli-1.27.105.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+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 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+# botocore is x.(y+2).z
+BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 2)).$(ver_cut 3-)"
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   dev-python/colorama[${PYTHON_USEDEP}]
+   dev-python/docutils[${PYTHON_USEDEP}]
+   dev-python/rsa[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.6.0[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   !app-admin/awscli-bin
+"
+BDEPEND="
+   test? (
+   dev-python/pytest-forked[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+   # strip overzealous upper bounds on requirements
+   sed -i -e 's:,<[0-9.]*::' -e 's:==:>=:' setup.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(

[gentoo-commits] repo/gentoo:master commit in: dev-php/smarty/

2023-04-03 Thread Michael Orlitzky
commit: 526704c7f0e3ba66dd5028f1a747e6512029360d
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Tue Apr  4 00:58:51 2023 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Tue Apr  4 01:34:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=526704c7

dev-php/smarty: add 4.3.1, drop 4.3.0 (fix CVE-2023-28447).

Bug: https://bugs.gentoo.org/903620
Signed-off-by: Michael Orlitzky  gentoo.org>

 dev-php/smarty/Manifest|  2 +-
 .../smarty/{smarty-4.3.0.ebuild => smarty-4.3.1.ebuild}| 14 --
 2 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/dev-php/smarty/Manifest b/dev-php/smarty/Manifest
index 854d81f2df8c..c323682b9854 100644
--- a/dev-php/smarty/Manifest
+++ b/dev-php/smarty/Manifest
@@ -1,2 +1,2 @@
 DIST smarty-4.2.1.tar.gz 236881 BLAKE2B 
4014178cfc4411a9ded3120d0e3e977af0190bc03f6ed21bbd2c484ca8fb4e5aa79fe9c606ee13be87db94c17a00d7d0399cb04fe09c4b439b95bc7b9331d675
 SHA512 
0d55ab1d329aaa0853a1c40b5b0207d3ddc8b0c25d863a217b3c4ac8bb0a796bb60eda2919b5dda569565b03b8dd44dff67b55d8fafc005164f2848bb481d131
-DIST smarty-4.3.0.tar.gz 360023 BLAKE2B 
7f3fbeab71b9deb30242cfaf62a67380397a0ad0ca6c657186aa8150f27df46b33dbe55d32657f71f13ea6fe31d37dbfba44dee43ab21ef6906ba56e1ccdff60
 SHA512 
7db02a455ab4a6aeb69792f5cdd043a2045fa3a2045d06e1a2423cd4dae48c306be149c25567d1be92f50789e14c4d314b7bd29f3f52b74b00bfeeedc0be7ca9
+DIST smarty-4.3.1.tar.gz 361248 BLAKE2B 
b09ab14742b9ebdfd1e31ec9d2ac79016ce8869403da67ea241b735875ef25f40c2936a41bda5647ca697b708b91b02a29f5d17ebbc7d6049bf468851f0bc70f
 SHA512 
03a42007fd1c03ba502b7a2255071638e978a54e5d75d4542a033e9f490c7c41587b5593316269107fe904a7b96a1a3337bf9525e038a5bb4051cc9aef13940f

diff --git a/dev-php/smarty/smarty-4.3.0.ebuild 
b/dev-php/smarty/smarty-4.3.1.ebuild
similarity index 84%
rename from dev-php/smarty/smarty-4.3.0.ebuild
rename to dev-php/smarty/smarty-4.3.1.ebuild
index 312ca47189f6..0c5a425bf052 100644
--- a/dev-php/smarty/smarty-4.3.0.ebuild
+++ b/dev-php/smarty/smarty-4.3.1.ebuild
@@ -10,6 +10,7 @@ 
SRC_URI="https://github.com/smarty-php/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
 LICENSE="LGPL-3"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc examples"
 
 # PHP unicode support is detected at runtime, and the cached templates
 # that smarty generates depend on it. If, later on, PHP is reinstalled
@@ -18,13 +19,22 @@ KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 # functions. See bug #532618.
 RDEPEND="dev-lang/php:*[unicode]"
 
+src_prepare() {
+   default
+
+   # Prepare the docs and examples for easy dodocing.
+   rm docs/_config.yml || die
+   mv -v demo examples || die
+}
+
 src_install() {
insinto "/usr/share/php/${PN}"
doins -r libs/*
 
-   # The smarty docs and examples aren't part of the tarball,
-   # https://github.com/smarty-php/smarty/issues/799
local DOCS=( CHANGELOG.md README.md SECURITY.md )
+
+   use doc && dodoc -r docs/*
+   use examples && dodoc -r examples
einstalldocs
 }
 



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

2023-04-03 Thread Maciej Barć
commit: 6cd954f6943881965f87271c391598740bf2b446
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Apr  4 01:24:56 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Tue Apr  4 01:30:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cd954f6

app-emacs/org-mode: bump to 9.6.3

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

 app-emacs/org-mode/Manifest  |  1 +
 app-emacs/org-mode/org-mode-9.6.3.ebuild | 50 
 2 files changed, 51 insertions(+)

diff --git a/app-emacs/org-mode/Manifest b/app-emacs/org-mode/Manifest
index 58a3991b78ae..f0d4370ca660 100644
--- a/app-emacs/org-mode/Manifest
+++ b/app-emacs/org-mode/Manifest
@@ -2,3 +2,4 @@ DIST org-9.4.6.tar.gz 4729335 BLAKE2B 
b88edaf8098124b2048ce57d6005d2af0de34e9b8f
 DIST org-mode-release_9.5.5.tar.gz 2049730 BLAKE2B 
382e6585f693fd30def29da740d1329a52b4565382df90a37e3646324ee44106f1a99c2ea0c0862d77721cc9bfbec0736cb03065b59b2fdea0a68d8f8ea37c9a
 SHA512 
ce06bab17ae7944c1623f935bbad0379d06390c72c43633ba0de2bc04ad362e18d9aaae96103eeaa23f7ea9e4e00976a97a914da87fb7941a13746b1fa77f591
 DIST org-mode-release_9.6.1.tar.gz 2207262 BLAKE2B 
1e5880b9a3eab54e0a6f94cd630bff1ad00f58a24f0f46c203de01ee12c0ce652a8dd820b4a71c2d011d1cca55c08830cdf5e33410e2bccba95845ae05a20408
 SHA512 
0bf1e4879ade377276b438d7f71cfa28a75b70380db16d79fb698f7ff4f79b80684bc28a69dd23bbcd94844365a0cec36d70bd4097cc12e2b942ad6a97a5af6a
 DIST org-mode-release_9.6.2.tar.gz 2208663 BLAKE2B 
f76e48f058a2a32cb09c14041b6781c385e1267eb2c80e39d0c2b3432ff7555e27b21ce33e1e5e0c0a99ded31b6d3b3ed678e41ff00752f97d2feda8b0111911
 SHA512 
2dfbcaa8c720b628770ae3bee223c51c270220395b5d1659dc529bd60b20f7308091b565d90d53ebb9462edd6207a1652059623dc80b0bf8b2799b3beac5a2fe
+DIST org-mode-release_9.6.3.tar.gz 2208740 BLAKE2B 
77d8e7de2230a3d4b5f3e85336519de1b2d55481522bedc206c5edb2cd56963f729d1e48fe483717fd4c295c6eb1b73e9335ab6a56c2903dd9ee54e15da0a8a0
 SHA512 
4a7040bab029c8384fa8689782672887baec7eea66ea99a32fd026eddb1659fa15e6c8ba99546fb7b8a16492d1fa476542acba3adef745079f583bd0e2b834e0

diff --git a/app-emacs/org-mode/org-mode-9.6.3.ebuild 
b/app-emacs/org-mode/org-mode-9.6.3.ebuild
new file mode 100644
index ..77e4614e18c6
--- /dev/null
+++ b/app-emacs/org-mode/org-mode-9.6.3.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit elisp readme.gentoo-r1
+
+MY_P="${PN}-release_${PV}"
+DESCRIPTION="An Emacs mode for notes and project planning"
+HOMEPAGE="https://www.orgmode.org/;
+SRC_URI="https://git.savannah.gnu.org/cgit/emacs/${PN}.git/snapshot/${MY_P}.tar.gz;
+S="${WORKDIR}"/${MY_P}
+
+LICENSE="GPL-3+ FDL-1.3+ CC-BY-SA-3.0 odt-schema? ( OASIS-Open )"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="doc odt-schema"
+RESTRICT="test"
+
+BDEPEND="doc? ( virtual/texi2dvi )"
+
+SITEFILE="50${PN}-gentoo.el"
+
+src_compile() {
+   emake -j1 \
+   ORGVERSION=${PV} \
+   datadir="${EPREFIX}${SITEETC}/${PN}"
+   use doc && emake -j1 pdf card
+}
+
+src_install() {
+   emake \
+   ORGVERSION=${PV} \
+   DESTDIR="${D}" \
+   ETCDIRS="styles csl $(use odt-schema && echo schema)" \
+   lispdir="${EPREFIX}${SITELISP}/${PN}" \
+   datadir="${EPREFIX}${SITEETC}/${PN}" \
+   infodir="${EPREFIX}/usr/share/info" \
+   install
+
+   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+   dodoc README.org CONTRIBUTE.org etc/ORG-NEWS
+   use doc && dodoc doc/org.pdf doc/orgcard.pdf doc/orgguide.pdf
+
+   local DOC_CONTENTS="Org mode has a large variety of run-time 
dependencies,
+   so you may have to install one or more additional packages.
+   A non-exhaustive list of these dependencies may be found at
+   ."
+   readme.gentoo_create_doc
+}



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

2023-04-03 Thread Maciej Barć
commit: 7b7fa33a989b3b25fc2a67bf99e219e24bbf95b0
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Apr  4 00:06:22 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Tue Apr  4 01:30:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b7fa33a

app-arch/bzip3: bump to 1.3.0

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

 app-arch/bzip3/Manifest   |  1 +
 app-arch/bzip3/bzip3-1.3.0.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/app-arch/bzip3/Manifest b/app-arch/bzip3/Manifest
index ca39deedc627..3b269354ae92 100644
--- a/app-arch/bzip3/Manifest
+++ b/app-arch/bzip3/Manifest
@@ -2,3 +2,4 @@ DIST bzip3-1.1.8.tar.xz 269668 BLAKE2B 
fe85ba2ecca8e2433501c13e57856720da731b6c9
 DIST bzip3-1.2.1.tar.xz 271652 BLAKE2B 
ef4eae00d93b00dd6dcf2d3beb980c5b0466e8d1af5b6a1c1a493c1524fb91043cbafe404d9ac6907491ab5e894676b3802b572125e14e9a8be19f7ffa22abaa
 SHA512 
b20a7ea52f83a4ddfab0965e34809be66729b516688f1f04b8a21adf5c3c1ad0819dab416f3e844d88d8f52dbe098bedefe63f879c8a6322ffcb19f3f1b3d2d8
 DIST bzip3-1.2.2.tar.xz 275872 BLAKE2B 
601f0b150dee756d204c186f6ace5106fbc90189862cb1bcba7d4f2a2dd093ded64bb8feba0f214aac39ad138a23e6ef430a5e75829dd2ebab77c79d85342197
 SHA512 
476876f3949ac285e86625a9a83741308910ddce5b9449c0ca02b41d9c336f759b9702f2ce6b61243f1fde59a9ef8cf926fb2e94911828d5f39e207319bf522d
 DIST bzip3-1.2.3.tar.xz 276568 BLAKE2B 
08f762174ea565e4115cd7ee0e8d22bf5aae3f060955715cf7e0f22f388b99976baa571db501cc973fe93bcd5245e991ca149f097929336817169ea488bf8907
 SHA512 
cd83092c5f84d9491209a15a002def26bd1b1043631e4c6e90eb8e28d977da696a24c9e80994383943e104766d120acd5a7f6dc2f6892b16661ea1fe57745c53
+DIST bzip3-1.3.0.tar.xz 276724 BLAKE2B 
4b9ddd4da193cc784265eb2584804cfe7ddb55947634dab9068f7df8d0f7ee8684b3ce1cc50df355780aa8514462d23e93ff637ce2ca552f3d09b32bf1edcde2
 SHA512 
3777f6f0c337b5014b510c97ca3d19c77e7e474482d9e83143186ab593967fcec3e19163b32b03e6d8243838091f24e45eca245e35f0a6e5e713f29873ad62c4

diff --git a/app-arch/bzip3/bzip3-1.3.0.ebuild 
b/app-arch/bzip3/bzip3-1.3.0.ebuild
new file mode 100644
index ..33aa6e59599d
--- /dev/null
+++ b/app-arch/bzip3/bzip3-1.3.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="A better and stronger spiritual successor to BZip2"
+HOMEPAGE="https://github.com/kspalaiologos/bzip3;
+
+if [[ ${PV} == ** ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/kspalaiologos/${PN}.git;
+else
+   
SRC_URI="https://github.com/kspalaiologos/${PN}/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~loong ~x86"
+fi
+
+LICENSE="LGPL-3+"
+SLOT="0"
+
+src_configure() {
+   # ./configure script will default to Clang if it is found on the system,
+   # force the use of CC selected by the user with CC=$(tc-getCC)
+   econf CC=$(tc-getCC)
+}
+
+src_install() {
+   default
+
+   find "${ED}" -type f -name '*.la' -delete || die
+}



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

2023-04-03 Thread Patrick McLean
commit: 832164733706617b8db61479b858437d954e1fa9
Author: Patrick McLean  gentoo  org>
AuthorDate: Mon Apr  3 23:48:06 2023 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Mon Apr  3 23:48:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83216473

dev-util/difftastic: drop 0.43.1

Signed-off-by: Patrick McLean  gentoo.org>

 dev-util/difftastic/Manifest |   3 -
 dev-util/difftastic/difftastic-0.43.1.ebuild | 144 ---
 2 files changed, 147 deletions(-)

diff --git a/dev-util/difftastic/Manifest b/dev-util/difftastic/Manifest
index 2e32d44f4c54..85104c850f28 100644
--- a/dev-util/difftastic/Manifest
+++ b/dev-util/difftastic/Manifest
@@ -22,7 +22,6 @@ DIST crossterm_winapi-0.9.0.crate 15561 BLAKE2B 
f84604f1da9cfdd0fc69742eef8088e7
 DIST ctor-0.1.22.crate 9311 BLAKE2B 
a13fb97cf767fae19486ca8b970f1712bfcf4ec9edda40c01add4bdb7a81e9136acb1208c79763cd612160bf39b342460fecc334c6e421e7f7ff610c4bc44e2f
 SHA512 
cd7c60dae8fb19c3b10e0bf1ffbcedac90cbbd147d564335e4da2d5483f64ea3dc10ad17d7573b00958db0a72cce45f8b7bc10c32864dd943fe64df8d22b
 DIST diff-0.1.12.crate 10223 BLAKE2B 
369f305661f1da31207f3801ed1841dbce12451ac9c3e9d3736f7158ece433af9b2e42c29063e5d93bb86b1d300e503caa9c3ce7dd0b25553f91d72a9eea5298
 SHA512 
0e81331c0424e9369963e23894a6412b65a3ed4f3154ccc184fc84cf1c5985b81c586a6b34e8c6c0e5c3afba38fb15277cfd89e7f50c85bd5d8d4d24ba670d16
 DIST difflib-0.4.0.crate 7638 BLAKE2B 
57c703de0d467c997bcbedc4d6577569b3d72c612d3ccd929025a98f4bf8f72f2a0d43f3cd3bc616676c2569aed176b3c1362cfa868a4bb1197e05fe4dbce32f
 SHA512 
fcb57859424fea6958a4407061c421599fbca111357b1fe72faa65d8fb0b74425c993a24484e8414f475fa146cd8368c4f82e1ceb4e8dd9f95741149345b37a9
-DIST difftastic-0.43.1.gh.tar.gz 50571590 BLAKE2B 
fa0531961f54b7713a2cd9cbde3ffe2d853350b5802d703dc9038a712c91c8981ac3010b328c70969c756c243418183c8600a9078a17cb1ebfedec3f853f12c3
 SHA512 
49a2836c17a45b008cced7734539cf058f8b4440e056d08d39ab0277ecdeeeb45e8f15d1df1a916ab72116160f7869102a31ba7af7f414cf7b9cbb898deca76d
 DIST difftastic-0.45.0.gh.tar.gz 52126132 BLAKE2B 
0c29300660c79a1c425f9bfacc66eba9f944ce883456f931bf9054ac49bf11c0c9db1a5f9652ea774e02d067c2209c91ffa1014f192a14a11ab18612c730f1cc
 SHA512 
80c157a7d00c2a91291f5ca3b66908f05a98780b455cc420ab9192d43526fb383eea8036a42ee8042eaef6d7cd6d72b0895d3d4d8c52f2c7a30fda43e8cccf19
 DIST difftastic-0.46.0.gh.tar.gz 54963804 BLAKE2B 
c1306629203a31a5c53327a3e00a123042c32aef1ec452fa5c8792ce6e5e4480e9f6be23edfcdf1eac74413f7fa564964bcad39b0f8505139c29c75eea2cffc2
 SHA512 
fb4ebe4d2c3f377e6fa4956cabf7520272c14e97f13799eef1f92ff22eef36baf6a7cbbede858bff2f9b89e087acd3137b3d3d65a4dda620e8e23bedf2685ce9
 DIST doc-comment-0.3.3.crate 4123 BLAKE2B 
a82d1c1a7a90af6e111b5e684a1298d7eac5fd8e4bf7d5baf6c7403d26b609958716d57e51122fe7ad7626fe00a2d824dcfef3cc2fd7679fdb7b5099603de1cd
 SHA512 
e98ff9646a3612bd41bb6f278e7b6e9a0c58747f8b82524da814cf51b7f06c76ad4d65b502ac5740e818744abb295f78f15f8262d0b50ced1523f6d1a26939ba
@@ -50,7 +49,6 @@ DIST nom-7.1.1.crate 115818 BLAKE2B 
1ec3df3d9a7527f26618a9b6b976ca8ad5176d711dc7
 DIST normalize-line-endings-0.3.0.crate 5737 BLAKE2B 
935b2d20ccd37ca7469641a37aa0ae9b6872715d6ee88d568d0ee16fb76416cb1a0c585cff861825de8cef11d864b1dc1b350911c28d64e071d8fb444bbdf740
 SHA512 
f8e2a6e333b0e8972febe8b9cf058c8d899c384fd177e0b6ef1c5f94e0fa18192963970cb1a2ba80e3135a8cca66cdae6796e4d84ac6b325bb369575bdfc6eea
 DIST num-traits-0.2.15.crate 49262 BLAKE2B 
942ab170b2acce1cb40e6847f766bf810a79edd293d34f3a27864f464c16fe2b99fb13171ba429cc6d584248de879434beaadf1b231a4001b0e8389ed6c1be04
 SHA512 
5228498af0f15daeac3c9210f3e6e71cfaaeb30beea81dd37f8eb06b9592c8bf3226a47597cd8592ad4c513964a9a40f1ab2c33102ef3dfe3800d22c8d4528e8
 DIST num_cpus-1.13.1.crate 14752 BLAKE2B 
27490aeee349d944c29e50b44e9a84371030459353a9316ffaa0245ce499df4424e39c25a81be59cd0f9a19c3214c78bdc7a84b632059282be476d8f918c44d6
 SHA512 
91ffe0ec792228621d6c2d5cc544ef4744203d19fc9c86e0aad2610038c43aca0448b6c27d82979417a0f6c939ea73523303a44c28df0d1c1b8d09814d5306d9
-DIST once_cell-1.12.0.crate 31549 BLAKE2B 
72a6c2efe279abce207096dfc47d207adae34764642f742bcbddcd8ebab9f78f6c2ea7750bd670844de5f6989e4951904b5f624281c28346cb6c41c585137e91
 SHA512 
02da0e6eccee2d5246fff5e6323bd7eff0f4641801be5e5910763929a5e9d8b62c07f81001c405cc6aff03f68a14ed5bfebd9900bbdd09568bd1ab9ca9b73093
 DIST once_cell-1.17.1.crate 32856 BLAKE2B 
8bde2aaaf9ef45d1f6b8458686179f1fe9295ee8faea269e9b49779583ce26ab9dafe988c3584e841a9e5d05e28430ca967ef3b25e755f48f0120d9c99cdb7bc
 SHA512 
1302d51801e38bfee23e74c0046f1ecb1d3c27309b5fe11c2b6c99553b357db502ce1718695602f9d8b10429e8ff03f91c016d5d604957083728293824c05904
 DIST os_str_bytes-6.0.1.crate 21079 BLAKE2B 
85c4a5f450d74bae23e2d2ad1c20cc944ff93fee1ab2fb700692645586acb388d552dca2b326f7df2cc4d07f6a3bdf7aa6704833be211f392250a56786519224
 SHA512 
16035d3032d499575faf5e8114868d57826acf2b4a54e848f9101713b7965a2fecd6c486945b1c8ccc3ddacdbb95a1c6f8a74ca4fcdee24729648edc817c4472
 DIST 

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

2023-04-03 Thread Patrick McLean
commit: 47ca70d1fad5cfe5ad59c82c32b137d746425e4a
Author: Patrick McLean  gentoo  org>
AuthorDate: Mon Apr  3 23:47:56 2023 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Mon Apr  3 23:47:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47ca70d1

dev-util/difftastic: add 0.46.0

Signed-off-by: Patrick McLean  gentoo.org>

 dev-util/difftastic/Manifest |   1 +
 dev-util/difftastic/difftastic-0.46.0.ebuild | 160 +++
 2 files changed, 161 insertions(+)

diff --git a/dev-util/difftastic/Manifest b/dev-util/difftastic/Manifest
index 5ea98411f91f..2e32d44f4c54 100644
--- a/dev-util/difftastic/Manifest
+++ b/dev-util/difftastic/Manifest
@@ -24,6 +24,7 @@ DIST diff-0.1.12.crate 10223 BLAKE2B 
369f305661f1da31207f3801ed1841dbce12451ac9c
 DIST difflib-0.4.0.crate 7638 BLAKE2B 
57c703de0d467c997bcbedc4d6577569b3d72c612d3ccd929025a98f4bf8f72f2a0d43f3cd3bc616676c2569aed176b3c1362cfa868a4bb1197e05fe4dbce32f
 SHA512 
fcb57859424fea6958a4407061c421599fbca111357b1fe72faa65d8fb0b74425c993a24484e8414f475fa146cd8368c4f82e1ceb4e8dd9f95741149345b37a9
 DIST difftastic-0.43.1.gh.tar.gz 50571590 BLAKE2B 
fa0531961f54b7713a2cd9cbde3ffe2d853350b5802d703dc9038a712c91c8981ac3010b328c70969c756c243418183c8600a9078a17cb1ebfedec3f853f12c3
 SHA512 
49a2836c17a45b008cced7734539cf058f8b4440e056d08d39ab0277ecdeeeb45e8f15d1df1a916ab72116160f7869102a31ba7af7f414cf7b9cbb898deca76d
 DIST difftastic-0.45.0.gh.tar.gz 52126132 BLAKE2B 
0c29300660c79a1c425f9bfacc66eba9f944ce883456f931bf9054ac49bf11c0c9db1a5f9652ea774e02d067c2209c91ffa1014f192a14a11ab18612c730f1cc
 SHA512 
80c157a7d00c2a91291f5ca3b66908f05a98780b455cc420ab9192d43526fb383eea8036a42ee8042eaef6d7cd6d72b0895d3d4d8c52f2c7a30fda43e8cccf19
+DIST difftastic-0.46.0.gh.tar.gz 54963804 BLAKE2B 
c1306629203a31a5c53327a3e00a123042c32aef1ec452fa5c8792ce6e5e4480e9f6be23edfcdf1eac74413f7fa564964bcad39b0f8505139c29c75eea2cffc2
 SHA512 
fb4ebe4d2c3f377e6fa4956cabf7520272c14e97f13799eef1f92ff22eef36baf6a7cbbede858bff2f9b89e087acd3137b3d3d65a4dda620e8e23bedf2685ce9
 DIST doc-comment-0.3.3.crate 4123 BLAKE2B 
a82d1c1a7a90af6e111b5e684a1298d7eac5fd8e4bf7d5baf6c7403d26b609958716d57e51122fe7ad7626fe00a2d824dcfef3cc2fd7679fdb7b5099603de1cd
 SHA512 
e98ff9646a3612bd41bb6f278e7b6e9a0c58747f8b82524da814cf51b7f06c76ad4d65b502ac5740e818744abb295f78f15f8262d0b50ced1523f6d1a26939ba
 DIST either-1.6.1.crate 13641 BLAKE2B 
e5f40c40a5edb6dcb07a10bf79183cbe42438f1f70f3932dce72f6f6e91f75f24d17d82bc447507def4dad4345ffc9dd9162dde778afb253bdb1218e91887949
 SHA512 
4bfe56920e30cbc8eb4f90162db618f7dca653b42db35ab6a7045d3fd9a24ceb1778b1f79613850bdb1a87ad3794fa0d73015e46c48d513f368d8c3776fc9ddf
 DIST env_logger-0.7.1.crate 32281 BLAKE2B 
6f1894c64f301ca4b687270c911dbe230f674662aa0561b97c4d2537886e404664b5773d4e223e2018047c222a951232c3cb52ec5bddbfb6665e34c3e7ea52f5
 SHA512 
604060d2ee83ab337a2d20d6784d1b7541534d2fd9e1662fc5c709fa681672a9db5e34d00face864b56ae321962e644ebe29fbb6d68a0d556419cf5d71c6149f

diff --git a/dev-util/difftastic/difftastic-0.46.0.ebuild 
b/dev-util/difftastic/difftastic-0.46.0.ebuild
new file mode 100644
index ..f3cf8d2881e8
--- /dev/null
+++ b/dev-util/difftastic/difftastic-0.46.0.ebuild
@@ -0,0 +1,160 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# Auto-Generated by cargo-ebuild 0.5.4
+
+EAPI=8
+
+CRATES="
+   aho-corasick-0.7.18
+   ansi_term-0.12.1
+   assert_cmd-2.0.5
+   atty-0.2.14
+   autocfg-1.1.0
+   bitflags-1.3.2
+   bstr-0.2.17
+   bumpalo-3.11.1
+   bytecount-0.6.2
+   cc-1.0.78
+   cfg-if-1.0.0
+   clap-3.1.18
+   clap_lex-0.2.0
+   const_format-0.2.23
+   const_format_proc_macros-0.2.22
+   crossbeam-channel-0.5.4
+   crossbeam-deque-0.8.1
+   crossbeam-epoch-0.9.8
+   crossbeam-utils-0.8.8
+   crossterm-0.25.0
+   crossterm_winapi-0.9.0
+   ctor-0.1.22
+   diff-0.1.12
+   difflib-0.4.0
+   doc-comment-0.3.3
+   either-1.6.1
+   env_logger-0.7.1
+   fixedbitset-0.4.1
+   float-cmp-0.9.0
+   fnv-1.0.7
+   hashbrown-0.11.2
+   hermit-abi-0.1.19
+   humantime-1.3.0
+   indexmap-1.7.0
+   itertools-0.10.3
+   lazy_static-1.4.0
+   libc-0.2.139
+   libmimalloc-sys-0.1.24
+   lock_api-0.4.9
+   log-0.4.17
+   memchr-2.5.0
+   memoffset-0.6.5
+   mimalloc-0.1.28
+   minimal-lexical-0.2.1
+   mio-0.8.5
+   nom-7.1.1
+   normalize-line-endings-0.3.0
+   num-traits-0.2.15
+   num_cpus-1.13.1
+   once_cell-1.17.1
+   os_str_bytes-6.0.1
+   output_vt100-0.1.3
+   owo-colors-3.4.0
+   parking_lot-0.12.1
+   parking_lot_core-0.9.6
+   petgraph-0.6.1
+   predicates-2.1.1
+   predicates-core-1.0.3
+   predicates-tree-1.0.5
+   pretty_assertions-1.2.1
+   pretty_env_logger-0.4.0
+   proc-macro2-1.0.39
+   

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

2023-04-03 Thread Patrick McLean
commit: 8f44bb36052e26c356c1e720a2a3f887e8c15c90
Author: Patrick McLean  gentoo  org>
AuthorDate: Mon Apr  3 23:33:31 2023 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Mon Apr  3 23:33:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f44bb36

dev-util/bcc: add 0.27.0

Signed-off-by: Patrick McLean  gentoo.org>

 dev-util/bcc/Manifest  |   1 +
 dev-util/bcc/bcc-0.27.0.ebuild | 137 +
 2 files changed, 138 insertions(+)

diff --git a/dev-util/bcc/Manifest b/dev-util/bcc/Manifest
index 28364436f5d4..03fd030e60e3 100644
--- a/dev-util/bcc/Manifest
+++ b/dev-util/bcc/Manifest
@@ -1,2 +1,3 @@
 DIST bcc-0.25.0.tar.gz 4984989 BLAKE2B 
7547e3db293c1eef617b3bb58231f40a4bd3d58f425666dcb58bf77a69d74b468f07d07e01cdf2be89820318c9f3c213047b2d6dd654e08e6a60a3ecc2573252
 SHA512 
9f71f6c21d1f66054985562168d5848352f5029383e9c65c907a6f044258bc23df842cc65db20bfaaf33789e69c9b8e7b606a32dc882cbdf093b71768c8b521d
 DIST bcc-0.26.0.tar.gz 5255485 BLAKE2B 
934b63148dc1e4f017ab97681c6df69c9d5ab1db44c2bb1608644e1d91b745c25759fb1a6c5c543888e23a4e0c4a2e5738b772e0b02ea9901f8bec1a8b15cdd3
 SHA512 
394872a5780cc7651c91b584ccc13f18f64585b5843364433c042d9ded70faaf15a2e1125d51498508427b089f5bf826f13004d15a1892aada1a5f228a2a8adb
+DIST bcc-0.27.0.tar.gz 5907268 BLAKE2B 
83bdf7c82c9fec17deded76886b13d0c359bd7a534b7c7522e8c2749ab4615fd94a1a762459336a09ca2e1ee12022e144c021695b98fe4b81096fa5865df7140
 SHA512 
16df9f42444bcac3be967a43ba4183349b71e75c370957f518977051968277f9ffa8a5e3dfdb2f3bdc9b6b59b575ed82e694f5504ebc74bc0ca4cf3a4b753bfd

diff --git a/dev-util/bcc/bcc-0.27.0.ebuild b/dev-util/bcc/bcc-0.27.0.ebuild
new file mode 100644
index ..88c61b466164
--- /dev/null
+++ b/dev-util/bcc/bcc-0.27.0.ebuild
@@ -0,0 +1,137 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+LUA_COMPAT=( luajit )
+PYTHON_COMPAT=( python3_{9..11} )
+LLVM_MAX_SLOT=17
+
+inherit cmake linux-info llvm lua-single python-r1 toolchain-funcs
+
+DESCRIPTION="Tools for BPF-based Linux IO analysis, networking, monitoring, 
and more"
+HOMEPAGE="https://iovisor.github.io/bcc/;
+SRC_URI="https://github.com/iovisor/bcc/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="+lua test"
+
+REQUIRED_USE="
+   ${PYTHON_REQUIRED_USE}
+   lua? ( ${LUA_REQUIRED_USE} )
+"
+
+# tests need root access
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-libs/elfutils-0.166:=
+   >=dev-libs/libbpf-0.7.0:=[static-libs(-)]
+   sys-kernel/linux-headers
+   

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

2023-04-03 Thread Sam James
commit: d7b03c287018dc2f3a1a24bf4c24ce57362a204e
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 23:29:30 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 23:29:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7b03c28

dev-util/cmake: drop 3.26.0, 3.26.1

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

 dev-util/cmake/Manifest|   8 -
 dev-util/cmake/cmake-3.26.0.ebuild | 294 -
 dev-util/cmake/cmake-3.26.1.ebuild | 294 -
 3 files changed, 596 deletions(-)

diff --git a/dev-util/cmake/Manifest b/dev-util/cmake/Manifest
index 0212bd3797e4..3e68f61ec2db 100644
--- a/dev-util/cmake/Manifest
+++ b/dev-util/cmake/Manifest
@@ -10,14 +10,6 @@ DIST cmake-3.25.3-SHA-256.txt 1646 BLAKE2B 
2b4febaa4c486f42c773621efe5ab3ff90357
 DIST cmake-3.25.3-SHA-256.txt.asc 833 BLAKE2B 
7db637e3383915cb659b176ffc72508460ef73a245dc5ff99d9ba2649d8db0666e04ff2d428fefaa86cd14a07047bc7b7df0e0bed91ac80d9a8bb993f1d70102
 SHA512 
26f6c584d8f8bb44fc10b227f81ef3655d35140a1825270877e2be5460e4f0bfa92ca7d7186f55ef08085814c7f79e50cfc9cd7ba9880620aba25661ed1f75ac
 DIST cmake-3.25.3-docs.tar.xz 500216 BLAKE2B 
5c6474328e2bfa17f5aa39693dabb19f33ac1f6875119e41d60f97c94bf1441b9d9528e96e4dd36d5d68e711c4bf4d32fe84a454df796755eccb1483fa55e3c8
 SHA512 
6e9ce5fc545324c327d8216dbbc316bbd5966640ae2b3e17ada00926004d55df75c5d25e6590ed53a8033d9638c5b6282bedd115ddf28b27980a80e40a3cba0c
 DIST cmake-3.25.3.tar.gz 10562254 BLAKE2B 
b7ae9f129731da30f89967eac20bdfcebd9c4f6ca3b28decc2016ab18292e4b51eb5a43b5797f874e23e64e1d01eeb98b18a927035aab8edc63a069f1bfce32b
 SHA512 
ebcb5616ca418fe164863b157f67cff6e8c49b0f8f723c0bd219466211f3cfe8b93c4b3ad0fe6d2d3772881fd867b0905340945156f6d70a9ea08bfb7eb98550
-DIST cmake-3.26.0-SHA-256.txt 1646 BLAKE2B 
4d206db310af5b0305329755473d936d54adb30cc3effb91b12f37e290ada84cb5f0ead5f0e813e653b5a3918f471256ba75a5253151bc0f70dfcc5e65b8665c
 SHA512 
1fe9615b0695f4c94c1d8e963247db9354e5749fcb3abcd1605ec20bd8ff1e53ce0c18d8c1eee5d10c6b04e5a82dbdf61266ab0801267ab22573c7080ffbbd05
-DIST cmake-3.26.0-SHA-256.txt.asc 833 BLAKE2B 
cbbc54efd9e4b0242f28bbb7c6ce435fc31bd28180331537c44538600ec6470b69fe37635c5de8b55eb1eb015b51c0fb2f591b698195b27686644341ef1813b2
 SHA512 
eb81bf190fd74b2ad2cb9d35fd8248024054ec6e33b5a12ce49da23cc0fac1ec5bae48df748ad9b30680e77e9b51af5dd8e3de02e47b587670d25b372f977fcb
-DIST cmake-3.26.0-docs.tar.xz 507564 BLAKE2B 
13f0f30cd87ce10e8331573a8bb93c796b7ad2862eba6e7ca676784068931f19ac3e3758b5767f4897933cf432099899668acf0dbf132e367eaa3b54bf674cd9
 SHA512 
5e140b1a81ab24dc05851717ddd1a7d57bc3c54103328db8826ff190e6d27f5d0d35f4e07f094dec4217aaa8c497abd7c858132775955cb89560c8e080de9279
-DIST cmake-3.26.0.tar.gz 10667656 BLAKE2B 
a1c6970935e103467f0557d244fa630d6f01add9a61f4f6200c711b757b7852eceb9c96f4247c2c09f8582c19a6def0c8b632e8e56574019c630a65c6a77bdd2
 SHA512 
c9d166989abbae71002fe2fbe589c18794a0d6d2ff61fd197c473ff593066a1a17d12889cd875d63fa8824327c8ad165cb03d1f17e517dcef6b2de3b0f0ee789
-DIST cmake-3.26.1-SHA-256.txt 1646 BLAKE2B 
7f340fbf52c2b990ba983989a93ce90cbd9fa8d927fd0e74b5b27914a4e03595049627cab6bd5c8e5fd48dc919a0ba16181c9e28e31c61dd02986eff702a4e93
 SHA512 
a886911e7574c8f1e25f90abd494b9f54c06a6450141e8b742b916a6c70f0b3ab0725e2d8a86c1eb3009cfbc1731a9b273eaa8f6041530b821953ca286d02e98
-DIST cmake-3.26.1-SHA-256.txt.asc 833 BLAKE2B 
cb9ea154f921328018957660f5d655986b14d0beb09ffac7b6d5a7e60d219d99030e958510ea7ba632f786bd335dd466dadaa5e833e33e00ba52bcab5dfe0795
 SHA512 
d30c8410b6e7a411a8ed28e3adbeeafe9800859097c7adaa38ecfc6b6c601a1c6bd57df21d7208040ae8e71f6b92a0dc0f8275ce222fab73ec42e82bf5553ed3
-DIST cmake-3.26.1-docs.tar.xz 507596 BLAKE2B 
872c334051ba7b836c618ee33532eae2afd83c94a94234757a884a57b64504e071fe499d7c648cf4f8c532406928f3f59de95cdfeefc8476259ef600855ec2f4
 SHA512 
6393d7d41489c6d14deaf0192658d800ace6482c1127295c53dac90a325c10a19f1ef408c866767e710e7b725141c77ef54ac888bae24d463f7a8e3c1b06c544
-DIST cmake-3.26.1.tar.gz 10667838 BLAKE2B 
7f0f950c038300d2d5e7b70f1cb88eb693bb3a361cb61fbc838efd6208b25b8c0082b04b73926dc0ed960edaeab99d5dcf4ba525498e180471dc88055b4b57b2
 SHA512 
e631e4f2277a640015a3c3a2690f0ff68577c4d04d2c39bda0b04afc142df4514b7a813c34e3f245c229ee0d6dcaf667a0f6fd8d76785ea2ff61f5295ae85ada
 DIST cmake-3.26.2-SHA-256.txt 1646 BLAKE2B 
8b82cc9b837363e2522f4d984b7be53d795475e8f3f0e0c796dbca6da7e8b61121175efd736c437afff46656416988f83abdbb9a98cfaff8dfb65fc256c1b8cb
 SHA512 
5227027f386ac9adaf6cad7638c424a4e4ed99fa04fa53634e462e88a93b2b14dc99e0a7c18162fe438327197f9df185e83cf9e09d06d7bc4575ae11d67a7ac6
 DIST cmake-3.26.2-SHA-256.txt.asc 833 BLAKE2B 
f59a215131314c9d0a5c6659e8e287b749da4fba5de08b965734192e7787e9439e0566fd3e61b3091d7ff678bd2a8ec66e0e87f74938e77a25a34e3a7f20f07e
 SHA512 
b9187ac43687caf9bcd8d3ed3922efe4ffc30d5c9d282d0549d0f22aedd1c23d2aab158117c212febc4917d74eed89836ebdd9948cf20318dcb021ce71acb049
 DIST cmake-3.26.2-docs.tar.xz 507664 BLAKE2B 

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

2023-04-03 Thread Sam James
commit: 3cd4489942c46dda20ef4ec2f8055456375b41de
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 23:18:56 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 23:18:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cd44899

dev-db/sqlite: drop 3.41.2

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

 dev-db/sqlite/sqlite-3.41.2.ebuild | 428 -
 1 file changed, 428 deletions(-)

diff --git a/dev-db/sqlite/sqlite-3.41.2.ebuild 
b/dev-db/sqlite/sqlite-3.41.2.ebuild
deleted file mode 100644
index b57b59ba8cf1..
--- a/dev-db/sqlite/sqlite-3.41.2.ebuild
+++ /dev/null
@@ -1,428 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools flag-o-matic multilib-minimal toolchain-funcs
-
-DESCRIPTION="SQL database engine"
-HOMEPAGE="https://sqlite.org/;
-
-# On version updates, make sure to read the forum 
(https://sqlite.org/forum/forum)
-# for hints regarding test failures, backports, etc.
-if [[ ${PV} ==  ]]; then
-   S="${WORKDIR}"/${PN}
-   PROPERTIES="live"
-else
-   SRC_PV="$(printf "%u%02u%02u%02u" $(ver_rs 1- " "))"
-   DOC_PV="${SRC_PV}"
-   #DOC_PV="$(printf "%u%02u%02u00" $(ver_rs 1-3 " "))"
-
-   SRC_URI="
-   https://sqlite.org/2023/${PN}-src-${SRC_PV}.zip
-   doc? ( https://sqlite.org/2023/${PN}-doc-${DOC_PV}.zip )
-   "
-   S="${WORKDIR}/${PN}-src-${SRC_PV}"
-
-   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="public-domain"
-SLOT="3"
-IUSE="debug doc icu +readline secure-delete static-libs tcl test tools"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   sys-libs/zlib:=[${MULTILIB_USEDEP}]
-   icu? ( dev-libs/icu:=[${MULTILIB_USEDEP}] )
-   readline? ( sys-libs/readline:=[${MULTILIB_USEDEP}] )
-   tcl? ( dev-lang/tcl:=[${MULTILIB_USEDEP}] )
-   tools? ( dev-lang/tcl:= )
-"
-DEPEND="
-   ${RDEPEND}
-   test? ( >=dev-lang/tcl-8.6:0[${MULTILIB_USEDEP}] )
-"
-BDEPEND=">=dev-lang/tcl-8.6:0"
-if [[ ${PV} ==  ]]; then
-   BDEPEND+=" dev-vcs/fossil"
-else
-   BDEPEND+=" app-arch/unzip"
-fi
-
-_fossil_fetch() {
-   local distdir="${PORTAGE_ACTUAL_DISTDIR:-${DISTDIR}}"
-   local repo_id="${1}"
-   local repo_uri="${2}"
-
-   local -x FOSSIL_HOME="${HOME}"
-
-   mkdir -p "${T}/fossil/${repo_id}" || die
-   pushd "${T}/fossil/${repo_id}" > /dev/null || die
-
-   if [[ -n "${EVCS_OFFLINE}" ]]; then
-   if [[ ! -f "${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" 
]]; then
-   die "Network activity disabled using EVCS_OFFLINE and 
clone of repository missing: 
\"${distdir}/fossil-src/${repo_id}/${repo_id}.fossil\""
-   fi
-   else
-   if [[ ! -f "${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" 
]]; then
-   einfo fossil clone --verbose "${repo_uri}" 
"${repo_id}.fossil"
-   fossil clone --verbose "${repo_uri}" 
"${repo_id}.fossil" || die
-   echo
-   else
-   cp -p 
"${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" . || die
-   einfo fossil pull --repository "${repo_id}.fossil" 
--verbose "${repo_uri}"
-   fossil pull --repository "${repo_id}.fossil" --verbose 
"${repo_uri}" || die
-   echo
-   fi
-
-   (
-   addwrite "${distdir}"
-   mkdir -p "${distdir}/fossil-src/${repo_id}" || die
-   cp -p "${repo_id}.fossil" 
"${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" || die
-   )
-   fi
-
-   popd > /dev/null || die
-}
-
-_fossil_checkout() {
-   local distdir="${PORTAGE_ACTUAL_DISTDIR:-${DISTDIR}}"
-   local repo_id="${1}"
-   local branch_or_commit="${2}"
-   local target_directory="${3}"
-
-   local -x FOSSIL_HOME="${HOME}"
-
-   if [[ ! -f "${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" ]]; then
-   die "Clone of repository missing: 
\"${distdir}/fossil-src/${repo_id}/${repo_id}.fossil\""
-   fi
-
-   if [[ ! -f "${T}/fossil/${repo_id}/${repo_id}.fossil" ]]; then
-   mkdir -p "${T}/fossil/${repo_id}" || die
-   cp -p "${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" 
"${T}/fossil/${repo_id}" || die
-   fi
-
-   mkdir "${target_directory}" || die
-   pushd "${target_directory}" > /dev/null || die
-
-   einfo fossil open --quiet "${T}/fossil/${repo_id}/${repo_id}.fossil" 
"${branch_or_commit}"
-   fossil open --quiet "${T}/fossil/${repo_id}/${repo_id}.fossil" 
"${branch_or_commit}" || die
-   echo
-

[gentoo-commits] repo/gentoo:master commit in: gui-apps/foot-terminfo/

2023-04-03 Thread Arsen Arsenović
commit: dafc0ba8f16d3366fb5033d269252ac345eaf75a
Author: Arsen Arsenović  gentoo  org>
AuthorDate: Mon Apr  3 22:32:29 2023 +
Commit: Arsen Arsenović  gentoo  org>
CommitDate: Mon Apr  3 22:32:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dafc0ba8

gui-apps/foot-terminfo: add 1.14.0

Signed-off-by: Arsen Arsenović  gentoo.org>

 gui-apps/foot-terminfo/Manifest|  1 +
 gui-apps/foot-terminfo/foot-terminfo-1.14.0.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/gui-apps/foot-terminfo/Manifest b/gui-apps/foot-terminfo/Manifest
index 4b5c35a85225..21337f47ffc7 100644
--- a/gui-apps/foot-terminfo/Manifest
+++ b/gui-apps/foot-terminfo/Manifest
@@ -1,3 +1,4 @@
 DIST foot-1.12.1.tar.gz 484702 BLAKE2B 
5f3ed5923dfe2e3d110da298d4abefb331c15bb0f3db3135a4e8d481b528b3f8287fc5d8516e9d3a34b8084f6364edae93dee496d9192fe610d2c17733277451
 SHA512 
553f404b074f4372fb8cfb050f0378d1cbe1620ea8afe2e279523df3006eefd0b0ed24addca33de10cfc8109e5aaec66beccbd5f30e032bb9f2bd9b81ac798cb
 DIST foot-1.13.0.tar.gz 495396 BLAKE2B 
9acad754d47754d6161fd4024b7f6a8336cd5e6faa1112bdf390c79ecbd52f74b187544667ca8517618f05324af76da66f0320e86e8b0e178a0f63c556992edf
 SHA512 
ac7c8dc967c897f81f8eda8b0c5de17896015698ac266bc9ce898d3fdb41d0dd96762f28f433d8a31f768e0505e4c89151ef10484407f66865ea6322fa1b6705
 DIST foot-1.13.1.tar.gz 496955 BLAKE2B 
48155439cd11123320908e67a968304903f96a550b62a3aa0c8d5e2053c3b6b2d49e4f4dcbe547b3296fbd05b19385d941ba668975ca3fb3a47a9627ef3d87f8
 SHA512 
f8b0e0d801452ecae914e2535041a65c105ea132a6841b659ac28ebfbfb06f06210466fe05553349a18c50227d7f21677298ff9692c3e9062df37b47aa40f3e1
+DIST foot-1.14.0.tar.gz 509863 BLAKE2B 
fe7e26c3c70e99c00a121e1214f0003dbc8fc986a020e135e18feba515d9e194ba92a494bb33c22e20b96957e87ac5ed721511a9a104481bc24f40ceb9e0e8bd
 SHA512 
379f1acafa8b3fd600c57974d79eef1a7e8a4630015aaeb8a0c491c0903ba1cd24b4fa578880f6cf6c9a09a8566c0609f4cccff9b5f65ade409684ec704c8ce4

diff --git a/gui-apps/foot-terminfo/foot-terminfo-1.14.0.ebuild 
b/gui-apps/foot-terminfo/foot-terminfo-1.14.0.ebuild
new file mode 100644
index ..2d56410468f2
--- /dev/null
+++ b/gui-apps/foot-terminfo/foot-terminfo-1.14.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Terminfo for foot, a fast, lightweight and minimal Wayland 
terminal emulator"
+HOMEPAGE="https://codeberg.org/dnkl/foot;
+SRC_URI="https://codeberg.org/dnkl/foot/archive/${PV}.tar.gz -> 
foot-${PV}.tar.gz"
+S="${WORKDIR}/foot"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+
+RDEPEND="!>=sys-libs/ncurses-6.3[-minimal]"
+BDEPEND="sys-libs/ncurses"
+
+src_prepare() {
+   default
+   sed -i s/@default_terminfo@/foot/ foot.info || die
+}
+
+src_install() {
+   dodir /usr/share/terminfo/
+   tic -xo "${ED}"/usr/share/terminfo foot.info || die
+}



[gentoo-commits] repo/gentoo:master commit in: gui-apps/foot/

2023-04-03 Thread Arsen Arsenović
commit: ca9ba7ca8efc79f3b27661d012a0ae4305c3820b
Author: Arsen Arsenović  gentoo  org>
AuthorDate: Mon Apr  3 22:30:26 2023 +
Commit: Arsen Arsenović  gentoo  org>
CommitDate: Mon Apr  3 22:30:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca9ba7ca

gui-apps/foot: add 1.14.0

Signed-off-by: Arsen Arsenović  gentoo.org>

 gui-apps/foot/Manifest   |  1 +
 gui-apps/foot/foot-1.14.0.ebuild | 72 
 2 files changed, 73 insertions(+)

diff --git a/gui-apps/foot/Manifest b/gui-apps/foot/Manifest
index 4b5c35a85225..21337f47ffc7 100644
--- a/gui-apps/foot/Manifest
+++ b/gui-apps/foot/Manifest
@@ -1,3 +1,4 @@
 DIST foot-1.12.1.tar.gz 484702 BLAKE2B 
5f3ed5923dfe2e3d110da298d4abefb331c15bb0f3db3135a4e8d481b528b3f8287fc5d8516e9d3a34b8084f6364edae93dee496d9192fe610d2c17733277451
 SHA512 
553f404b074f4372fb8cfb050f0378d1cbe1620ea8afe2e279523df3006eefd0b0ed24addca33de10cfc8109e5aaec66beccbd5f30e032bb9f2bd9b81ac798cb
 DIST foot-1.13.0.tar.gz 495396 BLAKE2B 
9acad754d47754d6161fd4024b7f6a8336cd5e6faa1112bdf390c79ecbd52f74b187544667ca8517618f05324af76da66f0320e86e8b0e178a0f63c556992edf
 SHA512 
ac7c8dc967c897f81f8eda8b0c5de17896015698ac266bc9ce898d3fdb41d0dd96762f28f433d8a31f768e0505e4c89151ef10484407f66865ea6322fa1b6705
 DIST foot-1.13.1.tar.gz 496955 BLAKE2B 
48155439cd11123320908e67a968304903f96a550b62a3aa0c8d5e2053c3b6b2d49e4f4dcbe547b3296fbd05b19385d941ba668975ca3fb3a47a9627ef3d87f8
 SHA512 
f8b0e0d801452ecae914e2535041a65c105ea132a6841b659ac28ebfbfb06f06210466fe05553349a18c50227d7f21677298ff9692c3e9062df37b47aa40f3e1
+DIST foot-1.14.0.tar.gz 509863 BLAKE2B 
fe7e26c3c70e99c00a121e1214f0003dbc8fc986a020e135e18feba515d9e194ba92a494bb33c22e20b96957e87ac5ed721511a9a104481bc24f40ceb9e0e8bd
 SHA512 
379f1acafa8b3fd600c57974d79eef1a7e8a4630015aaeb8a0c491c0903ba1cd24b4fa578880f6cf6c9a09a8566c0609f4cccff9b5f65ade409684ec704c8ce4

diff --git a/gui-apps/foot/foot-1.14.0.ebuild b/gui-apps/foot/foot-1.14.0.ebuild
new file mode 100644
index ..4a517a0cbb60
--- /dev/null
+++ b/gui-apps/foot/foot-1.14.0.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson xdg systemd
+
+DESCRIPTION="Fast, lightweight and minimalistic Wayland terminal emulator"
+HOMEPAGE="https://codeberg.org/dnkl/foot;
+SRC_URI="https://codeberg.org/dnkl/foot/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="+grapheme-clustering"
+
+COMMON_DEPEND="
+   dev-libs/wayland
+   media-libs/fcft
+   media-libs/fontconfig
+   x11-libs/libxkbcommon
+   x11-libs/pixman
+   grapheme-clustering? (
+   dev-libs/libutf8proc:=
+   media-libs/fcft[harfbuzz]
+   )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-libs/tllist
+   dev-libs/wayland-protocols
+"
+RDEPEND="
+   ${COMMON_DEPEND}
+   || (
+   >=sys-libs/ncurses-6.3[-minimal]
+   ~gui-apps/foot-terminfo-${PV}
+   )
+"
+BDEPEND="
+   app-text/scdoc
+   dev-util/wayland-scanner
+"
+
+src_prepare() {
+   default
+   # disable the systemd dep, we install the unit file manually
+   sed -i "s/systemd', required: false)$/', required: false)/" 
"${S}"/meson.build || die
+}
+
+src_configure() {
+   local emesonargs=(
+   $(meson_feature grapheme-clustering)
+   -Dthemes=true
+   -Dime=true
+   -Dterminfo=disabled
+   )
+   meson_src_configure
+
+   sed 's|@bindir@|/usr/bin|g' "${S}/"/foot-ser...@.service.in > 
foot-server@.service
+}
+
+src_install() {
+   local DOCS=( CHANGELOG.md README.md LICENSE )
+   meson_src_install
+
+   # foot unconditionally installs CHANGELOG.md, README.md and LICENSE.
+   # we handle this via DOCS and dodoc instead.
+   rm -r "${ED}/usr/share/doc/${PN}" || die
+   systemd_douserunit foot-server@.service "${S}"/foot-server@.socket
+}



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

2023-04-03 Thread Nicolas Bock
commit: 2f160856725aa69c575c4928223e43dfe97d8337
Author: Oliver Freyermuth  googlemail  com>
AuthorDate: Sat Mar 25 19:17:15 2023 +
Commit: Nicolas Bock  gentoo  org>
CommitDate: Mon Apr  3 22:07:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f160856

sys-cluster/charliecloud: add version 0.32

Also, add app-containers/podman as optfeature.

Closes: https://github.com/gentoo/gentoo/pull/30343
Signed-off-by: Oliver Freyermuth  googlemail.com>
Signed-off-by: Nicolas Bock  gentoo.org>

 sys-cluster/charliecloud/Manifest| 1 +
 .../charliecloud/{charliecloud-.ebuild => charliecloud-0.32.ebuild}  | 1 +
 sys-cluster/charliecloud/charliecloud-.ebuild| 1 +
 3 files changed, 3 insertions(+)

diff --git a/sys-cluster/charliecloud/Manifest 
b/sys-cluster/charliecloud/Manifest
index 811aae998e40..3780d3e7e7ed 100644
--- a/sys-cluster/charliecloud/Manifest
+++ b/sys-cluster/charliecloud/Manifest
@@ -1,2 +1,3 @@
 DIST charliecloud-0.30.tar.gz 524870 BLAKE2B 
0eadb4abda47554117aa657c3335d0ad95c71a3ccae67af000beeb8e375058002821783824142208ab58dcf7a62141d1eee45ac4241fe53cd2b206bb10b4
 SHA512 
a7188594482b712521930b141e10a981f7536b979f14c3a206f02895f8404a9095b17fc6764f937bdb466624ca6074cc0cbc84f33d59b4453b55be5691f4fbd4
 DIST charliecloud-0.31.tar.gz 534662 BLAKE2B 
08f95f4e37e4de3590344f14cf1ce6e502af414806cc625b8b4be454c1e1e9611d40e599828033a08dfba8ff6fa6fbcee107f19c38ce247addace6a91876dea8
 SHA512 
9fdcabbf533ab42556bcd8552c42dce3096dffd1f863e2a7a2e87a4596e1df601d55e56fde48cfd88fac62b31bad4257d1b1cdbb9a82df3e32ad4b5f1842307e
+DIST charliecloud-0.32.tar.gz 549184 BLAKE2B 
5d574ccf2fb36b0acf4f436099ba8344b5d9058d5f79abb8d56082d86b2f9e7207052009b2d49ed50eaede7411796804944fbe11c0d7bcf21f2d62ba01b2c28f
 SHA512 
c32362a219fbe7ec298ac314f58a17e0e6972a3436f66a0243a77c8c05007e6fea3ac8d4ddc15274737eacf3ba32601c0198fc5a39bccb4017d675a149366aee

diff --git a/sys-cluster/charliecloud/charliecloud-.ebuild 
b/sys-cluster/charliecloud/charliecloud-0.32.ebuild
similarity index 97%
copy from sys-cluster/charliecloud/charliecloud-.ebuild
copy to sys-cluster/charliecloud/charliecloud-0.32.ebuild
index b0763f12b55c..7e84cbf18286 100644
--- a/sys-cluster/charliecloud/charliecloud-.ebuild
+++ b/sys-cluster/charliecloud/charliecloud-0.32.ebuild
@@ -81,6 +81,7 @@ pkg_postinst() {
elog "Various builders are supported, as alternative to the internal 
ch-image."
optfeature "Building with Buildah" app-containers/buildah
optfeature "Building with Docker" app-containers/docker
+   optfeature "Building with Podman" app-containers/podman
optfeature "Progress bars during long operations" sys-apps/pv
optfeature "Pack and unpack squashfs images" sys-fs/squashfs-tools
optfeature "Mount and umount squashfs images" sys-fs/squashfuse

diff --git a/sys-cluster/charliecloud/charliecloud-.ebuild 
b/sys-cluster/charliecloud/charliecloud-.ebuild
index b0763f12b55c..7e84cbf18286 100644
--- a/sys-cluster/charliecloud/charliecloud-.ebuild
+++ b/sys-cluster/charliecloud/charliecloud-.ebuild
@@ -81,6 +81,7 @@ pkg_postinst() {
elog "Various builders are supported, as alternative to the internal 
ch-image."
optfeature "Building with Buildah" app-containers/buildah
optfeature "Building with Docker" app-containers/docker
+   optfeature "Building with Podman" app-containers/podman
optfeature "Progress bars during long operations" sys-apps/pv
optfeature "Pack and unpack squashfs images" sys-fs/squashfs-tools
optfeature "Mount and umount squashfs images" sys-fs/squashfuse



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

2023-04-03 Thread Sam James
commit: bd10c614994c083dd8087e4b77008c3e60353ff8
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 22:04:54 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 22:05:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd10c614

net-misc/trurl: new package, add 0.2, add 

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

 net-misc/trurl/Manifest  |  1 +
 net-misc/trurl/metadata.xml  | 11 +++
 net-misc/trurl/trurl-0.2.ebuild  | 38 ++
 net-misc/trurl/trurl-.ebuild | 38 ++
 4 files changed, 88 insertions(+)

diff --git a/net-misc/trurl/Manifest b/net-misc/trurl/Manifest
new file mode 100644
index ..47c21657781a
--- /dev/null
+++ b/net-misc/trurl/Manifest
@@ -0,0 +1 @@
+DIST trurl-0.2.tar.gz 9095 BLAKE2B 
1fab191158ca914c6a8e561095edc5329f7b565849dc1add85d17c05062f46fa82160bc6595c16e28a216821ffab7944edbce3be4a38895191f3c901ccef611f
 SHA512 
e6ad68183acefb09985b453d0bdc7d0afe9e4c916c4e32fe67cee9afd23aa437e0b538cdc9456bc2ed93dc8996c9c64efeeff74a1415f044d0c1e52d0f5f00c7

diff --git a/net-misc/trurl/metadata.xml b/net-misc/trurl/metadata.xml
new file mode 100644
index ..9c4ccfbaf759
--- /dev/null
+++ b/net-misc/trurl/metadata.xml
@@ -0,0 +1,11 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   s...@gentoo.org
+   Sam James
+   
+   
+   curl/trurl
+   
+

diff --git a/net-misc/trurl/trurl-0.2.ebuild b/net-misc/trurl/trurl-0.2.ebuild
new file mode 100644
index ..d746c034e362
--- /dev/null
+++ b/net-misc/trurl/trurl-0.2.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="Command line tool for URL parsing and manipulation"
+HOMEPAGE="https://daniel.haxx.se/blog/2023/04/03/introducing-trurl/ 
https://github.com/curl/trurl;
+
+if [[ ${PV} ==  ]] ; then
+   EGIT_REPO_URI="https://github.com/curl/trurl;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/curl/trurl/archive/refs/tags/${P}.tar.gz;
+   S="${WORKDIR}"/${PN}-${P}
+
+   KEYWORDS="~amd64"
+fi
+
+LICENSE="curl"
+SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND=">=net-misc/curl-7.62.0"
+RDEPEND="${DEPEND}"
+BDEPEND="test? ( dev-lang/perl )"
+
+src_compile() {
+   tc-export CC
+
+   default
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install
+}

diff --git a/net-misc/trurl/trurl-.ebuild b/net-misc/trurl/trurl-.ebuild
new file mode 100644
index ..d746c034e362
--- /dev/null
+++ b/net-misc/trurl/trurl-.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="Command line tool for URL parsing and manipulation"
+HOMEPAGE="https://daniel.haxx.se/blog/2023/04/03/introducing-trurl/ 
https://github.com/curl/trurl;
+
+if [[ ${PV} ==  ]] ; then
+   EGIT_REPO_URI="https://github.com/curl/trurl;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/curl/trurl/archive/refs/tags/${P}.tar.gz;
+   S="${WORKDIR}"/${PN}-${P}
+
+   KEYWORDS="~amd64"
+fi
+
+LICENSE="curl"
+SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND=">=net-misc/curl-7.62.0"
+RDEPEND="${DEPEND}"
+BDEPEND="test? ( dev-lang/perl )"
+
+src_compile() {
+   tc-export CC
+
+   default
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install
+}



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

2023-04-03 Thread Sam James
commit: 01e2d0de507c55d7680c907b4ecadc45222d99b2
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 21:39:58 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 21:40:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01e2d0de

dev-java/javax-servlet-api: Stabilize 2.2 ppc64, #903725

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

 dev-java/javax-servlet-api/javax-servlet-api-2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/javax-servlet-api/javax-servlet-api-2.2.ebuild 
b/dev-java/javax-servlet-api/javax-servlet-api-2.2.ebuild
index ae2d0df2f7c8..767cc97af6f2 100644
--- a/dev-java/javax-servlet-api/javax-servlet-api-2.2.ebuild
+++ b/dev-java/javax-servlet-api/javax-servlet-api-2.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://repo1.maven.org/maven2/javax/servlet/servlet-api/${PV}/servlet-
 
 LICENSE="CDDL GPL-2"
 SLOT="2.2"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ppc64 ~x86"
 
 RDEPEND=">=virtual/jre-1.8:*"
 DEPEND=">=virtual/jdk-1.8:*"



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

2023-04-03 Thread Sam James
commit: 14b1ba02530944e4c96e7f9ed5ffa0c54bc7670d
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 21:40:02 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 21:40:11 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14b1ba02

net-misc/ytmdl: Stabilize 2023.2.28 amd64, #903740

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

 net-misc/ytmdl/ytmdl-2023.2.28.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/ytmdl/ytmdl-2023.2.28.ebuild 
b/net-misc/ytmdl/ytmdl-2023.2.28.ebuild
index 78b9f91f1a14..e0515985d47a 100644
--- a/net-misc/ytmdl/ytmdl-2023.2.28.ebuild
+++ b/net-misc/ytmdl/ytmdl-2023.2.28.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://ytmdl.deepjyoti30.dev/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND="
>=net-misc/yt-dlp-2022.3.8.2[${PYTHON_USEDEP}]



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

2023-04-03 Thread Sam James
commit: 9ed22fb8a5bf236b14fe16abbc8bc3c5f337c880
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 21:39:54 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 21:40:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ed22fb8

dev-java/byte-buddy: Stabilize 1.14.0 x86, #903720

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

 dev-java/byte-buddy/byte-buddy-1.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/byte-buddy/byte-buddy-1.14.0.ebuild 
b/dev-java/byte-buddy/byte-buddy-1.14.0.ebuild
index e687baa0209f..24240d077be8 100644
--- a/dev-java/byte-buddy/byte-buddy-1.14.0.ebuild
+++ b/dev-java/byte-buddy/byte-buddy-1.14.0.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/raphw/byte-buddy/archive/${P}.tar.gz;
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ppc64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 ppc64 x86"
 
 DEPEND="
>=virtual/jdk-11:*



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

2023-04-03 Thread Sam James
commit: 46552e228474a08a7969f1c6a8f22b382bd024c8
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 21:39:55 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 21:40:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46552e22

dev-java/fop: Stabilize 2.8 ppc64, #903725

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

 dev-java/fop/fop-2.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/fop/fop-2.8.ebuild b/dev-java/fop/fop-2.8.ebuild
index 0f57b74075c1..71cd343177d5 100644
--- a/dev-java/fop/fop-2.8.ebuild
+++ b/dev-java/fop/fop-2.8.ebuild
@@ -19,7 +19,7 @@ S="${WORKDIR}/fop-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="2.8"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ppc64 ~x86"
 
 CP_DEPEND="
dev-java/batik:1.16



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

2023-04-03 Thread Sam James
commit: e7cf5658f674a586f1fe12c0cb47b732913f2941
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 21:39:57 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 21:40:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7cf5658

dev-java/batik: Stabilize 1.16-r1 ppc64, #903725

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

 dev-java/batik/batik-1.16-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/batik/batik-1.16-r1.ebuild 
b/dev-java/batik/batik-1.16-r1.ebuild
index 1b2a6dfc4602..571c9b193034 100644
--- a/dev-java/batik/batik-1.16-r1.ebuild
+++ b/dev-java/batik/batik-1.16-r1.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/batik-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="1.16"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ppc64 ~x86"
 
 CP_DEPEND="
dev-java/jacl:0



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

2023-04-03 Thread Sam James
commit: a021b2286c0256bfb61623bc485cd337e2489254
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 21:40:00 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 21:40:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a021b228

app-admin/rsyslog: Stabilize 8.2302.0 x86, #903737

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

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

diff --git a/app-admin/rsyslog/rsyslog-8.2302.0.ebuild 
b/app-admin/rsyslog/rsyslog-8.2302.0.ebuild
index 0f230e8756c8..6a9e59bbe1ed 100644
--- a/app-admin/rsyslog/rsyslog-8.2302.0.ebuild
+++ b/app-admin/rsyslog/rsyslog-8.2302.0.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == "" ]]; then
 
inherit git-r3
 else
-   KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~ppc64 ~riscv ~sparc ~x86"
+   KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~ppc64 ~riscv ~sparc x86"
 
SRC_URI="
https://www.rsyslog.com/files/download/${PN}/${P}.tar.gz



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

2023-04-03 Thread Sam James
commit: 37e108f367687b5af0ba351955fb93fa3b8bc020
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 21:39:59 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 21:40:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37e108f3

app-admin/rsyslog: Stabilize 8.2302.0 arm, #903737

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

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

diff --git a/app-admin/rsyslog/rsyslog-8.2302.0.ebuild 
b/app-admin/rsyslog/rsyslog-8.2302.0.ebuild
index 862d4e3f782f..0f230e8756c8 100644
--- a/app-admin/rsyslog/rsyslog-8.2302.0.ebuild
+++ b/app-admin/rsyslog/rsyslog-8.2302.0.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == "" ]]; then
 
inherit git-r3
 else
-   KEYWORDS="~amd64 ~arm arm64 ~hppa ~ia64 ~ppc64 ~riscv ~sparc ~x86"
+   KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~ppc64 ~riscv ~sparc ~x86"
 
SRC_URI="
https://www.rsyslog.com/files/download/${PN}/${P}.tar.gz



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

2023-04-03 Thread Sam James
commit: 5e7d548bdda6414ead0cf2a8005e889cc3570234
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 21:39:52 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 21:40:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e7d548b

dev-java/byte-buddy: Stabilize 1.14.0 ppc64, #903720

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

 dev-java/byte-buddy/byte-buddy-1.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/byte-buddy/byte-buddy-1.14.0.ebuild 
b/dev-java/byte-buddy/byte-buddy-1.14.0.ebuild
index a47a10e15c2f..e687baa0209f 100644
--- a/dev-java/byte-buddy/byte-buddy-1.14.0.ebuild
+++ b/dev-java/byte-buddy/byte-buddy-1.14.0.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/raphw/byte-buddy/archive/${P}.tar.gz;
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 ppc64 ~x86"
 
 DEPEND="
>=virtual/jdk-11:*



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

2023-04-03 Thread William Hubbs
commit: 5b60721a2aed9aa29324d298e7d95c281a5eb622
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Apr  3 21:20:51 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Apr  3 21:21:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b60721a

sys-apps/openrc: fix indentation

Signed-off-by: William Hubbs  gentoo.org>

 sys-apps/openrc/openrc-0.46.ebuild | 4 ++--
 sys-apps/openrc/openrc-.ebuild | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys-apps/openrc/openrc-0.46.ebuild 
b/sys-apps/openrc/openrc-0.46.ebuild
index 1e7df85b3c5f..f054a2c63923 100644
--- a/sys-apps/openrc/openrc-0.46.ebuild
+++ b/sys-apps/openrc/openrc-0.46.ebuild
@@ -57,8 +57,8 @@ PDEPEND="netifrc? ( net-misc/netifrc )"
 
 src_configure() {
local emesonargs=(
-   $(meson_feature audit)
-   "-Dbranding=\"Gentoo Linux\""
+   $(meson_feature audit)
+   "-Dbranding=\"Gentoo Linux\""
$(meson_use newnet)
-Dos=Linux
$(meson_use pam)

diff --git a/sys-apps/openrc/openrc-.ebuild 
b/sys-apps/openrc/openrc-.ebuild
index ade72444e317..11d77ecda370 100644
--- a/sys-apps/openrc/openrc-.ebuild
+++ b/sys-apps/openrc/openrc-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -57,8 +57,8 @@ PDEPEND="netifrc? ( net-misc/netifrc )"
 
 src_configure() {
local emesonargs=(
-   $(meson_feature audit)
-   "-Dbranding=\"Gentoo Linux\""
+   $(meson_feature audit)
+   "-Dbranding=\"Gentoo Linux\""
$(meson_use newnet)
-Dos=Linux
$(meson_use pam)



[gentoo-commits] proj/releng:master commit in: releases/specs/hppa/

2023-04-03 Thread Andreas K. Hüttel
commit: 42826cf6d1ed4358730069eba7d0a5dce3897a2c
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon Apr  3 21:04:08 2023 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Mon Apr  3 21:04:26 2023 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=42826cf6

hppa netboot: add some Gnus

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

 releases/specs/hppa/netboot-hppa32.spec | 1 +
 releases/specs/hppa/netboot-hppa64.spec | 1 +
 2 files changed, 2 insertions(+)

diff --git a/releases/specs/hppa/netboot-hppa32.spec 
b/releases/specs/hppa/netboot-hppa32.spec
index 98d9a097..a0df1c64 100644
--- a/releases/specs/hppa/netboot-hppa32.spec
+++ b/releases/specs/hppa/netboot-hppa32.spec
@@ -27,6 +27,7 @@ netboot/use:
  ssl
  unicode
  xml
+ gnu # for app-alternatives/cpio
 
 netboot/packages:
sys-boot/palo

diff --git a/releases/specs/hppa/netboot-hppa64.spec 
b/releases/specs/hppa/netboot-hppa64.spec
index 36bdb99e..c5d7718a 100644
--- a/releases/specs/hppa/netboot-hppa64.spec
+++ b/releases/specs/hppa/netboot-hppa64.spec
@@ -37,6 +37,7 @@ netboot/use:
  ssl
  unicode
  xml
+ gnu # for app-alternatives/cpio
 
 netboot/packages:
sys-boot/palo



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

2023-04-03 Thread Andreas K. Hüttel
commit: 4396bae370c0b392ec4471685e2baf6da47f8f6c
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon Apr  3 20:39:07 2023 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Mon Apr  3 20:39:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4396bae3

sci-visualization/gwyddion: drop 2.60

Closes: https://bugs.gentoo.org/851663
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 sci-visualization/gwyddion/Manifest |  1 -
 sci-visualization/gwyddion/gwyddion-2.60.ebuild | 84 -
 2 files changed, 85 deletions(-)

diff --git a/sci-visualization/gwyddion/Manifest 
b/sci-visualization/gwyddion/Manifest
index f0a82e062181..140a0b49ce44 100644
--- a/sci-visualization/gwyddion/Manifest
+++ b/sci-visualization/gwyddion/Manifest
@@ -1,2 +1 @@
-DIST gwyddion-2.60.tar.xz 4973404 BLAKE2B 
6ded40f34bfcd70db2e897abc1f07b070aca78e08c90661ee4fe281d19f16337ca81b5a4e2adaeb29e1870e8194eb77976910a54248842c8474864065d64defd
 SHA512 
e568df77ef580aaedfcdd1f746a78f3ca93676a07a331fc6e70f997780bb403d1c3967aa93440c7fa1f010bd01f5376700c869a38dacaf1f98b075c4c950cf54
 DIST gwyddion-2.61.tar.xz 4982092 BLAKE2B 
e4949558c52d2a6e97415b65e6816061c117868bdd2f39b341c3f740500f71dd38500323a389058b65f9c30feb9d5fd1e93bc29881b464cdb66981639fe280ed
 SHA512 
c2fff49d52e4c439bf96e68be3534948c1fd48ade9b1e59e2d2d7d607170b5e7ce09e9cde3873ecca526de1561b028f39785dc363186f9f3d4ef0d259d313675

diff --git a/sci-visualization/gwyddion/gwyddion-2.60.ebuild 
b/sci-visualization/gwyddion/gwyddion-2.60.ebuild
deleted file mode 100644
index 1b65cd80be57..
--- a/sci-visualization/gwyddion/gwyddion-2.60.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools xdg
-
-DESCRIPTION="Framework for Scanning Mode Microscopy data analysis"
-HOMEPAGE="http://gwyddion.net/;
-SRC_URI="http://gwyddion.net/download/${PV}/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="bzip2 doc fits jansson hdf5 nls openexr openmp perl ruby sourceview 
unique xml X zlib"
-
-RDEPEND="
-   >=dev-libs/glib-2.32
-   dev-libs/libzip
-   media-libs/libpng:0=
-   >=sci-libs/fftw-3.1:3.0=[openmp?]
-   virtual/libiconv
-   virtual/libintl
-   x11-libs/cairo
-   >=x11-libs/gtk+-2.18:2
-   x11-libs/libXmu
-   x11-libs/pango
-   bzip2? ( app-arch/bzip2 )
-   fits? ( sci-libs/cfitsio[bzip2?] )
-   jansson? ( dev-libs/jansson )
-   hdf5? ( sci-libs/hdf5[zlib?] )
-   openexr? ( media-libs/openexr:= )
-   perl? ( dev-lang/perl:= )
-   ruby? ( dev-ruby/narray )
-   unique? ( dev-libs/libunique:3 )
-   sourceview? ( x11-libs/gtksourceview:2.0 )
-   xml? ( dev-libs/libxml2:2 )
-   zlib? ( sys-libs/zlib )
-"
-
-DEPEND="${RDEPEND}"
-BDEPEND="
-   virtual/pkgconfig
-   doc? ( dev-util/gtk-doc )
-"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-2.60-automagic.patch"
-)
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-# There are python bindings (--enable-pygwy) but they are py2 only
-# 3D opengl rendering requires deprecated GTK-2 x11-libs/gtkglext
-src_configure() {
-   # hack for bug 741840
-   use doc && export GTK_DOC_PATH=/usr/share/gtk-doc
-
-   econf \
-   --disable-rpath \
-   --without-kde4-thumbnailer \
-   $(use_enable doc gtk-doc) \
-   $(use_enable openmp) \
-   $(use_enable nls) \
-   --disable-pygwy \
-   --without-python \
-   $(use_with bzip2) \
-   $(use_with fits cfitsio) \
-   $(use_with hdf5) \
-   $(use_with jansson) \
-   $(use_with perl) \
-   $(use_with ruby) \
-   $(use_with openexr exr) \
-   --without-gl \
-   $(use_with sourceview gtksourceview) \
-   $(use_with unique) \
-   $(use_with xml libxml2) \
-   $(use_with X x) \
-   $(use_with zlib) \
-   --with-zip=libzip
-}



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/labone/

2023-04-03 Thread Andreas K. Hüttel
commit: 4bc6ac52f670b36d747cee528cfe61e10ee2576b
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon Apr  3 20:36:14 2023 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Mon Apr  3 20:36:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bc6ac52

sci-electronics/labone: add postinst and postrm

Closes: https://bugs.gentoo.org/843308
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 ...ne-21.08.20515-r1.ebuild => labone-21.08.20515-r2.ebuild} | 12 +++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/sci-electronics/labone/labone-21.08.20515-r1.ebuild 
b/sci-electronics/labone/labone-21.08.20515-r2.ebuild
similarity index 95%
rename from sci-electronics/labone/labone-21.08.20515-r1.ebuild
rename to sci-electronics/labone/labone-21.08.20515-r2.ebuild
index 0c0c263143ff..679237f6487e 100644
--- a/sci-electronics/labone/labone-21.08.20515-r1.ebuild
+++ b/sci-electronics/labone/labone-21.08.20515-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -83,3 +83,13 @@ src_install() {
 
udev_dorules Installer/udev/55-zhinst.rules
 }
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   udev_reload
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   udev_reload
+}



[gentoo-commits] repo/proj/guru:dev commit in: dev-embedded/yosys/

2023-04-03 Thread Tony Olagbaiye
commit: bb0a9346b2b208b584e0451180aa5abafcdc0549
Author: Tony Olagbaiye  fron  io>
AuthorDate: Mon Apr  3 20:29:15 2023 +
Commit: Tony Olagbaiye  fron  io>
CommitDate: Mon Apr  3 20:29:57 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bb0a9346

dev-embedded/yosys: enable py3.10, py3.11

Signed-off-by: Tony Olagbaiye  fron.io>

 dev-embedded/yosys/yosys-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-embedded/yosys/yosys-.ebuild 
b/dev-embedded/yosys/yosys-.ebuild
index 2c270f8c6..7fc925bc9 100644
--- a/dev-embedded/yosys/yosys-.ebuild
+++ b/dev-embedded/yosys/yosys-.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=(  python3_9 )
+PYTHON_COMPAT=( python3_9 python3_10 python3_11 )
 
 inherit git-r3 python-r1 multilib
 



[gentoo-commits] repo/gentoo:master commit in: app-backup/tsm/

2023-04-03 Thread Andreas K. Hüttel
commit: f2fe312522f859a37f49356030daf317ad32fdf6
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon Apr  3 20:16:41 2023 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Mon Apr  3 20:17:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2fe3125

app-backup/tsm: update HOMEPAGE

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

 app-backup/tsm/tsm-8.1.13.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-backup/tsm/tsm-8.1.13.3.ebuild 
b/app-backup/tsm/tsm-8.1.13.3.ebuild
index a7fb3824f621..53fe1ddcce52 100644
--- a/app-backup/tsm/tsm-8.1.13.3.ebuild
+++ b/app-backup/tsm/tsm-8.1.13.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -6,7 +6,7 @@ EAPI=8
 inherit readme.gentoo-r1 rpm systemd pax-utils
 
 DESCRIPTION="IBM Spectrum Protect (former Tivoli Storage Manager) 
Backup/Archive Client, API"
-HOMEPAGE="https://www.ibm.com/us-en/marketplace/data-protection-and-recovery;
+HOMEPAGE="https://www.ibm.com/docs/en/spectrum-protect;
 
 MY_PV_MAJOR=$(ver_cut 1)
 MY_PV_MINOR=$(ver_cut 2)



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

2023-04-03 Thread Georgy Yakovlev
commit: 102d9b22dc3c74927226fe3fa7b3a39eb4b1a012
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Apr  3 20:12:31 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Apr  3 20:12:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=102d9b22

dev-libs/libdispatch: add USE=test

build system unconditionally was evaluating BUILD_TESTING as true

this leads to build failures in one of the test deps on some arches.

/usr/bin/powerpc64le-unknown-linux-gnu-ld.bfd: 
tests/libbsdtests.a(bsdtests.c.o): in function `test_ptr_null_format':
bsdtests.c:(.text+0x1d8): undefined reference to `vsnprintf.inline'
/usr/bin/powerpc64le-unknown-linux-gnu-ld.bfd: 
tests/libbsdtests.a(bsdtests.c.o): in function `test_ptr_notnull_format':
bsdtests.c:(.text+0x478): undefined reference to `vsnprintf.inline'
/usr/bin/powerpc64le-unknown-linux-gnu-ld.bfd: 
tests/libbsdtests.a(bsdtests.c.o): in function `test_ptr_format':
bsdtests.c:(.text+0x72c): undefined reference to `vsnprintf.inline'
/usr/bin/powerpc64le-unknown-linux-gnu-ld.bfd: 
tests/libbsdtests.a(bsdtests.c.o): in function `test_ptr_not_format':
bsdtests.c:(.text+0x9dc): undefined reference to `vsnprintf.inline'
/usr/bin/powerpc64le-unknown-linux-gnu-ld.bfd: 
tests/libbsdtests.a(bsdtests.c.o): in function `test_uint32_format':
bsdtests.c:(.text+0xc8c): undefined reference to `vsnprintf.inline'
/usr/bin/powerpc64le-unknown-linux-gnu-ld.bfd: 
tests/libbsdtests.a(bsdtests.c.o):bsdtests.c:(.text+0xf3c): more undefined 
references to `vsnprintf.inline' follow

explicitly passing -DBUILD_TESTINF=OFF allows to skip building and
linking offending test.
Library works well on ppc64le, just the test does not build with 128bit
ieee-long-double toolchain due to old headers somewhere in test deps.

The actual falure will still be visible with FEATURES="test"
but only on ppc64le systems with USE=ieee-long-double toolchain.

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

 dev-libs/libdispatch/libdispatch-5.7.1.ebuild | 4 
 dev-libs/libdispatch/libdispatch-5.7.3.ebuild | 4 
 2 files changed, 8 insertions(+)

diff --git a/dev-libs/libdispatch/libdispatch-5.7.1.ebuild 
b/dev-libs/libdispatch/libdispatch-5.7.1.ebuild
index c0c209226f47..da9e6411f534 100644
--- a/dev-libs/libdispatch/libdispatch-5.7.1.ebuild
+++ b/dev-libs/libdispatch/libdispatch-5.7.1.ebuild
@@ -15,6 +15,9 @@ 
SRC_URI="https://github.com/apple/${MY_PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.g
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="amd64 ~arm64 ppc64 ~riscv x86"
+IUSE="test"
+
+RESTRICT="!test? ( test )"
 
 DEPEND="
!gnustep-base/libobjc2
@@ -49,5 +52,6 @@ src_configure () {
export HOST_CXX="$(tc-getBUILD_CXX)"
tc-export CC CXX LD AR NM OBJDUMP RANLIB PKG_CONFIG
 
+   local mycmakeargs=( -DBUILD_TESTING=$(usex test) )
cmake_src_configure
 }

diff --git a/dev-libs/libdispatch/libdispatch-5.7.3.ebuild 
b/dev-libs/libdispatch/libdispatch-5.7.3.ebuild
index 33616ad732de..95454fe7e805 100644
--- a/dev-libs/libdispatch/libdispatch-5.7.3.ebuild
+++ b/dev-libs/libdispatch/libdispatch-5.7.3.ebuild
@@ -15,6 +15,9 @@ 
SRC_URI="https://github.com/apple/${MY_PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.g
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+IUSE="test"
+
+RESTRICT="!test? ( test )"
 
 DEPEND="
!gnustep-base/libobjc2
@@ -49,5 +52,6 @@ src_configure () {
export HOST_CXX="$(tc-getBUILD_CXX)"
tc-export CC CXX LD AR NM OBJDUMP RANLIB PKG_CONFIG
 
+   local mycmakeargs=( -DBUILD_TESTING=$(usex test) )
cmake_src_configure
 }



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

2023-04-03 Thread Georgy Yakovlev
commit: e96c5f01e7f1e5de8698854be85ad977ba9b527b
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Apr  3 19:47:09 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Apr  3 19:47:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e96c5f01

dev-libs/mimalloc: unkeyword 2.1.0 for ~ppc64

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

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

diff --git a/dev-libs/mimalloc/mimalloc-2.1.0.ebuild 
b/dev-libs/mimalloc/mimalloc-2.1.0.ebuild
index 5c8b6056d6ae..74cdeaf24f44 100644
--- a/dev-libs/mimalloc/mimalloc-2.1.0.ebuild
+++ b/dev-libs/mimalloc/mimalloc-2.1.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/microsoft/mimalloc/archive/refs/tags/v${PV}.tar.gz -
 
 LICENSE="MIT"
 SLOT="0/2"
-KEYWORDS="~amd64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~loong ~riscv ~x86"
 IUSE="hardened test"
 RESTRICT="!test? ( test )"
 



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

2023-04-03 Thread Conrad Kostecki
commit: e8c9c0bcd34604be0b2256d5b0cd535c98f13682
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Mon Apr  3 19:31:33 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Apr  3 19:33:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8c9c0bc

dev-libs/intel-compute-runtime: add 23.05.25593.18

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

 dev-libs/intel-compute-runtime/Manifest|  1 +
 .../intel-compute-runtime-23.05.25593.18.ebuild| 81 ++
 2 files changed, 82 insertions(+)

diff --git a/dev-libs/intel-compute-runtime/Manifest 
b/dev-libs/intel-compute-runtime/Manifest
index 7ee623a79178..e99d2a41bd02 100644
--- a/dev-libs/intel-compute-runtime/Manifest
+++ b/dev-libs/intel-compute-runtime/Manifest
@@ -1,2 +1,3 @@
 DIST intel-compute-runtime-22.53.25242.13.tar.gz 6084532 BLAKE2B 
a32adbe173ae49f5ac45968319475a7c23590ffd138a09ebb4f899971cdbabe0bccd1919364e7518f9a15cd9123274272929d7f5fc2053287376ded621c105c0
 SHA512 
48a69ec8c7f5f7a713c4389af167c11aaf780506950fee4e5ab47b6cc9f80bf6de3408d3dfca3d6141067a6d6ce76a1c6a3a9ba1caaa11c70b216ef2dfe7a07f
 DIST intel-compute-runtime-23.05.25593.11.tar.gz 6181361 BLAKE2B 
4cab9f759bbcb10dd91776648d1e300f752f49f0ffcacfacf2519648b7c02b3dde1f04c4c6104896baf24cafcc9382406cd931e224f5a656718ec10629c74f80
 SHA512 
5bfef689dbb7c7ed2b500c4b040eed4ac43c5a5f418fb94125db51193d4269379fb1b2cd8c95e53a2e4024c3415455f2dd7a07e79b4bf84c27b29150c328627a
+DIST intel-compute-runtime-23.05.25593.18.tar.gz 6182150 BLAKE2B 
81dcceb6d13e3dfbf5fb811faf406617dba7f83d908b94806b76df115b70a3906d8786ea8aaa1b92e963a0c97e843d13e10d7c4fd66885d309ce910c7ed18d56
 SHA512 
f249e51f78faee84e3bd253f1ea39fe06337939f54612f0f645e0e57319abe8449e1822291dbf1760e3805a60bdaad36c59df523859a5d879d39024138bc0907

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



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/geekbench/

2023-04-03 Thread Conrad Kostecki
commit: ccba2e5d70c7f158c1626f56836aaa01df121241
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Mon Apr  3 19:29:47 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Apr  3 19:33:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccba2e5d

app-benchmarks/geekbench: amd64 stable

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

 app-benchmarks/geekbench/geekbench-6.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/geekbench/geekbench-6.0.1.ebuild 
b/app-benchmarks/geekbench/geekbench-6.0.1.ebuild
index 92361a260506..0f2d1e36167a 100644
--- a/app-benchmarks/geekbench/geekbench-6.0.1.ebuild
+++ b/app-benchmarks/geekbench/geekbench-6.0.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="
 "
 S="${WORKDIR}"
 
-KEYWORDS="-* ~amd64 ~arm64"
+KEYWORDS="-* amd64 ~arm64"
 LICENSE="geekbench"
 SLOT="6"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Type-Tiny-XS/

2023-04-03 Thread Arthur Zamarin
commit: 87cb084bbe15cf50f6b6798631a4e2158a2fb297
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:18:57 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:18:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87cb084b

dev-perl/Type-Tiny-XS: Stabilize 0.25.0 arm, #902685

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

 dev-perl/Type-Tiny-XS/Type-Tiny-XS-0.25.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Type-Tiny-XS/Type-Tiny-XS-0.25.0.ebuild 
b/dev-perl/Type-Tiny-XS/Type-Tiny-XS-0.25.0.ebuild
index 31d28de2b9d6..ad4a77162c82 100644
--- a/dev-perl/Type-Tiny-XS/Type-Tiny-XS-0.25.0.ebuild
+++ b/dev-perl/Type-Tiny-XS/Type-Tiny-XS-0.25.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="provides an XS boost for some of Type::Tiny's built-in type 
constraints"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
 IUSE="test minimal"
 RESTRICT="!test? ( test )"
 



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

2023-04-03 Thread Sam James
commit: c78cc817e800b4ae6be226915a05b4de5dcdb1d9
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 19:14:11 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 19:15:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c78cc817

dev-java/jakarta-activation-api: Stabilize 2.1.1 amd64, #903719

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

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

diff --git 
a/dev-java/jakarta-activation-api/jakarta-activation-api-2.1.1.ebuild 
b/dev-java/jakarta-activation-api/jakarta-activation-api-2.1.1.ebuild
index bfe2c0fb17c4..c2eded75a497 100644
--- a/dev-java/jakarta-activation-api/jakarta-activation-api-2.1.1.ebuild
+++ b/dev-java/jakarta-activation-api/jakarta-activation-api-2.1.1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}/jaf-api-${PV}/api"
 
 LICENSE="EPL-1.0"
 SLOT="2"
-KEYWORDS="~amd64 ~arm arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~x86"
 
 DEPEND=">=virtual/jdk-11:*"
 RDEPEND=">=virtual/jre-1.8:*"



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

2023-04-03 Thread Sam James
commit: 88ce0fd1174c4746ef77c0d01b3b80a5e077f077
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 19:14:13 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 19:16:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88ce0fd1

dev-java/jakarta-mail-api: Stabilize 2.1.1 amd64, #903719

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

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

diff --git a/dev-java/jakarta-mail-api/jakarta-mail-api-2.1.1.ebuild 
b/dev-java/jakarta-mail-api/jakarta-mail-api-2.1.1.ebuild
index 369577498266..ded09b444ccb 100644
--- a/dev-java/jakarta-mail-api/jakarta-mail-api-2.1.1.ebuild
+++ b/dev-java/jakarta-mail-api/jakarta-mail-api-2.1.1.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/mail-api-${PV}/api"
 
 LICENSE="EPL-1.0 EPL-2.0 GPL-2-with-classpath-exception"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~x86"
 
 DEPEND="
dev-java/jakarta-activation-api:2



[gentoo-commits] repo/gentoo:master commit in: app-portage/elsw/

2023-04-03 Thread Arthur Zamarin
commit: 75326ad6f9e3a1e5622a3579ac7076587bd7035b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:16:23 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:16:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75326ad6

app-portage/elsw: Keyword 0.0.0-r1 arm64, #903741

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

 app-portage/elsw/elsw-0.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/elsw/elsw-0.0.0-r1.ebuild 
b/app-portage/elsw/elsw-0.0.0-r1.ebuild
index 0510c6a791a6..1e0d5bf49807 100644
--- a/app-portage/elsw/elsw-0.0.0-r1.ebuild
+++ b/app-portage/elsw/elsw-0.0.0-r1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == ** ]] ; then
EGIT_REPO_URI="https://gitlab.com/xgqt/python-${PN}.git;
 else
inherit pypi
-   KEYWORDS="amd64 ~arm ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~x86"
 fi
 
 LICENSE="GPL-2+"



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

2023-04-03 Thread Sam James
commit: 64364da74b3e9a6822e81e290618c004fa8380a3
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 19:14:15 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 19:16:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64364da7

app-emulation/uxn: Stabilize 0_p20230201 amd64, #903738

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

 app-emulation/uxn/uxn-0_p20230201.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/uxn/uxn-0_p20230201.ebuild 
b/app-emulation/uxn/uxn-0_p20230201.ebuild
index 1a4ba33c7ae1..a71b2f9fcd3a 100644
--- a/app-emulation/uxn/uxn-0_p20230201.ebuild
+++ b/app-emulation/uxn/uxn-0_p20230201.ebuild
@@ -18,7 +18,7 @@ else
SRC_URI="https://git.sr.ht/~rabbits/uxn/archive/${COMMIT}.tar.gz
-> ${P}.tar.gz"
S="${WORKDIR}"/${PN}-${COMMIT}
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 ~x86"
 fi
 
 LICENSE="MIT"



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

2023-04-03 Thread Arthur Zamarin
commit: e8bc4bf0d17ada3abd67f26a9beb2824fcaadf7c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:15:23 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:15:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8bc4bf0

sys-kernel/gentoo-kernel: Stabilize 5.15.105 amd64, #903733

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

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

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



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

2023-04-03 Thread Arthur Zamarin
commit: 80270a359ad749e714e20f0b55b88d8865b87fcc
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:15:27 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:15:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80270a35

sys-kernel/gentoo-kernel-bin: Stabilize 6.1.22 amd64, #903734

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

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

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.1.22.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.1.22.ebuild
index 27016e1b991a..d5411b98f627 100644
--- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.1.22.ebuild
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.1.22.ebuild
@@ -35,7 +35,7 @@ SRC_URI+="
 S=${WORKDIR}
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
 
 RDEPEND="
!sys-kernel/gentoo-kernel:${SLOT}



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

2023-04-03 Thread Arthur Zamarin
commit: 19e646355ef9c35214d2d41c23b7cefc73422510
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:15:28 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:15:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19e64635

virtual/dist-kernel: Stabilize 6.1.22 amd64, #903734

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

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

diff --git a/virtual/dist-kernel/dist-kernel-6.1.22.ebuild 
b/virtual/dist-kernel/dist-kernel-6.1.22.ebuild
index d3f0fa8764cf..928fd43b8e85 100644
--- a/virtual/dist-kernel/dist-kernel-6.1.22.ebuild
+++ b/virtual/dist-kernel/dist-kernel-6.1.22.ebuild
@@ -9,7 +9,7 @@ SRC_URI=""
 
 LICENSE=""
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
 
 RDEPEND="
|| (



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

2023-04-03 Thread Arthur Zamarin
commit: f0c92dde535f6835e2e6ca9b9bf10e6f66f2d043
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:15:24 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:15:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0c92dde

sys-kernel/gentoo-kernel-bin: Stabilize 5.15.105 amd64, #903733

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

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

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.15.105.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.15.105.ebuild
index 64a82c2b8323..08bdd3a403d6 100644
--- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.15.105.ebuild
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.15.105.ebuild
@@ -35,7 +35,7 @@ SRC_URI+="
 S=${WORKDIR}
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
 
 RDEPEND="
!sys-kernel/gentoo-kernel:${SLOT}



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

2023-04-03 Thread Arthur Zamarin
commit: 613fbfc5fd1adf24b7acd4f26a754a2ff1c4c597
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:15:24 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:15:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=613fbfc5

virtual/dist-kernel: Stabilize 5.15.105 amd64, #903733

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

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

diff --git a/virtual/dist-kernel/dist-kernel-5.15.105.ebuild 
b/virtual/dist-kernel/dist-kernel-5.15.105.ebuild
index 407f5d349eb1..5fc8e2f30d16 100644
--- a/virtual/dist-kernel/dist-kernel-5.15.105.ebuild
+++ b/virtual/dist-kernel/dist-kernel-5.15.105.ebuild
@@ -9,7 +9,7 @@ SRC_URI=""
 
 LICENSE=""
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 
 RDEPEND="
|| (



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

2023-04-03 Thread Arthur Zamarin
commit: 79f3736a0a010b06b7a7576ce0db45c11bb1b801
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:15:27 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:15:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79f3736a

sys-kernel/gentoo-kernel: Stabilize 6.1.22 amd64, #903734

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

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

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-6.1.22.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-6.1.22.ebuild
index dd5577ddd24b..09d0a3695d25 100644
--- a/sys-kernel/gentoo-kernel/gentoo-kernel-6.1.22.ebuild
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-6.1.22.ebuild
@@ -43,7 +43,7 @@ SRC_URI+="
 S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
 IUSE="debug hardened"
 REQUIRED_USE="arm? ( savedconfig )
hppa? ( savedconfig )



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

2023-04-03 Thread Arthur Zamarin
commit: 6a275aa7a7d6dce39b38d7e415996c6d0758e629
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:14:48 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:14:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a275aa7

dev-python/pillow: Stabilize 9.5.0 x86, #903663

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

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

diff --git a/dev-python/pillow/pillow-9.5.0.ebuild 
b/dev-python/pillow/pillow-9.5.0.ebuild
index 4aa1779a45f0..6c245bd70d77 100644
--- a/dev-python/pillow/pillow-9.5.0.ebuild
+++ b/dev-python/pillow/pillow-9.5.0.ebuild
@@ -26,7 +26,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="examples imagequant +jpeg jpeg2k lcms test tiff tk truetype webp xcb 
zlib"
 REQUIRED_USE="test? ( jpeg jpeg2k lcms tiff truetype )"
 RESTRICT="!test? ( test )"



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

2023-04-03 Thread Arthur Zamarin
commit: 8b6eaed4de1cf8ea9a9e18c52ecc90914cf00aa9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:14:26 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:14:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b6eaed4

dev-python/cx_Freeze: Stabilize 6.14.5 x86, #903587

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

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

diff --git a/dev-python/cx_Freeze/cx_Freeze-6.14.5.ebuild 
b/dev-python/cx_Freeze/cx_Freeze-6.14.5.ebuild
index 51acb57a..5d0805d10922 100644
--- a/dev-python/cx_Freeze/cx_Freeze-6.14.5.ebuild
+++ b/dev-python/cx_Freeze/cx_Freeze-6.14.5.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="PYTHON"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
dev-python/importlib_metadata[${PYTHON_USEDEP}]



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

2023-04-03 Thread Arthur Zamarin
commit: a5fb29cdc946a91958fd8f212b1bc5987949987b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:14:23 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:14:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5fb29cd

dev-python/cx_Freeze: Stabilize 6.14.5 amd64, #903587

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

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

diff --git a/dev-python/cx_Freeze/cx_Freeze-6.14.5.ebuild 
b/dev-python/cx_Freeze/cx_Freeze-6.14.5.ebuild
index cb720dc27e68..51acb57a 100644
--- a/dev-python/cx_Freeze/cx_Freeze-6.14.5.ebuild
+++ b/dev-python/cx_Freeze/cx_Freeze-6.14.5.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="PYTHON"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND="
dev-python/importlib_metadata[${PYTHON_USEDEP}]



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

2023-04-03 Thread Arthur Zamarin
commit: 872acd6279f9238cf4532023a9405c3cf334a01a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:14:02 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:14:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=872acd62

app-arch/dtrx: Keyword 8.5.0 arm, #903743

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

 app-arch/dtrx/dtrx-8.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/dtrx/dtrx-8.5.0.ebuild b/app-arch/dtrx/dtrx-8.5.0.ebuild
index 069c58105f09..43636b151107 100644
--- a/app-arch/dtrx/dtrx-8.5.0.ebuild
+++ b/app-arch/dtrx/dtrx-8.5.0.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == ** ]] ; then
EGIT_REPO_URI="https://github.com/${PN}-py/${PN}.git;
 else
inherit pypi
-   KEYWORDS="amd64 ~arm64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86"
 fi
 
 LICENSE="GPL-3+"



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

2023-04-03 Thread Arthur Zamarin
commit: fadf9ab71f988e119f853138ed35c450c7a8b035
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:13:36 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:13:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fadf9ab7

dev-python/zstandard: Stabilize 0.20.0 x86, #902859

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

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

diff --git a/dev-python/zstandard/zstandard-0.20.0.ebuild 
b/dev-python/zstandard/zstandard-0.20.0.ebuild
index d38d0a961796..9c3dc16d768d 100644
--- a/dev-python/zstandard/zstandard-0.20.0.ebuild
+++ b/dev-python/zstandard/zstandard-0.20.0.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 
 DEPEND="
app-arch/zstd:=



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

2023-04-03 Thread Arthur Zamarin
commit: ae895b1c727c98ac2eeb0792488cb46f67f9969a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:13:40 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:13:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae895b1c

x11-wm/i3: Stabilize 4.22 x86, #903537

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

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

diff --git a/x11-wm/i3/i3-4.22.ebuild b/x11-wm/i3/i3-4.22.ebuild
index b88bba256da2..be04e81b8a7d 100644
--- a/x11-wm/i3/i3-4.22.ebuild
+++ b/x11-wm/i3/i3-4.22.ebuild
@@ -14,7 +14,7 @@ if [[ "${PV}" = * ]]; then
inherit git-r3
 else
SRC_URI="https://i3wm.org/downloads/${P}.tar.xz;
-   KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
 fi
 
 LICENSE="BSD"



[gentoo-commits] repo/gentoo:master commit in: app-portage/elsw/

2023-04-03 Thread Arthur Zamarin
commit: 732f9175649ff0f48ca5658b6b2610512b2c2084
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:12:38 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:12:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=732f9175

app-portage/elsw: Keyword 0.0.0-r1 arm, #903741

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

 app-portage/elsw/elsw-0.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/elsw/elsw-0.0.0-r1.ebuild 
b/app-portage/elsw/elsw-0.0.0-r1.ebuild
index 6c1e1bf0d3a6..0510c6a791a6 100644
--- a/app-portage/elsw/elsw-0.0.0-r1.ebuild
+++ b/app-portage/elsw/elsw-0.0.0-r1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == ** ]] ; then
EGIT_REPO_URI="https://gitlab.com/xgqt/python-${PN}.git;
 else
inherit pypi
-   KEYWORDS="amd64 ~x86"
+   KEYWORDS="amd64 ~arm ~x86"
 fi
 
 LICENSE="GPL-2+"



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

2023-04-03 Thread Arthur Zamarin
commit: 25127f792a371e0743ca255e4b23351acbdf427c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:11:27 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:11:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25127f79

app-text/tesseract: Stabilize 5.3.0 arm, #901803

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

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

diff --git a/app-text/tesseract/tesseract-5.3.0.ebuild 
b/app-text/tesseract/tesseract-5.3.0.ebuild
index 1fdc5a483f5c..6bee55fb4167 100644
--- a/app-text/tesseract/tesseract-5.3.0.ebuild
+++ b/app-text/tesseract/tesseract-5.3.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/tesseract-ocr/${PN}/archive/${PV}.tar.gz -> ${P}.tar
 
 LICENSE="Apache-2.0"
 SLOT="0/5"
-KEYWORDS="~alpha amd64 ~arm arm64 ~mips ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~mips ppc ppc64 ~riscv ~sparc x86"
 IUSE="doc float32 jpeg opencl openmp png static-libs tiff training webp"
 
 
COMMON_DEPEND=">=media-libs/leptonica-1.74:=[${MULTILIB_USEDEP},zlib,tiff?,jpeg?,png?,webp?]



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

2023-04-03 Thread Arthur Zamarin
commit: 2e761841e5522abc5adb1a8673e5a161d8be7805
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:11:29 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:11:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e761841

net-im/pidgin: Stabilize 2.14.12 sparc, #901905

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

 net-im/pidgin/pidgin-2.14.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-im/pidgin/pidgin-2.14.12.ebuild 
b/net-im/pidgin/pidgin-2.14.12.ebuild
index 569079d30af2..990e86ab8258 100644
--- a/net-im/pidgin/pidgin-2.14.12.ebuild
+++ b/net-im/pidgin/pidgin-2.14.12.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0/2" # libpurple version
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux"
 IUSE="aqua dbus debug doc eds gadu gnutls groupwise +gstreamer +gtk idn
 meanwhile ncurses networkmanager nls perl pie prediction python sasl spell tcl
 test tk v4l +xscreensaver zephyr zeroconf"



[gentoo-commits] repo/gentoo:master commit in: sec-keys/openpgp-keys-spamassassin/

2023-04-03 Thread Arthur Zamarin
commit: 68c51d6b55dfa5bfc83903fc293468a615fe50aa
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:16 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68c51d6b

sec-keys/openpgp-keys-spamassassin: Stabilize 20221226 sparc, #901801

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

 .../openpgp-keys-spamassassin/openpgp-keys-spamassassin-20221226.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/sec-keys/openpgp-keys-spamassassin/openpgp-keys-spamassassin-20221226.ebuild 
b/sec-keys/openpgp-keys-spamassassin/openpgp-keys-spamassassin-20221226.ebuild
index 17b35240ac03..800ca3ad347b 100644
--- 
a/sec-keys/openpgp-keys-spamassassin/openpgp-keys-spamassassin-20221226.ebuild
+++ 
b/sec-keys/openpgp-keys-spamassassin/openpgp-keys-spamassassin-20221226.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}"
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~amd64-linux ~x86-linux"
 
 src_install() {
local files=( ${A} )



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Email-MIME/

2023-04-03 Thread Arthur Zamarin
commit: fba2f0742f4ec2549147f2764c577743ff6f019a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:13 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fba2f074

dev-perl/Email-MIME: Stabilize 1.952.0 sparc, #901801

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

 dev-perl/Email-MIME/Email-MIME-1.952.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Email-MIME/Email-MIME-1.952.0.ebuild 
b/dev-perl/Email-MIME/Email-MIME-1.952.0.ebuild
index d89f4038e22a..2fd2795db423 100644
--- a/dev-perl/Email-MIME/Email-MIME-1.952.0.ebuild
+++ b/dev-perl/Email-MIME/Email-MIME-1.952.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Easy MIME message parsing"
 
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 
~sparc-solaris ~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~sparc-solaris ~x86-solaris"
 
 RDEPEND="
virtual/perl-Carp



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Email-Simple/

2023-04-03 Thread Arthur Zamarin
commit: 27e7ad98edee12964ecd9b7d01f9b62e7d04326e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:13 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27e7ad98

dev-perl/Email-Simple: Stabilize 2.216.0 sparc, #901801

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

 dev-perl/Email-Simple/Email-Simple-2.216.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Email-Simple/Email-Simple-2.216.0.ebuild 
b/dev-perl/Email-Simple/Email-Simple-2.216.0.ebuild
index 425acf1f785a..e9e9577a4a8f 100644
--- a/dev-perl/Email-Simple/Email-Simple-2.216.0.ebuild
+++ b/dev-perl/Email-Simple/Email-Simple-2.216.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Simple parsing of RFC2822 message format and headers"
 
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 
~sparc-solaris ~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 
~sparc-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: mail-filter/spamassassin/

2023-04-03 Thread Arthur Zamarin
commit: a9c5e99da2deeff0f29fc7bab5dde32302e14299
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:16 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9c5e99d

mail-filter/spamassassin: Stabilize 4.0.0-r1 sparc, #901801

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

 mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild 
b/mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild
index d40ab68c2691..61efdfd55ed1 100644
--- a/mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild
+++ b/mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="Apache-2.0 GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~amd64-linux ~x86-linux"
 IUSE="berkdb cron ipv6 ldap mysql postgres qmail sqlite ssl test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-DMARC/

2023-04-03 Thread Arthur Zamarin
commit: 817c3f67a55cc99db8c9bd1e4eab7e2e4e965547
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:16 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=817c3f67

dev-perl/Mail-DMARC: Stabilize 1.202.109.270-r1 sparc, #901801

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

 dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270-r1.ebuild 
b/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270-r1.ebuild
index ca031765b1f2..ba8ef2460051 100644
--- a/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270-r1.ebuild
+++ b/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270-r1.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="Perl implementation of DMARC"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 IUSE="minimal"
 
 PERL_RM_FILES=(



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Email-Sender/

2023-04-03 Thread Arthur Zamarin
commit: d9f070b67a9ae4eec07a7754b8a488873909786e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:15 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9f070b6

dev-perl/Email-Sender: Stabilize 2.500.0 sparc, #901801

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

 dev-perl/Email-Sender/Email-Sender-2.500.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Email-Sender/Email-Sender-2.500.0.ebuild 
b/dev-perl/Email-Sender/Email-Sender-2.500.0.ebuild
index 4f569184a11f..ddbbdb22d4fa 100644
--- a/dev-perl/Email-Sender/Email-Sender-2.500.0.ebuild
+++ b/dev-perl/Email-Sender/Email-Sender-2.500.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="A library for sending email"
 
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="
virtual/perl-Carp



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-IDN-Encode/

2023-04-03 Thread Arthur Zamarin
commit: 06cc468d1652c43fc0c06204247bed8533324b58
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:15 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06cc468d

dev-perl/Net-IDN-Encode: Stabilize 2.500.0-r1 sparc, #901801

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

 dev-perl/Net-IDN-Encode/Net-IDN-Encode-2.500.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Net-IDN-Encode/Net-IDN-Encode-2.500.0-r1.ebuild 
b/dev-perl/Net-IDN-Encode/Net-IDN-Encode-2.500.0-r1.ebuild
index a616e83e7762..b6c4216bc5c4 100644
--- a/dev-perl/Net-IDN-Encode/Net-IDN-Encode-2.500.0-r1.ebuild
+++ b/dev-perl/Net-IDN-Encode/Net-IDN-Encode-2.500.0-r1.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Internationalizing Domain Names in Applications (IDNA)"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
virtual/perl-Unicode-Normalize



[gentoo-commits] repo/gentoo:master commit in: dev-perl/MooX-Types-MooseLike/

2023-04-03 Thread Arthur Zamarin
commit: 27af406b74f4337b8b48e5d4d879d2d8df895b74
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:14 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27af406b

dev-perl/MooX-Types-MooseLike: Stabilize 0.290.0-r1 sparc, #901801

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

 dev-perl/MooX-Types-MooseLike/MooX-Types-MooseLike-0.290.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-perl/MooX-Types-MooseLike/MooX-Types-MooseLike-0.290.0-r1.ebuild 
b/dev-perl/MooX-Types-MooseLike/MooX-Types-MooseLike-0.290.0-r1.ebuild
index 2d97cc88afa8..4655fc920c55 100644
--- a/dev-perl/MooX-Types-MooseLike/MooX-Types-MooseLike-0.290.0-r1.ebuild
+++ b/dev-perl/MooX-Types-MooseLike/MooX-Types-MooseLike-0.290.0-r1.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Some Moosish types and a type builder"
 
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
 
 RDEPEND="
>=dev-perl/strictures-2



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Email-Abstract/

2023-04-03 Thread Arthur Zamarin
commit: 7d6b52c2ae29f8822fbf759126e1bd5c9c2e41ce
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:13 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d6b52c2

dev-perl/Email-Abstract: Stabilize 3.9.0 sparc, #901801

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

 dev-perl/Email-Abstract/Email-Abstract-3.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Email-Abstract/Email-Abstract-3.9.0.ebuild 
b/dev-perl/Email-Abstract/Email-Abstract-3.9.0.ebuild
index deb525f4c588..46fe895efd3c 100644
--- a/dev-perl/Email-Abstract/Email-Abstract-3.9.0.ebuild
+++ b/dev-perl/Email-Abstract/Email-Abstract-3.9.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="unified interface to mail representations"
 
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="
virtual/perl-Carp



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-SMTPS/

2023-04-03 Thread Arthur Zamarin
commit: bf85ab07f66f9cdca413cf6d0583b130d12efaa7
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:04 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf85ab07

dev-perl/Net-SMTPS: Stabilize 0.100.0 ppc, #901801

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

 dev-perl/Net-SMTPS/Net-SMTPS-0.100.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Net-SMTPS/Net-SMTPS-0.100.0.ebuild 
b/dev-perl/Net-SMTPS/Net-SMTPS-0.100.0.ebuild
index a1607c9f8c8d..542ab0473c86 100644
--- a/dev-perl/Net-SMTPS/Net-SMTPS-0.100.0.ebuild
+++ b/dev-perl/Net-SMTPS/Net-SMTPS-0.100.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 
 DESCRIPTION="SSL/STARTTLS support for Net::SMTP"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86"
 
 RDEPEND="
>=dev-perl/Authen-SASL-2.0.0



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-IMAP-Simple/

2023-04-03 Thread Arthur Zamarin
commit: e152e5a0ce6d39acd89ff9cfc2b6d9561a8206ed
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:10 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e152e5a0

dev-perl/Net-IMAP-Simple: Stabilize 1.221.200 sparc, #901801

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

 dev-perl/Net-IMAP-Simple/Net-IMAP-Simple-1.221.200.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Net-IMAP-Simple/Net-IMAP-Simple-1.221.200.ebuild 
b/dev-perl/Net-IMAP-Simple/Net-IMAP-Simple-1.221.200.ebuild
index 4bf0a82368e7..1f11304fc87d 100644
--- a/dev-perl/Net-IMAP-Simple/Net-IMAP-Simple-1.221.200.ebuild
+++ b/dev-perl/Net-IMAP-Simple/Net-IMAP-Simple-1.221.200.ebuild
@@ -12,7 +12,7 @@ inherit perl-module
 DESCRIPTION="Perl extension for simple IMAP account handling"
 
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="
virtual/perl-IO



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

2023-04-03 Thread Arthur Zamarin
commit: 8ea6c2baed7e7c23562adb90f26e49e7466372f6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:14 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ea6c2ba

dev-perl/Throwable: Stabilize 1.0.0 sparc, #901801

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

 dev-perl/Throwable/Throwable-1.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Throwable/Throwable-1.0.0.ebuild 
b/dev-perl/Throwable/Throwable-1.0.0.ebuild
index ec5fbdc47e09..cf890f245a89 100644
--- a/dev-perl/Throwable/Throwable-1.0.0.ebuild
+++ b/dev-perl/Throwable/Throwable-1.0.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="A role for classes that can be thrown"
 
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="
virtual/perl-Carp



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Email-MessageID/

2023-04-03 Thread Arthur Zamarin
commit: 42d960d03467d76a5f9de436e21f23f6081e0d43
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:12 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42d960d0

dev-perl/Email-MessageID: Stabilize 1.406.0-r1 sparc, #901801

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

 dev-perl/Email-MessageID/Email-MessageID-1.406.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Email-MessageID/Email-MessageID-1.406.0-r1.ebuild 
b/dev-perl/Email-MessageID/Email-MessageID-1.406.0-r1.ebuild
index b43a4119aeed..7d72d63e9b58 100644
--- a/dev-perl/Email-MessageID/Email-MessageID-1.406.0-r1.ebuild
+++ b/dev-perl/Email-MessageID/Email-MessageID-1.406.0-r1.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Generate world unique message-ids"
 
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 
~sparc-solaris ~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~sparc-solaris ~x86-solaris"
 
 RDEPEND=""
 BDEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-SMTPS/

2023-04-03 Thread Arthur Zamarin
commit: ef7f35f93e656336e5e17aa0bbf7e21a9ab1ae1b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:11 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:11 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef7f35f9

dev-perl/Net-SMTPS: Stabilize 0.100.0 sparc, #901801

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

 dev-perl/Net-SMTPS/Net-SMTPS-0.100.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Net-SMTPS/Net-SMTPS-0.100.0.ebuild 
b/dev-perl/Net-SMTPS/Net-SMTPS-0.100.0.ebuild
index 542ab0473c86..439e6df7c39a 100644
--- a/dev-perl/Net-SMTPS/Net-SMTPS-0.100.0.ebuild
+++ b/dev-perl/Net-SMTPS/Net-SMTPS-0.100.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 
 DESCRIPTION="SSL/STARTTLS support for Net::SMTP"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="
>=dev-perl/Authen-SASL-2.0.0



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Email-MIME-ContentType/

2023-04-03 Thread Arthur Zamarin
commit: ff04e56575fe29b22d84b2ab92f7476da154ecc0
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:12 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff04e565

dev-perl/Email-MIME-ContentType: Stabilize 1.26.0 sparc, #901801

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

 dev-perl/Email-MIME-ContentType/Email-MIME-ContentType-1.26.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-perl/Email-MIME-ContentType/Email-MIME-ContentType-1.26.0.ebuild 
b/dev-perl/Email-MIME-ContentType/Email-MIME-ContentType-1.26.0.ebuild
index 8cf573673ff0..246c6ee90b83 100644
--- a/dev-perl/Email-MIME-ContentType/Email-MIME-ContentType-1.26.0.ebuild
+++ b/dev-perl/Email-MIME-ContentType/Email-MIME-ContentType-1.26.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Parse a MIME Content-Type Header or Content-Disposition Header"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 
~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~sparc-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBIx-Simple/

2023-04-03 Thread Arthur Zamarin
commit: 6ff474b5c9ceb5959285233739e0e8bf49ab6b17
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:11 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:11 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ff474b5

dev-perl/DBIx-Simple: Stabilize 1.370.0 sparc, #901801

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

 dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild 
b/dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild
index 8c61b44ffe0b..1c0b21d18ac9 100644
--- a/dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild
+++ b/dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild
@@ -16,7 +16,7 @@ LICENSE="|| ( AFL-3.0 AGPL-3 APL-1.0 Apache-2.0 BSD-2 
Boost-1.0 CDDL CPAL-1.0
QPL-1.0 OFL-1.1 Sleepycat Watcom-1.0 W3C wxWinLL-3 ZLIB libpng
 )"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 IUSE="test minimal"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Email-Sender/

2023-04-03 Thread Arthur Zamarin
commit: 8a66e088edb55a54461ce2f60703b55ab22e8245
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:05 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a66e088

dev-perl/Email-Sender: Stabilize 2.500.0 ppc, #901801

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

 dev-perl/Email-Sender/Email-Sender-2.500.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Email-Sender/Email-Sender-2.500.0.ebuild 
b/dev-perl/Email-Sender/Email-Sender-2.500.0.ebuild
index d5849d91f566..4f569184a11f 100644
--- a/dev-perl/Email-Sender/Email-Sender-2.500.0.ebuild
+++ b/dev-perl/Email-Sender/Email-Sender-2.500.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="A library for sending email"
 
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86"
 
 RDEPEND="
virtual/perl-Carp



[gentoo-commits] repo/gentoo:master commit in: sec-keys/openpgp-keys-spamassassin/

2023-04-03 Thread Arthur Zamarin
commit: 153ab2f0667f52291bb5cc4c4f84fc64ef2ae649
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:06 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=153ab2f0

sec-keys/openpgp-keys-spamassassin: Stabilize 20221226 ppc, #901801

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

 .../openpgp-keys-spamassassin/openpgp-keys-spamassassin-20221226.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/sec-keys/openpgp-keys-spamassassin/openpgp-keys-spamassassin-20221226.ebuild 
b/sec-keys/openpgp-keys-spamassassin/openpgp-keys-spamassassin-20221226.ebuild
index 86b0ce3a676e..17b35240ac03 100644
--- 
a/sec-keys/openpgp-keys-spamassassin/openpgp-keys-spamassassin-20221226.ebuild
+++ 
b/sec-keys/openpgp-keys-spamassassin/openpgp-keys-spamassassin-20221226.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}"
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
 
 src_install() {
local files=( ${A} )



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Email-Address-XS/

2023-04-03 Thread Arthur Zamarin
commit: baadc8edadb1393b0a7c3629c24d8d970dc563c2
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:10 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baadc8ed

dev-perl/Email-Address-XS: Stabilize 1.50.0 sparc, #901801

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

 dev-perl/Email-Address-XS/Email-Address-XS-1.50.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Email-Address-XS/Email-Address-XS-1.50.0.ebuild 
b/dev-perl/Email-Address-XS/Email-Address-XS-1.50.0.ebuild
index 42fd52c49504..91c517a46984 100644
--- a/dev-perl/Email-Address-XS/Email-Address-XS-1.50.0.ebuild
+++ b/dev-perl/Email-Address-XS/Email-Address-XS-1.50.0.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Parse and format RFC 2822 email addresses and 
groups"
 
 LICENSE="|| ( Artistic GPL-1+ ) MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 
 RDEPEND="
virtual/perl-Carp



[gentoo-commits] repo/gentoo:master commit in: mail-filter/spamassassin/

2023-04-03 Thread Arthur Zamarin
commit: 007b8506c393e1445b200cfbf5e08fe233cb27aa
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:07 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=007b8506

mail-filter/spamassassin: Stabilize 4.0.0-r1 ppc, #901801

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

 mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild 
b/mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild
index 6a6b2900bf5b..d40ab68c2691 100644
--- a/mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild
+++ b/mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="Apache-2.0 GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
 IUSE="berkdb cron ipv6 ldap mysql postgres qmail sqlite ssl test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBIx-Simple/

2023-04-03 Thread Arthur Zamarin
commit: 78655ef27d41cbfaab3f82cf56c4251e1aae541f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:04 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78655ef2

dev-perl/DBIx-Simple: Stabilize 1.370.0 ppc, #901801

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

 dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild 
b/dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild
index a576d1b25eb9..8c61b44ffe0b 100644
--- a/dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild
+++ b/dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild
@@ -16,7 +16,7 @@ LICENSE="|| ( AFL-3.0 AGPL-3 APL-1.0 Apache-2.0 BSD-2 
Boost-1.0 CDDL CPAL-1.0
QPL-1.0 OFL-1.1 Sleepycat Watcom-1.0 W3C wxWinLL-3 ZLIB libpng
 )"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86"
 IUSE="test minimal"
 RESTRICT="!test? ( test )"
 



  1   2   3   >