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

2022-02-04 Thread Hans de Graaff
commit: 0635b05a6ec76646f76a5e9e60b745acb288d910
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb  5 07:54:30 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb  5 07:54:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0635b05a

Revert "www-servers/puma: cleanup"

This reverts commit a065a9820172f4dd279d5f48e10f04f408b8ead2.

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

 www-servers/puma/Manifest |  2 ++
 www-servers/puma/puma-5.3.2-r1.ebuild | 59 +++
 www-servers/puma/puma-5.4.0.ebuild| 59 +++
 3 files changed, 120 insertions(+)

diff --git a/www-servers/puma/Manifest b/www-servers/puma/Manifest
index ed102c703ee9..adfdd764f6d9 100644
--- a/www-servers/puma/Manifest
+++ b/www-servers/puma/Manifest
@@ -1,2 +1,4 @@
+DIST puma-5.3.2.tar.gz 297673 BLAKE2B 
e3bfa38347526063587db966d20ea68f32cd88616d89b5f2d9152228d5d420b50c2918e24304c1bc8119af5790a2464f0a055ab92862a56262013ddbba006a1f
 SHA512 
32e80b413184d371d451a35985a371a7655df0f7e81624f2a05e3cf65c2e1b035275a8e25ab03d13c9c1f921ec30cdeb3659e1201baae5940dcb3edcb525ff25
+DIST puma-5.4.0.tar.gz 298525 BLAKE2B 
d93231582cd83519c258093fd9ac5e2b06398133e82e2d350103e7438a4ed1fd9b36f627739dbbad86e839211850c5387be57d5d114835e7e4d99940e842b128
 SHA512 
032a507d852c555393f401d4e72c358cf8c49d1c93ff7a559969f3d1f84c0b49180cbcee975bb6fea621d034a00874268ff05ae76f91775cc24089de0b4560da
 DIST puma-5.5.2.tar.gz 302778 BLAKE2B 
5911accde19aaed34cffecc71eb2db02f0d9f9ea7b57437ff7cf7580b0b51245ed68b254778cbdc11bea624b9f192aef0bfa7e24acde73b77290d780ab177933
 SHA512 
9887b465c6ed2a8e551b15fd161f19a9d2baa96b8eb8e247f13c98df9d34f6097bce81a52e8f88d69088d9b5f8477137af9110b7546afabc53767f337ad00ef8
 DIST puma-5.6.1.tar.gz 308896 BLAKE2B 
0fa28fee64da577965c16fa564275760fbb3ebd04ed3eff583e53733b2f674ec6d29c20d2734bd16cb83aca8747ff5049e86d692bb5dd70fa5112a7a2c64ebf4
 SHA512 
262f17343668f5bf68842664eb6445208755385428151354fdb4039411e339c5c686f684bdb32c974516add3ca86af5693d1e169cf2bf74a8614be3cc06eccb0

diff --git a/www-servers/puma/puma-5.3.2-r1.ebuild 
b/www-servers/puma/puma-5.3.2-r1.ebuild
new file mode 100644
index ..aa275d9b6699
--- /dev/null
+++ b/www-servers/puma/puma-5.3.2-r1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby25 ruby26 ruby27 ruby30"
+
+RUBY_FAKEGEM_GEMSPEC="puma.gemspec"
+
+RUBY_FAKEGEM_EXTENSIONS=(ext/puma_http11/extconf.rb)
+RUBY_FAKEGEM_EXTENSION_LIBDIR=lib/puma
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="a simple, fast, threaded, and highly concurrent HTTP 1.1 server 
for Ruby/Rack"
+HOMEPAGE="https://puma.io/;
+SRC_URI="https://github.com/puma/puma/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="3"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86"
+IUSE=""
+
+DEPEND+=" dev-libs/openssl:0 test? ( net-misc/curl )"
+RDEPEND+=" dev-libs/openssl:0="
+
+ruby_add_bdepend "virtual/ruby-ssl
+   test? ( dev-ruby/rack >=dev-ruby/minitest-5.9:5 
>=dev-ruby/test-unit-3.0:2 )"
+
+ruby_add_rdepend "dev-ruby/nio4r:2"
+
+all_ruby_prepare() {
+   sed -e '/bundler/ s:^:#:' \
+   -e '/prove/ s:^:#:' \
+   -e '/stub_const/ s:^:#:' \
+   -i test/helper.rb || die
+
+   # Avoid tests failing inconsistently
+   sed -i -e '/test_bad_client/askip "inconsistent results"' 
test/test_web_server.rb || die
+
+   # Avoid launcher tests since they make assumptions about bundler use
+   rm -f test/test_launcher.rb test/test_worker_gem_independence.rb || die
+
+   # Skip integration tests since they make a lot of assumptions about
+   # the environment
+   rm -f test/test_integration_* test/test_preserve_bundler_env.rb|| die
+
+   # Avoid test that uses unpackaged stub_const
+   sed -i -e '/test_shutdown_with_grace/,/^  end/ s:^:#:' 
test/test_thread_pool.rb || die
+
+   sed -e 's/git ls-files --/find/' \
+   -e 's:_relative ": "./:' \
+   -i ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+each_ruby_test() {
+   einfo "Running test suite"
+   ${RUBY} -Ilib:.:test -e "gem 'minitest', '~>5.9'; gem 'test-unit', 
'~>3.0'; require 'minitest/autorun'; Dir['test/**/*test_*.rb'].each{|f| require 
f}" || die
+}

diff --git a/www-servers/puma/puma-5.4.0.ebuild 
b/www-servers/puma/puma-5.4.0.ebuild
new file mode 100644
index ..055f299b4a41
--- /dev/null
+++ b/www-servers/puma/puma-5.4.0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby26 ruby27 ruby30"
+
+RUBY_FAKEGEM_GEMSPEC="puma.gemspec"
+
+RUBY_FAKEGEM_EXTENSIONS=(ext/puma_http11/extconf.rb)
+RUBY_FAKEGEM_EXTENSION_LIBDIR=lib/puma
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="a simple, fast, threaded, and highly concurrent HTTP 1.1 server 

[gentoo-commits] repo/gentoo:master commit in: media-radio/tlf/, media-radio/tlf/files/

2022-02-04 Thread Thomas Beierlein
commit: 3b77983e37c3c7b787b3408cd084cfb91ba423a3
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Sat Feb  5 07:40:07 2022 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Sat Feb  5 07:44:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b77983e

media-radio/tlf: Fix musl build errors

Closes: https://bugs.gentoo.org/832234
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Thomas Beierlein  gentoo.org>

 media-radio/tlf/files/tlf-1.4.1-musl.patch | 12 
 media-radio/tlf/tlf-1.4.1-r1.ebuild| 12 
 2 files changed, 20 insertions(+), 4 deletions(-)

diff --git a/media-radio/tlf/files/tlf-1.4.1-musl.patch 
b/media-radio/tlf/files/tlf-1.4.1-musl.patch
new file mode 100644
index ..a4903015011d
--- /dev/null
+++ b/media-radio/tlf/files/tlf-1.4.1-musl.patch
@@ -0,0 +1,12 @@
+diff --git a/src/sockserv.c b/src/sockserv.c
+index c25f0fb..647188f 100644
+--- a/src/sockserv.c
 b/src/sockserv.c
+@@ -31,6 +31,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #include "sockserv.h"
+ #include "tlf_curses.h"

diff --git a/media-radio/tlf/tlf-1.4.1-r1.ebuild 
b/media-radio/tlf/tlf-1.4.1-r1.ebuild
index 897ebe600935..c19feb243da0 100644
--- a/media-radio/tlf/tlf-1.4.1-r1.ebuild
+++ b/media-radio/tlf/tlf-1.4.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -20,23 +20,27 @@ RDEPEND="sys-libs/ncurses:=
dev-libs/glib:2
media-libs/hamlib:=
media-sound/sox
-   dev-libs/xmlrpc-c[curl]"
+   dev-libs/xmlrpc-c[curl]
+   elibc_musl? ( sys-libs/argp-standalone )"
 DEPEND="
${RDEPEND}
test? ( dev-util/cmocka )"
 
-PATCHES=( "${FILESDIR}"/${P}-zone_nr.patch )
+PATCHES=( "${FILESDIR}/${P}-zone_nr.patch"
+ "${FILESDIR}/${P}-musl.patch"
+   )
 
 src_prepare() {
if has_version '>=media-libs/hamlib-4.2' ; then
sed -i -e "s/FILPATHLEN/HAMLIB_FILPATHLEN/g" 
"${S}"/src/sendqrg.c || die
fi
 
-   eapply ${PATCHES}
+   eapply ${PATCHES[@]}
eapply_user
 }
 
 src_configure() {
+   use elibc_musl && append-libs argp
append-ldflags -L/usr/$(get_libdir)/hamlib
econf --enable-fldigi-xmlrpc
 }



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

2022-02-04 Thread Hans de Graaff
commit: 48956b4d6330330f838c820e5e07f71cc588ecc9
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb  5 06:50:06 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb  5 06:57:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48956b4d

dev-ruby/msgpack: cleanup

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

 dev-ruby/msgpack/Manifest |  1 -
 dev-ruby/msgpack/msgpack-1.4.2.ebuild | 31 ---
 2 files changed, 32 deletions(-)

diff --git a/dev-ruby/msgpack/Manifest b/dev-ruby/msgpack/Manifest
index d11dd98ef505..88c798e987b5 100644
--- a/dev-ruby/msgpack/Manifest
+++ b/dev-ruby/msgpack/Manifest
@@ -1,3 +1,2 @@
-DIST msgpack-1.4.2.gem 83456 BLAKE2B 
c3dec1fe3c1cf37969f435b6ed36c68777e650681a4779721b635a83f08fabcf01f161c8ce9c43358b98e159c5595eadf72b3533d609e174e303854196ead26a
 SHA512 
b2f703fdb401c023dfb3064cb9c4b8f1458c0420c6f6f17bdc9230aef1a6f943a605a3f7369a20e7402e98db77a62fadc90aab40de90fdf6ea16924f33eb7ff8
 DIST msgpack-1.4.3.gem 84992 BLAKE2B 
70610107a956416dbc861141cad6f0552f1729d50085a23bb1b3dc8d79c7892488e1cc4e3f3029f770065714effa5c56909df922c96866b2524f02377c8a
 SHA512 
4ec79dbac8ba4a954757575279b2ea705c81771f65215103149722964ede661e9ceba23ec15b471214cca798861a39122d6bb766f89c2fb1bad3784e7052a37c
 DIST msgpack-1.4.4.gem 84992 BLAKE2B 
41cdb4042bc3ca833d2e1f7c3682c06b2dbf6928a814a48d87e08b0f40e092ad295f268f9a0d473de141dcb63b699ea2b3a223c9437e2b3799d8ec056123ed6f
 SHA512 
0ee58d5c334f7ee3e8b890d480b71141603bd5951b188ef162d2ca03f51ef40316ff386c505ccd9dc8a6e667359b9fd8934263b1200a4ee8a399c220e95156b0

diff --git a/dev-ruby/msgpack/msgpack-1.4.2.ebuild 
b/dev-ruby/msgpack/msgpack-1.4.2.ebuild
deleted file mode 100644
index 0b4f0f2fb217..
--- a/dev-ruby/msgpack/msgpack-1.4.2.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby25 ruby26 ruby27 ruby30"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_EXTRADOC="ChangeLog README.md"
-
-RUBY_FAKEGEM_EXTENSIONS=(ext/msgpack/extconf.rb)
-RUBY_FAKEGEM_EXTENSION_LIBDIR="lib/msgpack"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Binary-based efficient data interchange format for ruby binding"
-HOMEPAGE="https://msgpack.org/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
-IUSE="doc"
-
-all_ruby_prepare() {
-   sed -i -e '/bundler/I s:^:#:' Rakefile || die
-
-   # Remove jruby-specific specs that are run also for other rubies.
-   rm -rf spec/jruby || die
-
-   sed -i -e '/git ls-files/d' msgpack.gemspec || die
-}



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

2022-02-04 Thread Hans de Graaff
commit: 73225d4f9a4b1729c0c88e8996416c8d88746396
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb  5 06:49:25 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb  5 06:57:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73225d4f

dev-ruby/coolio: cleanup

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

 dev-ruby/coolio/coolio-1.7.1.ebuild | 46 -
 1 file changed, 46 deletions(-)

diff --git a/dev-ruby/coolio/coolio-1.7.1.ebuild 
b/dev-ruby/coolio/coolio-1.7.1.ebuild
deleted file mode 100644
index 18be3f40240f..
--- a/dev-ruby/coolio/coolio-1.7.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby25 ruby26 ruby27"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
-RUBY_FAKEGEM_NAME="cool.io"
-
-RUBY_FAKEGEM_GEMSPEC="cool.io.gemspec"
-
-RUBY_FAKEGEM_EXTENSIONS=(ext/cool.io/extconf.rb)
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="A high performance event framework for Ruby which uses the libev 
C library"
-HOMEPAGE="https://coolio.github.io/;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-# cool.io includes a bundled version of libev that is patched to work 
correctly with ruby.
-
-ruby_add_rdepend ">=dev-ruby/iobuffer-1"
-
-all_ruby_prepare() {
-   rm -r Gemfile* lib/.gitignore || die
-
-   sed -i -e '/[Bb]undler/d' Rakefile || die
-   sed -i -e '28i  s.add_dependency "iobuffer"' ${RUBY_FAKEGEM_GEMSPEC} || 
die
-   sed -i -e '/git ls-files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
-
-   # Avoid dependency on rake-compiler
-   sed -i -e '/extensiontask/ s:^:#:' \
-   -e '/ExtensionTask/,/^end/ s:^:#:' Rakefile || die
-
-   # Remove specs that require network connectivity
-   rm -f spec/dns_spec.rb || die
-
-   # Use one address consistently
-   sed -i -e 's/localhost/127.0.0.1/' 
spec/{udp_socket,tcp_server,iobuffer}_spec.rb || die
-}



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

2022-02-04 Thread Hans de Graaff
commit: baeaf3b5cde4667a92beb32bf7165af5e5af1961
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb  5 06:50:56 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb  5 06:57:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baeaf3b5

dev-ruby/serverengine: cleanup

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

 dev-ruby/serverengine/Manifest  |  3 ---
 dev-ruby/serverengine/serverengine-2.2.1.ebuild | 34 -
 dev-ruby/serverengine/serverengine-2.2.2.ebuild | 34 -
 dev-ruby/serverengine/serverengine-2.2.3.ebuild | 34 -
 4 files changed, 105 deletions(-)

diff --git a/dev-ruby/serverengine/Manifest b/dev-ruby/serverengine/Manifest
index b9df0b80b929..470655079f18 100644
--- a/dev-ruby/serverengine/Manifest
+++ b/dev-ruby/serverengine/Manifest
@@ -1,5 +1,2 @@
-DIST serverengine-2.2.1.gem 39424 BLAKE2B 
0c68bfd59c0f6abbb294ecd8003c80853413b38b05ba1553230a2a49ffbf56dad43428eafbac4e77a012d66fdc30d4445249aed53e6eead11f52f5aeffd91c1e
 SHA512 
920dd828561b44525dbef2a45144a40f456a5fbc2a56366a7831b42e9f6e115895a0156adc10114a007c2487d1bd1488f73c9c00373fd90648ee272c9c872111
-DIST serverengine-2.2.2.gem 39424 BLAKE2B 
113ffaa6dd1c35ba0796aaec30c4b3bbc71d63abb7214bd0ed30c7d38195bb2caf4e12d79968ca2750fb522600ac9494848984248fe1645ae3d7c1e97fd6a608
 SHA512 
ec34af108017468e3981861b4a4ae84d071dd31aaca78d458512bf430a1c7075deb64134f899dbde14e8f18a0e163f0f61236a7b3678173030c093d3362eecf2
-DIST serverengine-2.2.3.gem 39936 BLAKE2B 
20f36d60b3f9a01c3768c490db89b8adaade75fc16c1ba738135d24bb858f44c10ab5ff1d0b31f0a287b2ddb3a69f958eaa155e7a54a26bbe5b6a480e52c4325
 SHA512 
4f95dd9559e7ea79e1f276554a94459b0ef250c639d2ecd17509651a5585dc1688936048b636a3d9f09f84eed3d4b16aa5bf50537cd14ebbb7f0e289600b6e60
 DIST serverengine-2.2.4.gem 40960 BLAKE2B 
66e3b10c4396b4613b734d3d2764293de2935b0e99bc33c9ba0e79f69c2af6fbb53dee8e356ab351d65195124e139ec4b0aa7976594387432b88a3875e985ef9
 SHA512 
39f5abe2e15bf1ea6524563a7f86e441f93479160976421d41aa092e04a0fca8d4beda3b20487c45b6cd3bdffdb175d98fbebdd36ef9a85fa242ef3cf356a9c8
 DIST serverengine-2.2.5.gem 40960 BLAKE2B 
a7b256c1029c38b35673d104f6aba118bc5644947db7feb185d57456af60baebafb3c6a74996998630b7a0dbe3ee0baa5d4f260538ca7a8abf542b7528cd7204
 SHA512 
fb4abbf35553b8d69447be195a14018e335cbce0756b9ae91160bc4dc8253968a4b94c383f40aad1e1bd20aaeb700efced91341f3b26077a0d44b3dc00aa89c7

diff --git a/dev-ruby/serverengine/serverengine-2.2.1.ebuild 
b/dev-ruby/serverengine/serverengine-2.2.1.ebuild
deleted file mode 100644
index e563fa5d3d3c..
--- a/dev-ruby/serverengine/serverengine-2.2.1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-USE_RUBY="ruby24 ruby25 ruby26 ruby27"
-
-RUBY_FAKEGEM_EXTRADOC="Changelog README.md"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A framework to implement robust multiprocess servers"
-HOMEPAGE="https://github.com/fluent/serverengine;
-LICENSE="Apache-2.0"
-
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE=""
-
-ruby_add_rdepend ">=dev-ruby/sigdump-0.2.2:0"
-
-ruby_add_bdepend "test? ( dev-ruby/bundler )"
-
-all_ruby_prepare() {
-   sed -i -e '/rake/ s/~>/>=/' \
-   -e '/rspec/ s/2.13.0/2.13/' \
-   -e '/rake-compiler/ s:^:#:' serverengine.gemspec || die
-}
-
-each_ruby_test() {
-   # The specs spawn ruby processes with bundler support
-   ${RUBY} -S bundle exec rspec-2 spec || die
-}

diff --git a/dev-ruby/serverengine/serverengine-2.2.2.ebuild 
b/dev-ruby/serverengine/serverengine-2.2.2.ebuild
deleted file mode 100644
index f8f4908872d2..
--- a/dev-ruby/serverengine/serverengine-2.2.2.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-USE_RUBY="ruby25 ruby26 ruby27"
-
-RUBY_FAKEGEM_EXTRADOC="Changelog README.md"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A framework to implement robust multiprocess servers"
-HOMEPAGE="https://github.com/fluent/serverengine;
-LICENSE="Apache-2.0"
-
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE=""
-
-ruby_add_rdepend ">=dev-ruby/sigdump-0.2.2:0"
-
-ruby_add_bdepend "test? ( dev-ruby/bundler )"
-
-all_ruby_prepare() {
-   sed -i -e '/rake/ s/~>/>=/' \
-   -e '/rspec/ s/2.13.0/2.13/' \
-   -e '/rake-compiler/ s:^:#:' serverengine.gemspec || die
-}
-
-each_ruby_test() {
-   # The specs spawn ruby processes with bundler support
-   ${RUBY} -S bundle exec rspec-2 spec || die
-}

diff --git a/dev-ruby/serverengine/serverengine-2.2.3.ebuild 
b/dev-ruby/serverengine/serverengine-2.2.3.ebuild
deleted file mode 100644
index 0b16849df73b..
--- a/dev-ruby/serverengine/serverengine-2.2.3.ebuild
+++ /dev/null
@@ -1,34 

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

2022-02-04 Thread Hans de Graaff
commit: a065a9820172f4dd279d5f48e10f04f408b8ead2
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb  5 06:47:19 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb  5 06:57:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a065a982

www-servers/puma: cleanup

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

 www-servers/puma/Manifest |  2 --
 www-servers/puma/puma-5.3.2-r1.ebuild | 59 ---
 www-servers/puma/puma-5.4.0.ebuild| 59 ---
 3 files changed, 120 deletions(-)

diff --git a/www-servers/puma/Manifest b/www-servers/puma/Manifest
index adfdd764f6d9..ed102c703ee9 100644
--- a/www-servers/puma/Manifest
+++ b/www-servers/puma/Manifest
@@ -1,4 +1,2 @@
-DIST puma-5.3.2.tar.gz 297673 BLAKE2B 
e3bfa38347526063587db966d20ea68f32cd88616d89b5f2d9152228d5d420b50c2918e24304c1bc8119af5790a2464f0a055ab92862a56262013ddbba006a1f
 SHA512 
32e80b413184d371d451a35985a371a7655df0f7e81624f2a05e3cf65c2e1b035275a8e25ab03d13c9c1f921ec30cdeb3659e1201baae5940dcb3edcb525ff25
-DIST puma-5.4.0.tar.gz 298525 BLAKE2B 
d93231582cd83519c258093fd9ac5e2b06398133e82e2d350103e7438a4ed1fd9b36f627739dbbad86e839211850c5387be57d5d114835e7e4d99940e842b128
 SHA512 
032a507d852c555393f401d4e72c358cf8c49d1c93ff7a559969f3d1f84c0b49180cbcee975bb6fea621d034a00874268ff05ae76f91775cc24089de0b4560da
 DIST puma-5.5.2.tar.gz 302778 BLAKE2B 
5911accde19aaed34cffecc71eb2db02f0d9f9ea7b57437ff7cf7580b0b51245ed68b254778cbdc11bea624b9f192aef0bfa7e24acde73b77290d780ab177933
 SHA512 
9887b465c6ed2a8e551b15fd161f19a9d2baa96b8eb8e247f13c98df9d34f6097bce81a52e8f88d69088d9b5f8477137af9110b7546afabc53767f337ad00ef8
 DIST puma-5.6.1.tar.gz 308896 BLAKE2B 
0fa28fee64da577965c16fa564275760fbb3ebd04ed3eff583e53733b2f674ec6d29c20d2734bd16cb83aca8747ff5049e86d692bb5dd70fa5112a7a2c64ebf4
 SHA512 
262f17343668f5bf68842664eb6445208755385428151354fdb4039411e339c5c686f684bdb32c974516add3ca86af5693d1e169cf2bf74a8614be3cc06eccb0

diff --git a/www-servers/puma/puma-5.3.2-r1.ebuild 
b/www-servers/puma/puma-5.3.2-r1.ebuild
deleted file mode 100644
index aa275d9b6699..
--- a/www-servers/puma/puma-5.3.2-r1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby25 ruby26 ruby27 ruby30"
-
-RUBY_FAKEGEM_GEMSPEC="puma.gemspec"
-
-RUBY_FAKEGEM_EXTENSIONS=(ext/puma_http11/extconf.rb)
-RUBY_FAKEGEM_EXTENSION_LIBDIR=lib/puma
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="a simple, fast, threaded, and highly concurrent HTTP 1.1 server 
for Ruby/Rack"
-HOMEPAGE="https://puma.io/;
-SRC_URI="https://github.com/puma/puma/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="3"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86"
-IUSE=""
-
-DEPEND+=" dev-libs/openssl:0 test? ( net-misc/curl )"
-RDEPEND+=" dev-libs/openssl:0="
-
-ruby_add_bdepend "virtual/ruby-ssl
-   test? ( dev-ruby/rack >=dev-ruby/minitest-5.9:5 
>=dev-ruby/test-unit-3.0:2 )"
-
-ruby_add_rdepend "dev-ruby/nio4r:2"
-
-all_ruby_prepare() {
-   sed -e '/bundler/ s:^:#:' \
-   -e '/prove/ s:^:#:' \
-   -e '/stub_const/ s:^:#:' \
-   -i test/helper.rb || die
-
-   # Avoid tests failing inconsistently
-   sed -i -e '/test_bad_client/askip "inconsistent results"' 
test/test_web_server.rb || die
-
-   # Avoid launcher tests since they make assumptions about bundler use
-   rm -f test/test_launcher.rb test/test_worker_gem_independence.rb || die
-
-   # Skip integration tests since they make a lot of assumptions about
-   # the environment
-   rm -f test/test_integration_* test/test_preserve_bundler_env.rb|| die
-
-   # Avoid test that uses unpackaged stub_const
-   sed -i -e '/test_shutdown_with_grace/,/^  end/ s:^:#:' 
test/test_thread_pool.rb || die
-
-   sed -e 's/git ls-files --/find/' \
-   -e 's:_relative ": "./:' \
-   -i ${RUBY_FAKEGEM_GEMSPEC} || die
-}
-
-each_ruby_test() {
-   einfo "Running test suite"
-   ${RUBY} -Ilib:.:test -e "gem 'minitest', '~>5.9'; gem 'test-unit', 
'~>3.0'; require 'minitest/autorun'; Dir['test/**/*test_*.rb'].each{|f| require 
f}" || die
-}

diff --git a/www-servers/puma/puma-5.4.0.ebuild 
b/www-servers/puma/puma-5.4.0.ebuild
deleted file mode 100644
index 055f299b4a41..
--- a/www-servers/puma/puma-5.4.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-USE_RUBY="ruby26 ruby27 ruby30"
-
-RUBY_FAKEGEM_GEMSPEC="puma.gemspec"
-
-RUBY_FAKEGEM_EXTENSIONS=(ext/puma_http11/extconf.rb)
-RUBY_FAKEGEM_EXTENSION_LIBDIR=lib/puma
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="a simple, fast, threaded, and highly concurrent HTTP 1.1 server 
for Ruby/Rack"

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

2022-02-04 Thread Hans de Graaff
commit: 29c29d9274c799c29c3946f9dcbe777692f67642
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb  5 06:51:29 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb  5 06:57:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29c29d92

dev-ruby/sigdump: cleanup

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

 dev-ruby/sigdump/sigdump-0.2.4.ebuild | 20 
 1 file changed, 20 deletions(-)

diff --git a/dev-ruby/sigdump/sigdump-0.2.4.ebuild 
b/dev-ruby/sigdump/sigdump-0.2.4.ebuild
deleted file mode 100644
index d73f3c482809..
--- a/dev-ruby/sigdump/sigdump-0.2.4.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby24 ruby25 ruby26 ruby27"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="ChangeLog README.md"
-
-RUBY_FAKEGEM_RECIPE_TEST="none"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Setup signal handler which dumps backtrace of threads and 
allocated objects"
-HOMEPAGE="https://github.com/frsyuki/sigdump;
-LICENSE="MIT"
-
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE=""



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

2022-02-04 Thread Joonas Niilola
commit: cc6a62cb2986ce596ab175392d1b73ba1894b3ef
Author: Philipp Rösner  protonmail  com>
AuthorDate: Fri Feb  4 21:58:53 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Feb  5 06:52:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc6a62cb

app-text/mupdf: fixed unconditional BDEPEND

The x11-base/xorg-proto is only needed if the X use flag is enabled.

Closes: https://bugs.gentoo.org/832628
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Philipp Rösner  protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/24082
Signed-off-by: Joonas Niilola  gentoo.org>

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

diff --git a/app-text/mupdf/mupdf-1.19.0.ebuild 
b/app-text/mupdf/mupdf-1.19.0.ebuild
index f88096d3c7b6..6dfeb8c2ecc4 100644
--- a/app-text/mupdf/mupdf-1.19.0.ebuild
+++ b/app-text/mupdf/mupdf-1.19.0.ebuild
@@ -39,7 +39,7 @@ RDEPEND="
)
 "
 DEPEND="${RDEPEND}"
-BDEPEND="x11-base/xorg-proto
+BDEPEND="X? ( x11-base/xorg-proto )
virtual/pkgconfig"
 
 PATCHES=(



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

2022-02-04 Thread Sam James
commit: b3c5c0bc107fc022e2063057133d62a8e34f0b31
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:36:35 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:36:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3c5c0bc

sys-kernel/gentoo-kernel-bin: Stabilize 5.15.19 amd64, #832716

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

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

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.15.19.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.15.19.ebuild
index 1c7be3c0f22b..de0ac01a58aa 100644
--- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.15.19.ebuild
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.15.19.ebuild
@@ -34,7 +34,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: dev-python/typeguard/

2022-02-04 Thread Sam James
commit: 41b5aee8a1d6e98e27b358237a3d35852664b721
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:37:12 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:37:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41b5aee8

dev-python/typeguard: Keyword 2.13.3 arm, #808378

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

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

diff --git a/dev-python/typeguard/typeguard-2.13.3.ebuild 
b/dev-python/typeguard/typeguard-2.13.3.ebuild
index 680d8697e845..7981d0e4082e 100644
--- a/dev-python/typeguard/typeguard-2.13.3.ebuild
+++ b/dev-python/typeguard/typeguard-2.13.3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~hppa ~ia64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~riscv ~sparc ~x86"
 
 BDEPEND="
dev-python/setuptools_scm[${PYTHON_USEDEP}]



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

2022-02-04 Thread Sam James
commit: 9d88b8b6dcb4ba507ec0397e9e13625e9cd607f5
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:37:16 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:37:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d88b8b6

dev-python/stack_data: Keyword 0.1.4 arm, #808378

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

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

diff --git a/dev-python/stack_data/stack_data-0.1.4.ebuild 
b/dev-python/stack_data/stack_data-0.1.4.ebuild
index a980abaa20e4..de3983db5a0a 100644
--- a/dev-python/stack_data/stack_data-0.1.4.ebuild
+++ b/dev-python/stack_data/stack_data-0.1.4.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~hppa ~ia64 ~riscv ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~riscv ~sparc"
 
 RDEPEND="
dev-python/asttokens[${PYTHON_USEDEP}]



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

2022-02-04 Thread Sam James
commit: 112234906709c50e2ff05b3e8972cd4e408d4bf1
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:37:15 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:37:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11223490

dev-python/pure_eval: Keyword 0.2.2 arm, #808378

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

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

diff --git a/dev-python/pure_eval/pure_eval-0.2.2.ebuild 
b/dev-python/pure_eval/pure_eval-0.2.2.ebuild
index 0a1871c0b62e..f5c778623018 100644
--- a/dev-python/pure_eval/pure_eval-0.2.2.ebuild
+++ b/dev-python/pure_eval/pure_eval-0.2.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~hppa ~ia64 ~riscv ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~riscv ~sparc"
 
 BDEPEND="dev-python/wheel[${PYTHON_USEDEP}]"
 



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

2022-02-04 Thread Sam James
commit: 48bbb772f8b4876b93d589fe6447dd20de836ca3
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:36:23 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:36:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48bbb772

sys-kernel/gentoo-kernel-bin: Stabilize 5.10.96 amd64, #832719

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

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

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.96.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.96.ebuild
index b29079d5c19d..b86adf7496ec 100644
--- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.96.ebuild
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.96.ebuild
@@ -34,7 +34,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: sys-kernel/gentoo-kernel/

2022-02-04 Thread Sam James
commit: d234d395d28f7d30d75b58967ef0c9a6da2759ac
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:36:34 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:36:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d234d395

sys-kernel/gentoo-kernel: Stabilize 5.15.19 amd64, #832716

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

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

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



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

2022-02-04 Thread Sam James
commit: 8f706c5701e84a897341cc3c360163b06096fc17
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:36:30 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:36:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f706c57

sys-kernel/gentoo-kernel-bin: Stabilize 5.4.176 amd64, #832720

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

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

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.176.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.176.ebuild
index 8dc7dfa28608..62b2640177fd 100644
--- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.176.ebuild
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.176.ebuild
@@ -34,7 +34,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: dev-python/ipython/

2022-02-04 Thread Sam James
commit: b62bbad1ee861fb616273390abe8d232f38e5d7b
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:37:17 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:37:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b62bbad1

dev-python/ipython: Keyword 8.0.1 arm, #808378

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

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

diff --git a/dev-python/ipython/ipython-8.0.1.ebuild 
b/dev-python/ipython/ipython-8.0.1.ebuild
index 3354470b2300..95e0c3ecffa4 100644
--- a/dev-python/ipython/ipython-8.0.1.ebuild
+++ b/dev-python/ipython/ipython-8.0.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~hppa ~ia64 ~riscv ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~riscv ~sparc"
 IUSE="doc examples matplotlib notebook nbconvert qt5 +smp test"
 RESTRICT="!test? ( test )"
 



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

2022-02-04 Thread Sam James
commit: 770c45ee2c9f1f3dc561a2b5aafccda4353cabe8
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:36:31 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:36:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=770c45ee

virtual/dist-kernel: Stabilize 5.4.176 amd64, #832720

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

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

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



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

2022-02-04 Thread Sam James
commit: 32479fd3e1aba4ab1fb9e49aeb311b76b85f5da7
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:36:37 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:36:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32479fd3

virtual/dist-kernel: Stabilize 5.15.19 amd64, #832716

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

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

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



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

2022-02-04 Thread Sam James
commit: 0cb8126ff5b716f4778ae2ba4ce7c5eb623f
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:37:13 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:37:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cb8

dev-python/littleutils: Keyword 0.2.2 arm, #808378

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

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

diff --git a/dev-python/littleutils/littleutils-0.2.2.ebuild 
b/dev-python/littleutils/littleutils-0.2.2.ebuild
index 417a54f3fe95..d12a2cb38508 100644
--- a/dev-python/littleutils/littleutils-0.2.2.ebuild
+++ b/dev-python/littleutils/littleutils-0.2.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~hppa ~ia64 ~riscv ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~riscv ~sparc"
 
 python_test() {
"${EPYTHON}" -m doctest -v ${PN}/__init__.py || die "Tests fail with 
${EPYTHON}"



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

2022-02-04 Thread Sam James
commit: 265ba10ed841b987375ab4f1c93385b2538ccd3b
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:36:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:36:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=265ba10e

sys-kernel/gentoo-kernel: Stabilize 5.10.96 amd64, #832719

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

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

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



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

2022-02-04 Thread Sam James
commit: 6cff6302242973814f57c359a539f822e736eea6
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:36:29 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:36:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cff6302

sys-kernel/gentoo-kernel: Stabilize 5.4.176 amd64, #832720

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

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

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



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

2022-02-04 Thread Sam James
commit: e183c070085f7eb4d0bfeda10c9fa25e9f1d05bf
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:36:24 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:36:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e183c070

virtual/dist-kernel: Stabilize 5.10.96 amd64, #832719

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

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

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



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

2022-02-04 Thread Sam James
commit: d97653fa6e11d4e1ce9dc01d4fb3be3b3f568c0d
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:34:58 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:34:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d97653fa

dev-libs/libuv: Stabilize 1.43.0 sparc, #832718

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

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

diff --git a/dev-libs/libuv/libuv-1.43.0.ebuild 
b/dev-libs/libuv/libuv-1.43.0.ebuild
index f10390fc40dc..a0785568838e 100644
--- a/dev-libs/libuv/libuv-1.43.0.ebuild
+++ b/dev-libs/libuv/libuv-1.43.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} = * ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/libuv/libuv/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~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 ~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="BSD BSD-2 ISC MIT"



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

2022-02-04 Thread Sam James
commit: fb4b90602bea34556e7a016caf60242585d6a4a8
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:32:31 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:32:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb4b9060

media-sound/easyeffects: Keyword 6.2.3 arm, #807265

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

 media-sound/easyeffects/easyeffects-6.2.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/easyeffects/easyeffects-6.2.3.ebuild 
b/media-sound/easyeffects/easyeffects-6.2.3.ebuild
index c7f50ff049df..5a49e98687bf 100644
--- a/media-sound/easyeffects/easyeffects-6.2.3.ebuild
+++ b/media-sound/easyeffects/easyeffects-6.2.3.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://github.com/wwmm/easyeffects;
 else
SRC_URI="https://github.com/wwmm/easyeffects/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc64"
+   KEYWORDS="~amd64 ~arm ~ppc64"
 fi
 
 LICENSE="GPL-3"



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

2022-02-04 Thread Sam James
commit: a362352a9bb76e0ced3ae5c652d87a36018e568b
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:32:49 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:32:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a362352a

dev-python/autocommand: Keyword 2.2.1_p2028 arm, #832036

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

 dev-python/autocommand/autocommand-2.2.1_p2028.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/autocommand/autocommand-2.2.1_p2028.ebuild 
b/dev-python/autocommand/autocommand-2.2.1_p2028.ebuild
index e38760d5c260..dbe122fe5eaa 100644
--- a/dev-python/autocommand/autocommand-2.2.1_p2028.ebuild
+++ b/dev-python/autocommand/autocommand-2.2.1_p2028.ebuild
@@ -20,6 +20,6 @@ S="${WORKDIR}/${PN}-${COMMIT}"
 
 LICENSE="LGPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~x86"
 
 distutils_enable_tests pytest



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

2022-02-04 Thread Sam James
commit: 382d373962190ac65e004645a46cb7238a53523d
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:32:44 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:32:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=382d3739

www-apps/selfoss: Keyword 2.18-r2 arm, #830614

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

 www-apps/selfoss/selfoss-2.18-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-apps/selfoss/selfoss-2.18-r2.ebuild 
b/www-apps/selfoss/selfoss-2.18-r2.ebuild
index 14e394637122..36b140445094 100644
--- a/www-apps/selfoss/selfoss-2.18-r2.ebuild
+++ b/www-apps/selfoss/selfoss-2.18-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/SSilence/${PN}/releases/download/${PV}/${P}.zip;
 S="${WORKDIR}"
 
 LICENSE="GPL-3"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 
 BDEPEND="app-arch/unzip"
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-irc/inspircd/

2022-02-04 Thread Sam James
commit: a4980067d7312983da84cf579a5d6a45078f2249
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:32:35 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:32:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4980067

net-irc/inspircd: Keyword 3.12.0 arm, #829521

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

 net-irc/inspircd/inspircd-3.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/inspircd/inspircd-3.12.0.ebuild 
b/net-irc/inspircd/inspircd-3.12.0.ebuild
index ffef87177d73..aa45b8b7971a 100644
--- a/net-irc/inspircd/inspircd-3.12.0.ebuild
+++ b/net-irc/inspircd/inspircd-3.12.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI+=" 
https://github.com/clinew/gentoo-distfiles/raw/master/inspircd-${PV}-
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
 IUSE="debug gnutls ldap maxminddb mbedtls mysql pcre postgres re2 regex-posix 
regex-stdlib sqlite ssl sslrehashsignal tre"
 
 RDEPEND="



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

2022-02-04 Thread Sam James
commit: 46a747494f49cf28f71d4a261792c0315394d6af
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:33:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:33:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46a74749

dev-util/flawfinder: Stabilize 2.0.19 ALLARCHES, #832721

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

 dev-util/flawfinder/flawfinder-2.0.19.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/flawfinder/flawfinder-2.0.19.ebuild 
b/dev-util/flawfinder/flawfinder-2.0.19.ebuild
index a188bbd52941..99f71eb662c3 100644
--- a/dev-util/flawfinder/flawfinder-2.0.19.ebuild
+++ b/dev-util/flawfinder/flawfinder-2.0.19.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~sparc-solaris ~x86-solaris"
+KEYWORDS="amd64 ~mips ~ppc ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos 
~sparc-solaris ~x86-solaris"
 
 PATCHES=( "${FILESDIR}"/${PN}-2.0.18-setup.patch )
 



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/cyclone/

2022-02-04 Thread Sam James
commit: fa664d175fa93b9fef6c5963a46f6bba64250ab0
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:32:26 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:32:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa664d17

dev-scheme/cyclone: Keyword 0.34.0 arm, #830553

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

 dev-scheme/cyclone/cyclone-0.34.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-scheme/cyclone/cyclone-0.34.0.ebuild 
b/dev-scheme/cyclone/cyclone-0.34.0.ebuild
index a60d8cdc7056..6af833b20e3d 100644
--- a/dev-scheme/cyclone/cyclone-0.34.0.ebuild
+++ b/dev-scheme/cyclone/cyclone-0.34.0.ebuild
@@ -16,7 +16,7 @@ if [[ "${PV}" == ** ]]; then
EGIT_REPO_URI="https://github.com/justinethier/${PN}-bootstrap.git;
 else

SRC_URI="https://github.com/justinethier/${PN}-bootstrap/archive/refs/tags/v${PV}.tar.gz
 -> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~arm ~x86"
S="${WORKDIR}/${PN}-bootstrap-${PV}"
 fi
 



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

2022-02-04 Thread Sam James
commit: 0ac2aa3fae7bf011bd0148a4543fefb6418c36f6
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:33:47 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:33:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ac2aa3f

media-libs/openexr: Stabilize 3.1.4 amd64, #832726

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

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

diff --git a/media-libs/openexr/openexr-3.1.4.ebuild 
b/media-libs/openexr/openexr-3.1.4.ebuild
index afd43341887c..0db2b9a0e13b 100644
--- a/media-libs/openexr/openexr-3.1.4.ebuild
+++ b/media-libs/openexr/openexr-3.1.4.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/AcademySoftwareFoundation/openexr/archive/refs/tags/
 LICENSE="BSD"
 SLOT="3/30" # based on SONAME
 # -ppc -sparc because broken on big endian, bug #818424
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 -ppc ~ppc64 ~riscv -sparc ~x86 ~amd64-linux 
~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 -ppc ~ppc64 ~riscv -sparc ~x86 ~amd64-linux 
~x86-linux ~x64-macos ~x86-solaris"
 IUSE="cpu_flags_x86_avx doc examples large-stack static-libs utils test 
threads"
 RESTRICT="!test? ( test )"
 



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

2022-02-04 Thread Sam James
commit: 3542e71cefe807b588c11fd3696d3d18e2ee1560
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:32:30 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:32:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3542e71c

gui-libs/libadwaita: Keyword 1.0.1 arm, #807265

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

 gui-libs/libadwaita/libadwaita-1.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libadwaita/libadwaita-1.0.1.ebuild 
b/gui-libs/libadwaita/libadwaita-1.0.1.ebuild
index 1ee9df61d7fb..705413782251 100644
--- a/gui-libs/libadwaita/libadwaita-1.0.1.ebuild
+++ b/gui-libs/libadwaita/libadwaita-1.0.1.ebuild
@@ -14,7 +14,7 @@ SLOT="1"
 IUSE="+introspection test +vala"
 REQUIRED_USE="vala? ( introspection )"
 
-KEYWORDS="~amd64 ~ppc64 ~riscv"
+KEYWORDS="~amd64 ~arm ~ppc64 ~riscv"
 
 DEPEND="
>=dev-libs/glib-2.66:2



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

2022-02-04 Thread Sam James
commit: dd87c26330c67fd76ec3cd55ad8f13c15cab61dc
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:32:16 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:32:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd87c263

dev-perl/Convert-BinHex: Keyword 1.125.0-r1 arm, #832493

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

 dev-perl/Convert-BinHex/Convert-BinHex-1.125.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Convert-BinHex/Convert-BinHex-1.125.0-r1.ebuild 
b/dev-perl/Convert-BinHex/Convert-BinHex-1.125.0-r1.ebuild
index a0c8eb006e72..dc75bd136d74 100644
--- a/dev-perl/Convert-BinHex/Convert-BinHex-1.125.0-r1.ebuild
+++ b/dev-perl/Convert-BinHex/Convert-BinHex-1.125.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Extract data from Macintosh BinHex files"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 sparc x86"
 
 RDEPEND="
virtual/perl-Carp



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

2022-02-04 Thread Sam James
commit: 313d1721e499334189ad3f24cfb5c5b6d8e487fc
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:32:48 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:32:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=313d1721

dev-python/setuptools: Keyword 60.7.1 arm, #832036

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

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

diff --git a/dev-python/setuptools/setuptools-60.7.1.ebuild 
b/dev-python/setuptools/setuptools-60.7.1.ebuild
index c9d61757d04c..9adee6d707ec 100644
--- a/dev-python/setuptools/setuptools-60.7.1.ebuild
+++ b/dev-python/setuptools/setuptools-60.7.1.ebuild
@@ -18,7 +18,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2022-02-04 Thread Sam James
commit: a0df1929a6ff550f62f45c3bd40ddba6a7d5d21e
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:32:40 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:32:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0df1929

net-dns/resolvconf-symlink: Keyword 0 arm, #831409

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

 net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild 
b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
index d0c26696f14e..4236454ba1f2 100644
--- a/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
+++ b/net-dns/resolvconf-symlink/resolvconf-symlink-0.ebuild
@@ -10,7 +10,7 @@ S=${WORKDIR}
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ia64 ~m68k ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~m68k ~riscv ~sparc ~x86"
 IUSE="+symlink"
 
 pkg_preinst() {



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

2022-02-04 Thread Sam James
commit: 3f9698093fa36111044295ca645968fa1af943e1
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:32:50 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:32:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f969809

dev-python/pip-run: Keyword 8.8.0 arm, #832036

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

 dev-python/pip-run/pip-run-8.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pip-run/pip-run-8.8.0.ebuild 
b/dev-python/pip-run/pip-run-8.8.0.ebuild
index 1c1d88615395..eeeb53d821d5 100644
--- a/dev-python/pip-run/pip-run-8.8.0.ebuild
+++ b/dev-python/pip-run/pip-run-8.8.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~x86"
 
 RDEPEND="
dev-python/autocommand[${PYTHON_USEDEP}]



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

2022-02-04 Thread Sam James
commit: b33bcaeb2665a6abef91a6706646be76b2659cfe
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:32:20 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:32:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b33bcaeb

dev-perl/Image-Info: Keyword 1.420.0 arm, #832493

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

 dev-perl/Image-Info/Image-Info-1.420.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Image-Info/Image-Info-1.420.0.ebuild 
b/dev-perl/Image-Info/Image-Info-1.420.0.ebuild
index ee8298685787..963553766d3d 100644
--- a/dev-perl/Image-Info/Image-Info-1.420.0.ebuild
+++ b/dev-perl/Image-Info/Image-Info-1.420.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="The Perl Image-Info Module"
 
 SLOT="0"
-KEYWORDS="amd64 ~hppa ppc ppc64 sparc x86"
+KEYWORDS="amd64 ~arm ~hppa ppc ppc64 sparc x86"
 IUSE=""
 
 RDEPEND="



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

2022-02-04 Thread Sam James
commit: d6403346ffbae868dd5ea03191835ff2d1b624bd
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:32:18 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:32:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6403346

dev-perl/File-LibMagic: Keyword 1.230.0 arm, #832493

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

 dev-perl/File-LibMagic/File-LibMagic-1.230.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/File-LibMagic/File-LibMagic-1.230.0.ebuild 
b/dev-perl/File-LibMagic/File-LibMagic-1.230.0.ebuild
index 3c4b49ab0711..39d77cf6451f 100644
--- a/dev-perl/File-LibMagic/File-LibMagic-1.230.0.ebuild
+++ b/dev-perl/File-LibMagic/File-LibMagic-1.230.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Perl wrapper for libmagic"
 
 SLOT="0"
-KEYWORDS="amd64 ~hppa ppc ppc64 sparc x86"
+KEYWORDS="amd64 ~arm ~hppa ppc ppc64 sparc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: net-irc/atheme-services/

2022-02-04 Thread Sam James
commit: 09916cb93d4206820d4241f972a427b992c502a4
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:32:23 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:32:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09916cb9

net-irc/atheme-services: Keyword 7.2.12 arm, #829522

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

 net-irc/atheme-services/atheme-services-7.2.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/atheme-services/atheme-services-7.2.12.ebuild 
b/net-irc/atheme-services/atheme-services-7.2.12.ebuild
index f041e74b36bc..366022e33306 100644
--- a/net-irc/atheme-services/atheme-services-7.2.12.ebuild
+++ b/net-irc/atheme-services/atheme-services-7.2.12.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/atheme/atheme/releases/download/v${PV}/${PN}-v${PV}.
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64"
+KEYWORDS="amd64 ~arm"
 IUSE="cracklib largenet ldap nls +pcre perl profile ssl"
 S="${WORKDIR}/${PN}-v${PV}"
 



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

2022-02-04 Thread Sam James
commit: 0bcd6005e132517133a144e28a77fff581d0eb17
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:32:17 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:32:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bcd6005

dev-perl/Email-Date-Format: Keyword 1.5.0-r1 arm, #832493

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

 dev-perl/Email-Date-Format/Email-Date-Format-1.5.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Email-Date-Format/Email-Date-Format-1.5.0-r1.ebuild 
b/dev-perl/Email-Date-Format/Email-Date-Format-1.5.0-r1.ebuild
index 9616ace662d2..9de5f9f181d1 100644
--- a/dev-perl/Email-Date-Format/Email-Date-Format-1.5.0-r1.ebuild
+++ b/dev-perl/Email-Date-Format/Email-Date-Format-1.5.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Produce RFC 822 date strings"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~sparc-solaris ~x86-solaris"
 
 RDEPEND="
>=virtual/perl-Exporter-5.570.0



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

2022-02-04 Thread Sam James
commit: df12eda945a15cc8ed1639a9cd7d961e0dfffc1d
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb  5 06:32:15 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb  5 06:32:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df12eda9

dev-perl/Test-Most: Keyword 0.370.0 arm, #832493

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

 dev-perl/Test-Most/Test-Most-0.370.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Test-Most/Test-Most-0.370.0.ebuild 
b/dev-perl/Test-Most/Test-Most-0.370.0.ebuild
index 3a070879289a..46b69fa34f3c 100644
--- a/dev-perl/Test-Most/Test-Most-0.370.0.ebuild
+++ b/dev-perl/Test-Most/Test-Most-0.370.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Most commonly needed test functions and features"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 
 RDEPEND="
>=dev-perl/Exception-Class-1.140.0



[gentoo-commits] repo/gentoo:master commit in: games-roguelike/stone-soup/

2022-02-04 Thread Erik Mackdanz
commit: dbed0eaa1ac004744c95b1059f17e712b1289a82
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Sat Feb  5 03:38:30 2022 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Sat Feb  5 03:38:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbed0eaa

games-roguelike/stone-soup: bump to 0.28 release

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

 games-roguelike/stone-soup/Manifest|   1 +
 .../stone-soup/stone-soup-0.28.0.ebuild| 209 +
 2 files changed, 210 insertions(+)

diff --git a/games-roguelike/stone-soup/Manifest 
b/games-roguelike/stone-soup/Manifest
index 7ed31c6e9858..22f34da02b59 100644
--- a/games-roguelike/stone-soup/Manifest
+++ b/games-roguelike/stone-soup/Manifest
@@ -10,3 +10,4 @@ DIST stone-soup-0.28.svg 68546 BLAKE2B 
7c66286c9e8a3516e8483b3edb628a59fce29d8d2
 DIST stone_soup-0.25.1.zip 95477710 BLAKE2B 
0b38a6c7cb7c4c87acccb861b5aae665cd2b6b532f6e86d4a9fa594e0d363b86b4af1ea47275f7fd026ea69d85215be8cdf46258bd620e738b4850e5eceed006
 SHA512 
fa7e8be582c5c6615531884ade4c113542c06c164b6912095c1adf2f16a31cb2ecce057d74132b11b1b1c256a77433037948d4e54819739b7e222cc896cd5220
 DIST stone_soup-0.26.1.zip 95585384 BLAKE2B 
6d1cb99fc44e918cad4144608f259e67a26df444b93c8501590ff209e8856fd08c514d4c8c78cb0848d8e6127cdf4360b47d21ced5d919da982421934b46102d
 SHA512 
637f1a07e9f35e18eda10c17dc28449364c56aee8456497e30552acb55608a9433cff8b64af877049c21cb2a42eb2fcad28f58a7e57a1d835eb8c252e580205d
 DIST stone_soup-0.27.1.zip 96934633 BLAKE2B 
8821920a4faad9474f08a34ae3c272cb9dcd3ddeb9029e033c22eb8e6650ef20bbc30e0c0ca1556d08c1b7b898fdbdd3667a3ac9a8527e0c322cd8c78ab391bb
 SHA512 
845dafc9895ada3712903de63b95cca9eeb66160e4a04ba21193d916447fca8e7248b851f1e938f43b8d3937cf4f4437443bdc4fe2da893fe3918fed4e0b5204
+DIST stone_soup-0.28.0.zip 98876317 BLAKE2B 
10f554ea004778b6a2537caa2f994c8e7b12e190ddaaf55f9fb5d2499b91ee6d15d63a9d50167528c1625058bc262c5cba8ba08235fc377e83329ba5f80158be
 SHA512 
7316175ccf6efea376a8a9157f9c4d1786f59c544af39e5ff28a9fcd889e23ef58c2a3680df46807c84b2ce0feb347e661c929195e8affb3d3f98c24832b17e0

diff --git a/games-roguelike/stone-soup/stone-soup-0.28.0.ebuild 
b/games-roguelike/stone-soup/stone-soup-0.28.0.ebuild
new file mode 100644
index ..c821aec84277
--- /dev/null
+++ b/games-roguelike/stone-soup/stone-soup-0.28.0.ebuild
@@ -0,0 +1,209 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+LUA_COMPAT=( lua5-{1..3} )
+PYTHON_COMPAT=( python3_{7,8,9,10} )
+VIRTUALX_REQUIRED="manual"
+inherit desktop python-any-r1 lua-single xdg-utils toolchain-funcs
+
+DESCRIPTION="Role-playing roguelike game of exploration and treasure-hunting 
in dungeons"
+HOMEPAGE="https://crawl.develz.org;
+SLOT="0.28"
+
+# Leave empty string if not a _pre release
+COMMITSHA=""
+if [ -z "${COMMITSHA}" ]; then
+   # This is a proper release
+   SRC_URI="
+   
https://github.com/crawl/crawl/releases/download/${PV}/${PN/-/_}-${PV}.zip
+   https://dev.gentoo.org/~stasibear/distfiles/${PN}.png -> 
${PN}-${SLOT}.png
+   https://dev.gentoo.org/~stasibear/distfiles/${PN}.svg -> 
${PN}-${SLOT}.svg
+   "
+   MY_P="stone_soup-${PV}"
+else
+   # This is a _pre release
+   SRC_URI="
+   https://github.com/crawl/crawl/archive/${COMMITSHA}.tar.gz -> 
${P}.tar.gz
+   https://dev.gentoo.org/~stasibear/distfiles/${PN}.png -> 
${PN}-${SLOT}.png
+   https://dev.gentoo.org/~stasibear/distfiles/${PN}.svg -> 
${PN}-${SLOT}.svg
+   "
+   MY_P="crawl-${COMMITSHA}/crawl-ref"
+fi
+
+# 3-clause BSD: mt19937ar.cc, MSVC/stdint.h
+# 2-clause BSD: all contributions by Steve Noonan and Jesse Luehrs
+# Public Domain|CC0: most of tiles
+# MIT: json.cc/json.h, some .js files in webserver/static/scripts/contrib/
+LICENSE="GPL-2 BSD BSD-2 public-domain CC0-1.0 MIT"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug ncurses sound test +tiles"
+RESTRICT="!test? ( test )"
+
+S=${WORKDIR}/${MY_P}/source
+RDEPEND="
+   ${LUA_DEPS}
+   dev-db/sqlite:3
+   sys-libs/zlib
+   !ncurses? ( !tiles? ( sys-libs/ncurses:0 ) )
+   ncurses? ( sys-libs/ncurses:0 )
+   tiles? (
+   media-fonts/dejavu
+   media-libs/freetype:2
+   media-libs/libpng:0
+   sound? (
+  media-libs/libsdl2[X,opengl,sound,video]
+  media-libs/sdl2-mixer
+   )
+   !sound? ( media-libs/libsdl2[X,opengl,video] )
+   media-libs/sdl2-image[png]
+   virtual/glu
+   virtual/opengl
+   )"
+DEPEND="${RDEPEND}
+   app-arch/unzip
+   dev-lang/perl
+   ${PYTHON_DEPS}
+   $(python_gen_any_dep 'dev-python/pyyaml[${PYTHON_USEDEP}]')
+   sys-devel/flex
+   test? ( dev-cpp/catch:0 )
+   tiles? (
+   

[gentoo-commits] repo/gentoo:master commit in: games-roguelike/stone-soup/

2022-02-04 Thread Erik Mackdanz
commit: 99de4ad734964d95697be554652ea2fca12f4841
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Sat Feb  5 03:39:30 2022 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Sat Feb  5 03:39:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99de4ad7

games-roguelike/stone-soup: remove 0.28 pre-release

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

 games-roguelike/stone-soup/Manifest|   1 -
 .../stone-soup-0.28.0_pre20220107.ebuild   | 209 -
 2 files changed, 210 deletions(-)

diff --git a/games-roguelike/stone-soup/Manifest 
b/games-roguelike/stone-soup/Manifest
index 22f34da02b59..87183395a3d8 100644
--- a/games-roguelike/stone-soup/Manifest
+++ b/games-roguelike/stone-soup/Manifest
@@ -4,7 +4,6 @@ DIST stone-soup-0.26.png 1351 BLAKE2B 
cc31abd59701aa6f0fb0bdcd90630ceebf7b3cb8b6
 DIST stone-soup-0.26.svg 68546 BLAKE2B 
7c66286c9e8a3516e8483b3edb628a59fce29d8d248c3fd5b06e308782bbc651814f21ec958b30c36074a2576ced4bb10f291b5236da6f6e865ce1d7cefdf96d
 SHA512 
dca555271faf704eb8ecdf5ee8a763df42cdeba94e9c163608c438cfc73c6fbf53416547050cad57f477ade191842e701785b65b7a9f18e27ceab05df8f2f75f
 DIST stone-soup-0.27.png 1351 BLAKE2B 
cc31abd59701aa6f0fb0bdcd90630ceebf7b3cb8b60f0e2817f8800c5bc4b3a5b9fef63c90a97b6248f306e7e3da0df3863a2195b8771863344d2443e7956d59
 SHA512 
4695204c8b936f7aac1ba15b02a6115a955fb2c56aa9a0b968ff007bc9a1a59b608110d60cce5625a9b92cd2c869bbea7e15433a53c1a338622809477a5846bc
 DIST stone-soup-0.27.svg 68546 BLAKE2B 
7c66286c9e8a3516e8483b3edb628a59fce29d8d248c3fd5b06e308782bbc651814f21ec958b30c36074a2576ced4bb10f291b5236da6f6e865ce1d7cefdf96d
 SHA512 
dca555271faf704eb8ecdf5ee8a763df42cdeba94e9c163608c438cfc73c6fbf53416547050cad57f477ade191842e701785b65b7a9f18e27ceab05df8f2f75f
-DIST stone-soup-0.28.0_pre20220107.tar.gz 16263257 BLAKE2B 
9a1b9127460aad8722cd0a538937897976f15fa08de9043a109cc47fd8b831ad3c788ba91d1b84f15e102a2a7976c060c4bc99bb8fef0410eaa6def0c608ef26
 SHA512 
f90c8849640c9a1c8f59f4c1204064e830527f68118d65452040dfd46def1512025f1e51ed9aa108ab1cf27bf8cebc5725d3d9605033a9349b907ba290db3472
 DIST stone-soup-0.28.png 1351 BLAKE2B 
cc31abd59701aa6f0fb0bdcd90630ceebf7b3cb8b60f0e2817f8800c5bc4b3a5b9fef63c90a97b6248f306e7e3da0df3863a2195b8771863344d2443e7956d59
 SHA512 
4695204c8b936f7aac1ba15b02a6115a955fb2c56aa9a0b968ff007bc9a1a59b608110d60cce5625a9b92cd2c869bbea7e15433a53c1a338622809477a5846bc
 DIST stone-soup-0.28.svg 68546 BLAKE2B 
7c66286c9e8a3516e8483b3edb628a59fce29d8d248c3fd5b06e308782bbc651814f21ec958b30c36074a2576ced4bb10f291b5236da6f6e865ce1d7cefdf96d
 SHA512 
dca555271faf704eb8ecdf5ee8a763df42cdeba94e9c163608c438cfc73c6fbf53416547050cad57f477ade191842e701785b65b7a9f18e27ceab05df8f2f75f
 DIST stone_soup-0.25.1.zip 95477710 BLAKE2B 
0b38a6c7cb7c4c87acccb861b5aae665cd2b6b532f6e86d4a9fa594e0d363b86b4af1ea47275f7fd026ea69d85215be8cdf46258bd620e738b4850e5eceed006
 SHA512 
fa7e8be582c5c6615531884ade4c113542c06c164b6912095c1adf2f16a31cb2ecce057d74132b11b1b1c256a77433037948d4e54819739b7e222cc896cd5220

diff --git a/games-roguelike/stone-soup/stone-soup-0.28.0_pre20220107.ebuild 
b/games-roguelike/stone-soup/stone-soup-0.28.0_pre20220107.ebuild
deleted file mode 100644
index b2a25a40c786..
--- a/games-roguelike/stone-soup/stone-soup-0.28.0_pre20220107.ebuild
+++ /dev/null
@@ -1,209 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LUA_COMPAT=( lua5-{1..3} )
-PYTHON_COMPAT=( python3_{7,8,9,10} )
-VIRTUALX_REQUIRED="manual"
-inherit desktop python-any-r1 lua-single xdg-utils toolchain-funcs
-
-DESCRIPTION="Role-playing roguelike game of exploration and treasure-hunting 
in dungeons"
-HOMEPAGE="https://crawl.develz.org;
-SLOT="0.28"
-
-# Leave empty string if not a _pre release
-COMMITSHA="f3d713df7a6deafd7ba73dbf2eb6319aedc5b6dc"
-if [ -z "${COMMITSHA}" ]; then
-   # This is a proper release
-   SRC_URI="
-   
https://github.com/crawl/crawl/releases/download/${PV}/${PN/-/_}-${PV}.zip
-   https://dev.gentoo.org/~stasibear/distfiles/${PN}.png -> 
${PN}-${SLOT}.png
-   https://dev.gentoo.org/~stasibear/distfiles/${PN}.svg -> 
${PN}-${SLOT}.svg
-   "
-   MY_P="stone_soup-${PV}"
-else
-   # This is a _pre release
-   SRC_URI="
-   https://github.com/crawl/crawl/archive/${COMMITSHA}.tar.gz -> 
${P}.tar.gz
-   https://dev.gentoo.org/~stasibear/distfiles/${PN}.png -> 
${PN}-${SLOT}.png
-   https://dev.gentoo.org/~stasibear/distfiles/${PN}.svg -> 
${PN}-${SLOT}.svg
-   "
-   MY_P="crawl-${COMMITSHA}/crawl-ref"
-fi
-
-# 3-clause BSD: mt19937ar.cc, MSVC/stdint.h
-# 2-clause BSD: all contributions by Steve Noonan and Jesse Luehrs
-# Public Domain|CC0: most of tiles
-# MIT: json.cc/json.h, some .js files in webserver/static/scripts/contrib/
-LICENSE="GPL-2 BSD BSD-2 public-domain CC0-1.0 

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

2022-02-04 Thread Zac Medico
commit: 8576faaf8a5592b6205b8a33235cd2eb84b5d1b8
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Feb  5 00:52:48 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Feb  5 00:52:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8576faaf

dev-python/pyrqlite: fix test with rqlite-7.2.0

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

 dev-python/pyrqlite/Manifest  | 1 +
 dev-python/pyrqlite/pyrqlite-2.1.1.ebuild | 7 +--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/dev-python/pyrqlite/Manifest b/dev-python/pyrqlite/Manifest
index 0b40da3fa540..b8d16d384448 100644
--- a/dev-python/pyrqlite/Manifest
+++ b/dev-python/pyrqlite/Manifest
@@ -1 +1,2 @@
+DIST pyrqlite-2.1.1-test_cPragmaTableInfo.patch 2601 BLAKE2B 
43dce906dea12d6d503ac589990c4688f07cf4186b6b4641534e50aa77e5dacd4f9f286d7707451bc843fb429fec4cdfb887a4922fa48aa9b7d7757bc1ff55bc
 SHA512 
67c8593fd8a437011f9579e6a469323f60a70634469eb42d96b22f3997e48eab42d102013cbf300616fa23e2a0e64e1a0c4b4d7fdd1346402abd34255b252d85
 DIST pyrqlite-2.1.1.tar.gz 19538 BLAKE2B 
fba6caa68eb6d806ea807d40f36edafb0872e724a087cdb7736f79699692d0d492e05a8a7407467f92ec8e30df4a6ea1ed44bc12bec35ffc4753878335fa4275
 SHA512 
9fc404a480f42592ebbedef82f748707741e28de199be9381680db506dac4e3ce757d1058874ca06cf8f0dd1ec0e7b6411a4585f332a9fe7d8977071e492bd31

diff --git a/dev-python/pyrqlite/pyrqlite-2.1.1.ebuild 
b/dev-python/pyrqlite/pyrqlite-2.1.1.ebuild
index d933752383b0..4d08827d5414 100644
--- a/dev-python/pyrqlite/pyrqlite-2.1.1.ebuild
+++ b/dev-python/pyrqlite/pyrqlite-2.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -8,7 +8,8 @@ inherit distutils-r1
 
 DESCRIPTION="Python client for rqlite"
 HOMEPAGE="https://github.com/rqlite/pyrqlite;
-SRC_URI="https://github.com/rqlite/pyrqlite/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+SRC_URI="https://github.com/rqlite/pyrqlite/archive/v${PV}.tar.gz -> 
${P}.tar.gz
+   https://github.com/rqlite/pyrqlite/pull/42.patch -> 
${P}-test_cPragmaTableInfo.patch"
 
 LICENSE="MIT"
 SLOT="0"
@@ -17,6 +18,8 @@ KEYWORDS="~amd64 ~x86"
 BDEPEND="test? ( >=dev-db/rqlite-6.7.0 )"
 RESTRICT+=" !test? ( test )"
 
+PATCHES=("${DISTDIR}/${P}-test_cPragmaTableInfo.patch")
+
 distutils_enable_tests pytest
 
 src_prepare() {



[gentoo-commits] repo/proj/guru:dev commit in: net-misc/xmrig-mo/

2022-02-04 Thread Kevin Thomas
commit: 82e15110de34bf13b8c37cf3ede692821985ca4b
Author: Kevin Thomas  kevinthomas  dev>
AuthorDate: Sat Feb  5 00:24:50 2022 +
Commit: Kevin Thomas  kevinthomas  dev>
CommitDate: Sat Feb  5 00:24:50 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=82e15110

net-misc/xmrig-mo: bump to 6.16.4

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Kevin Thomas  kevinthomas.dev>

 net-misc/xmrig-mo/Manifest   |  1 +
 net-misc/xmrig-mo/xmrig-mo-6.16.4.ebuild | 59 
 2 files changed, 60 insertions(+)

diff --git a/net-misc/xmrig-mo/Manifest b/net-misc/xmrig-mo/Manifest
index c0b47e947..bfd575886 100644
--- a/net-misc/xmrig-mo/Manifest
+++ b/net-misc/xmrig-mo/Manifest
@@ -1,2 +1,3 @@
 DIST xmrig-mo-6.16.2-mo2.tar.gz 2480342 BLAKE2B 
cfb1078f67913f3719dd929a1a41ef2040fdf5c7696baca990e3d9f869566e609406b4d592db50d00024adc5da05427382688e826523a9a407c0a79b554d3f5a
 SHA512 
961e52c8ac3de9a55cbbdc11d282fc65c1827e87ac55b5f892866e5193509b23ca4bc9eeb869c019d1b025be14a877142e3b55c7485b6ded6673c832df8c36c3
 DIST xmrig-mo-6.16.3-mo1.tar.gz 2481805 BLAKE2B 
7d134bc4294824e5a79b2782a07a5e0513e77ecff79deb8434c3b36c3ac21053679e451cc3cde97a84908e56fa151b4cd142711c6a7d5c016b6968cec4d21e7d
 SHA512 
e27a529315ea819d2ac41cb28ff9c5cf386e8c687aad29c170acd1d84563ca4aecf97efdbb2c5d766c63439f65aa3f44f055e0d146b365084053a139398e5608
+DIST xmrig-mo-6.16.4-mo1.tar.gz 2482875 BLAKE2B 
659d4020c51c6e6c56d0fcca1e9e7e5e07b5aeb84b24cc0dfeb2d3b10c8116a9cdfb904cf82afcff7d6cf5320f54528399a0b36146a11a2c0172e2e579246da9
 SHA512 
dd2bb1e2279ab42116814d8e1ed04115719007a438cec5b6da36b8e60e1965e6bb94802cc079a6878f68f89c24d4af8561068a81ec316827784aaf82c30156e4

diff --git a/net-misc/xmrig-mo/xmrig-mo-6.16.4.ebuild 
b/net-misc/xmrig-mo/xmrig-mo-6.16.4.ebuild
new file mode 100644
index 0..93bea0a1a
--- /dev/null
+++ b/net-misc/xmrig-mo/xmrig-mo-6.16.4.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+MO_PV="mo1"
+DESCRIPTION="MoneroOcean fork of xmrig that supports algo switching"
+HOMEPAGE="https://github.com/MoneroOcean/xmrig;
+SRC_URI="https://github.com/MoneroOcean/xmrig/archive/v${PV}-${MO_PV}.tar.gz 
-> ${P}-${MO_PV}.tar.gz"
+KEYWORDS="~amd64 ~arm64"
+
+LICENSE="Apache-2.0 GPL-3+ MIT"
+SLOT="0"
+IUSE="cpu_flags_x86_sse4_1 donate hwloc opencl +ssl"
+
+DEPEND="
+   dev-libs/libuv:=
+   hwloc? ( sys-apps/hwloc:= )
+   opencl? ( virtual/opencl )
+   ssl? ( dev-libs/openssl:= )
+"
+
+RDEPEND="
+   ${DEPEND}
+   !arm64? ( sys-apps/msr-tools )
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-6.12.2-nonotls.patch
+)
+
+S="${WORKDIR}/xmrig-${PV}-${MO_PV}"
+
+src_prepare() {
+   if ! use donate ; then
+   sed -i 's/1;/0;/g' src/donate.h || die
+   fi
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DWITH_SSE4_1=$(usex cpu_flags_x86_sse4_1)
+   -DWITH_HWLOC=$(usex hwloc)
+   -DWITH_TLS=$(usex ssl)
+   -DWITH_OPENCL=$(usex opencl)
+   -DWITH_CUDA=OFF
+   )
+
+   cmake_src_configure
+}
+
+src_install() {
+   default
+   newbin "${BUILD_DIR}/xmrig" xmrig-mo
+}



[gentoo-commits] repo/proj/guru:dev commit in: profiles/, licenses/, media-libs/rtmidi/

2022-02-04 Thread Conrad Kostecki
commit: ac084a2878ffbf90003495b1f64af6458b9419fd
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Fri Feb  4 23:27:56 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Feb  5 00:07:45 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ac084a28

media-libs/rtmidi: last-rite from GURU

Dropping package, as its now in main tree.
Taking ownership due maintainer timeout.

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

 licenses/RtMidi   | 23 ---
 media-libs/rtmidi/Manifest|  2 --
 media-libs/rtmidi/metadata.xml| 11 ---
 media-libs/rtmidi/rtmidi-4.0.0.ebuild | 32 
 media-libs/rtmidi/rtmidi-5.0.0.ebuild | 30 --
 profiles/license_groups   |  2 +-
 6 files changed, 1 insertion(+), 99 deletions(-)

diff --git a/licenses/RtMidi b/licenses/RtMidi
deleted file mode 100644
index edd3c89fd..0
--- a/licenses/RtMidi
+++ /dev/null
@@ -1,23 +0,0 @@
-Permission is hereby granted, free of charge, to any person
-obtaining a copy of this software and associated documentation files
-(the "Software"), to deal in the Software without restriction,
-including without limitation the rights to use, copy, modify, merge,
-publish, distribute, sublicense, and/or sell copies of the Software,
-and to permit persons to whom the Software is furnished to do so,
-subject to the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-Any person wishing to distribute modifications to the Software is
-asked to send the modifications to the original developer so that
-they can be incorporated into the canonical version.  This is,
-however, not a binding provision of this license.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
-ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
-CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

diff --git a/media-libs/rtmidi/Manifest b/media-libs/rtmidi/Manifest
deleted file mode 100644
index d87bfed80..0
--- a/media-libs/rtmidi/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST rtmidi-4.0.0.tar.gz 509743 BLAKE2B 
16a43e0c30e49775e7fcf8af1318fb2240b97d2f5e32e043763e51896b95c38d508b3cdbbf712d562f6e57b7b3ed99f74b5a22c50cd298ebb020215c3e78eed8
 SHA512 
1b7e6698944104f6a80c17c9af85a9fad4b215af47277f4d9f5e61668cdea86886aae8296c79948313b3efbaa8569c441c38b0b1f3bad20dce3cee19d6a5eaa8
-DIST rtmidi-5.0.0.tar.gz 528711 BLAKE2B 
2ff4643dc3b574e852d724e01e2056a33b4563848ab600efa291a92e3492cc9d2346780f7b77c6a64e88c289813b4292f61aa7fa818ed22e3d3a0148011f9da6
 SHA512 
8d38beff90f12b67b1553164a33e546665c0c9ec40fb797398dea245a5f80d523dfe27a0747f512cc04c1fdeffc04e50930cdc96ce7ebcd9bd34173ac4621fa2

diff --git a/media-libs/rtmidi/metadata.xml b/media-libs/rtmidi/metadata.xml
deleted file mode 100644
index 2c412c892..0
--- a/media-libs/rtmidi/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   ca...@theavilas.org
-   Casey Avila
-   
-   
-   thestk/rtmidi
-   
-

diff --git a/media-libs/rtmidi/rtmidi-4.0.0.ebuild 
b/media-libs/rtmidi/rtmidi-4.0.0.ebuild
deleted file mode 100644
index e36685be5..0
--- a/media-libs/rtmidi/rtmidi-4.0.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="A set of C++ classes that provide a common API for realtime MIDI 
input/output"
-HOMEPAGE="http://www.music.mcgill.ca/~gary/rtmidi;
-SRC_URI="http://www.music.mcgill.ca/~gary/rtmidi/release/${P}.tar.gz;
-
-LICENSE="RtMidi"
-SLOT="0"
-RESTRICT="mirror"
-KEYWORDS="~amd64 ~x86"
-IUSE="+alsa jack"
-
-DEPEND="
-   alsa? ( media-libs/alsa-lib )
-   jack? ( virtual/jack )
-"
-RDEPEND="${DEPEND}"
-BDEPEND=""
-
-src_configure() {
-   mycmakeargs+=(
-   -DRTMIDI_API_ALSA=$(usex alsa)
-   -DRTMIDI_API_JACK=$(usex jack)
-   )
-
-   cmake_src_configure
-}

diff --git a/media-libs/rtmidi/rtmidi-5.0.0.ebuild 
b/media-libs/rtmidi/rtmidi-5.0.0.ebuild
deleted file mode 100644
index 9c7c8d8a5..0
--- a/media-libs/rtmidi/rtmidi-5.0.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="A set of C++ classes that provide a common API for realtime MIDI 
input/output"
-HOMEPAGE="https://www.music.mcgill.ca/~gary/rtmidi;

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

2022-02-04 Thread Mike Pagano
commit: 8a1a81e544afce367e5430de02df365922f97128
Author: Mike Pagano  gentoo  org>
AuthorDate: Fri Feb  4 23:51:09 2022 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Fri Feb  4 23:51:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a1a81e5

sys-kernel/gentoo-sources: Autostablize for security bug per policy

Remove affected kernels

Bug: https://bugs.gentoo.org/832717
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Mike Pagano  gentoo.org>

 sys-kernel/gentoo-sources/Manifest | 18 --
 .../gentoo-sources/gentoo-sources-5.15.16.ebuild   | 28 --
 .../gentoo-sources/gentoo-sources-5.15.17.ebuild   | 28 --
 .../gentoo-sources/gentoo-sources-5.15.18.ebuild   | 28 --
 .../gentoo-sources/gentoo-sources-5.15.19.ebuild   |  2 +-
 .../gentoo-sources/gentoo-sources-5.16.2.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-5.16.3.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-5.16.4.ebuild| 28 --
 8 files changed, 1 insertion(+), 187 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 84fc414dfb94..3acef04035e0 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -85,27 +85,9 @@ DIST genpatches-5.10-102.extras.tar.xz 3852 BLAKE2B 
771f6f91cc36f7c18ece75ea1b5f
 DIST genpatches-5.10-103.base.tar.xz 2987764 BLAKE2B 
fab174b3219d24b39f22dc92943af5cf9397b5c7920c082b295ae26fede80be5b6e77c0f3e9265d4f2b37932fa12d61ecf65511c2959874209e80fbf08af7c1b
 SHA512 
1b68470e55e64c9461a2806580fd1732a1bc75d6ae061975d7b75e47acd487cdde0f045d8bd82012681eebc776d1422bfbf5352fba352668967bb5abfe14ae5b
 DIST genpatches-5.10-103.experimental.tar.xz 16872 BLAKE2B 
9b32206c748d05cbd3c687cd3799dbcbed2f227bd28c3081060af6b8181e4c22fa06ca4e2720180b149efe6916f71201c3678d3c75935afa059a160cfd3bfe1c
 SHA512 
0cda8531767621aaa761fcd1319231dde1509b1f2a1e2d8736a97155fa2368dc09ac562bf8036b226f2cc1df6da1dd4c6de962618241744078fb4221b50d3484
 DIST genpatches-5.10-103.extras.tar.xz 3876 BLAKE2B 
8f8a1ec8ccb9874660ab1a357a28bd48f622affd173c459e7014a737435c8ddaed5ea086adef4306298f3ff1779b497832804fc914c895d74b750e147d99969b
 SHA512 
656cd727882aa8eb4b86690fbcb6c56a20de2aabd2d7de0e29ce2807b12e738a085537cd94cd37020b1d7c95469ac1566c4e2b7a3ec67ab7b88f8cf98de66a9f
-DIST genpatches-5.15-18.base.tar.xz 697228 BLAKE2B 
01a377a9c1f2709ad2cde18e3094d37ba2414c7c3d949f236d41f5d36e8c4513331c4859740ec34bc8418d6fb2457fbb7d9f7c64f6f596795e1abc9a02c9e340
 SHA512 
14a652cf64e8e22539a61f14af715fd1a59644875a8a61473b5eb66bcc7b5f4bb34602463b208114bb4dbb73f159932983d48c0567a44b5090b9ff8f52920eaf
-DIST genpatches-5.15-18.experimental.tar.xz 69420 BLAKE2B 
7f29a10f76c70f4ec55b5e1cfddbe7acf8fda62196ac8fdec284235e01aeea2f8af0dad01dd0f0e2a89174de7e6ab1e3c8a9b10dbd8444840355d63b16b36a00
 SHA512 
8274ccdc652b59551b1c0b56cae028856464f0883c21942136a6a2a6622f9c44c9fb78722ffc374b13c10d7e704818426c7ed6838ed311d23860b474c14a82ba
-DIST genpatches-5.15-18.extras.tar.xz 3852 BLAKE2B 
d3521142bf5ece893429ec7e1b6aec724fff15fbba2f80e9fb092af4d40bc258e034226989d2502ee258faa0c7e0aacd885499d22f4317060d61cd916e00e7fa
 SHA512 
f1a98d3875541ec4b8f3461c1af8a9b37fd4f5a64e7d717e906f851bf4e976e4509df4b8cb67b9e210215cc33924d039599cecc8f4892dcbed510e00f8119df8
-DIST genpatches-5.15-19.base.tar.xz 925776 BLAKE2B 
040a1cabc9217a91e8bae89ef7878e61056f3eccc97472a27dd2b3c695b2bce59c487ff303048d1f98553349c0b6227d0a3dfa837ccfd6cfd7b1147606b4703f
 SHA512 
b2facd0ba66001ce9327ef2d037097e78e4b9c8e02eb5b66f9ab9bacc6af5800ccfe576ca4383c263c597a67e92b96bb0287140396a602f15fbec403a4173a53
-DIST genpatches-5.15-19.experimental.tar.xz 5420 BLAKE2B 
0a7f14ad8a747680db08526e1f9da809bbafbfc41132ca874bb72e4f0c7af5d00cf57a043d972811da8d310320d2daf3c7e9442c45184a3625dea683334a8a8b
 SHA512 
108d31b7fbd73dc3d7693e38f30c33bd290df3fc63cf77a4dcb78468cf30549b38af67425e8ff45774d489cd35ebcf92d8648615ea9ea4e89a967aa315da66d2
-DIST genpatches-5.15-19.extras.tar.xz 3852 BLAKE2B 
9ae7ef921212fb3b67dedf9647e0ca3091382410a5bf9c7ae67539f9cac0b97f54eef1bb63279481722184bf0e64d4208928d9485f670e47f0c60e62a0bc036e
 SHA512 
462cc99b18a41f5dc2265732d63349c17696d5ca4e360e23e50ecfe56f3b08ce7d5bb0dc1505011cd5336c16057d1f9d97c3faecb551f4eeffe4d8ca95938998
-DIST genpatches-5.15-20.base.tar.xz 934800 BLAKE2B 
6134e0fb2d9810d96809e5f0994361183c0a1bd188ab24ecf83f76914efba3d9341dda8ee0ba3ef4d02f2cd7c93959aa2b59aaeddb4fff6807faf2ac623e7d56
 SHA512 
43281972c4eadc5299bf16270021531f9c56943a907331e7c1ee270b2e26f745693d0d312c5c2487de82f4d8df164dcd1e2e132a3d3fd86866467ccfe1776703
-DIST genpatches-5.15-20.experimental.tar.xz 5424 BLAKE2B 
f69c7f0f0a1586b5337f6b9a237eaa911304eb2eb6e9de863976a1a1a6d7a8f5d5687999392a3804df9acf664e519288a7a0b9065978443857ab8f7b4cecceb5
 SHA512 

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

2022-02-04 Thread Jonas Stein
commit: 64576dfd6cbe26a3bba98aedba73a0aff2328b85
Author: Jonas Stein  gentoo  org>
AuthorDate: Fri Feb  4 23:26:18 2022 +
Commit: Jonas Stein  gentoo  org>
CommitDate: Fri Feb  4 23:26:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64576dfd

mail-filter/sigh: drop proxied maintainer

Drop proxied maintainer due to inactivity.
Bug: https://bugs.gentoo.org/633254
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jonas Stein  gentoo.org>

 mail-filter/sigh/metadata.xml | 8 
 1 file changed, 8 deletions(-)

diff --git a/mail-filter/sigh/metadata.xml b/mail-filter/sigh/metadata.xml
index eab173f45167..da7c0a5b9cda 100644
--- a/mail-filter/sigh/metadata.xml
+++ b/mail-filter/sigh/metadata.xml
@@ -1,18 +1,10 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   c...@roessner.co
-   Christian Roessner
-   

msch...@gentoo.org
Marc Schiffbauer

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   

croessner/sigh




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

2022-02-04 Thread Conrad Kostecki
commit: 3c3a28ede3a45d29826d84c9f5add39979079556
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Fri Feb  4 23:14:12 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Fri Feb  4 23:24:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c3a28ed

profiles/license_groups: add RtMidi to MISC-FREE group

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

 profiles/license_groups | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/license_groups b/profiles/license_groups
index b68b11d9f422..a4b7e20f1916 100644
--- a/profiles/license_groups
+++ b/profiles/license_groups
@@ -30,7 +30,7 @@ OSI-APPROVED 0BSD AFL-3.0 AGPL-3 AGPL-3+ Apache-1.1 
Apache-2.0 APL-1.0 APSL-2 Ar
 # Licenses in this list should NOT appear directly or indirectly in
 # @FSF-APPROVED or @OSI-APPROVED.
 # Note: Licenses for fonts should be included in @MISC-FREE-DOCS.
-MISC-FREE AIFFWriter.m Allegro alternate AMPAS bea.ri.jsr173 BEER-WARE 
boehm-gc BSD-1 BSD-with-attribution BSD-with-disclosure buddy bufexplorer.vim 
BZIP2 CAOSL CDDL-1.1 CDDL-Schily CeCILL-C CMake CPL-0.5 CRACKLIB Crypt-IDEA 
curl DES docbook dom4j DUMB-0.9.3 ElementTree Emacs ErlPL-1.1 FastCGI feh 
File-MMagic Flashpix FLEX flexmock FLTK freetts FVWM gd gsm HTML-Tidy htmlc 
iASL icu IDPL imagemagick Info-ZIP inner-net Interbase-1.0 ipadic Ispell JDOM 
JOVE Khronos-CLHPP LambdaMOO LIBGLOSS libmng libpng libpng2 libtiff LPPL-1.3 
LPPL-1.3b lsof matplotlib Mini-XML minpack MIT-with-advertising mm mpich2 
NCSA-HDF netcat NEWLIB ngrep Old-MIT openafs-krb5-a Openwall otter par PCRE 
perforce photopc PHP-2.02 pngcrush pngnq Princeton psutils rc rdisc regexp-UofT 
repoze RSA rwpng sash scanlogd sdlsasteroids Sendmail Sendmail-Open-Source 
SMAIL Snd SSLeay symlinks Sympow-BSD tablelist tcltk tcp_wrappers_license TeX 
TeX-other-free TextMate-bundle the-Click-license Time-Format Time-modules 
tm-align t
 orque-2.5 totd Toyoda trio UCAR-Unidata URT VTK w3m wm2 x2x xbatt xboing XC 
Xdebug xtrs zlib-acknowledgement ZSH
+MISC-FREE AIFFWriter.m Allegro alternate AMPAS bea.ri.jsr173 BEER-WARE 
boehm-gc BSD-1 BSD-with-attribution BSD-with-disclosure buddy bufexplorer.vim 
BZIP2 CAOSL CDDL-1.1 CDDL-Schily CeCILL-C CMake CPL-0.5 CRACKLIB Crypt-IDEA 
curl DES docbook dom4j DUMB-0.9.3 ElementTree Emacs ErlPL-1.1 FastCGI feh 
File-MMagic Flashpix FLEX flexmock FLTK freetts FVWM gd gsm HTML-Tidy htmlc 
iASL icu IDPL imagemagick Info-ZIP inner-net Interbase-1.0 ipadic Ispell JDOM 
JOVE Khronos-CLHPP LambdaMOO LIBGLOSS libmng libpng libpng2 libtiff LPPL-1.3 
LPPL-1.3b lsof matplotlib Mini-XML minpack MIT-with-advertising mm mpich2 
NCSA-HDF netcat NEWLIB ngrep Old-MIT openafs-krb5-a Openwall otter par PCRE 
perforce photopc PHP-2.02 pngcrush pngnq Princeton psutils rc rdisc regexp-UofT 
repoze RSA RtMidi rwpng sash scanlogd sdlsasteroids Sendmail 
Sendmail-Open-Source SMAIL Snd SSLeay symlinks Sympow-BSD tablelist tcltk 
tcp_wrappers_license TeX TeX-other-free TextMate-bundle the-Click-license 
Time-Format Time-modules tm-
 align torque-2.5 totd Toyoda trio UCAR-Unidata URT VTK w3m wm2 x2x xbatt 
xboing XC Xdebug xtrs zlib-acknowledgement ZSH
 
 # Metaset for all free software
 FREE-SOFTWARE @FSF-APPROVED @OSI-APPROVED @MISC-FREE



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

2022-02-04 Thread Conrad Kostecki
commit: bfa155bd10ac4ec6cefe686c4f003b3631ec077f
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Fri Feb  4 23:11:37 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Fri Feb  4 23:24:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfa155bd

licenses/RtMidi: add license for media-libs/rtmidi

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

 licenses/RtMidi | 23 +++
 1 file changed, 23 insertions(+)

diff --git a/licenses/RtMidi b/licenses/RtMidi
new file mode 100644
index ..edd3c89fda5e
--- /dev/null
+++ b/licenses/RtMidi
@@ -0,0 +1,23 @@
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation files
+(the "Software"), to deal in the Software without restriction,
+including without limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of the Software,
+and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+Any person wishing to distribute modifications to the Software is
+asked to send the modifications to the original developer so that
+they can be incorporated into the canonical version.  This is,
+however, not a binding provision of this license.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
+ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
+CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.



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

2022-02-04 Thread Conrad Kostecki
commit: 3d783222ff2385cbaea69ce9f62a1fe4484702a4
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Fri Feb  4 23:22:28 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Fri Feb  4 23:25:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d783222

media-libs/rtmidi: initial import

RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut and API-specific classes)
that provides a common API (Application Programming Interface) for realtime MIDI
input/output across Linux (ALSA, JACK), Macintosh OS X (CoreMIDI, JACK),
and Windows (Multimedia Library) operating systems. RtMidi significantly 
simplifies
the process of interacting with computer MIDI hardware and software.

This package is a needed dep for upcoming 86Box.
Note: Package is already present in GURU, but because of maintainer
timeout, I am taking that package.

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

 media-libs/rtmidi/Manifest|  1 +
 media-libs/rtmidi/metadata.xml| 15 +++
 media-libs/rtmidi/rtmidi-5.0.0.ebuild | 30 ++
 3 files changed, 46 insertions(+)

diff --git a/media-libs/rtmidi/Manifest b/media-libs/rtmidi/Manifest
new file mode 100644
index ..813cd9d331b6
--- /dev/null
+++ b/media-libs/rtmidi/Manifest
@@ -0,0 +1 @@
+DIST rtmidi-5.0.0.tar.gz 528747 BLAKE2B 
7bc8f5d9109cf1fb81ced4ff3afb4a7a42200d7458315c7b33cf966c856ca13959a9ce99012eadf05f65ec1bb93d41b8d2b7c9c66082badb7598c519a7fe2531
 SHA512 
d2688b6777c09c213e1f6800c67bca6905ac9a0161480e7c167583322a64be086bb47f1452cc45d4a4e2c1d3d3fe626d57b4a187e79c0a20af4f6e23d4a3530a

diff --git a/media-libs/rtmidi/metadata.xml b/media-libs/rtmidi/metadata.xml
new file mode 100644
index ..bf25671cc1d3
--- /dev/null
+++ b/media-libs/rtmidi/metadata.xml
@@ -0,0 +1,15 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   conik...@gentoo.org
+   Conrad Kostecki
+   
+   
+   RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut and 
API-specific classes)
+   that provides a common API (Application Programming Interface) 
for realtime MIDI
+   input/output across Linux (ALSA, JACK), Macintosh OS X 
(CoreMIDI, JACK),
+   and Windows (Multimedia Library) operating systems.
+   RtMidi significantly simplifies the process of interacting with 
computer MIDI hardware and software.
+   
+

diff --git a/media-libs/rtmidi/rtmidi-5.0.0.ebuild 
b/media-libs/rtmidi/rtmidi-5.0.0.ebuild
new file mode 100644
index ..1689276e2d89
--- /dev/null
+++ b/media-libs/rtmidi/rtmidi-5.0.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="A set of C++ classes that provide a common API for realtime MIDI 
input/output"
+HOMEPAGE="https://www.music.mcgill.ca/~gary/rtmidi;
+SRC_URI="https://www.music.mcgill.ca/~gary/rtmidi/release/${P}.tar.gz;
+
+LICENSE="RtMidi"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+alsa jack"
+
+DEPEND="
+   alsa? ( media-libs/alsa-lib )
+   jack? ( virtual/jack )
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   mycmakeargs=(
+   -DRTMIDI_API_ALSA=$(usex alsa)
+   -DRTMIDI_API_JACK=$(usex jack)
+   )
+
+   cmake_src_configure
+}



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

2022-02-04 Thread Zac Medico
commit: d50f4286b2db3de0bc4b8054dcb5c0f6edbd966f
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Feb  4 23:24:12 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Feb  4 23:24:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d50f4286

app-containers/containers-storage: Bump to version 1.38.2

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

 app-containers/containers-storage/Manifest |  1 +
 .../containers-storage-1.38.2.ebuild   | 58 ++
 2 files changed, 59 insertions(+)

diff --git a/app-containers/containers-storage/Manifest 
b/app-containers/containers-storage/Manifest
index 014d6c57d5df..b7187044a5d1 100644
--- a/app-containers/containers-storage/Manifest
+++ b/app-containers/containers-storage/Manifest
@@ -1,2 +1,3 @@
 DIST containers-storage-1.37.0.tar.gz 3557198 BLAKE2B 
ebe5c8e562149a9d007ac87d7fc615d29ad7decbfd6b1b8d919b14684a6341575d8f65080a808ba52674664d187a18bb47e88f10e1a02a2975898862873dadf9
 SHA512 
3a65a50946e1eed1c79ea77b65feb1c6c8cf58a0b7b81932acb8891b6daa25e007582eb7f70ef7e7f2a6d8262be5db7757ead2fe079e47c99114b47917d81084
 DIST containers-storage-1.38.0.tar.gz 3656468 BLAKE2B 
b33342dd6c55d69c3c71ce17ceeb4fd4c442291b700a9a601f9b273337bda70b9f353adbac55019d3ab0a20a8b142816255af106b77127f371ee0f80fbea488b
 SHA512 
c9be760d088ac2bf1fa7ee7b6742c9f0f54b4878ae85059bbdb059b48eb5a2cf2c217b774944b23ff175d7126351d324ed96febb77c7a6b78b6cffb51f271f13
+DIST containers-storage-1.38.2.tar.gz 3657181 BLAKE2B 
466641eb0c810da0e6b5fe9adc47eadbc66cedb57326903fe4cbf917b12d4e937131dcf4ff4d33d0b2372384f754f471fd532aac91809a5481d74be0ce6ffe05
 SHA512 
98caa95e4456e60ef676e4d9717e5f852cfa21ffe45980f63fab703bc7c369fdae14d33102dcb023908d250c3eba6f121c270203c3abd29fdfcb7e2768319c50

diff --git a/app-containers/containers-storage/containers-storage-1.38.2.ebuild 
b/app-containers/containers-storage/containers-storage-1.38.2.ebuild
new file mode 100644
index ..c01863fdb218
--- /dev/null
+++ b/app-containers/containers-storage/containers-storage-1.38.2.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit go-module
+
+KEYWORDS="~amd64"
+DESCRIPTION="containers/storage library"
+HOMEPAGE="https://github.com/containers/storage;
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT"
+SLOT="0"
+IUSE="btrfs +device-mapper test"
+SRC_URI="https://github.com/containers/storage/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RDEPEND="
+   btrfs? ( sys-fs/btrfs-progs )
+   device-mapper? ( sys-fs/lvm2:= )"
+DEPEND="${RDEPEND}
+   dev-go/go-md2man
+   test? (
+   sys-fs/btrfs-progs
+   sys-fs/lvm2
+   sys-apps/util-linux
+   )"
+RESTRICT="test"
+
+S=${WORKDIR}/${P#containers-}
+
+src_prepare() {
+   default
+
+   sed -e 's|: install\.tools|:|' -i Makefile || die
+
+   [[ -f hack/btrfs_tag.sh ]] || die
+   use btrfs || { echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   "hack/btrfs_tag.sh" || die; }
+
+   [[ -f hack/libdm_tag.sh ]] || die
+   use device-mapper || { echo -e "#!/bin/sh\necho btrfs_noversion 
exclude_graphdriver_devicemapper" > \
+   "hack/libdm_tag.sh" || die; }
+}
+
+src_compile() {
+   export -n GOCACHE GOPATH XDG_CACHE_HOME #678856
+   emake GOMD2MAN=go-md2man FFJSON= containers-storage docs
+}
+
+src_install() {
+   dobin "${PN}"
+   while read -r -d ''; do
+   mv "${REPLY}" "${REPLY%.1}" || die
+   done < <(find "${S}/docs" -name '*.[[:digit:]].1' -print0)
+   find "${S}/docs" -name '*.[[:digit:]]' -exec doman '{}' + || die
+}
+
+src_test() {
+   env -u GOFLAGS unshare -m emake local-test-unit || die
+}



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

2022-02-04 Thread Marek Szuba
commit: 995e962c2c902af368a5f1140633cbf8b7bf9c9a
Author: Marek Szuba  gentoo  org>
AuthorDate: Fri Feb  4 23:07:28 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Fri Feb  4 23:12:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=995e962c

media-gfx/gmic: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/24071
Signed-off-by: Marek Szuba  gentoo.org>

 media-gfx/gmic/files/gmic-2.9.2_ipa-sra.patch | 15 ---
 1 file changed, 15 deletions(-)

diff --git a/media-gfx/gmic/files/gmic-2.9.2_ipa-sra.patch 
b/media-gfx/gmic/files/gmic-2.9.2_ipa-sra.patch
deleted file mode 100644
index 384856a0464f..
--- a/media-gfx/gmic/files/gmic-2.9.2_ipa-sra.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-A GCC-specific setting from years ago. gcc-9 quietly ignores it (the
-resulting binaries appear to be the same whether -fno-ipa-sra has been
-specified or not), clang fails on it as not recognised.
-Just get rid of it altogether.
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -100,7 +100,7 @@
- if(APPLE)
-set(COMPILE_FLAGS "${COMPILE_FLAGS} -mmacosx-version-min=10.8 
-stdlib=libc++ -Wno-error=c++11-narrowing -Wc++11-extensions -fpermissive")
- else()
--  set(COMPILE_FLAGS "${COMPILE_FLAGS} -Wno-error=narrowing -fno-ipa-sra 
-fpermissive")
-+  set(COMPILE_FLAGS "${COMPILE_FLAGS} -Wno-error=narrowing -fpermissive")
- endif()
- 
- if(NOT "${PRERELEASE_TAG}" STREQUAL "")



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

2022-02-04 Thread Zac Medico
commit: d7c659f435d6faf173cbbe78ac2fc874df0b795d
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Feb  4 22:51:58 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Feb  4 23:07:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7c659f4

dev-db/rqlite: Bump to version 7.2.0

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

 dev-db/rqlite/Manifest|  17 ++
 dev-db/rqlite/rqlite-7.2.0.ebuild | 512 ++
 2 files changed, 529 insertions(+)

diff --git a/dev-db/rqlite/Manifest b/dev-db/rqlite/Manifest
index ac75e50558e0..87c1b2b8a617 100644
--- a/dev-db/rqlite/Manifest
+++ b/dev-db/rqlite/Manifest
@@ -263,6 +263,8 @@ DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.6.0.mod 198 
BLAKE2B 954749eeaffd
 DIST github.com%2Frogpeppe%2Ffastuuid%2F@v%2Fv1.2.0.mod 45 BLAKE2B 
6fe371f17a31bcd132ac67cb50052f6f3874c9f62e2d67f48d52d241026fd21e58ca9abdc15fd53cb949f79e7d40dd0c289af3849da3d4d9ff75b491e8235c10
 SHA512 
ea2e9a81d7720b4e11129fbdd4772be224b6e1267157c29b9d33813b6f4ae905e43c3840cf1ade6ff5f73bd22c103430a0bc882355c16715e124b442652cd4da
 DIST github.com%2Frqlite%2Fgo-sqlite3%2F@v%2Fv1.22.0.mod 45 BLAKE2B 
1eee601849740d90744f1819d6048998a21504a4400c9913fdbb01afad7ea6d5a9c07c70d0aa1d74a604e0d889c40e5358732f1f00f001fef2f58b16a1ce5293
 SHA512 
6308492c9daef5d00332441cbe7443a9da9226d24b41c216b8d2425c4c0c9d6d6e44a44669cb75d815c9641bc5c424f9d5cc97b4d9da7a1879c76580f4d5830d
 DIST github.com%2Frqlite%2Fgo-sqlite3%2F@v%2Fv1.22.0.zip 2463249 BLAKE2B 
b134cc649740142dcacd0981b3bcfe370dd77da91e47b705247c1464e86ea878f6705033a6a1fd49393ad054f80960b4d0ba646c9f98e9d4c06917344275b36f
 SHA512 
2b16c12f96879446b5d28e2dbd6230f5529d3987267e68810e0ff78d839752511acd0c43026bfc3bf67f65d5f6147f9f0ed74fa846f7a187d6888d002ff50c25
+DIST github.com%2Frqlite%2Fgo-sqlite3%2F@v%2Fv1.23.0.mod 45 BLAKE2B 
1eee601849740d90744f1819d6048998a21504a4400c9913fdbb01afad7ea6d5a9c07c70d0aa1d74a604e0d889c40e5358732f1f00f001fef2f58b16a1ce5293
 SHA512 
6308492c9daef5d00332441cbe7443a9da9226d24b41c216b8d2425c4c0c9d6d6e44a44669cb75d815c9641bc5c424f9d5cc97b4d9da7a1879c76580f4d5830d
+DIST github.com%2Frqlite%2Fgo-sqlite3%2F@v%2Fv1.23.0.zip 2484518 BLAKE2B 
60e147bea089a090a2acdfb96bf765f37053ec6e2220302e73e9c955a7932796c53f74da4b398c21ea92f3814ddac1a1d099e04d9c299ec9be759d61923d5fe6
 SHA512 
cbc2d004da561cd8efd1d860a3214c9d863805f74a7abe9c06e3de94290d4b20541ab710dd6662ae17baa02deac685e82160b0bf54bebc2612e23cb315ab430b
 DIST 
github.com%2Frqlite%2Fraft-boltdb%2F@v%2Fv0.0.0-20210909125202-124e0a496d7e.mod 
165 BLAKE2B 
32efd540e1cbf47d37b06e87287a55dce3751abf00b64d460f5509c07b98125308e8cb5ec3060c506fd37d731bbbf5050329598b424eeb323ff02fd1ace4
 SHA512 
3b9cbec938614601a6a64a84cbd6cb330c62b3003abf931965ef270bd1dfcfe16b32cac1a74505c36da445e1c6d531e93a79a5b8ee64d8afcace31934f6e2784
 DIST 
github.com%2Frqlite%2Fraft-boltdb%2F@v%2Fv0.0.0-20210909125202-124e0a496d7e.zip 
15599 BLAKE2B 
d29e196af970e2afbc880939be80a3dbd899b2fc8d8adbf3dba247c01440fba249e6e6b72e171338337df9c9f6e13f274a9670c8a22814ebf541ec78576fc9f7
 SHA512 
9970b72add1b5ace6fb55033f4be64ceca110d05e9e9307ea02b79f8f29c2812237d22787d039288d087e0d0a875972f09458f8119bcb9b1291e202560726f37
 DIST 
github.com%2Frqlite%2Fraft-boltdb%2F@v%2Fv0.0.0-20210909131733-595768e10065.mod 
165 BLAKE2B 
32efd540e1cbf47d37b06e87287a55dce3751abf00b64d460f5509c07b98125308e8cb5ec3060c506fd37d731bbbf5050329598b424eeb323ff02fd1ace4
 SHA512 
3b9cbec938614601a6a64a84cbd6cb330c62b3003abf931965ef270bd1dfcfe16b32cac1a74505c36da445e1c6d531e93a79a5b8ee64d8afcace31934f6e2784
@@ -271,6 +273,10 @@ DIST 
github.com%2Frqlite%2Fraft-boltdb%2F@v%2Fv0.0.0-20211018013422-771de01086ce
 DIST 
github.com%2Frqlite%2Fraft-boltdb%2F@v%2Fv0.0.0-20211018013422-771de01086ce.zip 
15810 BLAKE2B 
847cfd044a82acc659bcb3bf127a43f0ad10233360d8290463a6a13475d6f090e98dc6da7261ddde5e5f58267e35a116d4798c8e00123b38b47800a098a471c9
 SHA512 
220d93768cf392f9f19f8765ae17d8bc2a01534d577493076b942092f5b71ce423905648483ec8ca1674006471a2ce19eef654db3da96f4d271b1638bb914d11
 DIST 
github.com%2Frqlite%2Frqlite-disco-clients%2F@v%2Fv0.0.0-20220126132740-4d4f660bbdf0.mod
 1535 BLAKE2B 
e6f2c4f7ade71d527f206e2bebbddb7372dec7e239887be86a79d143e852a023e77676257721825180d5293d28ec617d6f1c67fc2fdefc22c92984f4898f86fa
 SHA512 
9fb31c22d0628cdcf60ff92d27ca7a12401574adfc2bdba5e3f348f7a738608523e06d074285b621101893bec5dcdcec06c6e48d7ef0be9710b60f2a6013049a
 DIST 
github.com%2Frqlite%2Frqlite-disco-clients%2F@v%2Fv0.0.0-20220126132740-4d4f660bbdf0.zip
 25465 BLAKE2B 
7c20328787b552abf5516011dd32f33e646168bd64421fc91a02cac88260dcf98681aa5fa0ff876e134ca73a629774b92bd460048281fc41aaae923575e1671e
 SHA512 
688d38075103d2ba537c6ba0a5defd20cf83a8593bbbf3b56abf4e0dcbfbb3439eeb553e5c54358881d3f853749cdc2ac2c833ccc30ec028564e9695c33a4be8
+DIST 
github.com%2Frqlite%2Frqlite-disco-clients%2F@v%2Fv0.0.0-20220131060406-a38fe9412050.mod
 1535 BLAKE2B 

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

2022-02-04 Thread Jakov Smolić
commit: 566aa17b5f99087a7740aca22fe7df57814e6522
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Feb  4 22:23:25 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Fri Feb  4 22:23:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=566aa17b

app-emulation/libdsk: Stabilize 1.5.18 amd64, #832592

Signed-off-by: Jakov Smolić  gentoo.org>

 app-emulation/libdsk/libdsk-1.5.18.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/libdsk/libdsk-1.5.18.ebuild 
b/app-emulation/libdsk/libdsk-1.5.18.ebuild
index d03d23077384..42856262a0ac 100644
--- a/app-emulation/libdsk/libdsk-1.5.18.ebuild
+++ b/app-emulation/libdsk/libdsk-1.5.18.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://www.seasip.info/Unix/LibDsk/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="doc"
 
 #PATCHES=( "${FILESDIR}"/${P}-include-sysmacros.patch )



[gentoo-commits] repo/gentoo:master commit in: www-client/vivaldi-snapshot/

2022-02-04 Thread James Le Cuirot
commit: 5f255797a3d13a181fdb4122d2ca500edf859871
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Feb  4 22:04:37 2022 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Feb  4 22:04:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f255797

www-client/vivaldi-snapshot: Add version 5.1.2567.22

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: James Le Cuirot  gentoo.org>

 www-client/vivaldi-snapshot/Manifest   |   3 +
 .../vivaldi-snapshot-5.1.2567.22.ebuild| 204 +
 2 files changed, 207 insertions(+)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index ea97bfd0e342..9c5f440b42e0 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -4,3 +4,6 @@ DIST vivaldi-snapshot_5.1.2562.3-1_armhf.deb 78085032 BLAKE2B 
d3b15e179de0c37aaa
 DIST vivaldi-snapshot_5.1.2567.18-1_amd64.deb 87370244 BLAKE2B 
61e6fbe209f677de686d64d1c0321373b1a34427ac9f1c68f54c113c4041486b4248a30b3f768af1cbf08d3bec123d8ed3ec4711fc032d5d4c905ca67851e705
 SHA512 
da0d7cdc408398b5bfe1f82b7e170d2c26212298483836475a3533126e133c97e7ce571caa66ee0544b5acdbc4694a4e30a9e300f2be921f866af8df694c3041
 DIST vivaldi-snapshot_5.1.2567.18-1_arm64.deb 82263192 BLAKE2B 
04cb97f90f7a7c4f30cd4c2c75e5a41ebdb71da22875b74a0325b594055b60ded627afa99d3274db9f03377fbb924ecb08dd11ac56e462d927997ef3a2e54618
 SHA512 
9b969ba97098c68e5e1288c30fa25b10e025834940bde34d0f3c038fb3d1384e3ef0a19afad3f2ef55c10157409ce96e23e68dcb2c32dab2326a8b28413b2695
 DIST vivaldi-snapshot_5.1.2567.18-1_armhf.deb 78123500 BLAKE2B 
6c2bef964baf640719350f2a3c8637491dcf226c25abc47c7e4d2d05b3c26482b2bd3b0b3c6edf98cb6689d919e9ec3e13ba208f0c9a6eab733887fa62d0ce59
 SHA512 
6ddefc48c99d5e009df547075c279740c714078c90b954838785cfc35c2ab548e77cd171b9d83cb71ca6b796b8f4fb40c0db7cbffb3c9ca236aebbdda32a6d54
+DIST vivaldi-snapshot_5.1.2567.22-1_amd64.deb 87348968 BLAKE2B 
55328b4fe9f77aa8e91af784fd75ae2bb903c772001b8a6fd19a246898f3cc922dafcbd018203b4d2e10b231145b3b084ddaf40932769851a46c667918e2ac24
 SHA512 
2266876fd2e3864293cceebd1b3e0947a8de33176234ab5c696383996e718d63b1888f23406c0113a7c2cd33d9531fc3a6eb35bcc868a1183ab62ecdad2cbf62
+DIST vivaldi-snapshot_5.1.2567.22-1_arm64.deb 82252416 BLAKE2B 
8a929577786a262a03269852194463ee3913a8ab9b48a10bc946ad9d83da689181be31d25f2239886011805ade0bb83499d3a5fe5be789276fa1a9e939d2
 SHA512 
d985a9529ec91ed960e055eef489ea27295e6e79a666527251536e26bfb06ade6616ecf67ff25ffe01a2a1233822b6d10f7d91b55d2b6264132c3c7cbf00e0ee
+DIST vivaldi-snapshot_5.1.2567.22-1_armhf.deb 78108904 BLAKE2B 
42265fd79649455e186cf218066b1ce74d3677691d1ea2dd9635c141fb0c4689a8420d584d8857ec9e9c45401c5fc191fc41f936c601e1b1808c8d136c18c4fb
 SHA512 
939c32333d256a6ab599a6570a8526ab0ef4dd8e4aec67ec629fdba95b0db881734691d8b5a8eefb829dcfa7df93133919a920a24f8ee3408325ac6611ec7037

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-5.1.2567.22.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-5.1.2567.22.ebuild
new file mode 100644
index ..a0fb3fa96f92
--- /dev/null
+++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-5.1.2567.22.ebuild
@@ -0,0 +1,204 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CHROMIUM_VERSION="96"
+CHROMIUM_LANGS="
+   af
+   am
+   ar
+   az
+   be
+   bg
+   bn
+   ca
+   cs
+   da
+   de
+   de-CH
+   el
+   en-GB
+   en-US
+   eo
+   es
+   es-419
+   es-PE
+   et
+   eu
+   fa
+   fi
+   fil
+   fr
+   fy
+   gd
+   gl
+   gu
+   he
+   hi
+   hr
+   hu
+   hy
+   id
+   io
+   is
+   it
+   ja
+   jbo
+   ka
+   kab
+   kn
+   ko
+   ku
+   lt
+   lv
+   mk
+   ml
+   mr
+   ms
+   nb
+   nl
+   nn
+   pa
+   pl
+   pt-BR
+   pt-PT
+   ro
+   ru
+   sc
+   sk
+   sl
+   sq
+   sr
+   sr-Latn
+   sv
+   sw
+   ta
+   te
+   th
+   tr
+   uk
+   vi
+   zh-CN
+   zh-TW
+"
+
+inherit chromium-2 desktop unpacker xdg
+
+VIVALDI_PN="${PN/%vivaldi/vivaldi-stable}"
+VIVALDI_HOME="opt/${PN}"
+DESCRIPTION="A browser for our friends"
+HOMEPAGE="https://vivaldi.com/;
+
+if [[ ${PV} = *_p* ]]; then
+   DEB_REV="${PV#*_p}"
+else
+   DEB_REV=1
+fi
+
+KEYWORDS="-* ~amd64 ~arm ~arm64"
+VIVALDI_BASE_URI="https://downloads.vivaldi.com/${VIVALDI_PN#vivaldi-}/${VIVALDI_PN}_${PV%_p*}-${DEB_REV}_;
+
+RE="\bamd64\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" amd64? ( 
${VIVALDI_BASE_URI}amd64.deb )"
+RE="\barm\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" arm? ( 
${VIVALDI_BASE_URI}armhf.deb )"
+RE="\barm64\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" arm64? ( 
${VIVALDI_BASE_URI}arm64.deb )"
+RE="\bx86\b"; [[ 

[gentoo-commits] repo/gentoo:master commit in: www-client/vivaldi-snapshot/

2022-02-04 Thread James Le Cuirot
commit: e995d3adca58f157e8f4de1d5004f3c01014642e
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Feb  4 22:06:31 2022 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Feb  4 22:06:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e995d3ad

www-client/vivaldi-snapshot: Drop old 5.1.2562.3

Signed-off-by: James Le Cuirot  gentoo.org>

 www-client/vivaldi-snapshot/Manifest   |   3 -
 .../vivaldi-snapshot-5.1.2562.3.ebuild | 204 -
 2 files changed, 207 deletions(-)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index 9c5f440b42e0..24c2b5994e72 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -1,6 +1,3 @@
-DIST vivaldi-snapshot_5.1.2562.3-1_amd64.deb 87305856 BLAKE2B 
94c0c45f5448f85a4047a81d05ac0cfe801dd2ca72727a49ba676149ae5d7f1b3aa19650629f757060719a5c97a249c3b2b593c1be35ea0436b7d1cb7dde8d12
 SHA512 
973cb15d42921eb9e0df0e8617c088a0c7624d27e36a50d21e88f8dce8182d5993e4278117880329d87dda42c059fc541899dae2c774fba428769fbc2cba05cf
-DIST vivaldi-snapshot_5.1.2562.3-1_arm64.deb 8700 BLAKE2B 
31dfe37e9c028a6fe0c896deef6282d1d47de5b65a0e9d89377b6f2ea3280fa8cb142af3fd5f78c535445883cda3d63a8cc9d93e339cc9021b3dfccd88f57745
 SHA512 
6d0f079230bfc4b345812bf1dc6f842fe2589f94ab2cd951919c75331d5b3b4473f20c7c8e85df772efbe4ca4ef7f7185c6b2d10f5cf7eb8cc173738bd09a40d
-DIST vivaldi-snapshot_5.1.2562.3-1_armhf.deb 78085032 BLAKE2B 
d3b15e179de0c37aaab3cdb38f2615f6f5d61e0e2593743fda168c48e77c753acef3d2e481b66602a66be54555a70d2867ebd6a6ca3999512c730447c36bf442
 SHA512 
add83e2db3a22dc66105fd0e019d991e9998dbc88c724f68eea71ce9d81a521733446cf89129152c1d62a6413717bf934a79dfe66d370429fa3d91e61f3fc78a
 DIST vivaldi-snapshot_5.1.2567.18-1_amd64.deb 87370244 BLAKE2B 
61e6fbe209f677de686d64d1c0321373b1a34427ac9f1c68f54c113c4041486b4248a30b3f768af1cbf08d3bec123d8ed3ec4711fc032d5d4c905ca67851e705
 SHA512 
da0d7cdc408398b5bfe1f82b7e170d2c26212298483836475a3533126e133c97e7ce571caa66ee0544b5acdbc4694a4e30a9e300f2be921f866af8df694c3041
 DIST vivaldi-snapshot_5.1.2567.18-1_arm64.deb 82263192 BLAKE2B 
04cb97f90f7a7c4f30cd4c2c75e5a41ebdb71da22875b74a0325b594055b60ded627afa99d3274db9f03377fbb924ecb08dd11ac56e462d927997ef3a2e54618
 SHA512 
9b969ba97098c68e5e1288c30fa25b10e025834940bde34d0f3c038fb3d1384e3ef0a19afad3f2ef55c10157409ce96e23e68dcb2c32dab2326a8b28413b2695
 DIST vivaldi-snapshot_5.1.2567.18-1_armhf.deb 78123500 BLAKE2B 
6c2bef964baf640719350f2a3c8637491dcf226c25abc47c7e4d2d05b3c26482b2bd3b0b3c6edf98cb6689d919e9ec3e13ba208f0c9a6eab733887fa62d0ce59
 SHA512 
6ddefc48c99d5e009df547075c279740c714078c90b954838785cfc35c2ab548e77cd171b9d83cb71ca6b796b8f4fb40c0db7cbffb3c9ca236aebbdda32a6d54

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-5.1.2562.3.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-5.1.2562.3.ebuild
deleted file mode 100644
index a0fb3fa96f92..
--- a/www-client/vivaldi-snapshot/vivaldi-snapshot-5.1.2562.3.ebuild
+++ /dev/null
@@ -1,204 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CHROMIUM_VERSION="96"
-CHROMIUM_LANGS="
-   af
-   am
-   ar
-   az
-   be
-   bg
-   bn
-   ca
-   cs
-   da
-   de
-   de-CH
-   el
-   en-GB
-   en-US
-   eo
-   es
-   es-419
-   es-PE
-   et
-   eu
-   fa
-   fi
-   fil
-   fr
-   fy
-   gd
-   gl
-   gu
-   he
-   hi
-   hr
-   hu
-   hy
-   id
-   io
-   is
-   it
-   ja
-   jbo
-   ka
-   kab
-   kn
-   ko
-   ku
-   lt
-   lv
-   mk
-   ml
-   mr
-   ms
-   nb
-   nl
-   nn
-   pa
-   pl
-   pt-BR
-   pt-PT
-   ro
-   ru
-   sc
-   sk
-   sl
-   sq
-   sr
-   sr-Latn
-   sv
-   sw
-   ta
-   te
-   th
-   tr
-   uk
-   vi
-   zh-CN
-   zh-TW
-"
-
-inherit chromium-2 desktop unpacker xdg
-
-VIVALDI_PN="${PN/%vivaldi/vivaldi-stable}"
-VIVALDI_HOME="opt/${PN}"
-DESCRIPTION="A browser for our friends"
-HOMEPAGE="https://vivaldi.com/;
-
-if [[ ${PV} = *_p* ]]; then
-   DEB_REV="${PV#*_p}"
-else
-   DEB_REV=1
-fi
-
-KEYWORDS="-* ~amd64 ~arm ~arm64"
-VIVALDI_BASE_URI="https://downloads.vivaldi.com/${VIVALDI_PN#vivaldi-}/${VIVALDI_PN}_${PV%_p*}-${DEB_REV}_;
-
-RE="\bamd64\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" amd64? ( 
${VIVALDI_BASE_URI}amd64.deb )"
-RE="\barm\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" arm? ( 
${VIVALDI_BASE_URI}armhf.deb )"
-RE="\barm64\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" arm64? ( 
${VIVALDI_BASE_URI}arm64.deb )"
-RE="\bx86\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" x86? ( 
${VIVALDI_BASE_URI}i386.deb )"
-
-LICENSE="Vivaldi"
-SLOT="0"
-IUSE="proprietary-codecs 

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

2022-02-04 Thread Zac Medico
commit: 08281f58991acdd930b5f49a4bb230f52b18cb5c
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Feb  4 21:31:53 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Feb  4 21:31:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08281f58

sys-fs/fuse-overlayfs: Bump to version 1.8.2

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

 sys-fs/fuse-overlayfs/Manifest|  1 +
 sys-fs/fuse-overlayfs/fuse-overlayfs-1.8.2.ebuild | 26 +++
 2 files changed, 27 insertions(+)

diff --git a/sys-fs/fuse-overlayfs/Manifest b/sys-fs/fuse-overlayfs/Manifest
index 6ed25bab2c2e..94be25574cd2 100644
--- a/sys-fs/fuse-overlayfs/Manifest
+++ b/sys-fs/fuse-overlayfs/Manifest
@@ -1,3 +1,4 @@
 DIST fuse-overlayfs-1.7.1.tar.gz 103575 BLAKE2B 
1fc92852f3afdead707af8745db03e2f5b0cf1f154f12c13850e5c37b30a0ad84122aa06c7f96c3825cd89cc2d26874abecb8ffbf0ad4edec5e0ffc854962944
 SHA512 
2199f9a5040832537b57792fe361943065c6132d31613bb1f838e931049703011902fca3abc25f6d7136efb2eb5505161f11c252b91dfb19158ac663e1ec15c2
 DIST fuse-overlayfs-1.8.1.tar.gz 103753 BLAKE2B 
42ac0b75b563cee9457721dfebe03355d930e074f44cda43d071e853df2d2192266f6b2901c4faa333414de45fb1b95e245a42ae15c52714e311a1aad98deeb6
 SHA512 
7a63f1f129c100615676bccdb0f7fd83c4e9901786064d98fa3776dd64dbb61c38913f8d0eff428a601cb44b1bfd3261ded5ec5e471b889c7cd28f81a859d8ad
+DIST fuse-overlayfs-1.8.2.tar.gz 103892 BLAKE2B 
18473c9703d12befbd68b5c1374fd18233dca3663dc0c6346e0a0c2f6f8928a57e8c04cf151196db3d6404ca8816e5ef2826a989c86d3ec7171344a73cec189f
 SHA512 
637fbde0e9481b31491fa7fbdce9315e3832e9de076668dddfeba407a0dd9ceb2072723348eb2a47586756da8a8242a040bc20dbb5e1ac3be3ffa795daf22b95
 DIST fuse-overlayfs-1.8.tar.gz 103726 BLAKE2B 
12da116bba60c5833b43d130b24ba6a60fcaabe1248226fa30e8c0b2c2439a438c66b39d28a8d3dd0f65bf353c38811e87f23a2fdbd830982063a7b5df7b4808
 SHA512 
68a7b6a41fd2c44fbfb194d324cc6869d7f6ce198f7ff3ddf74e91f9679785ffa610634a6e35c2661549e0bb776bf68741be45501d860b1e8dd6814d2b3fb0ab

diff --git a/sys-fs/fuse-overlayfs/fuse-overlayfs-1.8.2.ebuild 
b/sys-fs/fuse-overlayfs/fuse-overlayfs-1.8.2.ebuild
new file mode 100644
index ..456cd5903e7d
--- /dev/null
+++ b/sys-fs/fuse-overlayfs/fuse-overlayfs-1.8.2.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2019-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="FUSE implementation for overlayfs"
+HOMEPAGE="https://github.com/containers/fuse-overlayfs;
+EGIT_COMMIT="v${PV}"
+SRC_URI="https://github.com/containers/fuse-overlayfs/archive/${EGIT_COMMIT}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64"
+
+RDEPEND=">=sys-fs/fuse-3:="
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+S="${WORKDIR}/${PN}-${EGIT_COMMIT#v}"
+
+src_prepare() {
+   default
+   eautoreconf
+}



[gentoo-commits] repo/gentoo:master commit in: app-metrics/redis_exporter/

2022-02-04 Thread Zac Medico
commit: 65a8e46c7c02dff451164e69fbf73336bf497d52
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Feb  4 21:13:59 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Feb  4 21:13:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65a8e46c

app-metrics/redis_exporter: Bump to version 1.35.0

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

 app-metrics/redis_exporter/Manifest|   6 +
 .../redis_exporter/redis_exporter-1.35.0.ebuild| 539 +
 2 files changed, 545 insertions(+)

diff --git a/app-metrics/redis_exporter/Manifest 
b/app-metrics/redis_exporter/Manifest
index 384809313f0c..565b636c3537 100644
--- a/app-metrics/redis_exporter/Manifest
+++ b/app-metrics/redis_exporter/Manifest
@@ -175,6 +175,8 @@ DIST 
github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.11.0.mod 468 BLAKE2B 4ac6
 DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.11.0.zip 240896 BLAKE2B 
4745181476be50303fdf0e66ec147d643995c809a1fd969c846f656d453025f2cd67089f3065b41bede74bfcaa65e5307dd9541457ed7f7ace31b6b567e2e135
 SHA512 
20c4e6baf239cbc8c8a754ec1b9ee814ff29df1b41332f75f7440b27864bc28397071f3f4d60ba6ff4d0aa531b7a20857e11ecca93057784f76f03876151e8f8
 DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.12.0.mod 413 BLAKE2B 
5eb306f5a61cfcc4d5892d6b262802103cb2d11e29cc689ac8be2ae5e8be2ad159689354ada7810f7dd6feb447505779598abce2750f6586680726bd3bb6204b
 SHA512 
b8e737ef2d333b1f9b648d92752dfb6bba4a0bcefbc2320743f4e3f02ba71fc2d7125439b418dc55d94756f77d55baa44175f11f215f4c300379afed619cf249
 DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.12.0.zip 271783 BLAKE2B 
8e65fab03abe911b837cad124d18ce56f085d68c4b7bbd6580ede338406d6b4e4b89a535e15e2e4c447a5d201bf9c3cc54006cb9d8f8e518ba484c1c3fcf52a2
 SHA512 
436710959a157dce69934251814f03e58d7deb3cfbb7592f9dd32a644287207266900118b9a13f9fd3fb7ce7c2339a0303643102054189a150d6daea6292
+DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.12.1.mod 413 BLAKE2B 
5eb306f5a61cfcc4d5892d6b262802103cb2d11e29cc689ac8be2ae5e8be2ad159689354ada7810f7dd6feb447505779598abce2750f6586680726bd3bb6204b
 SHA512 
b8e737ef2d333b1f9b648d92752dfb6bba4a0bcefbc2320743f4e3f02ba71fc2d7125439b418dc55d94756f77d55baa44175f11f215f4c300379afed619cf249
+DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.12.1.zip 275396 BLAKE2B 
57a2e5a4f238568875afc87abf5820d7d4056842452935bd3f8a234f80fe17864518fc38510f4601ebaef62d5f4a80bea0ba33c63429f72fd12211c86bfa02d4
 SHA512 
98ded72adfa9ee40591ee3bf1c332bbf426734c0e7c3f40978befc416e0e61823c9925f8d69c54996cd7b010daf0d4bf7a4d59bb00f6bc05eef4dc343d054cf4
 DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.7.1.mod 569 BLAKE2B 
0c975c1c48f40792b02fd8756be3b6bc044ca05725ae179445a858baed4861011ba76051aa25fb10be23c6cf14738cb9cab928418be49d8ad85211d398089ec8
 SHA512 
6fe81bf3c591058f2ff968b3c6656766d9d3fd74c8577b3e7cfac17e463392eed3268248237d252c98751b2f97bc7c48a8db15bfc3fbcd4afbbaca0e2970819b
 DIST 
github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20180712105110-5c3871d89910.mod
 42 BLAKE2B 
5519896b44b7bc3089a8965dc61aae63745c64ba1a390d3fff1202be7f8dd34f59862c04b49e377d6616a93a0341662becce65d431d445703a160ba49eda208b
 SHA512 
c84dfe43954b19c1e4ac5ff8738e79db469f3bc1dc55e69b12503d0a5cf125cc74f4797ddbfe64b2a1bd1e2940575c32678671d51f67161c4f5b53b2a85ac46a
 DIST 
github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190129233127-fd36f4220a90.mod
 164 BLAKE2B 
ed42e8dec25021e488793be8e008c34ab5bdd6b5b884762d69f40d6c8968bb539041920ac7108e685ae56f2ef71b7174245772d96cc8f20463eba71580afae29
 SHA512 
4e0e6941b43c17cdce0205e9ba3d9fb18937f426ea2ac9a9e53396c906101d6ec2eb501cd8a791ee3ba9a32185f86495e9189134b8a9858134c73238d98ce0f6
@@ -208,6 +210,7 @@ DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.mod 179 
BLAKE2B 3bb7cee3118f0
 DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.5.1.mod 188 BLAKE2B 
e47d78f037db3684a329905985b02b7ddf0a609ab4c69dd4346202ed0981712d54d0fa1b9c230b50d1857854edbbf77ee144d54b12c7c46833e6542d6034171e
 SHA512 
70adf6a86dc6f934ee611f6aefa459f1287b7294297eb9221a747427d031b10c3e606696a656be4c2746a25480c322106099ea2bb360cbe782f4d03c85cd9fcb
 DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.5.1.zip 91883 BLAKE2B 
8bb8f10ba7a3c719844dbbcbdbb87773487921f493cf6f72d1a9fd1d553f7f7784b01b9795a5c26a352490ed6d75c29a542a0b3d7c18dc57e447d9d227eb
 SHA512 
c539cd964718439715caee454b38fdb61eb5d4e20489e10f7f6a030b4b941b2ca52d33f950c0b04149962399f0c3cb5b6a90efa2d79acc0f57a7f49d508c67c7
 DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.7.0.mod 216 BLAKE2B 
c597010cf6690e73cd265e800f0f0bbea331fb76217457b6326f5a19481eca044aa5426fa32519870b2f0f4b3bed95768a23d3138dbcc9739b7cf7e044f50668
 SHA512 
197e6ef15edb27ded67ccfb636c252fe522f0930ff012341a4b593f25b5dd8282e4f658970931cfdeb8f2c5ee0b4ebac6738fe7634bf00896d12270fcbf4b31b
+DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.7.0.zip 105564 BLAKE2B 

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

2022-02-04 Thread Zac Medico
commit: 74d6ba09c92c0c9a6533dd254da6c627099e82cc
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Feb  4 21:04:51 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Feb  4 21:04:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74d6ba09

app-containers/skopeo: Bump to version 1.6.0

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

 app-containers/skopeo/Manifest|  1 +
 app-containers/skopeo/skopeo-1.6.0.ebuild | 52 +++
 2 files changed, 53 insertions(+)

diff --git a/app-containers/skopeo/Manifest b/app-containers/skopeo/Manifest
index 8663f744fd25..c986fce36667 100644
--- a/app-containers/skopeo/Manifest
+++ b/app-containers/skopeo/Manifest
@@ -5,3 +5,4 @@ DIST skopeo-1.1.1.tar.gz 4622784 BLAKE2B 
3f72a812409a48d960fe36028355cf7128dabbb
 DIST skopeo-1.3.0.tar.gz 5593261 BLAKE2B 
b26e39d821e63b31a1cbd23bf7b836fbe3185f45ad086c8d0f427309590dbaf196fe09af9aca4aae10c30423c3828375ffe6c95c9c9fb1dea739404e98d8554e
 SHA512 
5b6e96fff4670d8dcbc787cd5a568112337a111e7c44111226fa5684edffa880a1d632660238c55b6193ba26496697dd7e38d7d015cdfd61ce5efb119f0e12eb
 DIST skopeo-1.3.1.tar.gz 5595931 BLAKE2B 
eda2767a1b1b899b99fc70ef361541c388cab77d4521cc2792baf78ca2474e73ff2d7d64d26f713410a40600866fd6c20855d4acdbdb0a31b11d7efaa8101b83
 SHA512 
65b8ba735bd409b25b56a5538de4e09edfd11d684752a6e9d28037d0f2b80aef80796c2e9588fcf192d24bd885cc7b2d65b0ee7f7c34d18b2eacc25816da5d36
 DIST skopeo-1.5.1.tar.gz 5636533 BLAKE2B 
7f0e86cdee5c3250ec1280d7e71554ac2f8ad96ababe0e81dfabc00e8c128a13fc0c9c561b7a9be389d7386e9f664b95118bd2122612b9c2e8844db49769c03c
 SHA512 
3f8c730eaa739bf2a29b82d3b04aa4eee1c09f957b61964fc8c48e59d1537bcb87b5bdf9c18fa48f9d36cf2b7ede3a1448918a20b5a3167f6ce09881a6cd3dde
+DIST skopeo-1.6.0.tar.gz 6542541 BLAKE2B 
d2898d8f80a04340e3174179e2397f7b5e66ed50ec8c11919adf1b0620c74a3a69f8be548c5c3bf081735e1a86dc5ae3390d058ef64fc4b73d8f01074ef4a210
 SHA512 
13a3660780ce43e31a9840811aaa7626f9d0dee52c469a2a58b4bf96bd5e4d67e0f0556ac2baef14c5a662afae1f2d407b260c8833d573326791a2193e48

diff --git a/app-containers/skopeo/skopeo-1.6.0.ebuild 
b/app-containers/skopeo/skopeo-1.6.0.ebuild
new file mode 100644
index ..ab507a164049
--- /dev/null
+++ b/app-containers/skopeo/skopeo-1.6.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+COMMIT=e4b79d7741c40434838ece2790be537083fc2a04
+inherit go-module bash-completion-r1
+
+DESCRIPTION="Command line utility foroperations on container images and image 
repositories"
+HOMEPAGE="https://github.com/containers/skopeo;
+SRC_URI="https://github.com/containers/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="btrfs"
+
+COMMON_DEPEND=">=app-crypt/gpgme-1.5.5:=
+   >=dev-libs/libassuan-2.4.3:=
+   dev-libs/libgpg-error:=
+   btrfs? ( >=sys-fs/btrfs-progs-4.0.1 )
+   >=sys-fs/lvm2-2.02.145:="
+DEPEND="${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+
+RESTRICT+=" test"
+
+src_compile() {
+   local BUILDTAGS
+   BUILDTAGS="containers_image_ostree_stub $(usex btrfs "" 
exclude_graphdriver_btrfs)"
+   set -- go build -mod=vendor -ldflags "-X main.gitCommit=${COMMIT}" \
+   -gcflags "${GOGCFLAGS}" -tags "${BUILDTAGS}" \
+   -o skopeo ./cmd/skopeo
+   echo "$@"
+   "$@" || die
+   cd docs || die
+   for f in *.1.md; do
+   go-md2man -in ${f} -out ${f%%.md} || die
+   done
+}
+
+src_install() {
+   dobin skopeo
+   doman docs/*.1
+   dobashcomp completions/bash/skopeo
+   insinto /etc/containers
+   newins default-policy.json policy.json
+   insinto /etc/containers/registries.d
+   doins default.yaml
+   keepdir /var/lib/atomic/sigstore
+   einstalldocs
+}



[gentoo-commits] repo/proj/guru:dev commit in: net-im/go-sendxmpp/

2022-02-04 Thread Ronny Gutbrod
commit: 66607978e08db15febf5cb194b9e054258ac2156
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Fri Feb  4 20:52:18 2022 +
Commit: Ronny Gutbrod  tastytea  de>
CommitDate: Fri Feb  4 20:57:37 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=66607978

net-im/go-sendxmpp: Version bump: 0.1.3

Signed-off-by: Ronny (tastytea) Gutbrod  tastytea.de>

 net-im/go-sendxmpp/Manifest |  9 +
 net-im/go-sendxmpp/go-sendxmpp-0.1.3.ebuild | 55 +
 2 files changed, 64 insertions(+)

diff --git a/net-im/go-sendxmpp/Manifest b/net-im/go-sendxmpp/Manifest
index cd478c094..4d3fd68dc 100644
--- a/net-im/go-sendxmpp/Manifest
+++ b/net-im/go-sendxmpp/Manifest
@@ -4,20 +4,29 @@ DIST github.com%2Fgabriel-vasile%2Fmimetype%2F@v%2Fv1.4.0.mod 
112 BLAKE2B 7689b2
 DIST github.com%2Fgabriel-vasile%2Fmimetype%2F@v%2Fv1.4.0.zip 25004156 BLAKE2B 
a07ad260f83f680f9dfd19397ca12b2526fd790125cd6b279944ac56204cd98453ee24234c4828e7efe7ed8fa835150accac4f9fc15c797eecd251a21afc2d5a
 SHA512 
97c03324ad08e2aec0163c80342c3775c6da4c041c4c9414fb3ceebf7865efa87896764fe8ea53f25a65b225f79cffcf8703e2a32904e37dacb7ee17d2c3e43a
 DIST 
github.com%2Fmattn%2Fgo-xmpp%2F@v%2Fv0.0.0-20210723025538-3871461df959.mod 32 
BLAKE2B 
bb6ee50a0e4b439bb0c8ea35961567768bcae1957e6e7d9d4b78f4a91bcecaf8c9d5624de322eb45ef748105368e1fe38034a708101dca295168e6adf79f9193
 SHA512 
c167f2bd42e1fd473d58dc74fdcfcaf12a53133995a513fef5e08841ced5f9de07ec911f617d49501a235e8349b07b6625f4f80464fa439beb28586951227e50
 DIST 
github.com%2Fmattn%2Fgo-xmpp%2F@v%2Fv0.0.0-20210723025538-3871461df959.zip 
20309 BLAKE2B 
5f57ec5e51a4f6c016b00f25de10d180a35d6644876fffa11bcbb2b20d6ebd854afd57eb2323bb146d6fc61bb0dcb80c040848089c5e8667b675c1bfd2e48471
 SHA512 
a2ab930fe2f3356b4b61245a920db233a929a19f562750f075b5e11089bca6f71ee44214d7af91f80fc78461e5a93b10aa45a7db684c67b454ec67ca0fb56cef
+DIST 
github.com%2Fmattn%2Fgo-xmpp%2F@v%2Fv0.0.0-20211029151415-912ba614897a.mod 32 
BLAKE2B 
bb6ee50a0e4b439bb0c8ea35961567768bcae1957e6e7d9d4b78f4a91bcecaf8c9d5624de322eb45ef748105368e1fe38034a708101dca295168e6adf79f9193
 SHA512 
c167f2bd42e1fd473d58dc74fdcfcaf12a53133995a513fef5e08841ced5f9de07ec911f617d49501a235e8349b07b6625f4f80464fa439beb28586951227e50
+DIST 
github.com%2Fmattn%2Fgo-xmpp%2F@v%2Fv0.0.0-20211029151415-912ba614897a.zip 
20592 BLAKE2B 
42c5e4c9aafda1a6b980194d1f16ce8554a69e286dadd93e56e7f501cbd55d3ca39e63970f798ce53b35b5f3553d4c6c00314f815accdcd4e714da4cd68b20ac
 SHA512 
2408fe13432b586f0d11c9760d9404a1f3a002759458e194c51fb5608eef3c8d2d9ce05a64c149e5597090b1f800bb0c6019844320062be395b7281ef4fc137b
 DIST github.com%2Fpborman%2Fgetopt%2Fv2%2F@v%2Fv2.1.0.mod 45 BLAKE2B 
5271e906de3f986c13185a62ca783ae1f7ba4b2d88669040fdccedce8af496b7595a5757d75b2a20198818c7eaa01f37471b0ed6b9793965e4d23858c51ba75e
 SHA512 
9990e84cffa9777543bdce26e4348a827ec7b236890cbe46b218e97da0c9dd35d4a2322ce33f8d3f1a237c312b9e4c4a76af3dcac8f02ede68b3172d473a38b3
 DIST github.com%2Fpborman%2Fgetopt%2Fv2%2F@v%2Fv2.1.0.zip 36834 BLAKE2B 
79f103ff1bdb4953621341ebc194e61e44750fff6548b0986d429ea50e1e7556fd87b12177c2a4576b354ba321750719d8562e5dacd420faa162a69d5241159c
 SHA512 
00bc26e4c904c4e77855c495c3e2718605268b7f431166e02ea3244fe7c30436d7b82428c1ad4a346440f688c7ccdaa6ab4ee0643c7ec61f6aca08fc783b027e
 DIST go-sendxmpp-0.1.1.tar.bz2 915976 BLAKE2B 
30cf381d369ede8825f4b3d4224f9ea9da55905caeab8742c42667b0bed4ac39470a49a66612c909662731dc10624e5287cea6b913888cc1667d340c636665f7
 SHA512 
8e5105de517912d7b229284d7da1bc10d8389b01c993cbd0c2f1f0f80982865958204e92b0d13fedeb11ba0da82b405b6f48023120bb7e0beafab541294c
 DIST go-sendxmpp-0.1.2.tar.bz2 918236 BLAKE2B 
f07d07831c22c358778da70aa30ba37dcc2ad7876e01b6f3254e396a589412537cdaba12c715a3835d1f2d77462be4982b7b6dfd476210f977fab7569066b284
 SHA512 
39581aab578c42e7ce9e2afd595868d0935dbe523062c2d7322f9acafce719f8ef34633c091a4fe3b7156f2c2ac28a354ea5ce27887b268bbb627525f1a5ea7f
+DIST go-sendxmpp-0.1.3.tar.bz2 16351 BLAKE2B 
5bf63cc34910eca060e41446e8d1ca892532d1fcfb6ffbdfdd0b7e954b2bde973dc30e5407cbb747d5a1a289e9ac4c80bab3bf4bef821f21ba63501c99243a4b
 SHA512 
885bde598b8e1de1379ffa715a74068c5b585efd41d6a3ccc737d6c097db57dbe4927f9ce2d92a28f4831267d0c06995104daaa1ec5330bde051891833ba594e
 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210505024714-0287a6fb4125.mod 179 
BLAKE2B 
a505fef7e073e6305a5a8b8c3494942da61a944af095abe6caa2774152b7427437d74405967eeb6b38b114a14f0e09e72d00de2a6eba1f4694293a08daaa826b
 SHA512 
a1c24164598eb8a5e5005b0df0cf9b3efd285c90efe6472a0474907f368166c243942765f182d8cc65f23159cd0a8b52c547ab14ee67c4261f768e31d05ed5e5
 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210505024714-0287a6fb4125.zip 
1562577 BLAKE2B 
be084b9db5b7601d516d4e461e93b188b9238df70eb64e67b7286aa6c2ae4dc41963b592891f550e722e3a51bb77e14933cff571675ad99f71616ab8e91398f6
 SHA512 
5c6276225544403e3d96a991d6f1e9c87fc993b5c00f74e948234cb18a1e8b4eca5b22cfc4a6b260195a702b9d61f9fa9a20a339ea1853973ee5aeb3945d3947
 DIST 

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

2022-02-04 Thread Arthur Zamarin
commit: 00fc32dea248405068c7bef23904ef8d3e10655d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb  4 20:47:54 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb  4 20:49:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00fc32de

dev-libs/leveldb: Revert drop 1.20

Reverts: 5d0bd6ede5c8f6107be8c62ea98ec9aafe79c58a
Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-libs/leveldb/Manifest  |  1 +
 .../leveldb/files/leveldb-1.18-configure.patch | 52 ++
 .../leveldb/files/leveldb-1.20-memenv-so.patch | 33 +++
 dev-libs/leveldb/leveldb-1.20.ebuild   | 64 ++
 4 files changed, 150 insertions(+)

diff --git a/dev-libs/leveldb/Manifest b/dev-libs/leveldb/Manifest
index 02ce0049311b..26c4a7fc073c 100644
--- a/dev-libs/leveldb/Manifest
+++ b/dev-libs/leveldb/Manifest
@@ -1 +1,2 @@
+DIST leveldb-1.20.tar.gz 223141 BLAKE2B 
57ab5cb191679b8fbfaa28fa0a61ee1dcd757bb9c70215dd325daebfd93b30aa9bbe3c993a1758aa9804a7cd6f2c31df7cf98bdf98320cd1aebc14f5eb77d9a5
 SHA512 
c59258f2f58ce2d5680e9ab3da4ab0923d91cd4648dcf63cdaa26cdde92bf45e094544539ad11d8e09a4a4813435286143ed0e86c21c6c31a0596903ed4744d2
 DIST leveldb-1.23.tar.gz 242925 BLAKE2B 
ef9ac853cdc2f376b9b4299c1017db8c262cb318ad771f40fe81c9fb71ea06ee56ac533b3e8af4e6fdd28577a2f87cfd103ecb49098187d099ccd6019b8ca1d2
 SHA512 
ac15eac29387b9f702a901b6567d47a9f8c17cf5c7d8700a77ec771da25158c83b04959c33f3d4de7a3f033ef08f545d14ba823a8d527e21889c4b78065b0f84

diff --git a/dev-libs/leveldb/files/leveldb-1.18-configure.patch 
b/dev-libs/leveldb/files/leveldb-1.18-configure.patch
new file mode 100644
index ..ba30fc731ad5
--- /dev/null
+++ b/dev-libs/leveldb/files/leveldb-1.18-configure.patch
@@ -0,0 +1,52 @@
+we'll handle configure ourselves in src_configure
+
+--- a/Makefile
 b/Makefile
+@@ -14,9 +14,6 @@ OPT ?= -O2 -DNDEBUG
+ # OPT ?= -O2 -g2 -DNDEBUG
+ #---
+ 
+-# detect what platform we're building on
+-$(shell CC="$(CC)" CXX="$(CXX)" TARGET_OS="$(TARGET_OS)" \
+-./build_detect_platform build_config.mk ./)
+ # this file is generated by the previous line to set build flags and sources
+ include build_config.mk
+ 
+
+control snappy/tcmalloc explicitly
+
+--- a/build_detect_platform
 a/build_detect_platform
+@@ -190,6 +190,7 @@
+ COMMON_FLAGS="$COMMON_FLAGS -DLEVELDB_PLATFORM_POSIX"
+ fi
+ 
++if [ "${USE_SNAPPY:-auto}" = "auto" ]; then
+ # Test whether Snappy library is installed
+ # http://code.google.com/p/snappy/
+ $CXX $CXXFLAGS -x c++ - -o $CXXOUTPUT 2>/dev/null  

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

2022-02-04 Thread Michał Górny
commit: 5c0c6e7c203ec1cfdc04609b8ddfdce1766a88a0
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb  4 20:43:50 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb  4 20:43:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c0c6e7c

app-arch/lzip: Bump to 1.23

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

 app-arch/lzip/Manifest |  1 +
 app-arch/lzip/lzip-1.23.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/app-arch/lzip/Manifest b/app-arch/lzip/Manifest
index 7627a121f501..30ca2e650ed6 100644
--- a/app-arch/lzip/Manifest
+++ b/app-arch/lzip/Manifest
@@ -1 +1,2 @@
 DIST lzip-1.22.tar.gz 120769 BLAKE2B 
d6d4faaff981d64219e27364c7072f9e1309507220e80d4195d866c3429db537a9fa9b7a4ac67ef5c267cad0f6e43ce997a98f1e47a88b228bd1aa437c991140
 SHA512 
318de74effdbdfa79070d28919459a85bf1efe662b818b8af2a3daa964b6c24e3386c37de360c6d5b8b624d549b5c9ed777c6234561129c477e03d92ac2db206
+DIST lzip-1.23.tar.gz 121817 BLAKE2B 
934a35e31b0db76c4dcbe2fe903f04b60471485118aa5d4001599a3c23a7db74f05f703cf430bb299795be7025f71efb225afddff85c8245e962bdadcf82aef7
 SHA512 
482804205b6e92fdf9cb17fb9482df7987227c7b1bef9e42d78787acfabe73995f5b1a66f847d2176423f22dce56f1122c5b1c9670f0b778c0bdad2852369c85

diff --git a/app-arch/lzip/lzip-1.23.ebuild b/app-arch/lzip/lzip-1.23.ebuild
new file mode 100644
index ..9472e59e3d1d
--- /dev/null
+++ b/app-arch/lzip/lzip-1.23.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="lossless data compressor based on the LZMA algorithm"
+HOMEPAGE="https://www.nongnu.org/lzip/lzip.html;
+SRC_URI="https://download.savannah.gnu.org/releases/${PN}/${P/_/-}.tar.gz;
+S="${WORKDIR}/${P/_/-}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+src_configure() {
+   # not autotools-based
+   ./configure \
+   --prefix="${EPREFIX}"/usr \
+   CXX="$(tc-getCXX)" \
+   CPPFLAGS="${CPPFLAGS}" \
+   CXXFLAGS="${CXXFLAGS}" \
+   LDFLAGS="${LDFLAGS}" || die
+}



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

2022-02-04 Thread Matthew Thode
commit: 40e731f5e10ec5d6a35cf598d744f4c2a770a28d
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Feb  4 20:40:48 2022 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Feb  4 20:40:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40e731f5

sys-boot/plymouth: yay finally a release

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

 sys-boot/plymouth/Manifest  |   1 +
 sys-boot/plymouth/plymouth-22.02.122.ebuild | 112 
 2 files changed, 113 insertions(+)

diff --git a/sys-boot/plymouth/Manifest b/sys-boot/plymouth/Manifest
index a195adf94890..7595bea28e61 100644
--- a/sys-boot/plymouth/Manifest
+++ b/sys-boot/plymouth/Manifest
@@ -1,3 +1,4 @@
 DIST gentoo-logo.png 14501 BLAKE2B 
e7236c16b96a2d35a6f062b89bc0a6c6fc696a803b7da734ff9ae255fcd65e549d9bc3d510c283e235a770f42edcbdffc1d5cc4c2fcdec9cc931eb0acf504859
 SHA512 
059a555931b6d2a910bcd887f5ea0cc17c6edf2d2d45c03a1fec1bdda0138ba6bca6bdf90a65c6520a3f8f1b51ecf6f7956098f45ed6c1276f29c835e729163c
 DIST plymouth-0.9.5.tar.xz 1186200 BLAKE2B 
8fd073703773fcf7f3e26454c860f094fb4b3d712c56c9df6716ef11815a79f7d5b078ab6c6567b76421026d84a086f95865bf9f3e4ae6363cb1ffc2caa68537
 SHA512 
686220e8d5b1a8be298156786d979d0e3fb9e010b930d0e8082a2bb152cf07c1bf493d820c243838a1771ee859dc0b4723bd9f10ee434a94a096ce9236c36ce9
+DIST plymouth-22.02.122.tar.xz 1183608 BLAKE2B 
8bb1362fcaa7d4c0fb1b69729a8a681d992a5d2abc07644d3be5cc0b19df2cac83df031165a65fa06f95042f619b9f4b7a7e1f3816528f6623473a2b1303e1be
 SHA512 
9f2f5a7121b431f16561d6b5f31177ff06cf1e6bdffaa68c1fe08aa3c765a96dee745824aae8eaac9a0b4a08f0a17a9ae79a82bd0826fcc3fe14d8553635f817
 DIST plymouth-5b91b9ed84cc91759c986634a4d64d474e6092cf.tar.gz 1132049 BLAKE2B 
0e224aad93fef4039a1a023ece051a64e1fa854f29a814957673c7ba68eb3f2348ca075f59a17f7bad692152ddcc402b2246db413886ac73ad77a36a6fb2cb3c
 SHA512 
3d81ce379d0a11af5b557bfe86e336a40e5abdbb6dbd6cd5e046ede9a46cf2782af75b8e32e3fb2232b8a22efee1890ecb47394742041d9dcb499b38476a814c

diff --git a/sys-boot/plymouth/plymouth-22.02.122.ebuild 
b/sys-boot/plymouth/plymouth-22.02.122.ebuild
new file mode 100644
index ..98bb6eb92ea2
--- /dev/null
+++ b/sys-boot/plymouth/plymouth-22.02.122.ebuild
@@ -0,0 +1,112 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic
+SRC_URI="https://dev.gentoo.org/~aidecoe/distfiles/${CATEGORY}/${PN}/gentoo-logo.png;
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://gitlab.freedesktop.org/plymouth/plymouth;
+else
+   SRC_URI="${SRC_URI} 
https://www.freedesktop.org/software/plymouth/releases/${P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc 
~x86"
+fi
+
+inherit autotools readme.gentoo-r1 systemd
+
+DESCRIPTION="Graphical boot animation (splash) and logger"
+HOMEPAGE="https://cgit.freedesktop.org/plymouth/;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="debug +gtk +libkms +pango +split-usr static-libs +udev"
+
+CDEPEND="
+   >=media-libs/libpng-1.2.16:=
+   gtk? (
+   dev-libs/glib:2
+   >=x11-libs/gtk+-3.14:3
+   x11-libs/cairo
+   )
+   libkms? ( x11-libs/libdrm[libkms] )
+   pango? ( >=x11-libs/pango-1.21 )
+"
+DEPEND="${CDEPEND}
+   elibc_musl? ( sys-libs/rpmatch-standalone )
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt
+   virtual/pkgconfig
+"
+# Block due bug #383067
+RDEPEND="${CDEPEND}
+   udev? ( virtual/udev )
+   !https://wiki.gentoo.org/wiki/Plymouth#Configuration
+"
+
+PATCHES=(
+   "${FILESDIR}"/0.9.3-glibc-sysmacros.patch
+)
+
+src_prepare() {
+   use elibc_musl && append-ldflags -lrpmatch
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --with-system-root-install=no
+   --localstatedir=/var
+   --without-rhgb-compat-link
+   --enable-documentation
+   --enable-systemd-integration
+   --with-systemdunitdir="$(systemd_get_systemunitdir)"
+   $(use_enable !static-libs shared)
+   $(use_enable static-libs static)
+   $(use_enable debug tracing)
+   $(use_enable gtk gtk)
+   $(use_enable libkms drm)
+   $(use_enable pango)
+   $(use_with udev)
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+
+   insinto /usr/share/plymouth
+   newins "${DISTDIR}"/gentoo-logo.png bizcom.png
+
+   if use split-usr ; then
+   # Install compatibility symlinks as some rdeps hardcode the 
paths
+   dosym ../usr/bin/plymouth /bin/plymouth
+   dosym ../usr/sbin/plymouth-set-default-theme 
/sbin/plymouth-set-default-theme
+   dosym ../usr/sbin/plymouthd /sbin/plymouthd
+   fi
+
+   

[gentoo-commits] repo/proj/guru:dev commit in: dev-python/dropbox-sdk-python/

2022-02-04 Thread Viorel Munteanu
commit: b33fbb317b29eded914b27530e91d8b659c48814
Author: Viorel Munteanu  gmail  com>
AuthorDate: Fri Feb  4 20:36:03 2022 +
Commit: Viorel Munteanu  gmail  com>
CommitDate: Fri Feb  4 20:36:03 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b33fbb31

dev-python/dropbox-sdk-python: drop 11.26.0

Signed-off-by: Viorel Munteanu  gmail.com>

 dev-python/dropbox-sdk-python/Manifest |  1 -
 .../dropbox-sdk-python-11.26.0.ebuild  | 41 --
 2 files changed, 42 deletions(-)

diff --git a/dev-python/dropbox-sdk-python/Manifest 
b/dev-python/dropbox-sdk-python/Manifest
index f0144cc18..2c59e5221 100644
--- a/dev-python/dropbox-sdk-python/Manifest
+++ b/dev-python/dropbox-sdk-python/Manifest
@@ -1,2 +1 @@
-DIST dropbox-sdk-python-11.26.0.tar.gz 1152565 BLAKE2B 
87912ce7047687350ea1c88877ffd2b1feb0ee3686702af023c8c870b68e6e9faa425dd4a3be1da063295b62a2fbf8126118668172fdc93e8352cd18a3f9a092
 SHA512 
011d99c7dcea305d89cded09bfe4035edea0cd7d0cbb6fc6db32e8586765afaf2a98202f6612c436183d173da793097e895606d5078025b91a5ff3faa24cbaa6
 DIST dropbox-sdk-python-11.27.0.tar.gz 1155164 BLAKE2B 
bb5fe7f077691f6d6bda188dcffa711d8981b97bd64dc28452bef0282cac17802569e263b369fbe82ee77705a87033be034a0ba6728a37d721c59204fc119423
 SHA512 
14e9aee9e582e3548404843a303d00b58122f0b9a538c5725d23181f3e4cbc87ba2a250c89f76e911cdc563fbe07208ecc2b0a7b1ed50d80f74d615cdc17e251

diff --git a/dev-python/dropbox-sdk-python/dropbox-sdk-python-11.26.0.ebuild 
b/dev-python/dropbox-sdk-python/dropbox-sdk-python-11.26.0.ebuild
deleted file mode 100644
index b426abdfd..0
--- a/dev-python/dropbox-sdk-python/dropbox-sdk-python-11.26.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="The offical Dropbox SDK for Python"
-HOMEPAGE="https://www.dropbox.com/developers;
-SRC_URI="https://github.com/dropbox/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   >=dev-python/requests-2.16.2[${PYTHON_USEDEP}]
-   >=dev-python/six-1.12.0[${PYTHON_USEDEP}]
-   >=dev-python/stone-2.0.0[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # Don't run tests via setup.py pytest
-   sed -i -e "/'pytest-runner.*',/d" setup.py || die
-   # this is wrong
-   sed -i -e "s/^import mock$/from unittest import mock/" 
test/unit/test_dropbox_unit.py || die
-
-   # setuptools warning
-   sed -i -e 's/description-file/description_file/' setup.cfg
-
-   # disable tests that need SCOPED_USER_DROPBOX_TOKEN
-   mv test/integration/test_dropbox.py test/integration/_test_dropbox.py 
|| die
-   sed -i -e "s/\(class\) \(TestClient\)/\\1 _\\2/
-  s/test_NoRedirect_whole_flow/_&/" 
test/unit/test_dropbox_unit.py || die
-
-   distutils-r1_python_prepare_all
-}



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/dropbox-sdk-python/

2022-02-04 Thread Viorel Munteanu
commit: fea9b652dca921d938ad8169fccebe1737d021e1
Author: Viorel Munteanu  gmail  com>
AuthorDate: Fri Feb  4 20:35:42 2022 +
Commit: Viorel Munteanu  gmail  com>
CommitDate: Fri Feb  4 20:35:42 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fea9b652

dev-python/dropbox-sdk-python: add 11.27.0

Signed-off-by: Viorel Munteanu  gmail.com>

 dev-python/dropbox-sdk-python/Manifest |  1 +
 .../dropbox-sdk-python-11.27.0.ebuild  | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/dropbox-sdk-python/Manifest 
b/dev-python/dropbox-sdk-python/Manifest
index 5a3181fc4..f0144cc18 100644
--- a/dev-python/dropbox-sdk-python/Manifest
+++ b/dev-python/dropbox-sdk-python/Manifest
@@ -1 +1,2 @@
 DIST dropbox-sdk-python-11.26.0.tar.gz 1152565 BLAKE2B 
87912ce7047687350ea1c88877ffd2b1feb0ee3686702af023c8c870b68e6e9faa425dd4a3be1da063295b62a2fbf8126118668172fdc93e8352cd18a3f9a092
 SHA512 
011d99c7dcea305d89cded09bfe4035edea0cd7d0cbb6fc6db32e8586765afaf2a98202f6612c436183d173da793097e895606d5078025b91a5ff3faa24cbaa6
+DIST dropbox-sdk-python-11.27.0.tar.gz 1155164 BLAKE2B 
bb5fe7f077691f6d6bda188dcffa711d8981b97bd64dc28452bef0282cac17802569e263b369fbe82ee77705a87033be034a0ba6728a37d721c59204fc119423
 SHA512 
14e9aee9e582e3548404843a303d00b58122f0b9a538c5725d23181f3e4cbc87ba2a250c89f76e911cdc563fbe07208ecc2b0a7b1ed50d80f74d615cdc17e251

diff --git a/dev-python/dropbox-sdk-python/dropbox-sdk-python-11.27.0.ebuild 
b/dev-python/dropbox-sdk-python/dropbox-sdk-python-11.27.0.ebuild
new file mode 100644
index 0..2a157f43b
--- /dev/null
+++ b/dev-python/dropbox-sdk-python/dropbox-sdk-python-11.27.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="The offical Dropbox SDK for Python"
+HOMEPAGE="https://www.dropbox.com/developers;
+SRC_URI="https://github.com/dropbox/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/requests-2.16.2[${PYTHON_USEDEP}]
+   >=dev-python/six-1.12.0[${PYTHON_USEDEP}]
+   >=dev-python/stone-2.0.0[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # Don't run tests via setup.py pytest
+   sed -i -e "/'pytest-runner.*',/d" setup.py || die
+   # this is wrong
+   sed -i -e "s/^import mock$/from unittest import mock/" 
test/unit/test_dropbox_unit.py || die
+
+   # disable tests that need SCOPED_USER_DROPBOX_TOKEN
+   mv test/integration/test_dropbox.py test/integration/_test_dropbox.py 
|| die
+   sed -i -e "s/\(class\) \(TestClient\)/\\1 _\\2/
+  s/test_NoRedirect_whole_flow/_&/" 
test/unit/test_dropbox_unit.py || die
+
+   distutils-r1_python_prepare_all
+}



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

2022-02-04 Thread Ben Kohler
commit: 85af8e9d62291b5a0b6a08ec75ecef29c9b2292a
Author: Ben Kohler  gentoo  org>
AuthorDate: Fri Feb  4 20:26:46 2022 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Fri Feb  4 20:26:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85af8e9d

media-gfx/fotoxx: drop old

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

 media-gfx/fotoxx/Manifest|  2 -
 media-gfx/fotoxx/fotoxx-22.1.ebuild  | 81 
 media-gfx/fotoxx/fotoxx-22.11.ebuild | 81 
 3 files changed, 164 deletions(-)

diff --git a/media-gfx/fotoxx/Manifest b/media-gfx/fotoxx/Manifest
index 9d051e423cc1..61be1edee9bf 100644
--- a/media-gfx/fotoxx/Manifest
+++ b/media-gfx/fotoxx/Manifest
@@ -1,4 +1,2 @@
 DIST fotoxx-21.60.tar.gz 8679841 BLAKE2B 
ec3dcbd0b937d730692e225fec7530ac46390328ae960e8960df7d252bc0cd8630de84bf47dfaf74c1e07855b4b0959e596e5e515ea00a6c430872359b2b4576
 SHA512 
ac999fcc70acd92c54e85ad276112aaa7f1b7606ea70381d6f833d829fd92c14aacad7a967838e5d28fce80cfa6da8ef05e0ee49b463210cb66a3f8ffc3d22e7
-DIST fotoxx-22.1.tar.gz 8801382 BLAKE2B 
9090d2ea0ddfcb91758fbe0b8c6b81fd3c764eef1cac8098c5ae5f4dba37b5426bc4d5dee6b7d36519f62b28bee7f3f45aa29a7c6f92209f193a5a5f0775ae7b
 SHA512 
41335113cd37490d02112760845b6e0bc631c448a0bdfe0435082836c86a1e125fbbe8a0efd30aae4ec7e86f43a67c9b6697e47263424e5093c7a475450ee7bc
-DIST fotoxx-22.11.tar.gz 8836130 BLAKE2B 
bb2c769a1f4840a026632c8d5aa27e49a78636c99924b41d2ddaa865f1bfe72ec0cbcee4d43a2a6b091ec7c279ca73dfb91bac672ad6fcc691a7d118169f7dc7
 SHA512 
666afc3fd3bb1015e45af4902fa11dce51f647b7398441ad620df228be110f558308e3629f597825ebd0e998ad7b7b66e5e0ac1d4e7648ffdef7c42e61531c9f
 DIST fotoxx-22.12.tar.gz 8836474 BLAKE2B 
b633ca3235ade431e8ead3b321444756b7739d2ead5a0024df971b3b4322b8b2cdf75e2ea523e3257e252a9cfa1baba15af8a2b001ca0dfe410296af1b085c90
 SHA512 
18e924627d528ecad3ef6bad13385210dbef034a9bccd6d0320861dec41a49dab70bf29b0445d2d2d4c2475511c8d5126d7d388b5de1fa7b50c813f4473c9d4a

diff --git a/media-gfx/fotoxx/fotoxx-22.1.ebuild 
b/media-gfx/fotoxx/fotoxx-22.1.ebuild
deleted file mode 100644
index 852e25423552..
--- a/media-gfx/fotoxx/fotoxx-22.1.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit optfeature xdg-utils
-
-DESCRIPTION="Program for improving image files made with a digital camera"
-HOMEPAGE="https://kornelix.net/fotoxx/fotoxx.html;
-SRC_URI="https://kornelix.net/downloads/downloads/${P}.tar.gz;
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE=""
-
-# For required dependencies read doc/README, for required tools read
-# data/userguide [INSTALLATION]. xdg-open (x11-misc/xdg-utils) is an
-# alternative to firefox and chromium-browser. `grep '"which ' * -R`
-# is helpful to report some required tools run via the shell.
-
-DEPEND="
-   media-libs/clutter
-   media-libs/clutter-gtk
-   media-libs/lcms:2
-   media-libs/libpng:0
-   media-libs/tiff:0
-   media-libs/libchamplain[gtk]
-   virtual/jpeg
-   x11-libs/gtk+:3"
-RDEPEND="
-   ${DEPEND}
-   media-gfx/dcraw
-   media-libs/exiftool
-   x11-misc/xdg-utils
-"
-
-S="${WORKDIR}/${PN}"
-
-PATCHES=( "${FILESDIR}/${PN}-21.40-documentation.patch" )
-
-DOCS=()
-HTML_DOCS=()
-
-src_prepare() {
-   sed -i -e "/^DOCDIR/ s/${PN}$/${PF}/" Makefile || die
-   default
-}
-
-src_install() {
-   # For the Help menu items to work, *.html must be in 
/usr/share/doc/${PF},
-   # and README, changelog, copyright, license, etc. must not be 
compressed.
-   emake DESTDIR="${D}" install
-   rm -f "${D}"/usr/share/doc/${PF}/*.man || die
-   docompress -x /usr/share/doc
-}
-
-pkg_postinst() {
-   optfeature "HEIC file support" media-libs/libheif
-   optfeature "additional RAW file support" media-gfx/rawtherapee
-   optfeature "additional RAW file support" media-gfx/darktable
-   optfeature "video thumbnails & playback" media-video/ffmpeg
-   optfeature "copying images to optical media" app-cdr/dvd+rw-tools
-   optfeature "additional panorama support" media-gfx/hugin
-   optfeature "WEBP file support" media-libs/libwebp
-
-   elog
-   elog "Please read the Help > User Guide for details. The source 
location is"
-   elog "/usr/share/fotoxx/data/userguide and after running fotoxx a copy 
will"
-   elog "be placed at /home//.fotoxx/userguide."
-   elog
-   elog "To play videos, in Tools > Preferences set 'Video File Play 
Command'."
-   elog
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
-}
-
-pkg_postrm() {
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
-}

diff --git a/media-gfx/fotoxx/fotoxx-22.11.ebuild 
b/media-gfx/fotoxx/fotoxx-22.11.ebuild
deleted file mode 100644
index 

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

2022-02-04 Thread Ben Kohler
commit: f3641eecc7c75afc5307e248ca98a390ded51bc2
Author: Ben Kohler  gentoo  org>
AuthorDate: Fri Feb  4 20:15:28 2022 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Fri Feb  4 20:25:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3641eec

net-misc/connman: musl fix

Closes: https://bugs.gentoo.org/832548
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Ben Kohler  gentoo.org>

 net-misc/connman/connman-1.41-r1.ebuild | 103 
 net-misc/connman/files/libresolv-musl-fix.patch |  61 ++
 2 files changed, 164 insertions(+)

diff --git a/net-misc/connman/connman-1.41-r1.ebuild 
b/net-misc/connman/connman-1.41-r1.ebuild
new file mode 100644
index ..2db37a70b743
--- /dev/null
+++ b/net-misc/connman/connman-1.41-r1.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+inherit autotools systemd tmpfiles
+
+if [[ ${PV} == ** ]]; then
+   inherit git-r3
+   
EGIT_REPO_URI="https://git.kernel.org/pub/scm/network/connman/connman.git;
+else
+   SRC_URI="https://www.kernel.org/pub/linux/network/${PN}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+fi
+
+DESCRIPTION="Provides a daemon for managing internet connections"
+HOMEPAGE="https://git.kernel.org/pub/scm/network/connman/connman.git/;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+IUSE="bluetooth debug doc +ethernet examples iptables iwd l2tp networkmanager
++nftables ofono openconnect openvpn policykit pptp tools vpnc +wifi wireguard
+wispr"
+
+REQUIRED_USE="^^ ( iptables nftables )"
+BDEPEND="virtual/pkgconfig"
+RDEPEND=">=dev-libs/glib-2.16
+   >=sys-apps/dbus-1.2.24
+   sys-libs/readline:0=
+   bluetooth? ( net-wireless/bluez )
+   iptables? ( >=net-firewall/iptables-1.4.8 )
+   iwd? ( net-wireless/iwd )
+   l2tp? ( net-dialup/xl2tpd )
+   nftables? (
+   >=net-libs/libnftnl-1.0.4:0=
+   >=net-libs/libmnl-1.0.0:0= )
+   ofono? ( net-misc/ofono )
+   openconnect? ( net-vpn/openconnect )
+   openvpn? ( net-vpn/openvpn )
+   policykit? ( sys-auth/polkit )
+   pptp? ( net-dialup/pptpclient )
+   vpnc? ( net-vpn/vpnc )
+   wifi? ( >=net-wireless/wpa_supplicant-2.0[dbus] )
+   wireguard? ( >=net-libs/libmnl-1.0.0:0= )
+   wispr? ( net-libs/gnutls )"
+
+DEPEND="${RDEPEND}
+   >=sys-kernel/linux-headers-2.6.39"
+
+PATCHES=( "${FILESDIR}/libresolv-musl-fix.patch" )
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --localstatedir=/var \
+   --runstatedir=/run \
+   --with-systemdunitdir=$(systemd_get_systemunitdir) \
+   --with-tmpfilesdir="${EPREFIX}"/usr/lib/tmpfiles.d \
+   --enable-client \
+   --enable-datafiles \
+   --enable-loopback=builtin \
+   $(use_enable bluetooth bluetooth builtin) \
+   $(use_enable debug) \
+   $(use_enable ethernet ethernet builtin) \
+   $(use_enable examples test) \
+   $(use_enable iwd) \
+   $(use_enable l2tp l2tp builtin) \
+   $(use_enable networkmanager nmcompat) \
+   $(use_enable ofono ofono builtin) \
+   $(use_enable openconnect openconnect builtin) \
+   $(use_enable openvpn openvpn builtin) \
+   $(use_enable policykit polkit builtin) \
+   $(use_enable pptp pptp builtin) \
+   $(use_enable tools) \
+   $(use_enable vpnc vpnc builtin) \
+   $(use_enable wifi wifi builtin) \
+   $(use_enable wireguard) \
+   $(use_enable wispr wispr builtin) \
+   --with-firewall=$(usex iptables "iptables" "nftables" ) \
+   --disable-iospm \
+   --disable-hh2serial-gps
+}
+
+src_install() {
+   default
+   dobin client/connmanctl
+
+   if use doc; then
+   dodoc doc/*.txt
+   fi
+   keepdir /usr/lib/${PN}/scripts
+   keepdir /var/lib/${PN}
+   newinitd "${FILESDIR}"/${PN}.initd2 ${PN}
+   newconfd "${FILESDIR}"/${PN}.confd ${PN}
+}
+
+pkg_postinst() {
+   tmpfiles_process connman_resolvconf.conf
+}

diff --git a/net-misc/connman/files/libresolv-musl-fix.patch 
b/net-misc/connman/files/libresolv-musl-fix.patch
new file mode 100644
index ..c28a7c1e3589
--- /dev/null
+++ b/net-misc/connman/files/libresolv-musl-fix.patch
@@ -0,0 +1,61 @@
+musl does not implement res_ninit
+
+diff --exclude '*.*o' -ru connman-1.24.orig/gweb/gresolv.c 
connman-1.24/gweb/gresolv.c
+--- connman-1.24.orig/gweb/gresolv.c   2014-07-18 20:17:25.0 -0300
 connman-1.24/gweb/gresolv.c2014-07-18 20:24:01.874669130 -0300
+@@ -874,8 +874,6 @@
+   resolv->index = index;
+   resolv->nameserver_list = NULL;

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

2022-02-04 Thread Ben Kohler
commit: d8a5962be3cc5e38ee92d69bf4266234d12f63b2
Author: Ben Kohler  gentoo  org>
AuthorDate: Fri Feb  4 20:24:48 2022 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Fri Feb  4 20:25:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8a5962b

media-gfx/fotoxx: bump to 22.12

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

 media-gfx/fotoxx/Manifest|  1 +
 media-gfx/fotoxx/fotoxx-22.12.ebuild | 81 
 2 files changed, 82 insertions(+)

diff --git a/media-gfx/fotoxx/Manifest b/media-gfx/fotoxx/Manifest
index 72f641fb6e5a..9d051e423cc1 100644
--- a/media-gfx/fotoxx/Manifest
+++ b/media-gfx/fotoxx/Manifest
@@ -1,3 +1,4 @@
 DIST fotoxx-21.60.tar.gz 8679841 BLAKE2B 
ec3dcbd0b937d730692e225fec7530ac46390328ae960e8960df7d252bc0cd8630de84bf47dfaf74c1e07855b4b0959e596e5e515ea00a6c430872359b2b4576
 SHA512 
ac999fcc70acd92c54e85ad276112aaa7f1b7606ea70381d6f833d829fd92c14aacad7a967838e5d28fce80cfa6da8ef05e0ee49b463210cb66a3f8ffc3d22e7
 DIST fotoxx-22.1.tar.gz 8801382 BLAKE2B 
9090d2ea0ddfcb91758fbe0b8c6b81fd3c764eef1cac8098c5ae5f4dba37b5426bc4d5dee6b7d36519f62b28bee7f3f45aa29a7c6f92209f193a5a5f0775ae7b
 SHA512 
41335113cd37490d02112760845b6e0bc631c448a0bdfe0435082836c86a1e125fbbe8a0efd30aae4ec7e86f43a67c9b6697e47263424e5093c7a475450ee7bc
 DIST fotoxx-22.11.tar.gz 8836130 BLAKE2B 
bb2c769a1f4840a026632c8d5aa27e49a78636c99924b41d2ddaa865f1bfe72ec0cbcee4d43a2a6b091ec7c279ca73dfb91bac672ad6fcc691a7d118169f7dc7
 SHA512 
666afc3fd3bb1015e45af4902fa11dce51f647b7398441ad620df228be110f558308e3629f597825ebd0e998ad7b7b66e5e0ac1d4e7648ffdef7c42e61531c9f
+DIST fotoxx-22.12.tar.gz 8836474 BLAKE2B 
b633ca3235ade431e8ead3b321444756b7739d2ead5a0024df971b3b4322b8b2cdf75e2ea523e3257e252a9cfa1baba15af8a2b001ca0dfe410296af1b085c90
 SHA512 
18e924627d528ecad3ef6bad13385210dbef034a9bccd6d0320861dec41a49dab70bf29b0445d2d2d4c2475511c8d5126d7d388b5de1fa7b50c813f4473c9d4a

diff --git a/media-gfx/fotoxx/fotoxx-22.12.ebuild 
b/media-gfx/fotoxx/fotoxx-22.12.ebuild
new file mode 100644
index ..852e25423552
--- /dev/null
+++ b/media-gfx/fotoxx/fotoxx-22.12.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit optfeature xdg-utils
+
+DESCRIPTION="Program for improving image files made with a digital camera"
+HOMEPAGE="https://kornelix.net/fotoxx/fotoxx.html;
+SRC_URI="https://kornelix.net/downloads/downloads/${P}.tar.gz;
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE=""
+
+# For required dependencies read doc/README, for required tools read
+# data/userguide [INSTALLATION]. xdg-open (x11-misc/xdg-utils) is an
+# alternative to firefox and chromium-browser. `grep '"which ' * -R`
+# is helpful to report some required tools run via the shell.
+
+DEPEND="
+   media-libs/clutter
+   media-libs/clutter-gtk
+   media-libs/lcms:2
+   media-libs/libpng:0
+   media-libs/tiff:0
+   media-libs/libchamplain[gtk]
+   virtual/jpeg
+   x11-libs/gtk+:3"
+RDEPEND="
+   ${DEPEND}
+   media-gfx/dcraw
+   media-libs/exiftool
+   x11-misc/xdg-utils
+"
+
+S="${WORKDIR}/${PN}"
+
+PATCHES=( "${FILESDIR}/${PN}-21.40-documentation.patch" )
+
+DOCS=()
+HTML_DOCS=()
+
+src_prepare() {
+   sed -i -e "/^DOCDIR/ s/${PN}$/${PF}/" Makefile || die
+   default
+}
+
+src_install() {
+   # For the Help menu items to work, *.html must be in 
/usr/share/doc/${PF},
+   # and README, changelog, copyright, license, etc. must not be 
compressed.
+   emake DESTDIR="${D}" install
+   rm -f "${D}"/usr/share/doc/${PF}/*.man || die
+   docompress -x /usr/share/doc
+}
+
+pkg_postinst() {
+   optfeature "HEIC file support" media-libs/libheif
+   optfeature "additional RAW file support" media-gfx/rawtherapee
+   optfeature "additional RAW file support" media-gfx/darktable
+   optfeature "video thumbnails & playback" media-video/ffmpeg
+   optfeature "copying images to optical media" app-cdr/dvd+rw-tools
+   optfeature "additional panorama support" media-gfx/hugin
+   optfeature "WEBP file support" media-libs/libwebp
+
+   elog
+   elog "Please read the Help > User Guide for details. The source 
location is"
+   elog "/usr/share/fotoxx/data/userguide and after running fotoxx a copy 
will"
+   elog "be placed at /home//.fotoxx/userguide."
+   elog
+   elog "To play videos, in Tools > Preferences set 'Video File Play 
Command'."
+   elog
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}



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

2022-02-04 Thread Ben Kohler
commit: 2be43350c7039f5472a9a63d9ecf994f19d35e17
Author: Ben Kohler  gentoo  org>
AuthorDate: Fri Feb  4 20:20:50 2022 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Fri Feb  4 20:25:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2be43350

sys-fs/udiskie: bump to 2.4.1

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

 sys-fs/udiskie/Manifest |  1 +
 sys-fs/udiskie/udiskie-2.4.1.ebuild | 50 +
 2 files changed, 51 insertions(+)

diff --git a/sys-fs/udiskie/Manifest b/sys-fs/udiskie/Manifest
index a67a18927a55..cc5195e35ee0 100644
--- a/sys-fs/udiskie/Manifest
+++ b/sys-fs/udiskie/Manifest
@@ -1 +1,2 @@
 DIST udiskie-2.4.0.tar.gz 94008 BLAKE2B 
23c062aa79cb2ffd6377f8cdf3eea1c8398b56743054c701e878dd6070bd1ee14e3f1aab9a791d4b6d44b1ddab68cc69f92eb3dd711c9598d3d770d90a43e7d7
 SHA512 
3f2d3d37996442b21d8c167929eb2e6f2fcb864b313334954407b03d913c83671dd25960226bafc68e463ab0ea38cfb6947467dd8bf51bbee7f072e4bdf19d7a
+DIST udiskie-2.4.1.tar.gz 94974 BLAKE2B 
f7aefecce230eb085ace5dd493ef2c24f7962138c6cae593887b7b62fc19360304442caa6454381321b287772eb517566ed4006bd4cace0f04a13bc060e31423
 SHA512 
0820ec5a04ede2076ac25110057bcee1bf8f69a9e7161017f23e108701b2d135c1bd62496c70727c462561612916d1eafb6cf69d1d77b8d5e0f4af3eab445eef

diff --git a/sys-fs/udiskie/udiskie-2.4.1.ebuild 
b/sys-fs/udiskie/udiskie-2.4.1.ebuild
new file mode 100644
index ..43fe883fb3af
--- /dev/null
+++ b/sys-fs/udiskie/udiskie-2.4.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{7..10} )
+inherit distutils-r1 xdg-utils
+
+DESCRIPTION="An automatic disk mounting service using udisks"
+HOMEPAGE="https://pypi.org/project/udiskie/ https://github.com/coldfix/udiskie;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+
+RDEPEND="dev-python/docopt[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   sys-fs/udisks:2"
+DEPEND="app-text/asciidoc
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/python-keyutils[${PYTHON_USEDEP}] )"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   sed -i -e 's:gtk-update-icon-cache:true:' setup.py || die
+   default
+
+   distutils-r1_src_prepare
+}
+
+src_compile() {
+   distutils-r1_src_compile
+   emake -C doc
+}
+
+src_install() {
+   distutils-r1_src_install
+   doman doc/${PN}.8
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



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

2022-02-04 Thread Ben Kohler
commit: 327f964378401829117dc07d50c1e0c416de50fd
Author: Ben Kohler  gentoo  org>
AuthorDate: Fri Feb  4 20:19:16 2022 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Fri Feb  4 20:25:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=327f9643

app-text/grip: bump to 4.6.0

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

 app-text/grip/Manifest  |  1 +
 app-text/grip/grip-4.6.0.ebuild | 27 +++
 2 files changed, 28 insertions(+)

diff --git a/app-text/grip/Manifest b/app-text/grip/Manifest
index 88b44b536ed2..38f66c066d4e 100644
--- a/app-text/grip/Manifest
+++ b/app-text/grip/Manifest
@@ -1 +1,2 @@
 DIST grip-4.5.2.tar.gz 145644 BLAKE2B 
a353a74d55d6496f3dad362b74e434ff22c8130368f6773ab2bfdf66e43c62e8dcba0e3a786157d37b81d7c7e49d0c83a60c847100169684ede9c09f4eb06c3f
 SHA512 
a8937d8ba3633a2d47587eb5c1b0583df7e8a8cacebb87fd50dab3fd2deb91981b38a83a3ed182f4e5e7435c8e2c8d87829e45fa9d32d8823c821f6217c7ccc9
+DIST grip-4.6.0.tar.gz 147222 BLAKE2B 
ee5c10ca47ca0e9089d2618dc765a4ca01f4927da8c4256a251a9cf90ee15d63eb6136848cef0005d5f3af1f12b603f6f0fd55b65840bf542dcb9cd29ff35518
 SHA512 
483170996e593593781b684986dcb8eec20afb02dca84a9f5baeb3917220706332037f7b18f504aba8aa7d1d1c3587a1af18d6d5628f1e96517511c0be40a6ac

diff --git a/app-text/grip/grip-4.6.0.ebuild b/app-text/grip/grip-4.6.0.ebuild
new file mode 100644
index ..1dc8182a71d1
--- /dev/null
+++ b/app-text/grip/grip-4.6.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Preview GitHub Markdown files like Readme locally before 
committing them"
+HOMEPAGE="https://github.com/joeyespo/grip;
+LICENSE="MIT"
+
+SLOT="0"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+KEYWORDS="~amd64"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="
+   !media-sound/grip
+   >=dev-python/docopt-0.4.0[${PYTHON_USEDEP}]
+   >=dev-python/flask-0.10.1[${PYTHON_USEDEP}]
+   >=dev-python/markdown-2.5.1[${PYTHON_USEDEP}]
+   >=dev-python/path-and-address-2.0.1[${PYTHON_USEDEP}]
+   >=dev-python/pygments-1.6[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.4.1[${PYTHON_USEDEP}]
+"



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

2022-02-04 Thread Alfredo Tupone
commit: 71866586a32094a1aa7ec5d666503717be8cf618
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Fri Feb  4 20:23:50 2022 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Feb  4 20:24:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71866586

sci-libs/branca: PythonCompatUpdate

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

 sci-libs/branca/branca-0.4.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/branca/branca-0.4.2-r1.ebuild 
b/sci-libs/branca/branca-0.4.2-r1.ebuild
index e839df8505fb..33533c718e80 100644
--- a/sci-libs/branca/branca-0.4.2-r1.ebuild
+++ b/sci-libs/branca/branca-0.4.2-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{8,9} )
+PYTHON_COMPAT=( python3_{8..10} )
 inherit distutils-r1
 
 DESCRIPTION="spinoff from folium, host the non-map-specific features"



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

2022-02-04 Thread Zac Medico
commit: e26c3c8431d78499898c7f15b7774fdb02f2c7f0
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Feb  4 20:22:26 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Feb  4 20:23:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e26c3c84

app-containers/buildah: Bump to version 1.24.1

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

 app-containers/buildah/Manifest  |  1 +
 app-containers/buildah/buildah-1.24.1.ebuild | 51 
 2 files changed, 52 insertions(+)

diff --git a/app-containers/buildah/Manifest b/app-containers/buildah/Manifest
index 17d30c060e45..01bcb0cab542 100644
--- a/app-containers/buildah/Manifest
+++ b/app-containers/buildah/Manifest
@@ -1,3 +1,4 @@
 DIST buildah-1.21.1.tar.gz 11693142 BLAKE2B 
513f75d8f2831130759f3bcb77fad311c28862b82df8866608bd909eea38468a6b576dfad2598725caa9c4e413108ea6ec3557c8a777017cc8a37b5cb16b70a1
 SHA512 
8fb30ed0948f898aef9a32c34d4b2a2e04a376257a73184ec01b67c770be1c3c87e46987ad001ececf2235cb5e17f9d0ff9e9f34be61ddd0935859c4e5b37d1f
 DIST buildah-1.23.1.tar.gz 11872323 BLAKE2B 
6e4cffd11177bca6c3e86cd3372fc7bf295b23559b7478a679ea2bea022c149b5ea058224f0a156df1b9511905795c44ed5e988ec68ca834dd80d0c198543d5f
 SHA512 
2ceb6df5adb671483557bb03937df583857d99c116be5d44aae533c155f560d5d454bebf25908ac02bb85e4c2ba31533adb99f0946ecc4f4830977c14f324b6f
 DIST buildah-1.24.0.tar.gz 14143490 BLAKE2B 
c9883cc849d8837cdc4d31c02d49138f61b99f97fc40eb36494368eb47f1d74a24c6ddc4f631a043769ecb03906d11978afc7fae993a2f10346d9ac072d6e322
 SHA512 
337792cb896de3c10a66f7e2cf7c52d0dffd0ca8fede48a4d3a666d2a05e17bb3116db7c20a39805e9360b24a5df12d8ebd7a3818be12bb8e06e4b16cd62fc60
+DIST buildah-1.24.1.tar.gz 14177522 BLAKE2B 
74a0dc14e6e0ddc3f6ffa4a12ebb1f435f3d24467e6b2ca581642dc76eb2c394b8a148465fc810dc106387ecd579c9b42e7dfcef65fa9a93a179434ad9664828
 SHA512 
32e9d9873d3fbb40a03e240c7b460c555200f69ff60d54c670b0ee0651ef9154a43d75203bf26dc3f1375433b463342c27a358d30bbdaf9aa3fb211f4c3c1b36

diff --git a/app-containers/buildah/buildah-1.24.1.ebuild 
b/app-containers/buildah/buildah-1.24.1.ebuild
new file mode 100644
index ..eb8675a7ba8d
--- /dev/null
+++ b/app-containers/buildah/buildah-1.24.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit bash-completion-r1 go-module
+GIT_COMMIT=28f7884b
+
+DESCRIPTION="A tool that facilitates building OCI images"
+HOMEPAGE="https://github.com/containers/buildah;
+SRC_URI="https://github.com/containers/buildah/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="selinux"
+
+RDEPEND="app-crypt/gpgme:=
+   app-containers/skopeo
+   dev-libs/libgpg-error:=
+   dev-libs/libassuan:=
+   sys-apps/shadow:=
+   sys-fs/lvm2:=
+   sys-libs/libseccomp:=
+   selinux? ( sys-libs/libselinux:= )"
+DEPEND="${RDEPEND}"
+
+RESTRICT+=" test"
+
+src_prepare() {
+   default
+   [[ -f selinux_tag.sh ]] || die
+   use selinux || { echo -e "#!/bin/sh\ntrue" > \
+   selinux_tag.sh || die; }
+   sed -i -e 's/make -C/$(MAKE) -C/' Makefile || die 'sed failed'
+}
+
+src_compile() {
+   emake GIT_COMMIT=${GIT_COMMIT} all
+}
+
+src_install() {
+   dodoc CHANGELOG.md CONTRIBUTING.md README.md install.md 
troubleshooting.md
+   doman docs/*.1
+   dodoc -r docs/tutorials
+   dobin bin/{${PN},imgtype}
+   dobashcomp contrib/completions/bash/buildah
+}
+
+src_test() {
+   emake test-unit
+}



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

2022-02-04 Thread Arthur Zamarin
commit: 5d0bd6ede5c8f6107be8c62ea98ec9aafe79c58a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb  4 19:58:45 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb  4 20:16:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d0bd6ed

dev-libs/leveldb: drop 1.20, 1.23-r1

Closes: https://github.com/gentoo/gentoo/pull/12745
Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-libs/leveldb/Manifest  |  1 -
 .../leveldb/files/leveldb-1.18-configure.patch | 52 --
 .../leveldb/files/leveldb-1.20-memenv-so.patch | 33 ---
 dev-libs/leveldb/leveldb-1.20.ebuild   | 64 --
 dev-libs/leveldb/leveldb-1.23-r1.ebuild| 37 -
 5 files changed, 187 deletions(-)

diff --git a/dev-libs/leveldb/Manifest b/dev-libs/leveldb/Manifest
index 26c4a7fc073c..02ce0049311b 100644
--- a/dev-libs/leveldb/Manifest
+++ b/dev-libs/leveldb/Manifest
@@ -1,2 +1 @@
-DIST leveldb-1.20.tar.gz 223141 BLAKE2B 
57ab5cb191679b8fbfaa28fa0a61ee1dcd757bb9c70215dd325daebfd93b30aa9bbe3c993a1758aa9804a7cd6f2c31df7cf98bdf98320cd1aebc14f5eb77d9a5
 SHA512 
c59258f2f58ce2d5680e9ab3da4ab0923d91cd4648dcf63cdaa26cdde92bf45e094544539ad11d8e09a4a4813435286143ed0e86c21c6c31a0596903ed4744d2
 DIST leveldb-1.23.tar.gz 242925 BLAKE2B 
ef9ac853cdc2f376b9b4299c1017db8c262cb318ad771f40fe81c9fb71ea06ee56ac533b3e8af4e6fdd28577a2f87cfd103ecb49098187d099ccd6019b8ca1d2
 SHA512 
ac15eac29387b9f702a901b6567d47a9f8c17cf5c7d8700a77ec771da25158c83b04959c33f3d4de7a3f033ef08f545d14ba823a8d527e21889c4b78065b0f84

diff --git a/dev-libs/leveldb/files/leveldb-1.18-configure.patch 
b/dev-libs/leveldb/files/leveldb-1.18-configure.patch
deleted file mode 100644
index ba30fc731ad5..
--- a/dev-libs/leveldb/files/leveldb-1.18-configure.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-we'll handle configure ourselves in src_configure
-
 a/Makefile
-+++ b/Makefile
-@@ -14,9 +14,6 @@ OPT ?= -O2 -DNDEBUG
- # OPT ?= -O2 -g2 -DNDEBUG
- #---
- 
--# detect what platform we're building on
--$(shell CC="$(CC)" CXX="$(CXX)" TARGET_OS="$(TARGET_OS)" \
--./build_detect_platform build_config.mk ./)
- # this file is generated by the previous line to set build flags and sources
- include build_config.mk
- 
-
-control snappy/tcmalloc explicitly
-
 a/build_detect_platform
-+++ a/build_detect_platform
-@@ -190,6 +190,7 @@
- COMMON_FLAGS="$COMMON_FLAGS -DLEVELDB_PLATFORM_POSIX"
- fi
- 
-+if [ "${USE_SNAPPY:-auto}" = "auto" ]; then
- # Test whether Snappy library is installed
- # http://code.google.com/p/snappy/
- $CXX $CXXFLAGS -x c++ - -o $CXXOUTPUT 2>/dev/null   

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

2022-02-04 Thread Arthur Zamarin
commit: 24c755dc2ad54e7add8c111233094b5db08b0909
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb  4 20:11:49 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb  4 20:16:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24c755dc

dev-libs/leveldb: various fixes

- Redirect test suite temp directories to ${T}. This fixes an issue
  I had when running the test suite in some arm chroots.
- Remove crc32c USE flag (otherwise uses bundled same code)
- Add flags during compilation for the USE flags
- Fix SLOT deps for app-arch/snappy and dev-util/google-perftools
  (thanks iwdevtools for noting those)
- small styling fixes

- all those changes were tested on all stabilized arches just to be
  sure.

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

 ...{leveldb-1.23-r2.ebuild => leveldb-1.23-r3.ebuild} | 19 +--
 dev-libs/leveldb/metadata.xml |  3 ---
 2 files changed, 13 insertions(+), 9 deletions(-)

diff --git a/dev-libs/leveldb/leveldb-1.23-r2.ebuild 
b/dev-libs/leveldb/leveldb-1.23-r3.ebuild
similarity index 75%
rename from dev-libs/leveldb/leveldb-1.23-r2.ebuild
rename to dev-libs/leveldb/leveldb-1.23-r3.ebuild
index 9adbd1551ad0..13684bcf2b50 100644
--- a/dev-libs/leveldb/leveldb-1.23-r2.ebuild
+++ b/dev-libs/leveldb/leveldb-1.23-r3.ebuild
@@ -12,13 +12,14 @@ 
SRC_URI="https://github.com/google/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.
 LICENSE="BSD"
 SLOT="0/1"
 KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x86-linux"
-IUSE="+crc32c +snappy +tcmalloc test"
-
+IUSE="+snappy +tcmalloc test"
 RESTRICT="!test? ( test )"
 
-DEPEND="crc32c? ( dev-libs/crc32c )
-   snappy? ( app-arch/snappy )
-   tcmalloc? ( dev-util/google-perftools )"
+DEPEND="
+   dev-libs/crc32c
+   snappy? ( app-arch/snappy:= )
+   tcmalloc? ( dev-util/google-perftools:= )
+"
 RDEPEND="${DEPEND}"
 BDEPEND="test? ( dev-cpp/gtest )"
 
@@ -34,9 +35,15 @@ src_prepare() {
 
 src_configure() {
local mycmakeargs=(
-   -DBUILD_SHARED_LIBS=ON
+   -DHAVE_CRC32C=ON
-DLEVELDB_BUILD_BENCHMARKS=OFF
+   -DHAVE_SNAPPY=$(usex snappy)
+   -DHAVE_TCMALLOC=$(usex tcmalloc)
-DLEVELDB_BUILD_TESTS=$(usex test)
)
cmake_src_configure
 }
+
+src_test() {
+   TEST_TMPDIR="${T}" TEMP="${T}" cmake_src_test
+}

diff --git a/dev-libs/leveldb/metadata.xml b/dev-libs/leveldb/metadata.xml
index e937f6bb5998..0c3bde759c88 100644
--- a/dev-libs/leveldb/metadata.xml
+++ b/dev-libs/leveldb/metadata.xml
@@ -9,7 +9,4 @@
google/leveldb
https://github.com/google/leveldb/issues

-   
-   Link against dev-libs/crc32c for 
accelerated CRC32C calculation
-   
 



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

2022-02-04 Thread Georgy Yakovlev
commit: 7866eda16cc8117b17acf5a882a60e1d0893fa32
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Feb  4 18:58:53 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Feb  4 20:06:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7866eda1

virtual/dist-kernel: Stabilize 5.4.176 ppc64, #832720

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

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

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



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

2022-02-04 Thread Georgy Yakovlev
commit: 0bd294aa34fe3bf52d3ae077d2f2934fdc99598c
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Feb  4 18:58:17 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Feb  4 20:06:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bd294aa

virtual/dist-kernel: Stabilize 5.15.19 ppc64, #832716

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

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

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



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

2022-02-04 Thread Georgy Yakovlev
commit: 181dd516077b55e565b0283f0324b3b6ed0e249e
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Feb  4 18:58:37 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Feb  4 20:06:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=181dd516

sys-kernel/gentoo-kernel: Stabilize 5.10.96 ppc64, #832719

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

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

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



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

2022-02-04 Thread Georgy Yakovlev
commit: a4334740bca96475139f6cd6a7b6e935c15c4a72
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Feb  4 18:58:19 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Feb  4 20:06:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4334740

sys-kernel/gentoo-kernel-bin: Stabilize 5.15.19 ppc64, #832716

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

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

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.15.19.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.15.19.ebuild
index fc9dbc62cb30..1c7be3c0f22b 100644
--- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.15.19.ebuild
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.15.19.ebuild
@@ -34,7 +34,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: sys-kernel/gentoo-kernel-bin/

2022-02-04 Thread Georgy Yakovlev
commit: 03ba0dd89e9ca38a10cdc43af65bec8ef53ce7c2
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Feb  4 18:58:54 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Feb  4 20:06:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03ba0dd8

sys-kernel/gentoo-kernel-bin: Stabilize 5.4.176 ppc64, #832720

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

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

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.176.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.176.ebuild
index 5bdada88d281..8dc7dfa28608 100644
--- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.176.ebuild
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.176.ebuild
@@ -34,7 +34,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: sys-kernel/gentoo-kernel/

2022-02-04 Thread Georgy Yakovlev
commit: bacc7495ef1cb973c9a29391f1c5b4e6627331f4
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Feb  4 18:58:53 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Feb  4 20:06:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bacc7495

sys-kernel/gentoo-kernel: Stabilize 5.4.176 ppc64, #832720

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

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

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



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

2022-02-04 Thread Georgy Yakovlev
commit: 0e683b0f2550a31508f51402369eaedec6326647
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Feb  4 18:58:19 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Feb  4 20:06:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e683b0f

sys-kernel/gentoo-kernel: Stabilize 5.15.19 ppc64, #832716

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

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

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



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

2022-02-04 Thread Georgy Yakovlev
commit: 6abd75f67d6a2d071f8c2827e3d2add4ee7a117e
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Feb  4 18:58:36 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Feb  4 20:06:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6abd75f6

virtual/dist-kernel: Stabilize 5.10.96 ppc64, #832719

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

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

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



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

2022-02-04 Thread Georgy Yakovlev
commit: 9c86f0db25b361c37654b17c9a08a1e7ca6ba6a9
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Feb  4 18:58:37 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Feb  4 20:06:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c86f0db

sys-kernel/gentoo-kernel-bin: Stabilize 5.10.96 ppc64, #832719

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

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

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.96.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.96.ebuild
index 75080d99ff99..b29079d5c19d 100644
--- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.96.ebuild
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.96.ebuild
@@ -34,7 +34,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: dev-tcltk/snack/

2022-02-04 Thread Alfredo Tupone
commit: ac13d4a300c688ed5b9e7dc0d1b0d7c7c9d245a8
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Fri Feb  4 20:02:12 2022 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Feb  4 20:02:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac13d4a3

dev-tcltk/snack: PythonCompatUpdate

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

 dev-tcltk/snack/snack-2.2.10-r9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tcltk/snack/snack-2.2.10-r9.ebuild 
b/dev-tcltk/snack/snack-2.2.10-r9.ebuild
index 14313d7b98c7..4466b95ddb31 100644
--- a/dev-tcltk/snack/snack-2.2.10-r9.ebuild
+++ b/dev-tcltk/snack/snack-2.2.10-r9.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_COMPAT=( python3_{7,8,9,10} )
 DISTUTILS_OPTIONAL=yes
 
 inherit distutils-r1 toolchain-funcs virtualx



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

2022-02-04 Thread Jonas Stein
commit: fe0770f094322342a26ee3d12b4da813fd35fc65
Author: Jonas Stein  gentoo  org>
AuthorDate: Fri Feb  4 19:59:56 2022 +
Commit: Jonas Stein  gentoo  org>
CommitDate: Fri Feb  4 20:00:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe0770f0

app-text/tree: bump to 2.0.1

Version bump to 2.0.1
EAPI bump
Closes: https://bugs.gentoo.org/832466
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jonas Stein  gentoo.org>

 app-text/tree/Manifest  |  1 +
 app-text/tree/tree-2.0.1.ebuild | 41 +
 2 files changed, 42 insertions(+)

diff --git a/app-text/tree/Manifest b/app-text/tree/Manifest
index 22f905698518..c24567515554 100644
--- a/app-text/tree/Manifest
+++ b/app-text/tree/Manifest
@@ -1 +1,2 @@
 DIST tree-1.8.0.tgz 50286 BLAKE2B 
51a27500b89a46add6e792d446b465696d2b34339bbd06f03baff9ce589131b5d82c414849f891dbb79a3f3cfb23b89336e783ad23b84c1fb5415a13fb9488cd
 SHA512 
3f657a6278ec5eab2fccab39dfd69bf9376811189a368b5e3213dc900b90a4e7a4961fc58eb80ad2efd5b40d2fbd0146ec59f30fe0bba576f93519214f240695
+DIST tree-2.0.1.tgz 57213 BLAKE2B 
977f3bd606881f92f7e39fb167205b468f77408a2fa3ff14c20eeab0e6f194115d2d41a3919751c9c9d103ae185dc231710a464f0c57ea244e8a410782503d6f
 SHA512 
11a45136d62ee7b4acdb599025c250f3b95c46c94cea132bdc226357561bbae3ed874a99e554d2e01a93eaac639fb89d8a2539964ce788540ac3537f0e4c

diff --git a/app-text/tree/tree-2.0.1.ebuild b/app-text/tree/tree-2.0.1.ebuild
new file mode 100644
index ..3abae6ee3bd9
--- /dev/null
+++ b/app-text/tree/tree-2.0.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit toolchain-funcs flag-o-matic bash-completion-r1
+
+DESCRIPTION="Lists directories recursively, and produces an indented listing 
of files"
+HOMEPAGE="http://mama.indstate.edu/users/ice/tree/;
+SRC_URI="ftp://mama.indstate.edu/linux/tree/${P}.tgz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+IUSE=""
+
+RDEPEND=""
+DEPEND=""
+
+src_prepare() {
+   sed -i -e 's:LINUX:__linux__:' tree.c || die
+   if use !elibc_glibc ; then
+   # 433972, also previously done only for elibc_uclibc
+   sed -i -e '/^OBJS=/s/$/ strverscmp.o/' Makefile || die
+   fi
+   default
+}
+
+src_compile() {
+   append-lfs-flags
+   emake \
+   CC="$(tc-getCC)" \
+   CFLAGS="${CFLAGS} ${CPPFLAGS}" \
+   LDFLAGS="${LDFLAGS}"
+}
+
+src_install() {
+   dobin tree
+   doman doc/tree*.1
+   einstalldocs
+   newbashcomp "${FILESDIR}"/${PN}.bashcomp ${PN}
+}



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/expect/

2022-02-04 Thread Alfredo Tupone
commit: 1f8db447aeef55f221c95577dc8eecdc3f582df3
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Fri Feb  4 19:59:55 2022 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Feb  4 19:59:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f8db447

dev-tcltk/expect: DeprecatedEclass

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

 dev-tcltk/expect/expect-5.45.4.ebuild | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/dev-tcltk/expect/expect-5.45.4.ebuild 
b/dev-tcltk/expect/expect-5.45.4.ebuild
index efb1f5f4cae6..6062b7449ecb 100644
--- a/dev-tcltk/expect/expect-5.45.4.ebuild
+++ b/dev-tcltk/expect/expect-5.45.4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit autotools epatch
+inherit autotools
 
 MY_P="${PN}${PV}"
 DESCRIPTION="tool for automating interactive applications"
@@ -28,15 +28,15 @@ src_prepare() {
default
sed -i "s:/usr/local/bin:${EPREFIX}/usr/bin:" expect.man || die
 
-   epatch "${FILESDIR}"/${PN}-5.45-gfbsd.patch
-   epatch "${FILESDIR}"/${PN}-5.44.1.15-ldflags.patch
-   epatch "${FILESDIR}"/${PN}-5.45-headers.patch #337943
-   epatch "${FILESDIR}"/${PN}-5.45-format-security.patch
+   eapply "${FILESDIR}"/${PN}-5.45-gfbsd.patch
+   eapply "${FILESDIR}"/${PN}-5.44.1.15-ldflags.patch
+   eapply "${FILESDIR}"/${PN}-5.45-headers.patch #337943
+   eapply "${FILESDIR}"/${PN}-5.45-format-security.patch
sed -i 's:ifdef HAVE_SYS_WAIT_H:ifndef NO_SYS_WAIT_H:' *.c
 
# fix install_name on darwin
[[ ${CHOST} == *-darwin* ]] && \
-   epatch "${FILESDIR}"/${P}-darwin-install_name.patch
+   eapply "${FILESDIR}"/${P}-darwin-install_name.patch
 
mv configure.{in,ac} || die
 



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/expect/

2022-02-04 Thread Alfredo Tupone
commit: e99a9879e975b22f39078c217b3a4aeb39360a55
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Fri Feb  4 19:58:16 2022 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Feb  4 19:58:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e99a9879

dev-tcltk/expect: EAPI 7

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

 dev-tcltk/expect/expect-5.45.4-r1.ebuild | 84 
 1 file changed, 84 insertions(+)

diff --git a/dev-tcltk/expect/expect-5.45.4-r1.ebuild 
b/dev-tcltk/expect/expect-5.45.4-r1.ebuild
new file mode 100644
index ..fa02fd421cbb
--- /dev/null
+++ b/dev-tcltk/expect/expect-5.45.4-r1.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+MY_P="${PN}${PV}"
+DESCRIPTION="tool for automating interactive applications"
+HOMEPAGE="https://core.tcl-lang.org/expect/;
+SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
+IUSE="debug doc threads"
+
+# We need dejagnu for src_test, but dejagnu needs expect
+# to compile/run, so we cant add dejagnu to DEPEND :/
+DEPEND=">=dev-lang/tcl-8.2:0[threads?]"
+RDEPEND="${DEPEND}"
+
+S=${WORKDIR}/${MY_P}
+
+PATCHES=( "${FILESDIR}"/${P}-examples.patch )
+
+src_prepare() {
+   default
+   sed -i "s:/usr/local/bin:${EPREFIX}/usr/bin:" expect.man || die
+
+   eapply "${FILESDIR}"/${PN}-5.45-gfbsd.patch
+   eapply "${FILESDIR}"/${PN}-5.44.1.15-ldflags.patch
+   eapply "${FILESDIR}"/${PN}-5.45-headers.patch #337943
+   eapply "${FILESDIR}"/${PN}-5.45-format-security.patch
+   sed -i 's:ifdef HAVE_SYS_WAIT_H:ifndef NO_SYS_WAIT_H:' *.c
+
+   # fix install_name on darwin
+   [[ ${CHOST} == *-darwin* ]] && \
+   eapply "${FILESDIR}"/${P}-darwin-install_name.patch
+
+   mv configure.{in,ac} || die
+
+   eautoconf
+}
+
+src_configure() {
+   # the 64bit flag is useless ... it only adds 64bit compiler flags
+   # (like -m64) which the target toolchain should already handle
+   econf \
+   --with-tcl="${EPREFIX}/usr/$(get_libdir)" \
+   --disable-64bit \
+   --enable-shared \
+   $(use_enable threads) \
+   $(use_enable debug symbols mem)
+}
+
+src_test() {
+   # we need dejagnu to do tests ... but dejagnu needs
+   # expect ... so don't do tests unless we have dejagnu
+   type -p runtest || return 0
+   emake test
+}
+
+expect_make_var() {
+   touch pkgIndex.tcl-hand
+   printf 'all:;echo $('$1')\ninclude Makefile' | emake 
--no-print-directory -s -f -
+   rm -f pkgIndex.tcl-hand || die
+}
+
+src_install() {
+   default
+
+   if use doc ; then
+   docinto examples
+   echo dodoc \
+   example/README \
+   $(printf 'example/%s ' $(expect_make_var _SCRIPTS)) \
+   $(printf 'example/%s.man ' $(expect_make_var 
_SCRIPTS_MANPAGES))
+   dodoc \
+   example/README \
+   $(printf 'example/%s ' $(expect_make_var _SCRIPTS)) \
+   $(printf 'example/%s.man ' $(expect_make_var 
_SCRIPTS_MANPAGES))
+   fi
+}



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

2022-02-04 Thread Arthur Zamarin
commit: 8294637aad2af3d24201f20607ba19a8c2497fb7
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb  4 19:07:17 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb  4 19:47:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8294637a

dev-python/keyring: fix docs generation

Remove jaraco.tidelift dependency from docs.
No revbump, as no affect for [-doc], and [doc] was failing to build
(as we don't have this dependency, or if it came from an overlay,
this is just meens they have a little different doc).

Closes: https://bugs.gentoo.org/831633
Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/keyring/keyring-23.5.0.ebuild | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/dev-python/keyring/keyring-23.5.0.ebuild 
b/dev-python/keyring/keyring-23.5.0.ebuild
index 5c2905d189d9..5012e18d282c 100644
--- a/dev-python/keyring/keyring-23.5.0.ebuild
+++ b/dev-python/keyring/keyring-23.5.0.ebuild
@@ -43,3 +43,10 @@ EPYTEST_IGNORE=(
# hangs
tests/backends/test_kwallet.py
 )
+
+src_prepare() {
+   # remove jaraco.tidelift dependency from docs, quite useless
+   sed -e '/tidelift/d' -i docs/conf.py docs/index.rst || die
+
+   distutils-r1_src_prepare
+}



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

2022-02-04 Thread Arthur Zamarin
commit: eb0d3d592fe5a1aa6632be68e65923959b08d53a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb  4 19:44:56 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb  4 19:47:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb0d3d59

dev-python/sphinxcontrib_github_alt: revert new package

I have added a duplicate package, so remove it after fixing all
reverse dependencies and adding weak block for original package.

Reverts: 52baf4702858d7a05b5cd0d78ced14abfb5ec2ec.
Closes: https://bugs.gentoo.org/832379
Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/sphinxcontrib_github_alt/Manifest   |  1 -
 dev-python/sphinxcontrib_github_alt/metadata.xml   | 13 -
 .../sphinxcontrib_github_alt-1.2.ebuild| 22 --
 3 files changed, 36 deletions(-)

diff --git a/dev-python/sphinxcontrib_github_alt/Manifest 
b/dev-python/sphinxcontrib_github_alt/Manifest
deleted file mode 100644
index c3831670c955..
--- a/dev-python/sphinxcontrib_github_alt/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST sphinxcontrib_github_alt-1.2.tar.gz 4015 BLAKE2B 
3d3c70124bbb57dbdba5657e28afa88b8576de1a93e28f283cc546134cf326a9c5205d1e68868b0915ddfbfecafbccd5bd2a5e6c0db9938553ad4e31412eec08
 SHA512 
846139bddd1d12469f7f1564ec3c7c679cf05c79d5c29e2cd5ab23ae4282b084876e09386c3980ec057bf74590f002e50998cb64c84cfd13042ad095b51f9a60

diff --git a/dev-python/sphinxcontrib_github_alt/metadata.xml 
b/dev-python/sphinxcontrib_github_alt/metadata.xml
deleted file mode 100644
index 4c0ca89ff16b..
--- a/dev-python/sphinxcontrib_github_alt/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   pyt...@gentoo.org
-   Python
-   
-   
-   
-   sphinxcontrib_github_alt
-   jupyter/sphinxcontrib_github_alt
-   
-

diff --git 
a/dev-python/sphinxcontrib_github_alt/sphinxcontrib_github_alt-1.2.ebuild 
b/dev-python/sphinxcontrib_github_alt/sphinxcontrib_github_alt-1.2.ebuild
deleted file mode 100644
index ea2861ef91c1..
--- a/dev-python/sphinxcontrib_github_alt/sphinxcontrib_github_alt-1.2.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-DISTUTILS_USE_PEP517=flit
-inherit distutils-r1
-
-DESCRIPTION="Link to GitHub issues, pull requests, commits and users from 
Sphinx docs"
-HOMEPAGE="https://pypi.org/project/sphinxcontrib_github_alt/
-   https://github.com/jupyter/sphinxcontrib_github_alt;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   dev-python/docutils[${PYTHON_USEDEP}]
-   dev-python/sphinx[${PYTHON_USEDEP}]
-"



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

2022-02-04 Thread Arthur Zamarin
commit: 222aba1c7013487b8fc705f9adfe3bcee14b5627
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb  4 19:40:08 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb  4 19:47:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=222aba1c

dev-python/jupyter_server: use correct package name

I have added a duplicate package, so fix reverse dependencies to
point to correct package.

Bug: https://bugs.gentoo.org/832379
Signed-off-by: Arthur Zamarin  gentoo.org>

 .../{jupyter_server-1.13.3.ebuild => jupyter_server-1.13.3-r1.ebuild}   | 2 +-
 .../{jupyter_server-1.13.4.ebuild => jupyter_server-1.13.4-r1.ebuild}   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/jupyter_server/jupyter_server-1.13.3.ebuild 
b/dev-python/jupyter_server/jupyter_server-1.13.3-r1.ebuild
similarity index 98%
rename from dev-python/jupyter_server/jupyter_server-1.13.3.ebuild
rename to dev-python/jupyter_server/jupyter_server-1.13.3-r1.ebuild
index 4747dd329823..78717090f54e 100644
--- a/dev-python/jupyter_server/jupyter_server-1.13.3.ebuild
+++ b/dev-python/jupyter_server/jupyter_server-1.13.3-r1.ebuild
@@ -47,7 +47,7 @@ distutils_enable_sphinx docs/source \
dev-python/myst_parser \
dev-python/ipython \
dev-python/sphinxemoji \
-   dev-python/sphinxcontrib_github_alt \
+   dev-python/sphinxcontrib-github-alt \
dev-python/sphinxcontrib-openapi
 distutils_enable_tests --install pytest
 

diff --git a/dev-python/jupyter_server/jupyter_server-1.13.4.ebuild 
b/dev-python/jupyter_server/jupyter_server-1.13.4-r1.ebuild
similarity index 98%
rename from dev-python/jupyter_server/jupyter_server-1.13.4.ebuild
rename to dev-python/jupyter_server/jupyter_server-1.13.4-r1.ebuild
index ffc18b1a7209..e30908e9defe 100644
--- a/dev-python/jupyter_server/jupyter_server-1.13.4.ebuild
+++ b/dev-python/jupyter_server/jupyter_server-1.13.4-r1.ebuild
@@ -47,7 +47,7 @@ distutils_enable_sphinx docs/source \
dev-python/myst_parser \
dev-python/ipython \
dev-python/sphinxemoji \
-   dev-python/sphinxcontrib_github_alt \
+   dev-python/sphinxcontrib-github-alt \
dev-python/sphinxcontrib-openapi
 distutils_enable_tests --install pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/sphinxcontrib-github-alt/

2022-02-04 Thread Arthur Zamarin
commit: 99e6b565f31e86ff0e8030f178978b588194e3a5
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb  4 19:41:53 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb  4 19:47:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99e6b565

dev-python/sphinxcontrib-github-alt: weak block duplicate package

I have added a duplicate package, so weak block it.

Bug: https://bugs.gentoo.org/832379
Signed-off-by: Arthur Zamarin  gentoo.org>

 ...-alt-1.2.ebuild => sphinxcontrib-github-alt-1.2-r1.ebuild} | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git 
a/dev-python/sphinxcontrib-github-alt/sphinxcontrib-github-alt-1.2.ebuild 
b/dev-python/sphinxcontrib-github-alt/sphinxcontrib-github-alt-1.2-r1.ebuild
similarity index 72%
rename from 
dev-python/sphinxcontrib-github-alt/sphinxcontrib-github-alt-1.2.ebuild
rename to 
dev-python/sphinxcontrib-github-alt/sphinxcontrib-github-alt-1.2-r1.ebuild
index b23d2d3a9983..7faae223efa3 100644
--- a/dev-python/sphinxcontrib-github-alt/sphinxcontrib-github-alt-1.2.ebuild
+++ b/dev-python/sphinxcontrib-github-alt/sphinxcontrib-github-alt-1.2-r1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{7..10} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1
 
@@ -19,5 +19,8 @@ LICENSE="BSD-2"
 SLOT="0"
 KEYWORDS="amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
 
-RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]"
-BDEPEND="${RDEPEND}"
+RDEPEND="
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   !dev-python/sphinxcontrib_github_alt
+"
+BDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]"



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

2022-02-04 Thread Alfredo Tupone
commit: b72f7be0928f9d137b6e27b7dfd85b5d7e9cd7b1
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Fri Feb  4 19:29:00 2022 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Feb  4 19:29:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b72f7be0

dev-python/quex: python3.10

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

 dev-python/quex/quex-0.71.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/quex/quex-0.71.2.ebuild 
b/dev-python/quex/quex-0.71.2.ebuild
index 661695ffa620..edb29663196e 100644
--- a/dev-python/quex/quex-0.71.2.ebuild
+++ b/dev-python/quex/quex-0.71.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_9 )
+PYTHON_COMPAT=( python3_{9,10} )
 
 inherit python-single-r1
 



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

2022-02-04 Thread Michał Górny
commit: ba047ee1d9ad04fd4a6bd90682c5516edf07e734
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb  4 19:26:06 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb  4 19:28:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba047ee1

dev-python/wcwidth: Remove obsolete python_gen* w/ -2

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

 dev-python/wcwidth/wcwidth-0.2.5-r1.ebuild | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/dev-python/wcwidth/wcwidth-0.2.5-r1.ebuild 
b/dev-python/wcwidth/wcwidth-0.2.5-r1.ebuild
index ce656fc41dff..8f548b32b4dd 100644
--- a/dev-python/wcwidth/wcwidth-0.2.5-r1.ebuild
+++ b/dev-python/wcwidth/wcwidth-0.2.5-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7..10} pypy3 )
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
 
 inherit distutils-r1
 
@@ -17,11 +17,6 @@ SLOT="0"
 LICENSE="MIT"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux"
 
-RDEPEND="
-   $(python_gen_cond_dep '
-   dev-python/backports-functools-lru-cache[${PYTHON_USEDEP}]
-   ' -2)"
-
 distutils_enable_tests pytest
 
 src_prepare() {



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

2022-02-04 Thread Michał Górny
commit: d59421454b5da01e4cc222817944227e57945bba
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb  4 19:25:43 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb  4 19:27:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5942145

dev-python/dnspython: Remove obsolete python_gen* w/ -2

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

 dev-python/dnspython/dnspython-1.16.0-r2.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-python/dnspython/dnspython-1.16.0-r2.ebuild 
b/dev-python/dnspython/dnspython-1.16.0-r2.ebuild
index 770b895f5fce..36d14f2bd4eb 100644
--- a/dev-python/dnspython/dnspython-1.16.0-r2.ebuild
+++ b/dev-python/dnspython/dnspython-1.16.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -19,7 +19,6 @@ IUSE="examples"
 RDEPEND="dev-python/pycryptodome[${PYTHON_USEDEP}]
>=dev-python/ecdsa-0.13[${PYTHON_USEDEP}]
>=dev-python/idna-2.1[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 'dev-python/typing[${PYTHON_USEDEP}]' -2)
!dev-python/dnspython:py2
!dev-python/dnspython:py3"
 



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

2022-02-04 Thread Michał Górny
commit: 39da03f027cec03bb5c5cb1fd63c65ebdac5
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb  4 19:27:23 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb  4 19:28:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39da03f0

www-servers/uwsgi: Remove obsolete python_gen* w/ -3

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

 www-servers/uwsgi/uwsgi-2.0.19.1-r108.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/uwsgi/uwsgi-2.0.19.1-r108.ebuild 
b/www-servers/uwsgi/uwsgi-2.0.19.1-r108.ebuild
index 089c51e499e2..0209aa698435 100644
--- a/www-servers/uwsgi/uwsgi-2.0.19.1-r108.ebuild
+++ b/www-servers/uwsgi/uwsgi-2.0.19.1-r108.ebuild
@@ -70,7 +70,7 @@ REQUIRED_USE="|| ( ${LANG_SUPPORT_SIMPLE[@]} 
${LANG_SUPPORT_EXTENDED[@]} )
uwsgi_plugins_router_xmldir? ( xml !expat )
lua? ( ${LUA_REQUIRED_USE} )
python? ( ${PYTHON_REQUIRED_USE} )
-   python-asyncio? ( || ( $(python_gen_useflags -3) ) )
+   python-asyncio? ( python )
python-gevent? ( python )
expat? ( xml )"
 



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

2022-02-04 Thread Michał Górny
commit: 9c67a5540933d47d501292e5e5a34a63d07f87ef
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb  4 18:51:25 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb  4 18:51:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c67a554

dev-python/jaraco-packaging: Remove stale importlib-metadata dep

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

 dev-python/jaraco-packaging/jaraco-packaging-8.2.1.ebuild | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/dev-python/jaraco-packaging/jaraco-packaging-8.2.1.ebuild 
b/dev-python/jaraco-packaging/jaraco-packaging-8.2.1.ebuild
index b81efcb5631b..e7d5b913e05c 100644
--- a/dev-python/jaraco-packaging/jaraco-packaging-8.2.1.ebuild
+++ b/dev-python/jaraco-packaging/jaraco-packaging-8.2.1.ebuild
@@ -18,9 +18,6 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
 
-RDEPEND="
-   $(python_gen_cond_dep 'dev-python/importlib_metadata[${PYTHON_USEDEP}]' 
pypy3 python3_{6,7})
-"
 BDEPEND="
>=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
 "



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

2022-02-04 Thread Michał Górny
commit: afb93cb2bc21552d8dd73aff160babba2b51
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb  4 18:50:06 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb  4 18:50:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afb9

dev-python/tomlkit: Remove old

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

 dev-python/tomlkit/Manifest |  1 -
 dev-python/tomlkit/tomlkit-0.7.2.ebuild | 20 
 2 files changed, 21 deletions(-)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 98935d4192b2..128b84c80e3d 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,3 +1,2 @@
-DIST tomlkit-0.7.2.tar.gz 159643 BLAKE2B 
6946cdc4c991671eb9e38cf836196a0dfdb7aba2697db95f3fcee58652d3c8ba96295df447b8145f0143447339834015abbd60928d7588c68ae31c298fd6d2d4
 SHA512 
cfb17d133463c22ae8b76dd03587f23f6dafedfd2decdf15ae29fe5c05117ebd3e17057f49bdb17345386f5ce3073b1e5b1937c6ab6683aefb0fc0abd7571580
 DIST tomlkit-0.8.0.tar.gz 179067 BLAKE2B 
871eb8371d94c76552d78a56adfbde5ebb9da4b93aa29229ae9aa279ae35fac488a1b4986169b818d2e5366883b8f246b44dc9075d0d9785b2d7d6f97e222ec1
 SHA512 
77b267201021e740d8134d0d5edfbef2cf077adac0b320d80887fdedda3f63f74df1957e8230976f16c80fcc58fd4cfabb195cccf0eda7d6cd29f5f65d362147
 DIST tomlkit-0.9.0.tar.gz 176037 BLAKE2B 
2301b1c9d28eeb595b0580ae4172b0c044a67c75b417b0a004af2afa5bb4bddb07a73e8cdc2949008efa024ab603e44e43d830453827e02d2b7a4483cc360dc3
 SHA512 
36cb7fd683b4dc6e82a4828db76ad997de79302ed485751b14375e7483400adbce8e9b8bf913a6f404ffc16a06cf90158caca20c4419bd032a7d27a8790573db

diff --git a/dev-python/tomlkit/tomlkit-0.7.2.ebuild 
b/dev-python/tomlkit/tomlkit-0.7.2.ebuild
deleted file mode 100644
index bea9c9c660d2..
--- a/dev-python/tomlkit/tomlkit-0.7.2.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="https://github.com/sdispater/tomlkit;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest



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

2022-02-04 Thread Sam James
commit: c3a49d1b17df4a79eee34da16137646cc30a4642
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb  4 18:47:30 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb  4 18:47:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3a49d1b

sys-cluster/glusterfs: Stabilize 9.4 ppc64, #832574

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

 sys-cluster/glusterfs/glusterfs-9.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/glusterfs/glusterfs-9.4.ebuild 
b/sys-cluster/glusterfs/glusterfs-9.4.ebuild
index 7b0d0039a9d1..23fc666cac67 100644
--- a/sys-cluster/glusterfs/glusterfs-9.4.ebuild
+++ b/sys-cluster/glusterfs/glusterfs-9.4.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://download.gluster.org/pub/gluster/${PN}/$(ver_cut 1)/${PV}/${P}.
 
 LICENSE="|| ( GPL-2 LGPL-3+ )"
 SLOT="0/${PV%%.*}"
-KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86"
 
 IUSE="debug emacs +fuse +georeplication ipv6 +libtirpc rsyslog static-libs 
+syslog test +xml"
 



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

2022-02-04 Thread Sam James
commit: 6b65c1f610fdfc578b3bdd6524d5c440579d0c40
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb  4 18:47:23 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb  4 18:47:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b65c1f6

dev-python/PyQt5: Stabilize 5.15.4-r1 ppc64, #831835

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

 dev-python/PyQt5/PyQt5-5.15.4-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/PyQt5/PyQt5-5.15.4-r1.ebuild 
b/dev-python/PyQt5/PyQt5-5.15.4-r1.ebuild
index 0543f12fff09..2b0dd6118a38 100644
--- a/dev-python/PyQt5/PyQt5-5.15.4-r1.ebuild
+++ b/dev-python/PyQt5/PyQt5-5.15.4-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -19,7 +19,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86"
 
 # TODO: QtNfc, QtQuick3D, QtRemoteObjects
 IUSE="bluetooth dbus debug declarative designer examples gles2-only gui help 
location



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

2022-02-04 Thread Sam James
commit: 5b767e842251e3e7e5df13ed466c27b818ee44f7
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb  4 18:47:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb  4 18:47:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b767e84

dev-python/PyQt5-sip: Stabilize 12.9.0 ppc64, #831835

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

 dev-python/PyQt5-sip/PyQt5-sip-12.9.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/PyQt5-sip/PyQt5-sip-12.9.0.ebuild 
b/dev-python/PyQt5-sip/PyQt5-sip-12.9.0.ebuild
index d7d2a0f12e28..4fd535eab6fe 100644
--- a/dev-python/PyQt5-sip/PyQt5-sip-12.9.0.ebuild
+++ b/dev-python/PyQt5-sip/PyQt5-sip-12.9.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -19,4 +19,4 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="|| ( GPL-2 GPL-3 SIP )"
 SLOT="0/$(ver_cut 1)"
-KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86"



  1   2   3   >