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

2021-06-25 Thread Hans de Graaff
commit: 67482a86f40f3535dd48fb108827a6b88171af8e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Jun 26 05:30:47 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Jun 26 05:30:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67482a86

dev-lang/ruby: revert unbundling json

In 2e225cca1aa95b8a5e54cbd855f17dbaf88940d9 all gem dependencies got
fully unbundled, fixing some issues with duplicate definitions of code
and our policy of unbundling as much code as possible.

Too much code still depends on json being present in the core ruby
library, though, leading to compatibility problems. This change does not
just revert the removal of the json code, but leaves all json code
present. This should help with avoiding the duplicate definitions that
were the initial trigger for these changes.

Closes: https://bugs.gentoo.org/779562
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-lang/ruby/ruby-2.6.7-r2.ebuild | 258 +++
 dev-lang/ruby/ruby-2.7.3-r5.ebuild | 266 +
 dev-lang/ruby/ruby-3.0.1-r2.ebuild | 263 
 3 files changed, 787 insertions(+)

diff --git a/dev-lang/ruby/ruby-2.6.7-r2.ebuild 
b/dev-lang/ruby/ruby-2.6.7-r2.ebuild
new file mode 100644
index 000..7a0b8149b3e
--- /dev/null
+++ b/dev-lang/ruby/ruby-2.6.7-r2.ebuild
@@ -0,0 +1,258 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools flag-o-matic multilib
+
+MY_P="${PN}-$(ver_cut 1-3)"
+S=${WORKDIR}/${MY_P}
+
+SLOT=$(ver_cut 1-2)
+MY_SUFFIX=$(ver_rs 1 '' ${SLOT})
+RUBYVERSION=${SLOT}.0
+
+DESCRIPTION="An object-oriented scripting language"
+HOMEPAGE="https://www.ruby-lang.org/;
+SRC_URI="https://cache.ruby-lang.org/pub/ruby/${SLOT}/${MY_P}.tar.xz;
+
+LICENSE="|| ( Ruby-BSD BSD-2 )"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+IUSE="berkdb debug doc examples gdbm ipv6 jemalloc jit +rdoc rubytests socks5 
+ssl static-libs systemtap tk xemacs"
+
+RDEPEND="
+   berkdb? ( sys-libs/db:= )
+   gdbm? ( sys-libs/gdbm:= )
+   jemalloc? ( dev-libs/jemalloc:= )
+   jit? ( || ( sys-devel/gcc:* sys-devel/clang:* ) )
+   ssl? (
+   dev-libs/openssl:0=
+   )
+   socks5? ( >=net-proxy/dante-1.1.13 )
+   systemtap? ( dev-util/systemtap )
+   tk? (
+   dev-lang/tcl:0=[threads]
+   dev-lang/tk:0=[threads]
+   )
+   dev-libs/libyaml
+   dev-libs/libffi:=
+   sys-libs/readline:0=
+   sys-libs/zlib
+   virtual/libcrypt:=
+   >=app-eselect/eselect-ruby-20181225
+"
+
+DEPEND="${RDEPEND}"
+
+BUNDLED_GEMS="
+   >=dev-ruby/did_you_mean-1.2.1[ruby_targets_ruby26]
+   >=dev-ruby/minitest-5.11.3[ruby_targets_ruby26]
+   >=dev-ruby/net-telnet-0.2.0[ruby_targets_ruby26]
+   >=dev-ruby/power_assert-1.1.3[ruby_targets_ruby26]
+   >=dev-ruby/rake-12.3.2[ruby_targets_ruby26]
+   >=dev-ruby/test-unit-3.2.9[ruby_targets_ruby26]
+   >=dev-ruby/xmlrpc-0.3.0[ruby_targets_ruby26]
+"
+
+PDEPEND="
+   ${BUNDLED_GEMS}
+   virtual/rubygems[ruby_targets_ruby26]
+   >=dev-ruby/bundler-1.17.2[ruby_targets_ruby26]
+   >=dev-ruby/json-2.0.2[ruby_targets_ruby26]
+   rdoc? ( >=dev-ruby/rdoc-6.1.2[ruby_targets_ruby26] )
+   xemacs? ( app-xemacs/ruby-modes )"
+
+src_prepare() {
+   # 005 does not compile bigdecimal and is questionable because it
+   # compiles ruby in a non-standard way, may be dropped
+   eapply "${FILESDIR}"/2.6/{002,010}*.patch
+
+   einfo "Unbundling gems..."
+   cd "$S"
+   # Remove bundled gems that we will install via PDEPEND, bug
+   # 539700.
+   rm -fr gems/* || die
+
+   einfo "Removing bundled libraries..."
+   rm -fr ext/fiddle/libffi-3.2.1 || die
+
+   if use prefix ; then
+   # Fix hardcoded SHELL var in mkmf library
+   sed -i -e "s#\(SHELL = \).*#\1${EPREFIX}/bin/sh#" lib/mkmf.rb 
|| die
+
+   if [[ ${CHOST} == *darwin* ]] ; then
+   # avoid symlink loop on Darwin (?!)
+   sed -i \
+   -e 
'/LIBRUBY_ALIASES=/s/lib$(RUBY_INSTALL_NAME).$(SOEXT)//' \
+   configure.ac || die
+
+   # make ar/libtool hack for Darwin work
+   sed -i \
+   -e 
"s/ac_cv_prog_ac_ct_AR='libtool/ac_cv_prog_AR='${CHOST}-libtool/" \
+   configure.ac || die
+   fi
+   fi
+
+   eapply_user
+
+   eautoreconf
+}
+
+src_configure() {
+   local modules= myconf=
+
+   # -fomit-frame-pointer makes ruby segfault, see bug #150413.
+

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

2021-06-25 Thread Hans de Graaff
commit: 30a3c0b4a6d31e7724fb090b62a87743afca77db
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 25 05:45:08 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Jun 26 05:24:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30a3c0b4

dev-ruby/spring: add ruby27

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

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

diff --git a/dev-ruby/spring/spring-2.1.1.ebuild 
b/dev-ruby/spring/spring-2.1.1.ebuild
index 14f70134dea..83758b05933 100644
--- a/dev-ruby/spring/spring-2.1.1.ebuild
+++ b/dev-ruby/spring/spring-2.1.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-USE_RUBY="ruby25 ruby26"
+USE_RUBY="ruby25 ruby26 ruby27"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"



[gentoo-commits] repo/proj/guru:dev commit in: games-emulation/yuzu/

2021-06-25 Thread Samuel Bauer
commit: d7720f353aacf446dac6630f22a7aead7e5be8c1
Author: Samuel Bauer  yahoo  fr>
AuthorDate: Sat Jun 26 01:15:34 2021 +
Commit: Samuel Bauer  yahoo  fr>
CommitDate: Sat Jun 26 01:15:34 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d7720f35

games-emulation/yuzu: require >=libfmt-8

Signed-off-by: Samuel Bauer  yahoo.fr>

 games-emulation/yuzu/yuzu-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-emulation/yuzu/yuzu-.ebuild 
b/games-emulation/yuzu/yuzu-.ebuild
index e7a2452f4..fc3082cb2 100644
--- a/games-emulation/yuzu/yuzu-.ebuild
+++ b/games-emulation/yuzu/yuzu-.ebuild
@@ -35,7 +35,7 @@ DEPEND="
>=dev-cpp/catch-2.13:0
>=dev-cpp/nlohmann_json-3.8.0
>=dev-libs/boost-1.73:=[context]
-   >=dev-libs/libfmt-7.1.0
+   >=dev-libs/libfmt-8
>=dev-libs/libzip-1.5
>=media-libs/opus-1.3.1
>=sys-libs/zlib-1.2



[gentoo-commits] repo/proj/guru:dev commit in: gui-wm/dwl/files/, gui-wm/dwl/

2021-06-25 Thread Anna Vyalkova
commit: 8f2d32a64feee96b8dd76ca787533364df381dd8
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Sat Jun 26 00:46:22 2021 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Sat Jun 26 00:49:00 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8f2d32a6

gui-wm/dwl: savedconfig and use flag for Xwayland

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 gui-wm/dwl/dwl-0.2.1.ebuild  | 45 +---
 gui-wm/dwl/files/dwl.desktop |  7 +++
 2 files changed, 45 insertions(+), 7 deletions(-)

diff --git a/gui-wm/dwl/dwl-0.2.1.ebuild b/gui-wm/dwl/dwl-0.2.1.ebuild
index fbd1f9833..285f36ac7 100644
--- a/gui-wm/dwl/dwl-0.2.1.ebuild
+++ b/gui-wm/dwl/dwl-0.2.1.ebuild
@@ -3,18 +3,49 @@
 
 EAPI=7
 
+inherit flag-o-matic savedconfig toolchain-funcs
+
 DESCRIPTION="dwm for Wayland"
 HOMEPAGE="https://github.com/djpohly/dwl;
-SRC_URI="https://github.com/djpohly/dwl/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/djpohly/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
-LICENSE="GPL-3"
+LICENSE="CC0-1.0 GPL-3 MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
+IUSE="X"
+
+RDEPEND="
+   dev-libs/libinput
+   dev-libs/wayland
+   gui-libs/wlroots[X(-)?]
+   x11-libs/libxcb
+   x11-libs/libxkbcommon
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   dev-libs/wayland-protocols
+   dev-util/wayland-scanner
+   virtual/pkgconfig
+"
 
-DEPEND="gui-libs/wlroots
-dev-libs/wayland-protocols"
-RDEPEND="${DEPEND}"
+src_prepare() {
+   default
+
+   restore_config config.h
+}
+
+src_configure() {
+   use X && append-cppflags -DXWAYLAND
+   tc-export CC
+}
 
 src_install() {
-   emake PREFIX="${D}"/usr install
+   emake PREFIX="${ED}/usr" install
+
+   insinto /usr/share/wayland-sessions
+   doins "${FILESDIR}"/dwl.desktop
+
+   einstalldocs
+
+   save_config config.h
 }

diff --git a/gui-wm/dwl/files/dwl.desktop b/gui-wm/dwl/files/dwl.desktop
new file mode 100644
index 0..343f5d4cd
--- /dev/null
+++ b/gui-wm/dwl/files/dwl.desktop
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Name=dwl
+Comment=dwm for Wayland
+Exec=/usr/bin/dwl
+TryExec=dwl
+Icon=
+Type=Application



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

2021-06-25 Thread Matthias Maier
commit: de5afd6794251f04a2848f67acec7e8950bfa386
Author: Matthias Maier  gentoo  org>
AuthorDate: Sat Jun 26 03:56:02 2021 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Sat Jun 26 03:56:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de5afd67

app-crypt/swtpm: add virtualization project, set USE=+gnutls

swtpm is an optional runtime dependency of app-emulation/qemu and
app-emulation/libvirt. With the latest development (Windows 11 requiring
tpm support) tpm emulation becomes increasingly important. This commit

 * adds the virtualization project as maintainer to be CC'ed on bugs
   relating to app-crypt/swtpm

 * changes USE=+gnutls to automatically build swtpm_cert which is
   required by libvirt to function properly

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Matthias Maier  gentoo.org>

 app-crypt/swtpm/metadata.xml   | 4 
 app-crypt/swtpm/swtpm-0.6.0.ebuild | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/app-crypt/swtpm/metadata.xml b/app-crypt/swtpm/metadata.xml
index fd9c4b51cbd..e89388a5e44 100644
--- a/app-crypt/swtpm/metadata.xml
+++ b/app-crypt/swtpm/metadata.xml
@@ -9,6 +9,10 @@
proxy-ma...@gentoo.org
Proxy Maintainers

+   
+   virtualizat...@gentoo.org
+   Gentoo Virtualization Project
+   

Support sys-fs/fuse based /dev/tpm 
interface


diff --git a/app-crypt/swtpm/swtpm-0.6.0.ebuild 
b/app-crypt/swtpm/swtpm-0.6.0.ebuild
index 822bb933b86..715ab5e761b 100644
--- a/app-crypt/swtpm/swtpm-0.6.0.ebuild
+++ b/app-crypt/swtpm/swtpm-0.6.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/stefanberger/swtpm/archive/v${PV}.tar.gz -> ${P}.tar
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE="fuse gnutls seccomp test"
+IUSE="fuse +gnutls seccomp test"
 RESTRICT="!test? ( test )"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: app-crypt/swtpm/files/, app-crypt/swtpm/

2021-06-25 Thread Matthias Maier
commit: 417a5098a4a58b89e7f54650156f09d38b5549d5
Author: Christopher Byrne  gmail  com>
AuthorDate: Tue Jun  8 02:36:56 2021 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Sat Jun 26 03:41:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=417a5098

app-crypt/swtpm: Remove old

Closes: https://github.com/gentoo/gentoo/pull/21154
Closes: https://bugs.gentoo.org/798696
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Christopher Byrne  gmail.com>
Signed-off-by: Matthias Maier  gentoo.org>

 app-crypt/swtpm/Manifest   |  1 -
 .../swtpm/files/swtpm-0.5.0-fix-localca-path.patch | 31 
 app-crypt/swtpm/swtpm-0.5.2.ebuild | 86 --
 3 files changed, 118 deletions(-)

diff --git a/app-crypt/swtpm/Manifest b/app-crypt/swtpm/Manifest
index 9405fc8ced4..bdcdcc6c203 100644
--- a/app-crypt/swtpm/Manifest
+++ b/app-crypt/swtpm/Manifest
@@ -1,2 +1 @@
-DIST swtpm-0.5.2.tar.gz 309436 BLAKE2B 
0518e59b052c9224d5db1c2720f74ff15717468f73b1665e67c017581dd2b52d7a4cf28f94a932eb6068de3bc50f2e5710b8c447e4a08e6b4a31019db542d910
 SHA512 
4554f1b7a534829f9fbef4a09e190f1d5e91692d270f4f668bd6ef79799a4186a38db172e37a18be9f203466e2d7c9cdf3a350c0020d25ff6126128085ebe3a3
 DIST swtpm-0.6.0.tar.gz 326049 BLAKE2B 
52b310e4da1f256f440d9e0022cb6d5f5987b10aa85c8bf2837f5a5c61bc076f7d24d0a027987ef28ba0e7983a2fb04476103b88c33e3312536777366bf9b0cd
 SHA512 
b12bb9cc486c50d0689a5655799c0d52f85d320a1d849fd56ee5c4b497472102c61b5d368f46a81e0b9feacc63b25b434bd6229f492951097af1e9c74a37cc96

diff --git a/app-crypt/swtpm/files/swtpm-0.5.0-fix-localca-path.patch 
b/app-crypt/swtpm/files/swtpm-0.5.0-fix-localca-path.patch
deleted file mode 100644
index 27d29fc55ae..000
--- a/app-crypt/swtpm/files/swtpm-0.5.0-fix-localca-path.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-diff --git a/samples/Makefile.am b/samples/Makefile.am
-index 7d69bf8..9fb8338 100644
 a/samples/Makefile.am
-+++ b/samples/Makefile.am
-@@ -56,10 +56,10 @@ endif
- 
- 
- install-data-local:
--  $(MKDIR_P) $(DESTDIR)$(localstatedir)/lib/swtpm-localca
-+  $(MKDIR_P) $(DESTDIR)$(localstatedir)/swtpm-localca
-   if test -z $(DESTDIR); then \
--  chown -R @TSS_USER@:root 
$(DESTDIR)$(localstatedir)/lib/swtpm-localca || true; \
--  chmod 0750 $(DESTDIR)$(localstatedir)/lib/swtpm-localca || 
true; \
-+  chown -R @TSS_USER@:root 
$(DESTDIR)$(localstatedir)/swtpm-localca || true; \
-+  chmod 0750 $(DESTDIR)$(localstatedir)/swtpm-localca || true; \
-   fi
- 
- # for out-of-tree builds we need to clean up
-diff --git a/samples/swtpm-localca.conf.in b/samples/swtpm-localca.conf.in
-index 1f0b48d..63f1fed 100644
 a/samples/swtpm-localca.conf.in
-+++ b/samples/swtpm-localca.conf.in
-@@ -1,4 +1,4 @@
--statedir = @LOCALSTATEDIR@/lib/swtpm-localca
--signingkey = @LOCALSTATEDIR@/lib/swtpm-localca/signkey.pem
--issuercert = @LOCALSTATEDIR@/lib/swtpm-localca/issuercert.pem
--certserial = @LOCALSTATEDIR@/lib/swtpm-localca/certserial
-+statedir = @LOCALSTATEDIR@/swtpm-localca
-+signingkey = @LOCALSTATEDIR@/swtpm-localca/signkey.pem
-+issuercert = @LOCALSTATEDIR@/swtpm-localca/issuercert.pem
-+certserial = @LOCALSTATEDIR@/swtpm-localca/certserial

diff --git a/app-crypt/swtpm/swtpm-0.5.2.ebuild 
b/app-crypt/swtpm/swtpm-0.5.2.ebuild
deleted file mode 100644
index 0042a1df1f8..000
--- a/app-crypt/swtpm/swtpm-0.5.2.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit autotools distutils-r1
-
-DESCRIPTION="Libtpms-based TPM emulator"
-HOMEPAGE="https://github.com/stefanberger/swtpm;
-SRC_URI="https://github.com/stefanberger/swtpm/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="fuse gnutls seccomp test"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND="
-   fuse? (
-   dev-libs/glib:2
-   sys-fs/fuse:0
-   )
-   gnutls? (
-   dev-libs/libtasn1:=
-   >=net-libs/gnutls-3.1.0[tools]
-   )
-   dev-libs/openssl:0=
-   dev-libs/libtpms
-   seccomp? ( sys-libs/libseccomp )
-"
-
-DEPEND="${COMMON_DEPEND}
-   test? (
-   net-misc/socat
-   dev-tcltk/expect
-   )
-"
-
-RDEPEND="${COMMON_DEPEND}
-   acct-group/tss
-   acct-user/tss
-   dev-python/cryptography[${PYTHON_USEDEP}]
-"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-0.5.0-fix-localca-path.patch"
-   "${FILESDIR}/${PN}-0.5.0-build-sys-Remove-WError.patch"
-)
-
-src_prepare() {
-   use test || eapply 
"${FILESDIR}/${PN}-0.5.0-disable-test-dependencies.patch"
-   python_setup
-   default
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   --disable-static \
-   --with-openssl \
-   --without-selinux \
-   

[gentoo-commits] repo/gentoo:master commit in: app-crypt/swtpm/, app-crypt/swtpm/files/

2021-06-25 Thread Matthias Maier
commit: 8d163720376cbfd3583097bf2eb0f11f49989181
Author: Christopher Byrne  gmail  com>
AuthorDate: Tue Jun  8 02:35:45 2021 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Sat Jun 26 03:41:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d163720

app-crypt/swtpm: Bump to 0.6.0

Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Christopher Byrne  gmail.com>
Closes: https://bugs.gentoo.org/798696
Signed-off-by: Matthias Maier  gentoo.org>

 app-crypt/swtpm/Manifest   |  1 +
 .../swtpm/files/swtpm-0.6.0-fix-localca-path.patch | 31 ++
 app-crypt/swtpm/swtpm-0.6.0.ebuild | 69 ++
 3 files changed, 101 insertions(+)

diff --git a/app-crypt/swtpm/Manifest b/app-crypt/swtpm/Manifest
index 3516263e71e..9405fc8ced4 100644
--- a/app-crypt/swtpm/Manifest
+++ b/app-crypt/swtpm/Manifest
@@ -1 +1,2 @@
 DIST swtpm-0.5.2.tar.gz 309436 BLAKE2B 
0518e59b052c9224d5db1c2720f74ff15717468f73b1665e67c017581dd2b52d7a4cf28f94a932eb6068de3bc50f2e5710b8c447e4a08e6b4a31019db542d910
 SHA512 
4554f1b7a534829f9fbef4a09e190f1d5e91692d270f4f668bd6ef79799a4186a38db172e37a18be9f203466e2d7c9cdf3a350c0020d25ff6126128085ebe3a3
+DIST swtpm-0.6.0.tar.gz 326049 BLAKE2B 
52b310e4da1f256f440d9e0022cb6d5f5987b10aa85c8bf2837f5a5c61bc076f7d24d0a027987ef28ba0e7983a2fb04476103b88c33e3312536777366bf9b0cd
 SHA512 
b12bb9cc486c50d0689a5655799c0d52f85d320a1d849fd56ee5c4b497472102c61b5d368f46a81e0b9feacc63b25b434bd6229f492951097af1e9c74a37cc96

diff --git a/app-crypt/swtpm/files/swtpm-0.6.0-fix-localca-path.patch 
b/app-crypt/swtpm/files/swtpm-0.6.0-fix-localca-path.patch
new file mode 100644
index 000..ae47bd5a793
--- /dev/null
+++ b/app-crypt/swtpm/files/swtpm-0.6.0-fix-localca-path.patch
@@ -0,0 +1,31 @@
+diff --git a/samples/Makefile.am b/samples/Makefile.am
+index dcbc9b6..68c8adb 100644
+--- a/samples/Makefile.am
 b/samples/Makefile.am
+@@ -48,10 +48,10 @@ swtpm_localca_CFLAGS = \
+   $(GLIB_CFLAGS)
+ 
+ install-data-local:
+-  $(MKDIR_P) $(DESTDIR)$(localstatedir)/lib/swtpm-localca
++  $(MKDIR_P) $(DESTDIR)$(localstatedir)/swtpm-localca
+   if test -z $(DESTDIR); then \
+-  chown -R @TSS_USER@:root 
$(DESTDIR)$(localstatedir)/lib/swtpm-localca || true; \
+-  chmod 0750 $(DESTDIR)$(localstatedir)/lib/swtpm-localca || 
true; \
++  chown -R @TSS_USER@:root 
$(DESTDIR)$(localstatedir)/swtpm-localca || true; \
++  chmod 0750 $(DESTDIR)$(localstatedir)/swtpm-localca || true; \
+   fi
+ 
+ EXTRA_DIST= \
+diff --git a/samples/swtpm-localca.conf.in b/samples/swtpm-localca.conf.in
+index 1f0b48d..63f1fed 100644
+--- a/samples/swtpm-localca.conf.in
 b/samples/swtpm-localca.conf.in
+@@ -1,4 +1,4 @@
+-statedir = @LOCALSTATEDIR@/lib/swtpm-localca
+-signingkey = @LOCALSTATEDIR@/lib/swtpm-localca/signkey.pem
+-issuercert = @LOCALSTATEDIR@/lib/swtpm-localca/issuercert.pem
+-certserial = @LOCALSTATEDIR@/lib/swtpm-localca/certserial
++statedir = @LOCALSTATEDIR@/swtpm-localca
++signingkey = @LOCALSTATEDIR@/swtpm-localca/signkey.pem
++issuercert = @LOCALSTATEDIR@/swtpm-localca/issuercert.pem
++certserial = @LOCALSTATEDIR@/swtpm-localca/certserial

diff --git a/app-crypt/swtpm/swtpm-0.6.0.ebuild 
b/app-crypt/swtpm/swtpm-0.6.0.ebuild
new file mode 100644
index 000..822bb933b86
--- /dev/null
+++ b/app-crypt/swtpm/swtpm-0.6.0.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit autotools python-single-r1
+
+DESCRIPTION="Libtpms-based TPM emulator"
+HOMEPAGE="https://github.com/stefanberger/swtpm;
+SRC_URI="https://github.com/stefanberger/swtpm/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="fuse gnutls seccomp test"
+RESTRICT="!test? ( test )"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="fuse? (
+   dev-libs/glib:2
+   sys-fs/fuse:0
+   )
+   gnutls? (
+   dev-libs/libtasn1:=
+   >=net-libs/gnutls-3.1.0[tools]
+   )
+   seccomp? ( sys-libs/libseccomp )
+   test? (
+   net-misc/socat
+   dev-tcltk/expect
+   )
+   acct-group/tss
+   acct-user/tss
+   dev-libs/openssl:0=
+   dev-libs/json-glib
+   dev-libs/libtpms
+   ${PYTHON_DEPS}"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-0.6.0-fix-localca-path.patch"
+   "${FILESDIR}/${PN}-0.5.0-build-sys-Remove-WError.patch"
+)
+
+src_prepare() {
+   use test || eapply 
"${FILESDIR}/${PN}-0.5.0-disable-test-dependencies.patch"
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --disable-static \
+   --with-openssl \
+   --without-selinux \
+   $(use_with fuse cuse) \
+   $(use_with gnutls) \
+   $(use_with seccomp)

[gentoo-commits] repo/gentoo:master commit in: games-emulation/desmume/, games-emulation/desmume/files/

2021-06-25 Thread Ionen Wolkens
commit: ab44d066809c6e8791afbaf828db5b7b846dad9b
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sat Jun 26 03:09:54 2021 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sat Jun 26 03:13:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab44d066

games-emulation/desmume: fix openal automagic

There's a meson option to seemingly enable/disable openal, but in
reality only flips its "required" state and it's used anyway if found.

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

 11_p20210409.ebuild => desmume-0.9.11_p20210409-r1.ebuild} |  2 ++
 .../files/desmume-0.9.11_p20210409-openal-automagic.patch  | 10 ++
 2 files changed, 12 insertions(+)

diff --git a/games-emulation/desmume/desmume-0.9.11_p20210409.ebuild 
b/games-emulation/desmume/desmume-0.9.11_p20210409-r1.ebuild
similarity index 96%
rename from games-emulation/desmume/desmume-0.9.11_p20210409.ebuild
rename to games-emulation/desmume/desmume-0.9.11_p20210409-r1.ebuild
index 752de42b7cb..c3a84760618 100644
--- a/games-emulation/desmume/desmume-0.9.11_p20210409.ebuild
+++ b/games-emulation/desmume/desmume-0.9.11_p20210409-r1.ebuild
@@ -35,7 +35,9 @@ DEPEND="
 
 PATCHES=(
"${FILESDIR}"/${P}-fix-gtk-cliopts.patch
+   "${FILESDIR}"/${P}-openal-automagic.patch
 )
+
 DOCS=( ${PN}/{AUTHORS,ChangeLog,README,README.LIN,doc/.} )
 
 src_configure() {

diff --git 
a/games-emulation/desmume/files/desmume-0.9.11_p20210409-openal-automagic.patch 
b/games-emulation/desmume/files/desmume-0.9.11_p20210409-openal-automagic.patch
new file mode 100644
index 000..565ea3f5a7b
--- /dev/null
+++ 
b/games-emulation/desmume/files/desmume-0.9.11_p20210409-openal-automagic.patch
@@ -0,0 +1,10 @@
+Option only changes whether the dep is required and doesn't disable it.
+--- a/desmume/src/frontend/posix/meson.build
 b/desmume/src/frontend/posix/meson.build
+@@ -176,5 +176,5 @@
+ endif
+ 
+-if dep_openal.found()
++if dep_openal.found() and get_option('openal')
+   dependencies += dep_openal
+   libdesmume_src += [



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

2021-06-25 Thread Sam James
commit: 0b97c29f56090a0ab8857dd54af5036f6f9f0384
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 02:55:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 02:55:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b97c29f

dev-python/keystoneauth: Keyword 4.2.1-r1 arm64, #797793

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

 dev-python/keystoneauth/keystoneauth-4.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/keystoneauth/keystoneauth-4.2.1-r1.ebuild 
b/dev-python/keystoneauth/keystoneauth-4.2.1-r1.ebuild
index 86d86978d68..7c32b61382e 100644
--- a/dev-python/keystoneauth/keystoneauth-4.2.1-r1.ebuild
+++ b/dev-python/keystoneauth/keystoneauth-4.2.1-r1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}1-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
!~dev-python/pbr-2.1.0"



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

2021-06-25 Thread Sam James
commit: f74a8594a700241f38db553e5ec77fb0dc689753
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 02:55:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 02:55:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f74a8594

dev-python/semver: Keyword 2.13.0 arm64, #795966

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

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

diff --git a/dev-python/semver/semver-2.13.0.ebuild 
b/dev-python/semver/semver-2.13.0.ebuild
index d9a264e61cf..c4ed05fc956 100644
--- a/dev-python/semver/semver-2.13.0.ebuild
+++ b/dev-python/semver/semver-2.13.0.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/python-${P}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 
 distutils_enable_tests pytest
 



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

2021-06-25 Thread Sam James
commit: 65f268b4b1d05461b1f5dc930f49ef1975beb791
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 02:55:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 02:55:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65f268b4

dev-python/requests-kerberos: Keyword 0.12.0-r1 arm64, #797793

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

 dev-python/requests-kerberos/requests-kerberos-0.12.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/requests-kerberos/requests-kerberos-0.12.0-r1.ebuild 
b/dev-python/requests-kerberos/requests-kerberos-0.12.0-r1.ebuild
index c90a3a51d86..9fee5e2978a 100644
--- a/dev-python/requests-kerberos/requests-kerberos-0.12.0-r1.ebuild
+++ b/dev-python/requests-kerberos/requests-kerberos-0.12.0-r1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/requests/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 IUSE="doc test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/dj-search-url/

2021-06-25 Thread Sam James
commit: 1b1063d65b1cbeb4463db7e4db15fd4fe29205a4
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 02:52:50 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 02:52:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b1063d6

dev-python/dj-search-url: Keyword 0.1 arm64, #794910

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

 dev-python/dj-search-url/dj-search-url-0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/dj-search-url/dj-search-url-0.1.ebuild 
b/dev-python/dj-search-url/dj-search-url-0.1.ebuild
index 217ae91b7bb..18576d01aa5 100644
--- a/dev-python/dj-search-url/dj-search-url-0.1.ebuild
+++ b/dev-python/dj-search-url/dj-search-url-0.1.ebuild
@@ -14,4 +14,4 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"



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

2021-06-25 Thread Sam James
commit: 6634be6cbc6ae5f332f18859cec6f991f129adcf
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 02:52:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 02:52:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6634be6c

dev-python/pytest-django: Keyword 4.4.0 arm64, #794910

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

 dev-python/pytest-django/pytest-django-4.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pytest-django/pytest-django-4.4.0.ebuild 
b/dev-python/pytest-django/pytest-django-4.4.0.ebuild
index f37ed5ce4ec..8f1caf61c80 100644
--- a/dev-python/pytest-django/pytest-django-4.4.0.ebuild
+++ b/dev-python/pytest-django/pytest-django-4.4.0.ebuild
@@ -17,7 +17,7 @@ SRC_URI="
-> ${P}.gh.tar.gz"
 
 LICENSE="BSD"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
 SLOT="0"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cache-url/

2021-06-25 Thread Sam James
commit: 2f0415da90b9da2a50839e25abe764605b71307f
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 02:52:52 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 02:52:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f0415da

dev-python/django-cache-url: Keyword 3.2.3 arm64, #794910

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

 dev-python/django-cache-url/django-cache-url-3.2.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/django-cache-url/django-cache-url-3.2.3.ebuild 
b/dev-python/django-cache-url/django-cache-url-3.2.3.ebuild
index 1909cfc9a08..72fca067574 100644
--- a/dev-python/django-cache-url/django-cache-url-3.2.3.ebuild
+++ b/dev-python/django-cache-url/django-cache-url-3.2.3.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
 DOCS=( AUTHORS.rst CHANGELOG.rst README.rst )
 



[gentoo-commits] repo/gentoo:master commit in: games-emulation/fceux/files/

2021-06-25 Thread Sam James
commit: 95acd66770706815f10a112361913ed643a16b04
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 02:09:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 02:09:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95acd667

games-emulation/fceux: fix (comment) typo in patch

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

 games-emulation/fceux/files/fceux-2.4.0-desktop.patch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-emulation/fceux/files/fceux-2.4.0-desktop.patch 
b/games-emulation/fceux/files/fceux-2.4.0-desktop.patch
index 0abf6f9a64c..e1f924be524 100644
--- a/games-emulation/fceux/files/fceux-2.4.0-desktop.patch
+++ b/games-emulation/fceux/files/fceux-2.4.0-desktop.patch
@@ -1,4 +1,4 @@
-Remove harcoded paths from .desktop, not replacing with
+Remove hardcoded paths from .desktop, not replacing with
 make_desktop_entry given upstream's also defines MimeType.
 --- a/fceux.desktop
 +++ b/fceux.desktop



[gentoo-commits] repo/gentoo:master commit in: dev-python/dj-database-url/

2021-06-25 Thread Sam James
commit: 0233a3ee1781435b751aac216752efa873404d56
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 02:52:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 02:52:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0233a3ee

dev-python/dj-database-url: Keyword 0.5.0 arm64, #794910

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

 dev-python/dj-database-url/dj-database-url-0.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/dj-database-url/dj-database-url-0.5.0.ebuild 
b/dev-python/dj-database-url/dj-database-url-0.5.0.ebuild
index 70b6e3e3cfc..3711e5754ad 100644
--- a/dev-python/dj-database-url/dj-database-url-0.5.0.ebuild
+++ b/dev-python/dj-database-url/dj-database-url-0.5.0.ebuild
@@ -17,6 +17,6 @@ SRC_URI="
 
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x86-linux"
 
 distutils_enable_tests unittest



[gentoo-commits] repo/gentoo:master commit in: dev-python/dj-email-url/

2021-06-25 Thread Sam James
commit: a53e72fba71032adcd6b1bfe0884a7a18480a103
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 02:52:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 02:52:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a53e72fb

dev-python/dj-email-url: Keyword 1.0.2 arm64, #794910

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

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

diff --git a/dev-python/dj-email-url/dj-email-url-1.0.2.ebuild 
b/dev-python/dj-email-url/dj-email-url-1.0.2.ebuild
index 09351696320..a3cc58516c2 100644
--- a/dev-python/dj-email-url/dj-email-url-1.0.2.ebuild
+++ b/dev-python/dj-email-url/dj-email-url-1.0.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/migonzalvar/dj-email-url/archive/refs/tags/v${PV}.ta
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
 DOCS=( CHANGELOG.rst README.rst )
 



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

2021-06-25 Thread Sam James
commit: 73d0f819d7d511070f52195a4f4e6dcf7f79b661
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 02:52:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 02:52:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73d0f819

dev-python/django-configurations: Keyword 2.2 arm64, #794910

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

 dev-python/django-configurations/django-configurations-2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/django-configurations/django-configurations-2.2.ebuild 
b/dev-python/django-configurations/django-configurations-2.2.ebuild
index 4dd4211e913..603cc16737b 100644
--- a/dev-python/django-configurations/django-configurations-2.2.ebuild
+++ b/dev-python/django-configurations/django-configurations-2.2.ebuild
@@ -17,7 +17,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: games-emulation/fceux/files/, games-emulation/fceux/

2021-06-25 Thread Ionen Wolkens
commit: 0e464bdb6f179404619bd3265c31acf1e7a06a50
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sat Jun 26 00:57:15 2021 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sat Jun 26 01:35:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e464bdb

games-emulation/fceux: add 2.4.0

New patches are just conversion of the sed commands.

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

 games-emulation/fceux/Manifest |  1 +
 games-emulation/fceux/fceux-2.4.0.ebuild   | 48 ++
 .../fceux/files/fceux-2.4.0-desktop.patch  | 18 
 .../fceux/files/fceux-2.4.0-no-git.patch   | 12 ++
 4 files changed, 79 insertions(+)

diff --git a/games-emulation/fceux/Manifest b/games-emulation/fceux/Manifest
index 61c17d5f22c..a3f578e4ec4 100644
--- a/games-emulation/fceux/Manifest
+++ b/games-emulation/fceux/Manifest
@@ -1 +1,2 @@
 DIST fceux-2.3.0.src.tar.gz 20779030 BLAKE2B 
0d9a0e1f326bdcde4e360a03755c9d807a59e3f3826017e2923527f3ec214bec4c9737f98a8abc4e4971098d127ce8e95eb4142fa8d0bd71109190e6d2c93861
 SHA512 
46b53f0c4c790ae4f7d5e800adf81cce3c7ccf4b06f972d46e29c0170485e291516709a8c28b26c762d535453e280a6c6de935869c7674bb135c3dca2e266407
+DIST fceux-2.4.0.tar.gz 21807471 BLAKE2B 
5b4d5e9438cfc974cb5ed1838b0845a1d125366fcfbe4ad72c1a5da7caed7bb763a7c66933933f61223abb9dc4c25f0ac7875a0751d122bf75e8567ca5de6cc4
 SHA512 
3f53db1091e28c91bff90a2d6c77bd3c022a7c20a29b07e6cb88e9ae4795ce7f9e68d15ac0f90721472f8c262907a2564e0be7adc8df2eb3ef252215717f30a0

diff --git a/games-emulation/fceux/fceux-2.4.0.ebuild 
b/games-emulation/fceux/fceux-2.4.0.ebuild
new file mode 100644
index 000..b82b752cf01
--- /dev/null
+++ b/games-emulation/fceux/fceux-2.4.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+LUA_COMPAT=( lua5-1 )
+
+inherit xdg cmake lua-single
+
+DESCRIPTION="Portable Famicom/NES emulator, an evolution of the original FCE 
Ultra"
+HOMEPAGE="https://fceux.com/;
+SRC_URI="mirror://sourceforge/fceultra/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+
+# TODO: QT6 support (disabled by default) when available in Gentoo
+RDEPEND="
+   ${LUA_DEPS}
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtopengl:5[-gles2-only]
+   dev-qt/qtwidgets:5
+   media-libs/libglvnd
+   media-libs/libsdl2[joystick,sound,threads,video]
+   media-libs/x264:=
+   sys-libs/zlib:=[minizip]"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.2.2-warnings.patch
+   "${FILESDIR}"/${P}-desktop.patch
+   "${FILESDIR}"/${P}-no-git.patch
+)
+
+DOCS=( README TODO-SDL changelog.txt documentation/. readme.md )
+
+src_install() {
+   cmake_src_install
+
+   # remove unused/duplicate files
+   rm "${ED}"/usr/share/fceux/{lua5{1,.1}.dll,{fceux,taseditor}.chm} \
+   "${ED}"/usr/share/doc/${PF}/fceux{,-net-server}.6 \
+   "${ED}"/usr/share/man/man6/fceux-net-server.6 || die
+}

diff --git a/games-emulation/fceux/files/fceux-2.4.0-desktop.patch 
b/games-emulation/fceux/files/fceux-2.4.0-desktop.patch
new file mode 100644
index 000..0abf6f9a64c
--- /dev/null
+++ b/games-emulation/fceux/files/fceux-2.4.0-desktop.patch
@@ -0,0 +1,18 @@
+Remove harcoded paths from .desktop, not replacing with
+make_desktop_entry given upstream's also defines MimeType.
+--- a/fceux.desktop
 b/fceux.desktop
+@@ -7,4 +7,4 @@
+ Comment=Emulate NES ROMs
+-Exec=/usr/bin/fceux %f
+-Icon=/usr/share/pixmaps/fceux1.png
++Exec=fceux %f
++Icon=fceux1
+ Terminal=false
+@@ -17,3 +17,2 @@
+ Exec=fceux -f 1
+-OnlyShowIn=Unity
+ [Desktop Action DefaultConfig]
+@@ -21,2 +20 @@
+ Exec=fceux --no-config 1
+-OnlyShowIn=Unity

diff --git a/games-emulation/fceux/files/fceux-2.4.0-no-git.patch 
b/games-emulation/fceux/files/fceux-2.4.0-no-git.patch
new file mode 100644
index 000..fe9a7d35b46
--- /dev/null
+++ b/games-emulation/fceux/files/fceux-2.4.0-no-git.patch
@@ -0,0 +1,12 @@
+Prevent meaningless use of git (QA notice if missing) in a release.
+--- a/scripts/genGitHdr.sh
 b/scripts/genGitHdr.sh
+@@ -8,6 +8,6 @@
+ echo "Output File: $OUTPUT_DIR/$FILE";
+ 
+-GIT_URL=`git config --get remote.origin.url`;
+-GIT_REV=`git rev-parse HEAD`;
++GIT_URL=
++GIT_REV=
+ 
+ echo "// fceux_git_info.cpp -- DO NOT EDIT: This file is auto-generated at 
build" >| $TMP_FILE;



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

2021-06-25 Thread Sam James
commit: 74ba2e06e12961d56d8e38a42429dcd93360e246
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:03:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:03:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74ba2e06

dev-perl/Inline-C: Keyword 0.810.0 arm64, #796788

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

 dev-perl/Inline-C/Inline-C-0.810.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Inline-C/Inline-C-0.810.0.ebuild 
b/dev-perl/Inline-C/Inline-C-0.810.0.ebuild
index df227bd07c4..816e296b8ba 100644
--- a/dev-perl/Inline-C/Inline-C-0.810.0.ebuild
+++ b/dev-perl/Inline-C/Inline-C-0.810.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="C Language Support for Inline"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-06-25 Thread Sam James
commit: ebfb6583493adc54aa04f426255da6012f13e149
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:03:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:03:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebfb6583

dev-perl/Log-Any: Keyword 1.709.0 arm64, #797652

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

 dev-perl/Log-Any/Log-Any-1.709.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Log-Any/Log-Any-1.709.0.ebuild 
b/dev-perl/Log-Any/Log-Any-1.709.0.ebuild
index d46ddcbae06..f1f76593877 100644
--- a/dev-perl/Log-Any/Log-Any-1.709.0.ebuild
+++ b/dev-perl/Log-Any/Log-Any-1.709.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Bringing loggers and listeners together"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="minimal"
 
 # Test::Builder needed for Log/Any/Adapter/Test.pm



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

2021-06-25 Thread Sam James
commit: 22881ea246c9ec9524d84ca7b9598eb7a25cc892
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:03:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:03:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22881ea2

dev-perl/XXX: Keyword 0.370.0 arm64, #796788

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

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

diff --git a/dev-perl/XXX/XXX-0.370.0.ebuild b/dev-perl/XXX/XXX-0.370.0.ebuild
index 663c99b1843..eb4d4968ef5 100644
--- a/dev-perl/XXX/XXX-0.370.0.ebuild
+++ b/dev-perl/XXX/XXX-0.370.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="See Your Data in the Nude"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc"
 
 RDEPEND="
>=dev-perl/YAML-PP-0.18.0



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

2021-06-25 Thread Sam James
commit: 53a4747305091801bac88e37b8fa2748e149cdfa
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:03:01 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:03:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53a47473

dev-util/byacc: Stabilize 20210520 arm, #796944

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

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

diff --git a/dev-util/byacc/byacc-20210520.ebuild 
b/dev-util/byacc/byacc-20210520.ebuild
index 1cb441fafb3..b7181571aa4 100644
--- a/dev-util/byacc/byacc-20210520.ebuild
+++ b/dev-util/byacc/byacc-20210520.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://invisible-mirror.net/archives/byacc/${P}.tgz;
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 
 DOCS=( ACKNOWLEDGEMENTS AUTHORS CHANGES NEW_FEATURES NOTES README )
 



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

2021-06-25 Thread Sam James
commit: 842814ae6be916cf38c8eebc563fda864b92eb69
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:03:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:03:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=842814ae

dev-perl/Pegex: Keyword 0.750.0 arm64, #796788

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

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

diff --git a/dev-perl/Pegex/Pegex-0.750.0.ebuild 
b/dev-perl/Pegex/Pegex-0.750.0.ebuild
index 892203fa858..7e76e56cfdf 100644
--- a/dev-perl/Pegex/Pegex-0.750.0.ebuild
+++ b/dev-perl/Pegex/Pegex-0.750.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Acmeist PEG Parser Framework"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: mail-client/geary/

2021-06-25 Thread Sam James
commit: 5e46c245bf0c5c61a4caeddf71f81db60852d612
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:03:07 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:03:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e46c245

mail-client/geary: Keyword 40.0 arm64, #794955

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

 mail-client/geary/geary-40.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/geary/geary-40.0.ebuild 
b/mail-client/geary/geary-40.0.ebuild
index bd761336702..dedc8301795 100644
--- a/mail-client/geary/geary-40.0.ebuild
+++ b/mail-client/geary/geary-40.0.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Geary;
 LICENSE="LGPL-2.1+ CC-BY-3.0 CC-BY-SA-3.0" # code is LGPL-2.1+, CC licenses 
for some icons
 SLOT="0"
 IUSE="ytnef"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 
 # >=gspell-1.7 dep to ensure all libraries used use enchant:2
 DEPEND="



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

2021-06-25 Thread Sam James
commit: 687af9a5bc3dbfbf288e3251930ce8af964da91f
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:03:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:03:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=687af9a5

dev-perl/LaTeX-Driver: Keyword 1.2.0 arm64, #797652

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

 dev-perl/LaTeX-Driver/LaTeX-Driver-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/LaTeX-Driver/LaTeX-Driver-1.2.0.ebuild 
b/dev-perl/LaTeX-Driver/LaTeX-Driver-1.2.0.ebuild
index c94f5fd9abb..682f49b152d 100644
--- a/dev-perl/LaTeX-Driver/LaTeX-Driver-1.2.0.ebuild
+++ b/dev-perl/LaTeX-Driver/LaTeX-Driver-1.2.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="Perl encapsulation of invoking the Latex programs"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
dev-perl/Capture-Tiny



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

2021-06-25 Thread Sam James
commit: 867c53531763e9c1a07e767c80165b076a60bcaa
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:02:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:02:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=867c5353

sys-process/cronie: Stabilize 1.5.7 arm, #796872

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

 sys-process/cronie/cronie-1.5.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/cronie/cronie-1.5.7.ebuild 
b/sys-process/cronie/cronie-1.5.7.ebuild
index a45d025b055..af83982205f 100644
--- a/sys-process/cronie/cronie-1.5.7.ebuild
+++ b/sys-process/cronie/cronie-1.5.7.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/cronie-crond/cronie;
 SRC_URI="https://github.com/cronie-crond/cronie/archive/${P}.tar.gz;
 
 LICENSE="ISC BSD BSD-2 GPL-2"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
 IUSE="+anacron +inotify pam selinux"
 
 DEPEND="



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

2021-06-25 Thread Sam James
commit: 06051ac0a438e88bbfac58da3eb83462144063cb
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:02:52 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:02:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06051ac0

sys-libs/libxcrypt: Stabilize 4.4.20 arm, #796722

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

 sys-libs/libxcrypt/libxcrypt-4.4.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/libxcrypt/libxcrypt-4.4.20.ebuild 
b/sys-libs/libxcrypt/libxcrypt-4.4.20.ebuild
index fc75ac55ef4..5a243d6f08f 100644
--- a/sys-libs/libxcrypt/libxcrypt-4.4.20.ebuild
+++ b/sys-libs/libxcrypt/libxcrypt-4.4.20.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://github.com/besser82/libxcrypt;
 
 LICENSE="LGPL-2.1+ public-domain BSD BSD-2"
 SLOT="0/1"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86"
 IUSE="+compat split-usr +static-libs system test"
 
 DEPEND="system? (



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

2021-06-25 Thread Sam James
commit: 383853ea9f627d2d4c3bab6fafbf9eddb1ec6b41
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:03:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:03:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=383853ea

app-misc/gnote: Keyword 40.2 arm64, #794955

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

 app-misc/gnote/gnote-40.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/gnote/gnote-40.2.ebuild b/app-misc/gnote/gnote-40.2.ebuild
index d59f76c84cd..3ad729fd57d 100644
--- a/app-misc/gnote/gnote-40.2.ebuild
+++ b/app-misc/gnote/gnote-40.2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Gnote;
 
 LICENSE="GPL-3+ FDL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="debug"
 
 # Automagic:



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

2021-06-25 Thread Sam James
commit: b23ace8b4427ff460d274923e6672c1f0e308851
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:03:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:03:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b23ace8b

media-sound/lollypop: Keyword 1.4.18 arm64, #794955

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

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

diff --git a/media-sound/lollypop/lollypop-1.4.18.ebuild 
b/media-sound/lollypop/lollypop-1.4.18.ebuild
index affb509a01e..f643b34105a 100644
--- a/media-sound/lollypop/lollypop-1.4.18.ebuild
+++ b/media-sound/lollypop/lollypop-1.4.18.ebuild
@@ -10,7 +10,7 @@ inherit python-single-r1 gnome2-utils meson xdg
 DESCRIPTION="Modern music player for GNOME"
 HOMEPAGE="https://wiki.gnome.org/Apps/Lollypop;
 SRC_URI="https://adishatz.org/${PN}/${P}.tar.xz;
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
 
 LICENSE="GPL-3"
 SLOT="0"



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

2021-06-25 Thread Sam James
commit: 60c18f1d48894d89cddb9bbb67a02adf8aa94f52
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:03:08 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:03:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60c18f1d

media-sound/gnome-sound-recorder: Keyword 40.0 arm64, #794955

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

 media-sound/gnome-sound-recorder/gnome-sound-recorder-40.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/gnome-sound-recorder/gnome-sound-recorder-40.0.ebuild 
b/media-sound/gnome-sound-recorder/gnome-sound-recorder-40.0.ebuild
index 7b4b3c46303..a16fdea8099 100644
--- a/media-sound/gnome-sound-recorder/gnome-sound-recorder-40.0.ebuild
+++ b/media-sound/gnome-sound-recorder/gnome-sound-recorder-40.0.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Design/Apps/SoundRecorder;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 
 DEPEND="
>=dev-libs/gjs-1.54.0



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-clocks/

2021-06-25 Thread Sam James
commit: 4f1ad6faa949911d437f853c0b5e6aee01636b1b
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:03:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:03:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f1ad6fa

gnome-extra/gnome-clocks: Keyword 40.0 arm64, #794955

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

 gnome-extra/gnome-clocks/gnome-clocks-40.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/gnome-clocks/gnome-clocks-40.0.ebuild 
b/gnome-extra/gnome-clocks/gnome-clocks-40.0.ebuild
index 1f6623673b4..c78773cf46e 100644
--- a/gnome-extra/gnome-clocks/gnome-clocks-40.0.ebuild
+++ b/gnome-extra/gnome-clocks/gnome-clocks-40.0.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Clocks;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 
 RDEPEND="
>=dev-libs/glib-2.58:2



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

2021-06-25 Thread Sam James
commit: 3dbeb523bfe6ee72009714399f10e67ec67b19d7
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:02:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:02:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dbeb523

dev-perl/Log-Any: Keyword 1.709.0 arm, #797652

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

 dev-perl/Log-Any/Log-Any-1.709.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Log-Any/Log-Any-1.709.0.ebuild 
b/dev-perl/Log-Any/Log-Any-1.709.0.ebuild
index e4a13a72a4a..d46ddcbae06 100644
--- a/dev-perl/Log-Any/Log-Any-1.709.0.ebuild
+++ b/dev-perl/Log-Any/Log-Any-1.709.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Bringing loggers and listeners together"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
 IUSE="minimal"
 
 # Test::Builder needed for Log/Any/Adapter/Test.pm



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

2021-06-25 Thread Sam James
commit: 054dbb0e656477333717c5ca5c81fde64f0f6120
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:02:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:02:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=054dbb0e

dev-python/natsort: Keyword 7.1.1 arm, #797475

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

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

diff --git a/dev-python/natsort/natsort-7.1.1.ebuild 
b/dev-python/natsort/natsort-7.1.1.ebuild
index 972eb899892..bda15089bcd 100644
--- a/dev-python/natsort/natsort-7.1.1.ebuild
+++ b/dev-python/natsort/natsort-7.1.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 BDEPEND="
test? (



[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/gnome-maps/

2021-06-25 Thread Sam James
commit: ea9f8dce0db4a9146355d8004acc1d669a4f851e
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:03:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:03:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea9f8dce

sci-geosciences/gnome-maps: Keyword 40.2 arm64, #794955

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

 sci-geosciences/gnome-maps/gnome-maps-40.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-geosciences/gnome-maps/gnome-maps-40.2.ebuild 
b/sci-geosciences/gnome-maps/gnome-maps-40.2.ebuild
index 831166a8d31..ef5bf1ff34b 100644
--- a/sci-geosciences/gnome-maps/gnome-maps-40.2.ebuild
+++ b/sci-geosciences/gnome-maps/gnome-maps-40.2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Maps;
 
 LICENSE="GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 
 # Pure introspection dependencies found by grepping imports.gi in ${S}
 RDEPEND="



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

2021-06-25 Thread Sam James
commit: d0ea83e790b777c6d1bec6615a18915d4f582bb0
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:03:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:03:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0ea83e7

net-misc/owncloud-client: Keyword 2.8.2.4246 arm64, #794955

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

 net-misc/owncloud-client/owncloud-client-2.8.2.4246.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/owncloud-client/owncloud-client-2.8.2.4246.ebuild 
b/net-misc/owncloud-client/owncloud-client-2.8.2.4246.ebuild
index 4afe35f947d..36e5f6e6422 100644
--- a/net-misc/owncloud-client/owncloud-client-2.8.2.4246.ebuild
+++ b/net-misc/owncloud-client/owncloud-client-2.8.2.4246.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://download.owncloud.com/desktop/${MY_PN}/stable/${PV}/source/${MY
 
 LICENSE="CC-BY-3.0 GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="doc dolphin gnome-keyring nautilus test"
 
 COMMON_DEPEND=">=dev-db/sqlite-3.4:3



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

2021-06-25 Thread Sam James
commit: 2af84efc3d62faf6f1fcdb322f8320319c894404
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:02:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:02:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2af84efc

dev-python/isort: Keyword 5.9.1 arm, #797475

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

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

diff --git a/dev-python/isort/isort-5.9.1.ebuild 
b/dev-python/isort/isort-5.9.1.ebuild
index 2a42cf59bdf..90f66b2f521 100644
--- a/dev-python/isort/isort-5.9.1.ebuild
+++ b/dev-python/isort/isort-5.9.1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 RDEPEND="
dev-python/toml[${PYTHON_USEDEP}]"



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

2021-06-25 Thread Sam James
commit: e2a3231b38120086aaebdc4ae687ca1d8c935f13
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:02:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:02:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2a3231b

dev-perl/LaTeX-Driver: Keyword 1.2.0 arm, #797652

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

 dev-perl/LaTeX-Driver/LaTeX-Driver-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/LaTeX-Driver/LaTeX-Driver-1.2.0.ebuild 
b/dev-perl/LaTeX-Driver/LaTeX-Driver-1.2.0.ebuild
index 97998e2aa88..c94f5fd9abb 100644
--- a/dev-perl/LaTeX-Driver/LaTeX-Driver-1.2.0.ebuild
+++ b/dev-perl/LaTeX-Driver/LaTeX-Driver-1.2.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="Perl encapsulation of invoking the Latex programs"
 
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
dev-perl/Capture-Tiny



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

2021-06-25 Thread Sam James
commit: d185b68750fe45ea93f5fbc6d4d52d71b343c8cf
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 26 01:02:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 26 01:02:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d185b687

app-text/qpdf: Stabilize 10.3.2 arm, #796656

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

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

diff --git a/app-text/qpdf/qpdf-10.3.2.ebuild b/app-text/qpdf/qpdf-10.3.2.ebuild
index 220747430a5..e6c1b177248 100644
--- a/app-text/qpdf/qpdf-10.3.2.ebuild
+++ b/app-text/qpdf/qpdf-10.3.2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/qpdf/${P}.tar.gz"
 LICENSE="|| ( Apache-2.0 Artistic-2 )"
 # subslot = libqpdf soname version
 SLOT="0/28"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~sparc-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~sparc-solaris"
 IUSE="doc examples ssl test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/proj/guru:dev commit in: sys-apps/dust/

2021-06-25 Thread YOSHIOKA Takuma
commit: 0375f8cac88fd7454f6ced353c745f7cbd0a46b7
Author: YOSHIOKA Takuma  hard-wi  red>
AuthorDate: Fri Jun 25 21:04:36 2021 +
Commit: YOSHIOKA Takuma  hard-wi  red>
CommitDate: Fri Jun 25 21:04:50 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0375f8ca

sys-apps/dust: version bump 0.6.0

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: YOSHIOKA Takuma  hard-wi.red>

 sys-apps/dust/Manifest  | 31 ++
 sys-apps/dust/dust-0.6.0.ebuild | 93 +
 2 files changed, 124 insertions(+)

diff --git a/sys-apps/dust/Manifest b/sys-apps/dust/Manifest
index 5329bc385..642f7f37d 100644
--- a/sys-apps/dust/Manifest
+++ b/sys-apps/dust/Manifest
@@ -1,75 +1,105 @@
 DIST aho-corasick-0.7.13.crate 111381 BLAKE2B 
08efdd762a12cbafabfb6c1c6f8b87465b337ea006d48e612c5275f796e4d62aa0a595bcda783f7a58b1e2655b9b35333033806215518f097b6671888d152e0f
 SHA512 
9bd3c12559d6bdb1ce798a62c59a202771b48125afb6e1b5be76cad13d750d9bedd7acd77d69557e34a698b17ed7da6832a7813d48ee2627f4a2abd5e04263e6
 DIST aho-corasick-0.7.15.crate 113071 BLAKE2B 
a22743be74f873b9545648db6a994250e3e39b92ac99601580e3b02194d205e921bff0b1952a4cca3399a3a7828555a1abfb0c1466f3930811c6b95c1a07ec5e
 SHA512 
e67816efa7305937a7cbbb0079b91b8afa3fdab52cfb8eeddeee156f18bbeed26f941cd4cb18ab2bdc1da5a9ff1dcbe9d2090deec68c00287bd99ace18ee8b24
+DIST aho-corasick-0.7.18.crate 112923 BLAKE2B 
4f6947d1aacf89ccfab0592cdc55fa61ef09cea38231d3f758765dbce328a810c0b588be4ba96e81d64955379ee005722d22a7aec39caea6e72342245d7ca34f
 SHA512 
7a23b16231a90d23ee60ad4c81bc225410599a4560d33d3a203138fc540c39cf1000100fed3aed40dcc371c3635656a3792545dca5dd1aefbde00d8774eebd00
 DIST ansi_term-0.11.0.crate 17087 BLAKE2B 
9bd35c045a01ce4c6c4a5db1b4f15e9412bb97426eec19d4421dffbec633de8d13452c13c1dc1b30998690b78d7ed38311aca700087f13a81f66bd1d5d7300c4
 SHA512 
a637466a380748f939b3af090b8c0333f35581925bc03f4dda9b3f95d338836403cf5487ae3af9ff68f8245a837f8ab061aabe57a126a6a2c20f2e972c77d1fa
 DIST ansi_term-0.12.1.crate 24838 BLAKE2B 
f636772c34e2d68cda7b8d3b2b86abda074585a62bd2654812ce92384244655a9197fa66e6939e19a674c0148ca605313d83de262bb18c2339a8a4eb4438a791
 SHA512 
b840e28b3e7700689a69a39659b1e066560078dd4a58326b91a028915819e7af883399ee53e920db68fd974c58d35bb1ddf8d427af5937d5f696f57c4376b671
 DIST assert_cmd-1.0.1.crate 24575 BLAKE2B 
e204b79da44a27b9c70be8dbf53356714ac994b4e5daced1b4f570c9e6c4a422572e825a54387df25292bd27e9ae11fa57d803bcfe4643382a2f739859dd42fd
 SHA512 
969e1f6ba28edc0d4d25a10390f8e94578562602d303e9a9e402f29655cb9d67edc1040b283e1bc9fb4a88a5817814d88e85b77944204288aabcfb6da69bbdbf
 DIST assert_cmd-1.0.2.crate 25037 BLAKE2B 
b7fe731a66ce7270b165e30da774420ff17f29a881e738b8b8a9ed37170edc6d0c27f1b052553c408c93b832f879742123b1585abccfde9c7e4b5830d0f327a6
 SHA512 
1d17d4ac5748a3a44ed25c8788f17bb5edcc15ce0e3f2232dfcb0c88cf735406e1048752473ae76fb033aad6d544c142c699c49e0398d2625e59b36526417f7a
+DIST assert_cmd-1.0.5.crate 26641 BLAKE2B 
9d4129cbaed044c556bb041954dfc8b0857381b46cd3513e3ce727f465e361999555d8535a5a7b2a978be179a0114c44ebff38ef66cba7a1db272e408af1ca08
 SHA512 
fc261e4411cc5113c63c2e6c12c81dd97e924eb961e5851ec84c43c76d1271c08a6c36798e1951a0ceaa54acd91a75575cefa7fbfad8123fd4652192c0ebc396
 DIST atty-0.2.14.crate 5470 BLAKE2B 
2db856a9e898a430258f059aeaf7c844a153293e8856d90ac81f7d91a888c89198768ad5cb09303c23241fe85c560a55148fa56a303651a82b0edb895616bfab
 SHA512 
d7b6c4b9a0f898d91ddbc41a5ee45bbf45d1d269508c8cc87ee3e3990500e41e0ec387afb1f3bc7db55bedac396dd86c6509f4bf9e5148d809c3802edcc5e1d9
 DIST autocfg-1.0.0.crate 12870 BLAKE2B 
79e495d53298574afd3b292da7c9c363dcb3ea434fd44258efaf3628e95ebfc731f03083f8a1060272a2a3478a6452cdc41539e2dac08465cc6e6283844bf260
 SHA512 
451fc63148792ba1952b884170e3481359b01bacca5ec0456f43ca58f8e092b8f81c9764f8b00d4104059ff608089be5858220ee868127c064cc890c767ec3a3
 DIST autocfg-1.0.1.crate 12908 BLAKE2B 
40c53cab298e4f26634c3acff3ece6a3371188d91dbf377ed664eabedcde20536edaa93daf406618f37edde019f049a6e7b9a47f627344587dbd126bee2b5e3a
 SHA512 
630b348acb98b012e97804e6325d03c89abc22f2157762c59144c04e6c733daf550bdc7f0fe0b9f3b50e15dae8c1c3c4bdfce3d805b02f0fc987311f5332419b
 DIST bitflags-1.2.1.crate 16745 BLAKE2B 
0fa6d3ce44aad7616d5cd02aad8c1d0b0fed4022650eb43067c4a72e6fc88da05442674fa51826e4858a47c9de233e1ba2229820af094197cd11bb416ceffb2b
 SHA512 
ad89b3798845e23737a620bba581c2ff1ff3e15bac12555c765e201d2c0b90ecea0cdbc5b5b1a3fa9858c385e8e041f8226f5acfae5bbbe9925643fff2bf3f0b
 DIST bstr-0.2.13.crate 345445 BLAKE2B 
9a17fa04d55e5d053b115aef2a075b58cab0fb84c574df61eec7c3ab6f06e17d156991b1c070ad357599de5455af78982eecb8632336d53792958800ecafe839
 SHA512 
f1f778262269dfea6ba1cf953a5177107c2e1e838248a67588283ee11efa81adfa30498c7cfb20422e0955544a07d2a8f86c4eefc78e9f407a92be9591e26fe5
 DIST bstr-0.2.14.crate 345490 BLAKE2B 
96095cf4d70d88cd5cb4a61bd0e72a673933c7d1d95b713bd44375e739037ae12451602fa539ebf98e73d39a6786728ad145e882117b98108d945ba96b810e83
 SHA512 

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

2021-06-25 Thread Conrad Kostecki
commit: 750c8b627f3bae9198d3b9d9c9abd857280db352
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sat Jun 26 00:44:32 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jun 26 00:44:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=750c8b62

app-benchmarks/stress-ng: drop old version

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Conrad Kostecki  gentoo.org>

 app-benchmarks/stress-ng/Manifest  |  2 -
 .../stress-ng/stress-ng-0.12.09-r1.ebuild  | 49 --
 .../stress-ng/stress-ng-0.12.10-r1.ebuild  | 42 ---
 3 files changed, 93 deletions(-)

diff --git a/app-benchmarks/stress-ng/Manifest 
b/app-benchmarks/stress-ng/Manifest
index 33b3f6227bb..ee127930741 100644
--- a/app-benchmarks/stress-ng/Manifest
+++ b/app-benchmarks/stress-ng/Manifest
@@ -1,3 +1 @@
-DIST stress-ng-0.12.09.tar.xz 545756 BLAKE2B 
72c5b1acf3f82f8d609da8b213f6321486cda9b8e05fd7390b846bea541610bab70bceb99c3684fbff732805eade7c37840d77e4ce901cc81a53ded0968bc6a1
 SHA512 
510b210a920b540c25e9f4cc0597924f72a80a85e6cd647346f7e91335e127e776bfa1bdcf0e67f557b7c154d2e6f2b2ed5abe9612b2552f53a8d21c920dc6c1
-DIST stress-ng-0.12.10.tar.xz 547912 BLAKE2B 
c4389911d4ae08c4e88347830e12d5371f527d12e1b638937ba3098ac2acb9818aaa6d13ee633325e71e33de9e80ddbc1b980fde41eaa102796e74d70ff0ac3d
 SHA512 
e41bbc9b5b7ee884b21b6a4f667e2272344c5999c1ec44f9b16887fc5afd47b3c2940869f1951c812117fe42eebe6243500bc7559b7d0156dd6cab9a74be0f79
 DIST stress-ng-0.12.11.tar.xz 550336 BLAKE2B 
01c8938b52f007a8124d57e8bab5033c54b13fe01c8bdf66d0a4e13a8acb6371d76f5939189474a41a291a34a0e20e83711430bae6e4993dcf8051bd89f503b7
 SHA512 
48fbdbab50f1da3aa22de672a3e6d03cb1776cc653916fc3f83bf67ebd419f6df876ca8248d0ea4ce34a9cc59c2e2f67f1b1e364a1ccfe0ebd1fcfe24cca0b6c

diff --git a/app-benchmarks/stress-ng/stress-ng-0.12.09-r1.ebuild 
b/app-benchmarks/stress-ng/stress-ng-0.12.09-r1.ebuild
deleted file mode 100644
index d0f6f93df40..000
--- a/app-benchmarks/stress-ng/stress-ng-0.12.09-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit optfeature toolchain-funcs
-
-DESCRIPTION="Stress test for a computer system with various selectable ways"
-HOMEPAGE="https://kernel.ubuntu.com/~cking/stress-ng/;
-SRC_URI="https://kernel.ubuntu.com/~cking/tarballs/${PN}/${P}.tar.xz;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-
-DEPEND="
-   dev-libs/libaio
-   dev-libs/libbsd
-   dev-libs/libgcrypt:0=
-   sys-apps/attr
-   sys-apps/keyutils:=
-   sys-libs/libcap
-   sys-libs/zlib
-   virtual/libcrypt:=
-"
-
-RDEPEND="${DEPEND}"
-
-DOCS=( "README" "README.Android" "TODO" "syscalls.txt" )
-
-src_prepare() {
-   default
-
-   # Don't reset build jobs to '-j0'
-   sed -e '/-f Makefile.config/s/-j//' -i Makefile || die
-}
-
-src_compile() {
-   export MAN_COMPRESS=0
-   export VERBOSE=1
-   tc-export CC
-
-   default
-}
-
-pkg_postinst() {
-   optfeature "AppArmor support" sys-libs/libapparmor
-   optfeature "SCTP support" net-misc/lksctp-tools
-}

diff --git a/app-benchmarks/stress-ng/stress-ng-0.12.10-r1.ebuild 
b/app-benchmarks/stress-ng/stress-ng-0.12.10-r1.ebuild
deleted file mode 100644
index 309cd350a1c..000
--- a/app-benchmarks/stress-ng/stress-ng-0.12.10-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit optfeature toolchain-funcs
-
-DESCRIPTION="Stress test for a computer system with various selectable ways"
-HOMEPAGE="https://kernel.ubuntu.com/~cking/stress-ng/;
-SRC_URI="https://kernel.ubuntu.com/~cking/tarballs/${PN}/${P}.tar.xz;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-
-DEPEND="
-   dev-libs/libaio
-   dev-libs/libbsd
-   dev-libs/libgcrypt:0=
-   sys-apps/attr
-   sys-apps/keyutils:=
-   sys-libs/libcap
-   sys-libs/zlib
-   virtual/libcrypt:=
-"
-
-RDEPEND="${DEPEND}"
-
-DOCS=( "README" "README.Android" "TODO" "syscalls.txt" )
-
-src_compile() {
-   export MAN_COMPRESS=0
-   export VERBOSE=1
-   tc-export CC
-
-   default
-}
-
-pkg_postinst() {
-   optfeature "AppArmor support" sys-libs/libapparmor
-   optfeature "SCTP support" net-misc/lksctp-tools
-}



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

2021-06-25 Thread Conrad Kostecki
commit: 58322511ab2bbe73d09e81c88a0b1bcc9a6ac045
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sat Jun 26 00:41:03 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jun 26 00:41:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58322511

dev-python/lcdproc: add python3_10 support

Also fixed setuptools qa warning.

Closes: https://bugs.gentoo.org/798087
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-python/lcdproc/lcdproc-0.03_p20150508.ebuild | 15 +++
 1 file changed, 11 insertions(+), 4 deletions(-)

diff --git a/dev-python/lcdproc/lcdproc-0.03_p20150508.ebuild 
b/dev-python/lcdproc/lcdproc-0.03_p20150508.ebuild
index 49c1a0cf570..91f15979c1a 100644
--- a/dev-python/lcdproc/lcdproc-0.03_p20150508.ebuild
+++ b/dev-python/lcdproc/lcdproc-0.03_p20150508.ebuild
@@ -1,16 +1,18 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 EGIT_COMMIT="973628fc326177c9deaf3f2e1a435159eb565ae0"
-PYTHON_COMPAT=( python3_{7..9} )
+MY_PV="$(ver_cut 1-2)"
+PYTHON_COMPAT=( python3_{7..10} )
 
 inherit distutils-r1
 
 DESCRIPTION="Python OOP wrapper library for LCDproc Telnet API"
 HOMEPAGE="https://github.com/jinglemansweep/lcdproc;
 SRC_URI="https://github.com/jinglemansweep/${PN}/archive/${EGIT_COMMIT}.tar.gz 
-> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
 
 LICENSE="BSD"
 SLOT="0"
@@ -18,6 +20,11 @@ KEYWORDS="amd64 x86"
 
 RDEPEND="app-misc/lcdproc"
 
-S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
-
 DOCS=( "README.textile" "examples.py" )
+
+src_prepare() {
+   default
+
+   # Fix setuptools version warning
+   sed -e "s/${MY_PV}/${MY_PV:0:(-3)}.${MY_PV:3}/" -i setup.py || die
+}



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

2021-06-25 Thread Conrad Kostecki
commit: 9eba086d308a868f0d821cace6fd6aac878c325c
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sat Jun 26 00:43:18 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jun 26 00:43:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9eba086d

app-benchmarks/stress-ng: bump to version 0.12.11

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Conrad Kostecki  gentoo.org>

 app-benchmarks/stress-ng/Manifest |  1 +
 app-benchmarks/stress-ng/stress-ng-0.12.11.ebuild | 42 +++
 2 files changed, 43 insertions(+)

diff --git a/app-benchmarks/stress-ng/Manifest 
b/app-benchmarks/stress-ng/Manifest
index 42358c3d197..33b3f6227bb 100644
--- a/app-benchmarks/stress-ng/Manifest
+++ b/app-benchmarks/stress-ng/Manifest
@@ -1,2 +1,3 @@
 DIST stress-ng-0.12.09.tar.xz 545756 BLAKE2B 
72c5b1acf3f82f8d609da8b213f6321486cda9b8e05fd7390b846bea541610bab70bceb99c3684fbff732805eade7c37840d77e4ce901cc81a53ded0968bc6a1
 SHA512 
510b210a920b540c25e9f4cc0597924f72a80a85e6cd647346f7e91335e127e776bfa1bdcf0e67f557b7c154d2e6f2b2ed5abe9612b2552f53a8d21c920dc6c1
 DIST stress-ng-0.12.10.tar.xz 547912 BLAKE2B 
c4389911d4ae08c4e88347830e12d5371f527d12e1b638937ba3098ac2acb9818aaa6d13ee633325e71e33de9e80ddbc1b980fde41eaa102796e74d70ff0ac3d
 SHA512 
e41bbc9b5b7ee884b21b6a4f667e2272344c5999c1ec44f9b16887fc5afd47b3c2940869f1951c812117fe42eebe6243500bc7559b7d0156dd6cab9a74be0f79
+DIST stress-ng-0.12.11.tar.xz 550336 BLAKE2B 
01c8938b52f007a8124d57e8bab5033c54b13fe01c8bdf66d0a4e13a8acb6371d76f5939189474a41a291a34a0e20e83711430bae6e4993dcf8051bd89f503b7
 SHA512 
48fbdbab50f1da3aa22de672a3e6d03cb1776cc653916fc3f83bf67ebd419f6df876ca8248d0ea4ce34a9cc59c2e2f67f1b1e364a1ccfe0ebd1fcfe24cca0b6c

diff --git a/app-benchmarks/stress-ng/stress-ng-0.12.11.ebuild 
b/app-benchmarks/stress-ng/stress-ng-0.12.11.ebuild
new file mode 100644
index 000..309cd350a1c
--- /dev/null
+++ b/app-benchmarks/stress-ng/stress-ng-0.12.11.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit optfeature toolchain-funcs
+
+DESCRIPTION="Stress test for a computer system with various selectable ways"
+HOMEPAGE="https://kernel.ubuntu.com/~cking/stress-ng/;
+SRC_URI="https://kernel.ubuntu.com/~cking/tarballs/${PN}/${P}.tar.xz;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+
+DEPEND="
+   dev-libs/libaio
+   dev-libs/libbsd
+   dev-libs/libgcrypt:0=
+   sys-apps/attr
+   sys-apps/keyutils:=
+   sys-libs/libcap
+   sys-libs/zlib
+   virtual/libcrypt:=
+"
+
+RDEPEND="${DEPEND}"
+
+DOCS=( "README" "README.Android" "TODO" "syscalls.txt" )
+
+src_compile() {
+   export MAN_COMPRESS=0
+   export VERBOSE=1
+   tc-export CC
+
+   default
+}
+
+pkg_postinst() {
+   optfeature "AppArmor support" sys-libs/libapparmor
+   optfeature "SCTP support" net-misc/lksctp-tools
+}



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

2021-06-25 Thread Conrad Kostecki
commit: d79cf872e666f33a4b8ff18b652b49e6331935b5
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sat Jun 26 00:08:59 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jun 26 00:10:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d79cf872

app-benchmarks/interbench: fix compilation without optimizations

Closes: https://bugs.gentoo.org/794748
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Conrad Kostecki  gentoo.org>

 app-benchmarks/interbench/interbench-0.31.ebuild | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/app-benchmarks/interbench/interbench-0.31.ebuild 
b/app-benchmarks/interbench/interbench-0.31.ebuild
index b77a5a4b118..9735d348f47 100644
--- a/app-benchmarks/interbench/interbench-0.31.ebuild
+++ b/app-benchmarks/interbench/interbench-0.31.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit toolchain-funcs
+inherit flag-o-matic toolchain-funcs
 
 DESCRIPTION="A Linux interactivity benchmark"
 HOMEPAGE="https://github.com/ckolivas/interbench/;
@@ -26,6 +26,9 @@ DOCS=(
 src_prepare() {
default
 
+   # Inline will fail, if optimizations are turned off
+   append-cflags -std=gnu89
+
tc-export CC
 }
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/python-dotenv/, dev-python/python-dotenv/files/

2021-06-25 Thread Sebastian Pipping
commit: d4beda25f7a27938194241dfaaef1ffafb12c8ce
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Fri Jun 25 23:47:25 2021 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Fri Jun 25 23:57:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4beda25

dev-python/python-dotenv: Address collision with dev-ruby/dotenv

I'm using a second entrypoint here rather than a plain rename
to not break (1) the tests and (2) access to argv[0] by python-exec.
Closes: https://bugs.gentoo.org/798648
Signed-off-by: Sebastian Pipping  gentoo.org>
Package-Manager: Portage-3.0.19, Repoman-3.0.3

 .../python-dotenv-0.18.0-second-entrypoint.patch   | 24 ++
 .../python-dotenv/python-dotenv-0.17.1.ebuild  |  1 +
 18.0.ebuild => python-dotenv-0.18.0-r1.ebuild} | 11 ++
 .../python-dotenv/python-dotenv-0.18.0.ebuild  |  1 +
 4 files changed, 37 insertions(+)

diff --git 
a/dev-python/python-dotenv/files/python-dotenv-0.18.0-second-entrypoint.patch 
b/dev-python/python-dotenv/files/python-dotenv-0.18.0-second-entrypoint.patch
new file mode 100644
index 000..9d69c8b6b00
--- /dev/null
+++ 
b/dev-python/python-dotenv/files/python-dotenv-0.18.0-second-entrypoint.patch
@@ -0,0 +1,24 @@
+From c57f0aa05145ff84b708ffd64106ae741096027e Mon Sep 17 00:00:00 2001
+From: Sebastian Pipping 
+Date: Sat, 26 Jun 2021 01:38:14 +0200
+Subject: [PATCH] setup.py: Add second entrypoint "python-dotenv"
+
+---
+ setup.py | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/setup.py b/setup.py
+index fd5785a..bb31c40 100644
+--- a/setup.py
 b/setup.py
+@@ -42,6 +42,7 @@ setup(
+ entry_points='''
+ [console_scripts]
+ dotenv=dotenv.cli:cli
++python-dotenv=dotenv.cli:cli
+ ''',
+ license='BSD-3-Clause',
+ classifiers=[
+-- 
+2.31.1
+

diff --git a/dev-python/python-dotenv/python-dotenv-0.17.1.ebuild 
b/dev-python/python-dotenv/python-dotenv-0.17.1.ebuild
index 037518dc489..eabf304977a 100644
--- a/dev-python/python-dotenv/python-dotenv-0.17.1.ebuild
+++ b/dev-python/python-dotenv/python-dotenv-0.17.1.ebuild
@@ -23,6 +23,7 @@ DEPEND="
dev-python/mock[${PYTHON_USEDEP}]
>=dev-python/sh-1.09[${PYTHON_USEDEP}]
)"
+RDEPEND="!dev-ruby/dotenv"  # bug 798648
 
 DOCS=( CHANGELOG.md README.md )
 

diff --git a/dev-python/python-dotenv/python-dotenv-0.18.0.ebuild 
b/dev-python/python-dotenv/python-dotenv-0.18.0-r1.ebuild
similarity index 74%
copy from dev-python/python-dotenv/python-dotenv-0.18.0.ebuild
copy to dev-python/python-dotenv/python-dotenv-0.18.0-r1.ebuild
index 3fd9aa665e5..aa3667814de 100644
--- a/dev-python/python-dotenv/python-dotenv-0.18.0.ebuild
+++ b/dev-python/python-dotenv/python-dotenv-0.18.0-r1.ebuild
@@ -24,4 +24,15 @@ DEPEND="
 
 DOCS=( CHANGELOG.md README.md )
 
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.18.0-second-entrypoint.patch  # bug 798648
+)
+
 distutils_enable_tests --install pytest
+
+src_install() {
+   distutils-r1_src_install
+
+   # Avoid collision with dev-ruby/dotenv (bug #798648)
+   rm "${D}"/usr/bin/dotenv || die
+}

diff --git a/dev-python/python-dotenv/python-dotenv-0.18.0.ebuild 
b/dev-python/python-dotenv/python-dotenv-0.18.0.ebuild
index 3fd9aa665e5..e412eed05fb 100644
--- a/dev-python/python-dotenv/python-dotenv-0.18.0.ebuild
+++ b/dev-python/python-dotenv/python-dotenv-0.18.0.ebuild
@@ -21,6 +21,7 @@ DEPEND="
dev-python/mock[${PYTHON_USEDEP}]
>=dev-python/sh-1.09[${PYTHON_USEDEP}]
)"
+RDEPEND="!dev-ruby/dotenv"  # bug 798648
 
 DOCS=( CHANGELOG.md README.md )
 



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2021-06-25 Thread Matt Turner
commit: 59b4d8d84905decd687b44163b8a3cad8b0aa3fb
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jun 25 23:47:42 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jun 25 23:57:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59b4d8d8

sys-fs/squashfs-tools-ng: Version bump to 1.1.2

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

 sys-fs/squashfs-tools-ng/Manifest  |  1 +
 .../squashfs-tools-ng-1.1.2.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index e4baef921d1..019dd67d05d 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,2 +1,3 @@
 DIST squashfs-tools-ng-1.1.0.tar.xz 1169556 BLAKE2B 
87222e87176a69aef39130af9e6d9b23d9e2f81e10680eb26236260ebe50dedcfbba33785d739a98a152825e535d0d166f7ce08262157341a6ef48d1d2ef33e0
 SHA512 
06b76fb8bb4295ac451bc98cbe757b272ac831c2ec146803b4813b9792486372691864fcaaa1a3cac6628608ac62cf081f1aa331c0802ea1a9858461fef33923
 DIST squashfs-tools-ng-1.1.1.tar.xz 1170232 BLAKE2B 
8224b59f70c3c02df3762024510c75a038f8d9f1853575ccfa527173a528f17bd68ae4ec1d2448563aa504f683f5d9152cb07545db6b965f36a224dc95841f17
 SHA512 
2a7aa689b49fe06ec77e9b9c3bdcf264d05a478aa08543d8e8bc22ef45f10f351b49706485ed93cbd5adc537cd066f94e70952867838ec51859e8f6ce34607f4
+DIST squashfs-tools-ng-1.1.2.tar.xz 1178028 BLAKE2B 
f54419cdb57ace39a85dfa3a691adcdb637939ef7cc0419e596fb7a7b1fe24d469d2f2104c745303159c64f0692d45562562b6acf4cce3bfa49ef7a59a892cde
 SHA512 
3f66cd9034997104e2d3281e271e8ccfbdd6ecaa98313636dcfd5251717e173ceede27b4a94342b011707fc1e96884ec733423f978697c6420915d96c153cf3e

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild
new file mode 100644
index 000..3e96fd1fdfe
--- /dev/null
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A new set of tools for working with SquashFS images"
+HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
+if [[ ${PV} = * ]]; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
+else
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
+fi
+
+LICENSE="LGPL-3+ tools? ( GPL-3+ )"
+SLOT="0"
+IUSE="lz4 lzo selinux +tools +xz zstd"
+
+DEPEND="
+   sys-libs/zlib:=
+   lz4? ( app-arch/lz4:= )
+   lzo? ( dev-libs/lzo:= )
+   xz?  ( app-arch/xz-utils:= )
+   selinux? ( sys-libs/libselinux:= )
+   zstd?( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   [[ ${PV} == "" ]] && eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --disable-static
+   $(use_with lz4)
+   $(use_with lzo)
+   $(use_with selinux)
+   $(use_with tools)
+   $(use_with xz)
+   $(use_with zstd)
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2021-06-25 Thread Matt Turner
commit: 14c3548b5dcc6a1e347a1f3e3f8eec8949e21081
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jun 25 23:56:33 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jun 25 23:57:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14c3548b

sys-fs/squashfs-tools-ng: Drop old versions

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

 sys-fs/squashfs-tools-ng/Manifest  |  1 -
 .../squashfs-tools-ng-1.1.0.ebuild | 51 --
 2 files changed, 52 deletions(-)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 019dd67d05d..7089e17eb6a 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,3 +1,2 @@
-DIST squashfs-tools-ng-1.1.0.tar.xz 1169556 BLAKE2B 
87222e87176a69aef39130af9e6d9b23d9e2f81e10680eb26236260ebe50dedcfbba33785d739a98a152825e535d0d166f7ce08262157341a6ef48d1d2ef33e0
 SHA512 
06b76fb8bb4295ac451bc98cbe757b272ac831c2ec146803b4813b9792486372691864fcaaa1a3cac6628608ac62cf081f1aa331c0802ea1a9858461fef33923
 DIST squashfs-tools-ng-1.1.1.tar.xz 1170232 BLAKE2B 
8224b59f70c3c02df3762024510c75a038f8d9f1853575ccfa527173a528f17bd68ae4ec1d2448563aa504f683f5d9152cb07545db6b965f36a224dc95841f17
 SHA512 
2a7aa689b49fe06ec77e9b9c3bdcf264d05a478aa08543d8e8bc22ef45f10f351b49706485ed93cbd5adc537cd066f94e70952867838ec51859e8f6ce34607f4
 DIST squashfs-tools-ng-1.1.2.tar.xz 1178028 BLAKE2B 
f54419cdb57ace39a85dfa3a691adcdb637939ef7cc0419e596fb7a7b1fe24d469d2f2104c745303159c64f0692d45562562b6acf4cce3bfa49ef7a59a892cde
 SHA512 
3f66cd9034997104e2d3281e271e8ccfbdd6ecaa98313636dcfd5251717e173ceede27b4a94342b011707fc1e96884ec733423f978697c6420915d96c153cf3e

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.0.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.0.ebuild
deleted file mode 100644
index 22a2dbc93b6..000
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A new set of tools for working with SquashFS images"
-HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
-if [[ ${PV} = * ]]; then
-   inherit autotools git-r3
-   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
-else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
-fi
-
-LICENSE="LGPL-3+ tools? ( GPL-3+ )"
-SLOT="0"
-IUSE="lz4 lzo selinux +tools +xz zstd"
-
-DEPEND="
-   sys-libs/zlib:=
-   lz4? ( app-arch/lz4:= )
-   lzo? ( dev-libs/lzo:= )
-   xz?  ( app-arch/xz-utils:= )
-   selinux? ( sys-libs/libselinux:= )
-   zstd?( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-   [[ ${PV} == "" ]] && eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   --disable-static
-   $(use_with lz4)
-   $(use_with lzo)
-   $(use_with selinux)
-   $(use_with tools)
-   $(use_with xz)
-   $(use_with zstd)
-   )
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name "*.la" -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: app-misc/fhem/files/, app-misc/fhem/

2021-06-25 Thread Conrad Kostecki
commit: 1e8a1dc03f0b0c0071e756c78ddab06c72be2e1f
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Fri Jun 25 23:38:13 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Fri Jun 25 23:38:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e8a1dc0

app-misc/fhem: drop old version

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Conrad Kostecki  gentoo.org>

 app-misc/fhem/fhem-6.0.ebuild| 103 ---
 app-misc/fhem/files/fhem.service |  13 -
 2 files changed, 116 deletions(-)

diff --git a/app-misc/fhem/fhem-6.0.ebuild b/app-misc/fhem/fhem-6.0.ebuild
deleted file mode 100644
index 3cdba522132..000
--- a/app-misc/fhem/fhem-6.0.ebuild
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit systemd tmpfiles
-
-DESCRIPTION="A GPL'd perl server for house automation"
-HOMEPAGE="https://www.fhem.de/;
-SRC_URI="https://www.fhem.de/${P}.tar.gz;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc"
-
-RDEPEND="
-   acct-group/fhem
-   acct-user/fhem
-   dev-perl/Crypt-CBC
-   dev-perl/Device-SerialPort
-   dev-perl/Digest-CRC
-   dev-perl/JSON
-"
-
-DEPEND="media-gfx/pngcrush"
-
-src_prepare() {
-   default
-
-   # Allow install path to be set by DESTDIR in Makefile
-   sed -i -e 's,^\(BINDIR=\),\1'\$\(DESTDIR\)',' Makefile || die
-
-   # Remove docs in Makefile, as they will be installed manually
-   sed -i -e 's/docs//g' Makefile || die
-   sed -i -e '/README_DEMO.txt/d' Makefile || die
-
-   # Remove manpage in Makefile, as it will be installed manually
-   sed -i -e '/fhem.pl.1/d' Makefile || die
-
-   # Remove lcd4linux binaries, as they are provied by app-misc/lcd4linux
-   rm -r contrib/lcd4linux || die
-
-   # Remove log dir, as it will be replaced with a symlink
-   rm -r log || die
-
-   # Fix fhemicon_darksmall.png, as it reports "broken IDAT window length"
-   # Reported to Upstream: 
https://forum.fhem.de/index.php/topic,86238.0.html
-   pngcrush -fix -force -ow www/images/default/fhemicon_darksmall.png || 
die
-
-   cp "${FILESDIR}"/fhem.cfg fhem.cfg || die
-}
-
-src_compile() {
-   :
-}
-
-src_install() {
-   local DOCS=(
-   "CHANGED"
-   "HISTORY"
-   "MAINTAINER.txt"
-   "README.SVN"
-   "README_DEMO.txt"
-   "docs"/*.txt
-   "docs"/*.patch
-   "docs"/*.pdf
-   "docs/changelog"
-   "docs/copyright"
-   "docs/dotconfig"
-   "docs/fhem.odg.readme"
-   "docs/LIESMICH.update-thirdparty"
-   "docs"/README*
-   "docs/X10"
-   )
-
-   if use doc; then
-   local DOCS+=( "docs/X10" )
-   local HTML_DOCS=( "docs/"*.eps "docs/"*.html "docs"/*.jpg 
"docs"/*.js "docs"/*.odg "docs/"*.png "docs/km271" )
-   fi
-
-   diropts -o fhem -g fhem
-   keepdir "/var/lib/fhem"
-   keepdir "/var/log/fhem"
-   diropts
-
-   dosym ../../var/lib/fhem /opt/fhem/data
-   dosym ../../var/log/fhem /opt/fhem/log
-
-   default
-
-   newinitd "${FILESDIR}"/fhem.initd fhem
-
-   systemd_dounit "${FILESDIR}"/fhem.service
-   newtmpfiles "${FILESDIR}"/fhem.tmpfiles fhem.conf
-
-   newman docs/fhem.man fhem.pl.1
-
-   echo 'CONFIG_PROTECT="/opt/fhem /var/lib/fhem"' > "${T}"/99fhem || die
-   doenvd "${T}"/99fhem
-
-   fowners fhem:fhem /opt/fhem/fhem.cfg
-}

diff --git a/app-misc/fhem/files/fhem.service b/app-misc/fhem/files/fhem.service
deleted file mode 100644
index 697a10179d4..000
--- a/app-misc/fhem/files/fhem.service
+++ /dev/null
@@ -1,13 +0,0 @@
-[Unit]
-Description=FHEM
-After=network-online.target
-
-[Service]
-Type=simple
-User=fhem
-Group=fhem
-WorkingDirectory=/opt/fhem
-ExecStart=/opt/fhem/fhem.pl /opt/fhem/fhem.cfg
-
-[Install]
-WantedBy=multi-user.target



[gentoo-commits] repo/gentoo:master commit in: app-misc/fhem/, app-misc/fhem/files/

2021-06-25 Thread Conrad Kostecki
commit: 0cb1146fd6908f526abca2d3e3211fd116175a8e
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Fri Jun 25 23:35:57 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Fri Jun 25 23:38:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cb1146f

app-misc/fhem: update systemd init script

Type must be forking.

Closes: https://bugs.gentoo.org/798318
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Conrad Kostecki  gentoo.org>

 app-misc/fhem/fhem-6.0-r1.ebuild| 103 
 app-misc/fhem/files/fhem.service-r1 |  14 +
 2 files changed, 117 insertions(+)

diff --git a/app-misc/fhem/fhem-6.0-r1.ebuild b/app-misc/fhem/fhem-6.0-r1.ebuild
new file mode 100644
index 000..9ad9768d833
--- /dev/null
+++ b/app-misc/fhem/fhem-6.0-r1.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd tmpfiles
+
+DESCRIPTION="A GPL'd perl server for house automation"
+HOMEPAGE="https://www.fhem.de/;
+SRC_URI="https://www.fhem.de/${P}.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE="doc"
+
+RDEPEND="
+   acct-group/fhem
+   acct-user/fhem
+   dev-perl/Crypt-CBC
+   dev-perl/Device-SerialPort
+   dev-perl/Digest-CRC
+   dev-perl/JSON
+"
+
+DEPEND="media-gfx/pngcrush"
+
+src_prepare() {
+   default
+
+   # Allow install path to be set by DESTDIR in Makefile
+   sed -i -e 's,^\(BINDIR=\),\1'\$\(DESTDIR\)',' Makefile || die
+
+   # Remove docs in Makefile, as they will be installed manually
+   sed -i -e 's/docs//g' Makefile || die
+   sed -i -e '/README_DEMO.txt/d' Makefile || die
+
+   # Remove manpage in Makefile, as it will be installed manually
+   sed -i -e '/fhem.pl.1/d' Makefile || die
+
+   # Remove lcd4linux binaries, as they are provied by app-misc/lcd4linux
+   rm -r contrib/lcd4linux || die
+
+   # Remove log dir, as it will be replaced with a symlink
+   rm -r log || die
+
+   # Fix fhemicon_darksmall.png, as it reports "broken IDAT window length"
+   # Reported to Upstream: 
https://forum.fhem.de/index.php/topic,86238.0.html
+   pngcrush -fix -force -ow www/images/default/fhemicon_darksmall.png || 
die
+
+   cp "${FILESDIR}"/fhem.cfg fhem.cfg || die
+}
+
+src_compile() {
+   :
+}
+
+src_install() {
+   local DOCS=(
+   "CHANGED"
+   "HISTORY"
+   "MAINTAINER.txt"
+   "README.SVN"
+   "README_DEMO.txt"
+   "docs"/*.txt
+   "docs"/*.patch
+   "docs"/*.pdf
+   "docs/changelog"
+   "docs/copyright"
+   "docs/dotconfig"
+   "docs/fhem.odg.readme"
+   "docs/LIESMICH.update-thirdparty"
+   "docs"/README*
+   "docs/X10"
+   )
+
+   if use doc; then
+   local DOCS+=( "docs/X10" )
+   local HTML_DOCS=( "docs/"*.eps "docs/"*.html "docs"/*.jpg 
"docs"/*.js "docs"/*.odg "docs/"*.png "docs/km271" )
+   fi
+
+   diropts -o fhem -g fhem
+   keepdir "/var/lib/fhem"
+   keepdir "/var/log/fhem"
+   diropts
+
+   dosym ../../var/lib/fhem /opt/fhem/data
+   dosym ../../var/log/fhem /opt/fhem/log
+
+   default
+
+   newinitd "${FILESDIR}"/fhem.initd fhem
+
+   systemd_newunit "${FILESDIR}"/fhem.service-r1 fhem.service
+   newtmpfiles "${FILESDIR}"/fhem.tmpfiles fhem.conf
+
+   newman docs/fhem.man fhem.pl.1
+
+   echo 'CONFIG_PROTECT="/opt/fhem /var/lib/fhem"' > "${T}"/99fhem || die
+   doenvd "${T}"/99fhem
+
+   fowners fhem:fhem /opt/fhem/fhem.cfg
+}

diff --git a/app-misc/fhem/files/fhem.service-r1 
b/app-misc/fhem/files/fhem.service-r1
new file mode 100644
index 000..aaf48fc88c4
--- /dev/null
+++ b/app-misc/fhem/files/fhem.service-r1
@@ -0,0 +1,14 @@
+[Unit]
+Description=FHEM Home Automation
+After=network-online.target
+
+[Service]
+Type=forking
+User=fhem
+Group=fhem
+WorkingDirectory=/opt/fhem
+ExecStart=/opt/fhem/fhem.pl /opt/fhem/fhem.cfg
+Restart=always
+
+[Install]
+WantedBy=multi-user.target



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

2021-06-25 Thread Marek Szuba
commit: accb969680c6b8fc673da52c842cb8916a8e4de1
Author: Marek Szuba  gentoo  org>
AuthorDate: Fri Jun 25 22:48:46 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Fri Jun 25 22:48:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=accb9696

dev-vcs/pre-commit: drop 2.12.1

Signed-off-by: Marek Szuba  gentoo.org>

 dev-vcs/pre-commit/Manifest |  1 -
 dev-vcs/pre-commit/pre-commit-2.12.1.ebuild | 56 -
 2 files changed, 57 deletions(-)

diff --git a/dev-vcs/pre-commit/Manifest b/dev-vcs/pre-commit/Manifest
index 6a58d3a08e1..3afd8a4ec95 100644
--- a/dev-vcs/pre-commit/Manifest
+++ b/dev-vcs/pre-commit/Manifest
@@ -1,2 +1 @@
-DIST pre-commit-2.12.1.tar.gz 246313 BLAKE2B 
45ee7c8217f88eeaa2e9eb11efd79291d6577134799b328f252bd4d4283c11754b36ffeedf045a5101c6edc8cdf330d566e404ae34f1a831a830e8e0346337e9
 SHA512 
6dbd804e1001276e6e8cea7c31b321a05798b38c59f37d5900317c3a9ceccf5103afcbdfd29f9438be3595a18ae15eb09dd222c91c439da47d7728a0e0a55c70
 DIST pre-commit-2.13.0.tar.gz 252631 BLAKE2B 
7e6b3af46dfaf9928d2cb2aa6cad05423bf6e417e2324af71b241e1aaa2eec6fcb271869f98c040cd4fb8c608a1fabd244c8286864f469a06c44684cd2bf33eb
 SHA512 
5dfc297b3f900afef8f1c355b38ce086af7c836d1e577af8ec95ffb30e82df8b866131da4ff1299bda63e4a90833c3852265d4f2d4a59bf92bce2b972a5e

diff --git a/dev-vcs/pre-commit/pre-commit-2.12.1.ebuild 
b/dev-vcs/pre-commit/pre-commit-2.12.1.ebuild
deleted file mode 100644
index 1dd37b2abb3..000
--- a/dev-vcs/pre-commit/pre-commit-2.12.1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..9} )
-DISTUTILS_SINGLE_IMPL=1
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_REQ_USE="sqlite"
-
-inherit distutils-r1
-
-DESCRIPTION="A framework for managing and maintaining multi-language Git 
pre-commit hooks"
-HOMEPAGE="https://pre-commit.com/;
-SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64"
-
-# TODO: figure out why these tests - all of which invoke git - fail:
-#  - 
tests/main_test.py::test_all_cmds[autoupdate,hook-impl,install,install-hooks,migrate-config,run,uninstall]
-# "Git failed", not much information beyond that
-#  - tests/main_test.py::test_try_repo
-# Ditto
-#  - tests/commands/install_uninstall_test.py::test_installed_from_venv
-# "git commit" returns 1 instead of 0, again no details
-RESTRICT="test"
-
-RDEPEND="dev-vcs/git
-   $(python_gen_cond_dep '
-   dev-python/cfgv[${PYTHON_USEDEP}]
-   dev-python/identify[${PYTHON_USEDEP}]
-   dev-python/nodeenv[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/toml[${PYTHON_USEDEP}]
-   >=dev-python/virtualenv-20.0.8[${PYTHON_USEDEP}]
-   ')"
-BDEPEND="test? (
-   $(python_gen_cond_dep '
-   dev-python/pytest-env[${PYTHON_USEDEP}]
-   dev-python/re-assert[${PYTHON_USEDEP}]
-   ')
-)"
-
-DOCS=( CHANGELOG.md CONTRIBUTING.md README.md )
-
-distutils_enable_tests --install pytest
-
-src_prepare() {
-   default
-
-   # These tests require a boatload of dependencies (e.g. Conda, Go, R and 
more) in order to run
-   # and while some of them do include "skip if not found" logic, most of 
them do not.
-   rm -rf tests/languages tests/repository_test.py
-}



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

2021-06-25 Thread Marek Szuba
commit: 4b98c094c94379444d77060219d6359538bbe3e2
Author: Marek Szuba  gentoo  org>
AuthorDate: Fri Jun 25 22:48:08 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Fri Jun 25 22:48:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b98c094

dev-libs/libjcat: drop 0.1.6

Signed-off-by: Marek Szuba  gentoo.org>

 dev-libs/libjcat/Manifest |  1 -
 dev-libs/libjcat/libjcat-0.1.6.ebuild | 65 ---
 2 files changed, 66 deletions(-)

diff --git a/dev-libs/libjcat/Manifest b/dev-libs/libjcat/Manifest
index 3e483a50dd6..224fb7f4f7e 100644
--- a/dev-libs/libjcat/Manifest
+++ b/dev-libs/libjcat/Manifest
@@ -1,2 +1 @@
-DIST libjcat-0.1.6.tar.gz 64485 BLAKE2B 
1b9c26655864972a5b0686eaa1b2d3835d494fd897bf0e0d08639a5b8d337c245c1265fe49d24bc52038379e4eba406660f8485a5c6350b4abab01b76a80e161
 SHA512 
89f49b4c73305ca83157bc0ae369d2793835b6d7d06ff90e55cd27491363c8ca7451dc0e4e5c1e3def9b653581e3ad1a990469b029f4557442cefd650420dc2d
 DIST libjcat-0.1.8.tar.gz 64828 BLAKE2B 
86ebc635364cd78c05694baf3d5fe7d9bf6764629f4530f5ab8a9502887884b3d5369860806a252493a7a3208367b848e470730fb8c32d4c66cc8eb92df51990
 SHA512 
058bcf7c7a3cedefcfcef9947c5f318fa806c8673b991be29f36e4fa0e09e51e972c0bebe0404fd92060715f8a497a0c0566d743bf6f3fa71bc3d94688c9

diff --git a/dev-libs/libjcat/libjcat-0.1.6.ebuild 
b/dev-libs/libjcat/libjcat-0.1.6.ebuild
deleted file mode 100644
index bada11c0c7e..000
--- a/dev-libs/libjcat/libjcat-0.1.6.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-PYTHON_REQ_USE="xml"
-
-inherit meson python-any-r1 vala xdg-utils
-
-DESCRIPTION="Library and tool for reading and writing Jcat files "
-HOMEPAGE="https://github.com/hughsie/libjcat;
-SRC_URI="https://github.com/hughsie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
-IUSE="gpg gtk-doc +introspection +man pkcs7 test vala"
-
-RDEPEND="dev-libs/glib:2
-   dev-libs/json-glib:=
-   gpg? (
-   app-crypt/gpgme
-   dev-libs/libgpg-error
-   )
-   introspection? ( dev-libs/gobject-introspection:= )
-   pkcs7? ( net-libs/gnutls )
-   vala? ( dev-lang/vala:= )"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig
-   $(python_gen_any_dep '
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   ')
-   gtk-doc? ( dev-util/gtk-doc )
-   man? ( sys-apps/help2man )
-   test? ( net-libs/gnutls[tools] )"
-
-RESTRICT="!test? ( test )"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-0.1.1-disable_installed_tests.patch
-)
-
-python_check_deps() {
-   has_version -b "dev-python/setuptools[${PYTHON_USEDEP}]"
-}
-
-src_prepare() {
-   xdg_environment_reset
-   use vala && vala_src_prepare
-   default
-}
-
-src_configure() {
-   local emesonargs=(
-   $(meson_use gtk-doc gtkdoc)
-   $(meson_use gpg)
-   $(meson_use introspection)
-   $(meson_use man)
-   $(meson_use pkcs7)
-   $(meson_use test tests)
-   $(meson_use vala vapi)
-   )
-   meson_src_configure
-}



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

2021-06-25 Thread Georgy Yakovlev
commit: 8729855922665bffba25dc0879d50d6e2f5b90fd
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Jun 25 22:32:23 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Jun 25 22:32:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87298559

profiles/arch/powerpc/ppc64: stable-mask tgt[rbd]

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

 profiles/arch/powerpc/ppc64/package.use.stable.mask | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/profiles/arch/powerpc/ppc64/package.use.stable.mask 
b/profiles/arch/powerpc/ppc64/package.use.stable.mask
index 68be6addb8d..ad8e800ab26 100644
--- a/profiles/arch/powerpc/ppc64/package.use.stable.mask
+++ b/profiles/arch/powerpc/ppc64/package.use.stable.mask
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # When you add an entry to the top of this file, add your name, the date, and
@@ -17,6 +17,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Georgy Yakovlev https://bugs.gentoo.org/798744
+sys-block/tgt rbd
+
 # Sam James  (2021-02-06)
 # Drags in too much unstable GNOME for now
 # bug #727572



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

2021-06-25 Thread Michał Górny
commit: 4b83a4fd78270b6659debf3006d8bfccd49cee1a
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 25 22:27:18 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 25 22:27:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b83a4fd

dev-python/croniter: Bump to 1.0.15

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

 dev-python/croniter/Manifest   |  1 +
 dev-python/croniter/croniter-1.0.15.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/dev-python/croniter/Manifest b/dev-python/croniter/Manifest
index ad52ccf8714..85d9a23e541 100644
--- a/dev-python/croniter/Manifest
+++ b/dev-python/croniter/Manifest
@@ -1,2 +1,3 @@
 DIST croniter-1.0.12.tar.gz 38763 BLAKE2B 
28bb662b05d893c782807687261b3bdafa0b1412d98dc8ceebcc0d9fff941f58b22a3abf9462c0f601bbe8701460350dad70d1239aa4f28978444698836b87b2
 SHA512 
ff5e35ddb0a6080ff95155de2ac5942fa1cab827a4cbb6e639553f8646b89063d0292b7fd69bc38fca90429da0272f3efeeefe0cbde0d83b9915ecb078340f08
 DIST croniter-1.0.13.tar.gz 38907 BLAKE2B 
436bb766c39ad61343913e354d0838458e56048115ed5d15ef95b0dc0c22b38fb4e7ec3fe6162856d208d45268fd360c8b18698b7c61bb0f70636b79a6a84988
 SHA512 
721749a268734e06776ab968a1fb01926f416e1a42678ee28dcac9b4655a92b5cb17984a9b9d886f8d963484f1af7382b17e72fd3998e3e1e8101fa5038a4fa1
+DIST croniter-1.0.15.tar.gz 39164 BLAKE2B 
daf40bcc7c791dd2a65d2cd132c380dff03353ab6d7920adddff2b1b6a87166050be6ed2b7bac5eb2b9543dcab9a4f2f65738506dc35eff0836cc591e486f885
 SHA512 
5aebc8a60d278acae3cef7eee6ee0ec223e44ae01b69dae601f76cb14f135547557b1417498d71a84e187dd478605efdf15355f8ad0344e459b6b40d41e994af

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



[gentoo-commits] repo/gentoo:master commit in: dev-python/ruamel-yaml-clib/

2021-06-25 Thread Michał Górny
commit: 483fba4772db63ee48ab6ef73b970bf21371
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 25 22:26:03 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 25 22:26:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=483fba47

dev-python/ruamel-yaml-clib: Bump to 0.2.4

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

 dev-python/ruamel-yaml-clib/Manifest   |  1 +
 .../ruamel-yaml-clib/ruamel-yaml-clib-0.2.4.ebuild | 23 ++
 2 files changed, 24 insertions(+)

diff --git a/dev-python/ruamel-yaml-clib/Manifest 
b/dev-python/ruamel-yaml-clib/Manifest
index 2c0952b8a2e..d79b66fdb8b 100644
--- a/dev-python/ruamel-yaml-clib/Manifest
+++ b/dev-python/ruamel-yaml-clib/Manifest
@@ -1 +1,2 @@
 DIST ruamel.yaml.clib-0.2.2.tar.gz 179914 BLAKE2B 
90fe272c3c4f8943e944d43dcf1f61367600bd3b1fb296d7434b27183433267a510b6e41cfd50fac8e17bebcfaa51d7d1ca89d4d23da0b1107c468cafa65ac3f
 SHA512 
5bbab2a23c65b1416480758cf0d0a75dcf8ddece0f8df603ce90f2b1c54356bb6876ac113d53e01c4869e3c9fb22b13ea29e66dc31a09144d4426c3e0f3b9399
+DIST ruamel.yaml.clib-0.2.4.tar.gz 180667 BLAKE2B 
01341ac42ecea437faebbc9b30ebe2bdb9a6e5b15144b808c3065f3a003f12ce99c4b97d4b5056235a78295ed7a3237a325c8dd2cac036da3ac54c8aef2d7949
 SHA512 
f9d986175c241db4417a1d71e47a6eeff6f059ff204ea25a5b4ed365f732ae6872000c53f0ad1336d3ce80383e056df42f2ad9a6a05b92932332289c5129abf6

diff --git a/dev-python/ruamel-yaml-clib/ruamel-yaml-clib-0.2.4.ebuild 
b/dev-python/ruamel-yaml-clib/ruamel-yaml-clib-0.2.4.ebuild
new file mode 100644
index 000..dd1483ec93f
--- /dev/null
+++ b/dev-python/ruamel-yaml-clib/ruamel-yaml-clib-0.2.4.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+inherit distutils-r1
+
+MY_PN="${PN//-/.}"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="C-based reader/scanner and emitter for dev-python/ruamel-yaml"
+HOMEPAGE="https://pypi.org/project/ruamel.yaml.clib/ 
https://sourceforge.net/p/ruamel-yaml-clib/;
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+python_install() {
+   distutils-r1_python_install --single-version-externally-managed
+}



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

2021-06-25 Thread Michał Górny
commit: 4cd5c3d52b487c3d7e6263a33b7a8ebc30dcc9a0
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 25 22:17:19 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 25 22:19:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cd5c3d5

dev-python/jupyter_packaging: Bump to 0.10.3

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

 dev-python/jupyter_packaging/Manifest  |  1 +
 .../jupyter_packaging-0.10.3.ebuild| 47 ++
 2 files changed, 48 insertions(+)

diff --git a/dev-python/jupyter_packaging/Manifest 
b/dev-python/jupyter_packaging/Manifest
index 70d35997c06..fabc64785c4 100644
--- a/dev-python/jupyter_packaging/Manifest
+++ b/dev-python/jupyter_packaging/Manifest
@@ -1 +1,2 @@
 DIST jupyter_packaging-0.10.2.tar.gz 21735 BLAKE2B 
92de31e6835a2228f85b008b0fa3b3b8b5ebd175399fa82ee79d328f97b50c09a86dbc325e0378a7f946de34522d4af12fa5997507895ff6d85e77d4e7d38e3c
 SHA512 
c1f5562b8fd72d64998d32d1a85dd1af2b730fa7e4a0d9e2036ea4d5a607ce02b1e9c641f01997ea3b0d6e047fa797009ce3c2ca52ef866ec9c7492ef836e679
+DIST jupyter_packaging-0.10.3.tar.gz 21530 BLAKE2B 
43392f938d40e859e79f42b7942a199f808218c1da697c48a8ae0b1c5a4e8a408f983196e9d148edbf17d1725186216ed79446bd42fe8f18baaf8fc9f66efe1c
 SHA512 
7634a056d506328af6e963ac7a8d6ac5fdb5d5303a31495af2275a7feca3732b60aeebb332cdc009ab690aa4185f5b3687ae002300b4885620cb9f2da6d2c79e

diff --git a/dev-python/jupyter_packaging/jupyter_packaging-0.10.3.ebuild 
b/dev-python/jupyter_packaging/jupyter_packaging-0.10.3.ebuild
new file mode 100644
index 000..109b4c393ad
--- /dev/null
+++ b/dev-python/jupyter_packaging/jupyter_packaging-0.10.3.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Tools to help build and install Jupyter Python packages"
+HOMEPAGE="https://jupyter.org;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-python/packaging[${PYTHON_USEDEP}]
+   dev-python/tomlkit[${PYTHON_USEDEP}]
+   dev-python/wheel[${PYTHON_USEDEP}]
+   dev-python/deprecation[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local deselect=(
+   # TODO: package "build"
+   tests/test_build_api.py::test_build_package
+   tests/test_build_api.py::test_deprecated_metadata
+
+   # broken by Gentoo pip patch
+   # TODO: retry when we finally make the patch less intrusive
+   tests/test_datafiles_install.py
+   tests/test_install.py
+   )
+
+   distutils_install_for_testing --via-venv
+   epytest ${deselect[@]/#/--deselect }
+}



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

2021-06-25 Thread Michał Górny
commit: 388325a60ec71df321579332f388a8d43a79eb22
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 25 22:01:00 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 25 22:19:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=388325a6

dev-python/urllib3: Bump to 1.26.6

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

 dev-python/urllib3/Manifest  |  1 +
 dev-python/urllib3/urllib3-1.26.6.ebuild | 65 
 2 files changed, 66 insertions(+)

diff --git a/dev-python/urllib3/Manifest b/dev-python/urllib3/Manifest
index 1db813682e5..5e3859c6a5d 100644
--- a/dev-python/urllib3/Manifest
+++ b/dev-python/urllib3/Manifest
@@ -1,2 +1,3 @@
 DIST urllib3-1.26.4.tar.gz 293008 BLAKE2B 
6ca88861baa87814d3856cd0f1fa0a6cb9e11ee745c782b598c4f5fe74b195ba47e8430b993ed8a5fb269153d700e4a803cd2ebc177e20e3186b3b26612262c7
 SHA512 
daf2ba432f2e4edaa6aa8c6bdaaea21fcb77cc5fdfd991f89b1f753b4f9901faab04120841e9fa8d93e2bd3d72cbdb647f1492d882266b4e0281c725e8d55a7a
 DIST urllib3-1.26.5.tar.gz 292865 BLAKE2B 
0b22a485635f70f198c022c13d03af2b1a9b6907276e3bc3acaa2242e1c632447762f86e9588e735462e6479ff93a172f458691ea9bf28ceaebd5e1cfbc55501
 SHA512 
4a1899b223b00894d49f6dff5fc95d410e5b0ab28c11f7e3cd82d03e50438b0c5b0adf693a33fd80f1586312dc0012836713998674da15531bf82d52645881f6
+DIST urllib3-1.26.6.tar.gz 289927 BLAKE2B 
197b0df759b27fc4906c565426e9c7b533fad56f10695ab5ae6c6c4d05d5c889dba906be526d8b8f41405f29696046b7db6e2cbb2fa16843af80e072138cc35f
 SHA512 
19eb4b88b7a575db717db420ff79b304769d9a6d2b576a236d69719101c4d52d6b0079bd049c885e630f0dfd60471f8bb33836847e0569652cddece910ec2979

diff --git a/dev-python/urllib3/urllib3-1.26.6.ebuild 
b/dev-python/urllib3/urllib3-1.26.6.ebuild
new file mode 100644
index 000..b68c311d939
--- /dev/null
+++ b/dev-python/urllib3/urllib3-1.26.6.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+PYTHON_REQ_USE="ssl(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="HTTP library with thread-safe connection pooling, file post, and 
more"
+HOMEPAGE="https://github.com/urllib3/urllib3;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="brotli test"
+RESTRICT="!test? ( test )"
+
+# dev-python/{pyopenssl,cryptography,idna,certifi} are optional runtime
+# dependencies. Do not add them to RDEPEND. They should be unnecessary with
+# modern versions of python (>= 3.2).
+RDEPEND="
+   >=dev-python/PySocks-1.5.8[${PYTHON_USEDEP}]
+   =dev-python/trustme-0.5.3[\${PYTHON_USEDEP}]
+   >=www-servers/tornado-4.2.1[\${PYTHON_USEDEP}]
+   " python3_{6..10})
+   )
+"
+
+python_prepare_all() {
+   # tests failing if 'localhost.' cannot be resolved
+   sed -e 's:test_dotted_fqdn:_&:' \
+   -i test/with_dummyserver/test_https.py || die
+   sed -e 's:test_request_host_header_ignores_fqdn_dot:_&:' \
+   -i test/with_dummyserver/test_socketlevel.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   local -x CI=1
+   # FIXME: get tornado ported
+   # please keep in sync with BDEPEND!
+   has "${EPYTHON}" python3.{6..10} || continue
+
+   local deselect=(
+   # TODO?
+   
test/with_dummyserver/test_socketlevel.py::TestSocketClosing::test_timeout_errors_cause_retries
+   )
+
+   epytest ${deselect[@]/#/--deselect }
+}



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

2021-06-25 Thread Michał Górny
commit: a0889d51825492d9b95c27969c8c86216cf5fc20
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 25 21:59:27 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 25 22:19:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0889d51

dev-python/phonenumbers: Bump to 8.12.26

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

 dev-python/phonenumbers/Manifest|  1 +
 dev-python/phonenumbers/phonenumbers-8.12.26.ebuild | 20 
 2 files changed, 21 insertions(+)

diff --git a/dev-python/phonenumbers/Manifest b/dev-python/phonenumbers/Manifest
index 26362e49fa9..77f62d82234 100644
--- a/dev-python/phonenumbers/Manifest
+++ b/dev-python/phonenumbers/Manifest
@@ -1,2 +1,3 @@
 DIST phonenumbers-8.12.24.tar.gz 2257982 BLAKE2B 
b7fa2a29c1c9a4a1029013d7de3eed9998c764a12b41a9db2db8d4c9c2fcef1bff00167809f9cdffd484ba1c9d22ef244d45e7c21bb61899a37fc4d3cbb0b6d5
 SHA512 
1145c527e349436ecc8eaae5bf2dc2e10d25eab73d2ab3b566d7aaddc2cfcd9ae1ada4e3b9876f133f42f7ce023c74a91e48619df69d817f74964e429ebc20a8
 DIST phonenumbers-8.12.25.tar.gz 2257994 BLAKE2B 
4bcd5e21819c1f42281fc684c97d41824a0dca1fc296b1968094e3a88ff235823d76cdd3b31da68bec677aea15021689ea40906b2c50363b58029a05fcdf
 SHA512 
24e6f1fb903d07214eed80eefd8f67e73dd4d66f0bb66308867453d05ea1b6272a8338e11bdb45395a37eb2ce8d6c3b80d90491763f843b3da4c131b43f5db73
+DIST phonenumbers-8.12.26.tar.gz 2257950 BLAKE2B 
67d146b4c82691d2d4c481dd52ae23c8ec075af0b20e64947bc203aad538e5f45f63b0827458b8504679a8f5b84782793c3c11636b344c8cb4d21b418a7444b3
 SHA512 
12d5daaa9f82b0646bf22ece9d617971b21bfa5ac3a9731a2917bc33e6f790a7ff1423f49da14895a8de3004babf3a83b490397b0b7551c144f4f14776d1ab62

diff --git a/dev-python/phonenumbers/phonenumbers-8.12.26.ebuild 
b/dev-python/phonenumbers/phonenumbers-8.12.26.ebuild
new file mode 100644
index 000..0a99481a97f
--- /dev/null
+++ b/dev-python/phonenumbers/phonenumbers-8.12.26.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python port of Google's libphonenumber"
+HOMEPAGE="https://github.com/daviddrysdale/python-phonenumbers;
+SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DOCS=(README.md)
+
+distutils_enable_tests setup.py



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

2021-06-25 Thread Michał Górny
commit: a5c1ef4cdc4ff8b5a494e28571d8650368d5c30f
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 25 21:56:31 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 25 22:19:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5c1ef4c

dev-python/ipython: Bump to 7.25.0

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

 dev-python/ipython/Manifest  |   1 +
 dev-python/ipython/ipython-7.25.0.ebuild | 139 +++
 2 files changed, 140 insertions(+)

diff --git a/dev-python/ipython/Manifest b/dev-python/ipython/Manifest
index 5a86f52a033..6be207cb4a6 100644
--- a/dev-python/ipython/Manifest
+++ b/dev-python/ipython/Manifest
@@ -1,3 +1,4 @@
 DIST ipython-7.22.0.tar.gz 5143229 BLAKE2B 
be78fc7089d620cb9ad437ed8154b37ac8c7cd68ca18a2569cfcf7ea9af968c5818c8d18a1f26459ccef73e59083ac27055c19e4df254836e484ce0a9908
 SHA512 
2647dcd5e0d9b6afc8d990d2c099ad7ed581b5eff6d657630929e0d0d9f8965e7c7924c51a10a797e7d7406212d7a06c941c163e6f6046aa62130049a9bbc0d0
 DIST ipython-7.23.1.tar.gz 5188898 BLAKE2B 
9713b0f1f75e283e53ba19044c9919f0c4d0b1c120e63d7a79ab9c6b8783499ed115e86a24cab34fc13c46245fb43865b851e6f98a2ee729ee35c3db242fa2ba
 SHA512 
9b35626a8a07c6bd0b93552341e5a61d3d90a60c72ad6e3fc71266d9509134366c46a7ae8aeca9c3acc7509dfeab47b5144f105cb3d1d05ef1c7acca6c2f365d
 DIST ipython-7.24.1.tar.gz 5146561 BLAKE2B 
ae63d024f488f44dbd61eb9f3e14ac5b8ad801b1db195632c184c6106d4c2e6d6143c1524ae6fc5a2f6f631683b73f241c9115c439c0f97a4fe540cc232fb181
 SHA512 
0ea8843a1f2e7f9357ff9896f2b6da058adb5fcbbad5c3b1fc4138a085eb57034c62c0b50d82dea0e563523649ec112edd4ef0c267a914f6a7d33b44be30b977
+DIST ipython-7.25.0.tar.gz 5147224 BLAKE2B 
0a2ae7cd315ba1abde18cdfcb7ed5227e5fc43b9a053f82e7db0146cbec66b0c2a1585158e60c37559523b457ab339ad42ab8fb3fccfc9e5ea7b880593de2e73
 SHA512 
726d3577bfb05d0c01c55d7111f8ee03fa879427de0750ee25b0a6451365728b5fb8ccf79c42585268f768680b13f628956d292f27b9e622e5dee0b4d368d22b

diff --git a/dev-python/ipython/ipython-7.25.0.ebuild 
b/dev-python/ipython/ipython-7.25.0.ebuild
new file mode 100644
index 000..5297ddabde6
--- /dev/null
+++ b/dev-python/ipython/ipython-7.25.0.ebuild
@@ -0,0 +1,139 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=no
+PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_REQ_USE='readline,sqlite,threads(+)'
+
+inherit distutils-r1 optfeature virtualx
+
+DESCRIPTION="Advanced interactive shell for Python"
+HOMEPAGE="https://ipython.org/ https://github.com/ipython/ipython/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~sparc ~x86"
+IUSE="doc examples matplotlib notebook nbconvert qt5 +smp test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-python/backcall[${PYTHON_USEDEP}]
+   dev-python/decorator[${PYTHON_USEDEP}]
+   >=dev-python/jedi-0.16[${PYTHON_USEDEP}]
+   >=dev-python/pexpect-4.3[${PYTHON_USEDEP}]
+   dev-python/pickleshare[${PYTHON_USEDEP}]
+   >=dev-python/prompt_toolkit-2[${PYTHON_USEDEP}]
+   https://github.com/ipython/ipython/issues/12892
+   mv IPython/extensions/{,ipython_}tests || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+   if use doc; then
+   emake -C docs html_noapi
+   HTML_DOCS=( docs/build/html/. )
+   fi
+}
+
+src_test() {
+   virtx distutils-r1_src_test
+}
+
+python_install() {
+   distutils-r1_python_install
+
+   # Create ipythonX.Y symlinks.
+   # TODO:
+   # 1. do we want them for pypy? No.  pypy has no numpy
+   # 2. handle it in the eclass instead (use _python_ln_rel).
+   # With pypy not an option the dosym becomes unconditional
+   dosym ../lib/python-exec/${EPYTHON}/ipython \
+   /usr/bin/ipython${EPYTHON#python}
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   if use examples; then
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+}
+
+pkg_postinst() {
+   optfeature "sympyprinting" dev-python/sympy
+   optfeature "cythonmagic" dev-python/cython
+   optfeature "%lprun magic command" dev-python/line_profiler
+   optfeature "%mprun magic command" dev-python/memory_profiler
+
+   if use nbconvert; then
+   if ! has_version app-text/pandoc ; then
+   einfo "Node.js will be used to convert notebooks to 
other formats"
+   einfo "like HTML. Support for that is still 
experimental. If you"
+   einfo "encounter any problems, please use 
app-text/pandoc instead."
+   fi
+   fi
+}



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

2021-06-25 Thread Georgy Yakovlev
commit: 26ddca35b7fec3ac57a45e7aec3100e6677a4b7d
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Jun 25 22:15:24 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Jun 25 22:16:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26ddca35

sys-block/tgt: keyword 1.0.80 for ~ppc64

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

 sys-block/tgt/tgt-1.0.80.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/tgt/tgt-1.0.80.ebuild b/sys-block/tgt/tgt-1.0.80.ebuild
index 56d41db46e3..e47edef49c7 100644
--- a/sys-block/tgt/tgt-1.0.80.ebuild
+++ b/sys-block/tgt/tgt-1.0.80.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/fujita/tgt/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
 IUSE="fcoe fcp ibmvio infiniband rbd"
 
 DEPEND="



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

2021-06-25 Thread Michał Górny
commit: 7c6a8152a75639cad0ab187a04bed54520d7ce17
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 25 21:32:07 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 25 21:45:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c6a8152

dev-python/pyclipper: Bump to 1.3.0

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

 dev-python/pyclipper/Manifest   |  1 +
 dev-python/pyclipper/pyclipper-1.3.0.ebuild | 30 +
 2 files changed, 31 insertions(+)

diff --git a/dev-python/pyclipper/Manifest b/dev-python/pyclipper/Manifest
index 1e643e5e02e..e1094370854 100644
--- a/dev-python/pyclipper/Manifest
+++ b/dev-python/pyclipper/Manifest
@@ -1 +1,2 @@
 DIST pyclipper-1.2.1.tar.gz 51862 BLAKE2B 
be59011d44ba4364e3e0d1d789c10f76635a5bc690dad8030104fa7965cc118e3529bf6505e5c4e743a8ff21e0d24129be716cd91e09b7521baa64359de364ab
 SHA512 
0fc411bd8fa33fc3e5a71ec149b720b5c2f2e9a5e704d5e175b5930e0e073bacfd26b68e19c00802ab68e7a8946bdfcacae858e2d6d81b87d85b3747fa4a316b
+DIST pyclipper-1.3.0.tar.gz 51405 BLAKE2B 
a7a3e81452c8178d907528b7595fb92521dfb039a6ea116d7f189639ea2975d8058ac1f685a211c98be921c41a694d89f7f431264dfe366e3acc842b25d670f4
 SHA512 
bee6c5f835e84baa65cbca1d812219bd94272010bbeed365b3835ef3d191042129fdcccdd85ce7841f60f46cbfd52edd270d108ff81d64b0ca712c1369394d40

diff --git a/dev-python/pyclipper/pyclipper-1.3.0.ebuild 
b/dev-python/pyclipper/pyclipper-1.3.0.ebuild
new file mode 100644
index 000..3bbd1db8a19
--- /dev/null
+++ b/dev-python/pyclipper/pyclipper-1.3.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Cython wrapper for the C++ translation of the Angus Johnson's 
Clipper library"
+HOMEPAGE="https://github.com/fonttools/pyclipper;
+SRC_URI="https://github.com/fonttools/pyclipper/archive/${PV/_p/.post}.tar.gz 
-> ${P}.tar.gz"
+S="${WORKDIR}/${P/_p/.post}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+IUSE=""
+
+BDEPEND="
+   dev-python/cython[${PYTHON_USEDEP}]
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   sed -i -e 's:from unittest2:from unittest:' tests/test_pyclipper.py || 
die
+   distutils-r1_src_prepare
+   export SETUPTOOLS_SCM_PRETEND_VERSION="${PV/_p/.post}"
+}



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

2021-06-25 Thread Michał Górny
commit: c301403eb872f5ef3e47a9a505440459f53fb9ff
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 25 21:24:29 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 25 21:45:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c301403e

app-admin/awscli: Bump to 1.19.101

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

 app-admin/awscli/Manifest   |  1 +
 app-admin/awscli/awscli-1.19.101.ebuild | 58 +
 2 files changed, 59 insertions(+)

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index f95d21cbf10..fad8ebc00b1 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -1,4 +1,5 @@
 DIST awscli-1.19.100.tar.gz 2022522 BLAKE2B 
0af348e5e01cc9f3ab421ebdb0bcfe7578bd7578355130951d58ec5b842499527a175c1cb7fae2381f35faab47e7183315c020fcc1d87c29658d45a84c2178f0
 SHA512 
10a7edf826982e0f1978fe5bb3bb83c1960c1baa353c94533da8877bfb35b022b8a7aae307db9cf526dbc3a80a5f88d16d4f864d3c858d28114afa73e518fcec
+DIST awscli-1.19.101.tar.gz 2022752 BLAKE2B 
7565ab5185dd08d02d1f626bdeac2fee1576f0afbe796f5f522d72e4705177e631e0606d49ccbb3f0cfa9fc2b6345c7c5d77eb1689249c7bf78d377839d6d972
 SHA512 
09821c79dc2fe4d3d0792fe2f2b2c4963d51e31efdd2b70182438373eb811458c1a1e564e94172f50b2b448ee6a4a74e046590ed5907778356d432f84e87ad4b
 DIST awscli-1.19.47.tar.gz 1990843 BLAKE2B 
c894aaf84d5fe7cb8998fcd682783a1f2e75dd9273a2aa22babe4d57175a1716aefccda50edb96a1203f010dbb2af29cd47d43b5d5f94adfdee1730ab98345af
 SHA512 
7d51022e13609f5f5ab3155e3ac09670c7e49508d67eca8cb477e556e4b06b7643e86bdfe5fa8db59360f6d73e5774b433cb7093c25d6b688f98847b502872b7
 DIST awscli-1.19.78.tar.gz 2006020 BLAKE2B 
6def90848e033413136865b0176c8d435fb70465f700a82673e9b20378be3792c8e3e59715466a93199358d698c9b58daaa88d6c2e921474460fdef0a214fdba
 SHA512 
ff48f06158d401bf27e2f63c86ade91009dd9a48edf20156d3511ec2685a2dc93e8129a766eb0cc979e81121804dff9f18524e72f8ac1cffc43c4d3ed3595c83
 DIST awscli-1.19.79.tar.gz 2006413 BLAKE2B 
40b806b7987dcbb83f0d5f7411dd36c5acfddf3927bff00d396724ed178dd114b91a6852fce9f1f1dea44644c3be26c2d1b63f114b5a9eb9b1832cc2f7e5c69e
 SHA512 
1255b2439ba5061987af7f7b418e564c8bccd6d837614405512628a259c2f89acee3a41386b2507c596d9f52b432fa34c615d06ad15787a131bd06397a3b2aab

diff --git a/app-admin/awscli/awscli-1.19.101.ebuild 
b/app-admin/awscli/awscli-1.19.101.ebuild
new file mode 100644
index 000..ff429f8d3a3
--- /dev/null
+++ b/app-admin/awscli/awscli-1.19.101.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit bash-completion-r1 distutils-r1
+
+DESCRIPTION="Universal Command Line Environment for AWS"
+HOMEPAGE="https://pypi.org/project/awscli/;
+#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+SRC_URI="https://github.com/aws/aws-cli/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/aws-cli-${PV}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+# botocore is x.(y+1).z
+BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 1)).$(ver_cut 3-)"
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   dev-python/colorama[${PYTHON_USEDEP}]
+   dev-python/docutils[${PYTHON_USEDEP}]
+   dev-python/rsa[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.4.0[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests --install nose
+
+PATCHES=(
+   "${FILESDIR}"/awscli-1.19.47-py39.patch
+)
+
+python_test() {
+   distutils_install_for_testing
+   # integration tests require AWS credentials and Internet access
+   nosetests -v tests/{functional,unit} ||
+   die "Tests failed for ${EPYTHON}"
+}
+
+python_install_all() {
+   newbashcomp bin/aws_bash_completer aws
+
+   insinto /usr/share/zsh/site-functions
+   newins bin/aws_zsh_completer.sh _aws
+
+   distutils-r1_python_install_all
+
+   rm "${ED}"/usr/bin/{aws.cmd,aws_bash_completer,aws_zsh_completer.sh} || 
die
+}



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

2021-06-25 Thread Michał Górny
commit: 6d86ac9db22ac8ae3f7ea79602c0d086bb995b50
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 25 21:41:52 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 25 21:45:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d86ac9d

dev-python/cachelib: Add python@ as co-maint.

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

 dev-python/cachelib/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/cachelib/metadata.xml b/dev-python/cachelib/metadata.xml
index 0b1c2d9da60..d53e2426cf3 100644
--- a/dev-python/cachelib/metadata.xml
+++ b/dev-python/cachelib/metadata.xml
@@ -4,6 +4,10 @@

kensing...@gentoo.org

+   
+   pyt...@gentoo.org
+   Python
+   


cachelib



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

2021-06-25 Thread Michał Górny
commit: 73949be2e415bc8ea339f5813a68379b8bd9f4e3
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 25 21:41:37 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 25 21:45:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73949be2

dev-python/cachelib: Bump to 0.2.0

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

 dev-python/cachelib/Manifest  |  1 +
 dev-python/cachelib/cachelib-0.2.0.ebuild | 28 
 2 files changed, 29 insertions(+)

diff --git a/dev-python/cachelib/Manifest b/dev-python/cachelib/Manifest
index c95aaa1f639..23172b94e34 100644
--- a/dev-python/cachelib/Manifest
+++ b/dev-python/cachelib/Manifest
@@ -1 +1,2 @@
 DIST cachelib-0.1.1.tar.gz 10192 BLAKE2B 
ce1ac03498e331c0df405e99b26f24cf38f21243c60d90ca3b0fab599abce5ac8c59ba8c566216d761fea170d64934c63fd74f9733c50aa3ebe382c54b80bcfa
 SHA512 
865dba727427907227b021ecc5962738c85fb74f898acfe1612e48247ada9eda3eddb72c3c29c700fe4275ed699accc5af9526afbaf0dfbfb3a1a1a6370cc3d6
+DIST cachelib-0.2.0.tar.gz 17735 BLAKE2B 
737c5083b719b6330df4eab3e256fa64b9bd2292d46a1c0b82c72c6f69f4f2fae6623fd4bc167533101e0ff01b5273a1042f5c1bdf35080a5241358de642cba3
 SHA512 
4011d9ead4fe27a54508355eba46e91a924ce30ef3d7cdc5a2049f7e0e48f924b64d65f203aebcf9a8729f956b6edde4160cdb7edfa7e63293e2853b94bd6601

diff --git a/dev-python/cachelib/cachelib-0.2.0.ebuild 
b/dev-python/cachelib/cachelib-0.2.0.ebuild
new file mode 100644
index 000..8f80ff98d46
--- /dev/null
+++ b/dev-python/cachelib/cachelib-0.2.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Collection of cache libraries in the same API interface. 
Extracted from werkzeug"
+HOMEPAGE="https://pypi.org/project/cachelib/ 
https://github.com/pallets/cachelib;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+
+BDEPEND="
+   test? (
+   dev-db/redis
+   dev-python/pylibmc[${PYTHON_USEDEP}]
+   dev-python/pytest-xprocess[${PYTHON_USEDEP}]
+   dev-python/redis-py[${PYTHON_USEDEP}]
+   net-misc/memcached
+   www-servers/uwsgi[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests pytest



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

2021-06-25 Thread Michał Górny
commit: 21f88144dbb5eeca98ac89935c5ec322f416c7ab
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 25 21:24:19 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 25 21:44:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21f88144

dev-python/boto3: Bump to 1.17.101

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

 dev-python/boto3/Manifest  |  1 +
 dev-python/boto3/boto3-1.17.101.ebuild | 56 ++
 2 files changed, 57 insertions(+)

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index ca43a4aa70a..1c841be2984 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -1,4 +1,5 @@
 DIST boto3-1.17.100.tar.gz 385310 BLAKE2B 
fef5fb0cf4862819c05efa3eb793cf2c9756c003aa4de2c8288a0b46d2f6f2cace53ba09429761437073fac366ad73cc1e816b480a22d42f1d3b9c5160fc3a07
 SHA512 
2d137d2dc6265a784af961b4e61faddf2a9b9493fc281da9764fd1ef8e855777d48daeaef7380e9d83408c6358e33c2898ad60c95e685bc04a9821cb0b2cfc3b
+DIST boto3-1.17.101.tar.gz 385690 BLAKE2B 
7b98615588eb09513eba33f1fd1019631c862def949f9c8314cc8b8506e83be3b3bfe88c08d97166e9f669db2724b02a247769db7f4262c7b4d306afdb3bf2e6
 SHA512 
cda7c5c42ef809397002d64f04e23bfac271086b4601595b635dacbab4592cab401b6238291ae2fa898d2419b4a0f2d3d0bc7828c0a7de2442ad0026a5565d56
 DIST boto3-1.17.54.tar.gz 362224 BLAKE2B 
d67ea9a2833d4cf6ec50fc4eab9c194f813f92ef00fa0d1638e0dca0bf03a92fa5208707b3ceda70759231aa69c35bf83028eada42d04209a55d05daf37ce764
 SHA512 
795a78807e8aad9ba53b196ac6b3547e23d2f7cc962a34121280fe47dfa8f99eac19765c87817918c6ee36dfb7e2b647e5646b7da27eb67900f29430bfe2fb5c
 DIST boto3-1.17.74.tar.gz 371719 BLAKE2B 
f6d44206a14cdf395c8963be048e81391ecbf6817b1c00e1cd081abf111df8bd85c05fa1c04b013de7e6d916835e4876cc961891c8d52d8a32e41713080ed96e
 SHA512 
a79012072238286561ab43ca7bb9f24236e858e0bf550be9a074517145445d0d520cc207683d99f6f704416f617b5f89468c87357223db9564e4310a2a2676f1
 DIST boto3-1.17.78.tar.gz 374487 BLAKE2B 
8a83cb32db8336351454251a3cf78efad6197885a66c10a4e3f9e13770d92d7cd9e9b51bfc7c4bfdb2f5183c5246872d7f3075d55b5129606ad9d977ecbf9891
 SHA512 
8ab9f13360f63342219d7b0278e2ca5613f8d051d006ef26da14307e83fcaaf1a546c566cb4b8ba012fa5e8e6b5e40978da0989e56f50e40df4a733602de

diff --git a/dev-python/boto3/boto3-1.17.101.ebuild 
b/dev-python/boto3/boto3-1.17.101.ebuild
new file mode 100644
index 000..666cbfa63e3
--- /dev/null
+++ b/dev-python/boto3/boto3-1.17.101.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="The AWS SDK for Python"
+HOMEPAGE="https://github.com/boto/boto3;
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/boto3;
+   inherit git-r3
+   BOTOCORE_PV=${PV}
+else
+   SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+
+   # botocore is x.(y+3).z
+   BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)"
+fi
+
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests nose
+
+python_prepare_all() {
+   # don't lock versions to narrow ranges
+   sed -e '/botocore/ d' \
+   -e '/jmespath/ d' \
+   -e '/s3transfer/ d' \
+   -i setup.py || die
+
+   # prevent an infinite loop
+   rm tests/functional/docs/test_smoke.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   nosetests -v tests/unit/ tests/functional/ || die "test failed under 
${EPYTHON}"
+}



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

2021-06-25 Thread Michał Górny
commit: ef545f2fc7a897b9a460c161d6fcfb06f83e4d67
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 25 21:24:11 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 25 21:44:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef545f2f

dev-python/botocore: Bump to 1.20.101

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

 dev-python/botocore/Manifest |  1 +
 dev-python/botocore/botocore-1.20.101.ebuild | 59 
 2 files changed, 60 insertions(+)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index c2c5ca83d41..05658383dd6 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -1,4 +1,5 @@
 DIST botocore-1.20.100.tar.gz 7870739 BLAKE2B 
0af8337b44f78f0d66062c3e351e6c2805ab4e205e1404a698bad7240abf37f4fd47206c9b3f9a302053c933ab774e8842edefa38979b09d5b111b836137119f
 SHA512 
af20cf638e48375b0adbadac5329aa62008def72e158159acbcdc200b250c0ac27e0ea568cd216ad8e81772b42491efed5a271f186d9caf0dc7e3bbf0197b7c6
+DIST botocore-1.20.101.tar.gz 7872329 BLAKE2B 
417f92e0747d32e9238e318af1f4063c86aca6364c63f312755efea6135df9415dd37dfa754896e78573329da0bb9e5f5609cbd836fd771e4ef185d691b1f5f3
 SHA512 
6641f14bbe9385acc764377be27b8d50f8eb0044330bc7248adc27c7605d4bcb489203f3953cd3ef17ec0f3e49d1df4e84f6ebce2c7d5b2b54d98406d836b49a
 DIST botocore-1.20.54.tar.gz 7650344 BLAKE2B 
2dd0a3f8c7c5665e849cf74b663a88e63416f1dea8ca3ee7dbdf10cf35239d466919f2ae4b3c9a639b9e25a23d982b723b24f32ece43715d40283e96e3bf10f6
 SHA512 
77cdaf68378836205c94c7dfd8424f9ca44ac822fd418d323df30639157bb38e5534fcfbc5bb6cdd7695bec62e24a1d52b81a0be54b0f69f16d20c5182db004b
 DIST botocore-1.20.74.tar.gz 7729804 BLAKE2B 
0693da2be219ee140c5c00a540756d31651d3e4c78976a7f766705123e9fba23e98d73e551b86a6b661530c20abb560b0e36fea8e1c13600303894b3163d2274
 SHA512 
51bcf78c6804b4a8cddd57eeff96d7ecb65731dfbd87eb665de1356c1daedb4317323b3a0d905e3d459800d800ce6d6ffd8fd1239b26ecf56884bee37159f2b7
 DIST botocore-1.20.78.tar.gz 7758829 BLAKE2B 
af13d6c1aa918e2c49c6dc931c9a78e1899c83e62657c063e20ba2a5544c48e4946018628e47d6a56db456a3a8d43fe3b577824bd76bbc339abaef375459932e
 SHA512 
fc96ed8b6b4af05404654e470a4f83419b885fa32d9dc704727f4ffb3d5deeefa752d235b37fd81448b7f3b101bc0f8e7ea09ae8641f8961566f77f6a039cef9

diff --git a/dev-python/botocore/botocore-1.20.101.ebuild 
b/dev-python/botocore/botocore-1.20.101.ebuild
new file mode 100644
index 000..762144aabf7
--- /dev/null
+++ b/dev-python/botocore/botocore-1.20.101.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Low-level, data-driven core of boto 3"
+HOMEPAGE="https://github.com/boto/botocore;
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/botocore;
+   inherit git-r3
+else
+   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+fi
+
+RDEPEND="
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/jmespath[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch"
+)
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests nose
+
+src_prepare() {
+   # unpin deps
+   sed -i -e "s:>=.*':':" setup.py || die
+   # very unstable
+   sed -i -e 's:test_stress_test_token_bucket:_&:' \
+   tests/functional/retries/test_bucket.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   # note: suites need to be run separately as one of the unit tests
+   # seems to be leaking mocks and breaking a few functional tests
+   nosetests -v tests/unit ||
+   die "unit tests failed under ${EPYTHON}"
+   nosetests -v tests/functional ||
+   die "functional tests failed under ${EPYTHON}"
+}



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

2021-06-25 Thread Michał Górny
commit: d894be4fa4d76a489a0fb413759a4692cce21abc
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 25 21:28:32 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 25 21:45:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d894be4f

dev-python/emcee: Bump to 3.1.0

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

 dev-python/emcee/Manifest   |  1 +
 dev-python/emcee/emcee-3.1.0.ebuild | 38 +
 2 files changed, 39 insertions(+)

diff --git a/dev-python/emcee/Manifest b/dev-python/emcee/Manifest
index 26942bdbd40..b93a888cdd8 100644
--- a/dev-python/emcee/Manifest
+++ b/dev-python/emcee/Manifest
@@ -1 +1,2 @@
 DIST emcee-3.0.2.tar.gz 4054969 BLAKE2B 
16b9ebd34b450f8fb92dc50f0652a34f06d20a027ff1cacd73474f4c74ecce7102d5eea54182598fc17175897980131742c0d60ef217b0dc8285c18406ef4d7f
 SHA512 
517c447b9426eb97b72b6e3b21d77720b58a42fc1efe9495cf7ad8a0682841b8d7178a6f070641f68a09aef507e854ceefab9a54afe6baaca8b41f16f34dce9e
+DIST emcee-3.1.0.tar.gz 2868282 BLAKE2B 
333bb3dfb1b88bd768dc824763827d7b5f7f6dbef83c98a3934789a52d2989fc09474f628a609b3c0b930f3582bd75240895a4f0fe6e2cab486bc5cdc6947c56
 SHA512 
45f4ee3a9f6e7f8b4e3cf6eef187facbc1c93dece10a6b0c9c2d55da093f26e159c254818aada3abb1c45985950cd83f286b7f3e5acc467ebd2f292df9f1202b

diff --git a/dev-python/emcee/emcee-3.1.0.ebuild 
b/dev-python/emcee/emcee-3.1.0.ebuild
new file mode 100644
index 000..4939478f08b
--- /dev/null
+++ b/dev-python/emcee/emcee-3.1.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python ensemble sampling toolkit for affine-invariant MCMC"
+HOMEPAGE="https://emcee.readthedocs.io/en/stable/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+   dev-python/h5py[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? (
+   dev-python/scipy[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+DOCS=( AUTHORS.rst README.rst )
+
+src_prepare() {
+   # unnecessary dep
+   sed -i -e '/wheel/d' setup.py || die
+   distutils-r1_src_prepare
+}



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

2021-06-25 Thread Andreas K. Hüttel
commit: 4215495f35db7fb4869d4dfac5d0baf012814fe8
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 25 21:37:31 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Fri Jun 25 21:38:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4215495f

dev-perl/Log-Dispatch: Version bump 2.70

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/Log-Dispatch/Log-Dispatch-2.700.0.ebuild | 46 +++
 dev-perl/Log-Dispatch/Manifest|  1 +
 2 files changed, 47 insertions(+)

diff --git a/dev-perl/Log-Dispatch/Log-Dispatch-2.700.0.ebuild 
b/dev-perl/Log-Dispatch/Log-Dispatch-2.700.0.ebuild
new file mode 100644
index 000..17890374bc8
--- /dev/null
+++ b/dev-perl/Log-Dispatch/Log-Dispatch-2.700.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=DROLSKY
+DIST_VERSION=2.70
+inherit perl-module
+
+DESCRIPTION="Dispatches messages to one or more outputs"
+
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+PERL_RM_FILES=( "t/email-exit.t" )
+
+RDEPEND="
+   virtual/perl-Carp
+   dev-perl/Devel-GlobalDestruction
+   >=dev-perl/Dist-CheckConflicts-0.20.0
+   virtual/perl-Encode
+   virtual/perl-Exporter
+   virtual/perl-IO
+   dev-perl/Module-Runtime
+   dev-perl/Params-ValidationCompiler
+   virtual/perl-Scalar-List-Utils
+   >=dev-perl/Specio-0.320.0
+   >=virtual/perl-Sys-Syslog-0.280.0
+   dev-perl/Try-Tiny
+   dev-perl/namespace-autoclean
+   virtual/perl-parent
+"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   virtual/perl-Data-Dumper
+   virtual/perl-File-Spec
+   virtual/perl-File-Temp
+   virtual/perl-Getopt-Long
+   dev-perl/IPC-Run3
+   dev-perl/Test-Fatal
+   dev-perl/Test-Needs
+   >=virtual/perl-Test-Simple-0.960.0
+   )
+"

diff --git a/dev-perl/Log-Dispatch/Manifest b/dev-perl/Log-Dispatch/Manifest
index 0c218e0b26b..d1dd64ff5da 100644
--- a/dev-perl/Log-Dispatch/Manifest
+++ b/dev-perl/Log-Dispatch/Manifest
@@ -1 +1,2 @@
 DIST Log-Dispatch-2.67.tar.gz 68022 BLAKE2B 
0c2e629dc9cc6ff7e8a4138b4393be95ba85fc20fd57fec9a5fd16f5f69d3a2b448a631780393a1f828f4d26fed48ec1e1fa75d251e09483788a5aeff3b91fcf
 SHA512 
ab03777800fa758a502e69b25669c3e4ae851d9dcf5f2f4d1a21a94cc61aca866ac361d2a5db3d22d19cb4d11da29ecec19935e29fcad40bb831fb27175846d6
+DIST Log-Dispatch-2.70.tar.gz 70808 BLAKE2B 
4225f7a9a9d1a200b9b03938f47abc4f4c0f48df70a35042822e7dbe4eb5740194f5f30a59e5229b2bd6eab76c196b8237e888cdc0a888eb7949345fbca4b63b
 SHA512 
c4c8cfb9e74b3176d5f95e3f9fbc86303321caa3e608a7ec318786ecd80d2238fd06a3b74ded65d5d3fab5c3a1297f99c92c62b1136b27d3b5396fd3fca602f6



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

2021-06-25 Thread Andreas K. Hüttel
commit: 40f01ba878b857fff73d6ac75533ee9a4ad58305
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 25 21:35:02 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Fri Jun 25 21:38:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40f01ba8

dev-perl/Log-Dispatch: Remove old

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/Log-Dispatch/Log-Dispatch-2.580.0.ebuild | 45 -
 dev-perl/Log-Dispatch/Log-Dispatch-2.630.0.ebuild | 49 ---
 dev-perl/Log-Dispatch/Manifest|  2 -
 3 files changed, 96 deletions(-)

diff --git a/dev-perl/Log-Dispatch/Log-Dispatch-2.580.0.ebuild 
b/dev-perl/Log-Dispatch/Log-Dispatch-2.580.0.ebuild
deleted file mode 100644
index e63e40bafda..000
--- a/dev-perl/Log-Dispatch/Log-Dispatch-2.580.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=DROLSKY
-DIST_VERSION=2.58
-inherit perl-module
-
-DESCRIPTION="Dispatches messages to one or more outputs"
-
-LICENSE="Artistic-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 sparc x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-PERL_RM_FILES=(
-   "t/email-exit.t"
-)
-RDEPEND="
-   virtual/perl-Carp
-   dev-perl/Devel-GlobalDestruction
-   >=dev-perl/Dist-CheckConflicts-0.20.0
-   virtual/perl-Encode
-   virtual/perl-Exporter
-   virtual/perl-IO
-   dev-perl/Module-Runtime
-   >=dev-perl/Params-Validate-1.30.0
-   virtual/perl-Scalar-List-Utils
-   >=virtual/perl-Sys-Syslog-0.280.0
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? (
-   virtual/perl-Data-Dumper
-   virtual/perl-File-Spec
-   virtual/perl-File-Temp
-   virtual/perl-Getopt-Long
-   dev-perl/IPC-Run3
-   dev-perl/Test-Fatal
-   dev-perl/Test-Needs
-   >=virtual/perl-Test-Simple-0.960.0
-   )
-"

diff --git a/dev-perl/Log-Dispatch/Log-Dispatch-2.630.0.ebuild 
b/dev-perl/Log-Dispatch/Log-Dispatch-2.630.0.ebuild
deleted file mode 100644
index 078cf6d4256..000
--- a/dev-perl/Log-Dispatch/Log-Dispatch-2.630.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=DROLSKY
-DIST_VERSION=2.63
-inherit perl-module
-
-DESCRIPTION="Dispatches messages to one or more outputs"
-
-LICENSE="Artistic-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-PERL_RM_FILES=(
-   "t/email-exit.t"
-)
-RDEPEND="
-   virtual/perl-Carp
-   dev-perl/Devel-GlobalDestruction
-   >=dev-perl/Dist-CheckConflicts-0.20.0
-   virtual/perl-Encode
-   virtual/perl-Exporter
-   virtual/perl-IO
-   dev-perl/Module-Runtime
-   dev-perl/Params-ValidationCompiler
-   virtual/perl-Scalar-List-Utils
-   >=dev-perl/Specio-0.320.0
-   >=virtual/perl-Sys-Syslog-0.280.0
-   dev-perl/Try-Tiny
-   dev-perl/namespace-autoclean
-   virtual/perl-parent
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? (
-   virtual/perl-Data-Dumper
-   virtual/perl-File-Spec
-   virtual/perl-File-Temp
-   virtual/perl-Getopt-Long
-   dev-perl/IPC-Run3
-   dev-perl/Test-Fatal
-   dev-perl/Test-Needs
-   >=virtual/perl-Test-Simple-0.960.0
-   )
-"

diff --git a/dev-perl/Log-Dispatch/Manifest b/dev-perl/Log-Dispatch/Manifest
index 6f96169e40b..0c218e0b26b 100644
--- a/dev-perl/Log-Dispatch/Manifest
+++ b/dev-perl/Log-Dispatch/Manifest
@@ -1,3 +1 @@
-DIST Log-Dispatch-2.58.tar.gz 63916 BLAKE2B 
2fef3e7fc2f7ec8a7a2d0af9d81ddf8c4358134e6f36d2f48e801e4f5afdbc3cc68b98f618c9078b759f3f131878d7e8190744a9e4362335d7f17435c1b5da91
 SHA512 
6f086d2a95c75cb59d269f11528d8062e6a0b8ab23a9c5e4970ddadb018227e4fa7c6f9aa17f45ddceb59ead5fa0bb26a4bbfb56c7de935a870830ababeaaa5f
-DIST Log-Dispatch-2.63.tar.gz 65522 BLAKE2B 
43d6e82b7cd135be88fa75894a2118ec7a007fea58f9bb7243bc44bceb82d1300eeeaea1903ea0df53cd3d7f587c0d89502777209c56eaabf6be718affe48f89
 SHA512 
4b44ff7d85741eb57b25938b9b92863614a5267f1574b88c20d91a47e6ef2c957ca47be5211f6c735d453f35c0a326d3b07ab00e24d763ecb9a09a4856c8
 DIST Log-Dispatch-2.67.tar.gz 68022 BLAKE2B 
0c2e629dc9cc6ff7e8a4138b4393be95ba85fc20fd57fec9a5fd16f5f69d3a2b448a631780393a1f828f4d26fed48ec1e1fa75d251e09483788a5aeff3b91fcf
 SHA512 
ab03777800fa758a502e69b25669c3e4ae851d9dcf5f2f4d1a21a94cc61aca866ac361d2a5db3d22d19cb4d11da29ecec19935e29fcad40bb831fb27175846d6



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

2021-06-25 Thread Andreas K. Hüttel
commit: 528fe67dbf415335acae7db8a5c0835867a894ac
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 25 21:23:59 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Fri Jun 25 21:37:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=528fe67d

dev-perl/Locale-Codes: Version bump 3.67

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/Locale-Codes/Locale-Codes-3.670.0.ebuild | 24 +++
 dev-perl/Locale-Codes/Manifest|  1 +
 2 files changed, 25 insertions(+)

diff --git a/dev-perl/Locale-Codes/Locale-Codes-3.670.0.ebuild 
b/dev-perl/Locale-Codes/Locale-Codes-3.670.0.ebuild
new file mode 100644
index 000..610800e0e89
--- /dev/null
+++ b/dev-perl/Locale-Codes/Locale-Codes-3.670.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=SBECK
+DIST_VERSION=3.67
+inherit perl-module
+
+DESCRIPTION="A distribution of Perl modules to handle locale codes"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+RDEPEND="
+   virtual/perl-Carp
+"
+BDEPEND="${RDEPEND}
+   >=virtual/perl-ExtUtils-MakeMaker-6.300.0
+   test? (
+   virtual/perl-Test-Simple
+   >=dev-perl/Test-Inter-1.90.0
+   )
+"

diff --git a/dev-perl/Locale-Codes/Manifest b/dev-perl/Locale-Codes/Manifest
index 7b04ea55769..b0ba029d207 100644
--- a/dev-perl/Locale-Codes/Manifest
+++ b/dev-perl/Locale-Codes/Manifest
@@ -1 +1,2 @@
 DIST Locale-Codes-3.62.tar.gz 856983 BLAKE2B 
df938407ce1177b807a34a743fc96bbebbe7843357fd706fb851f0a7c19c5e6ef08b8378f87b1367bbb444a8e008a153eb87707283af23cc9e69fe0ea55934b1
 SHA512 
94a45521637a6b2d3f42ccf3f996b40da264af532c4bdef3e6592e09fe21e3f31f3d146decfc94a5caf0b653dcca239ec4c657a82c7702677f69b6806f1d8133
+DIST Locale-Codes-3.67.tar.gz 862619 BLAKE2B 
e95621a21402ca8f8d48a128b804b299aab8336814a237d09e90de993a22117f74635f3f2921c72639a155db4a8ca856ba49135166148d9bec636d39a968356d
 SHA512 
aa477c07f5e673c6810e8ba33ba699691525c48d2e5311a93c0222a4ee58afc52d23597450101f822c077d3fb6b762df2bb2276aed76f8391ad9ce38f329a7f8



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Locale-Maketext-Lexicon/

2021-06-25 Thread Andreas K. Hüttel
commit: 7b45c4c34bbe84dc2580256191d7fc7211fe884e
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 25 21:26:40 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Fri Jun 25 21:37:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b45c4c3

dev-perl/Locale-Maketext-Lexicon: EAPI=8 bump

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 ...0.ebuild => Locale-Maketext-Lexicon-1.0.0-r1.ebuild} | 17 +
 1 file changed, 5 insertions(+), 12 deletions(-)

diff --git 
a/dev-perl/Locale-Maketext-Lexicon/Locale-Maketext-Lexicon-1.0.0.ebuild 
b/dev-perl/Locale-Maketext-Lexicon/Locale-Maketext-Lexicon-1.0.0-r1.ebuild
similarity index 69%
rename from 
dev-perl/Locale-Maketext-Lexicon/Locale-Maketext-Lexicon-1.0.0.ebuild
rename to 
dev-perl/Locale-Maketext-Lexicon/Locale-Maketext-Lexicon-1.0.0-r1.ebuild
index 4ffa4b35379..8f241d77d75 100644
--- a/dev-perl/Locale-Maketext-Lexicon/Locale-Maketext-Lexicon-1.0.0.ebuild
+++ b/dev-perl/Locale-Maketext-Lexicon/Locale-Maketext-Lexicon-1.0.0-r1.ebuild
@@ -1,10 +1,10 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=8
 
-MODULE_AUTHOR=DRTECH
-MODULE_VERSION=1.00
+DIST_AUTHOR=DRTECH
+DIST_VERSION=1.00
 inherit perl-module
 
 DESCRIPTION="Use other catalog formats in Maketext"
@@ -12,22 +12,15 @@ DESCRIPTION="Use other catalog formats in Maketext"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="
>=virtual/perl-Locale-Maketext-1.170.0
 "
-DEPEND="${RDEPEND}
+BDEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.300.0
test? (
virtual/perl-Test-Simple
)
 "
 
-SRC_TEST="do parallel"
-
-src_test() {
-   perl_rm_files t/91-pod_test.t t/release-pod-syntax.t t/release-eol.t
-   perl-module_src_test
-}
+PERL_RM_FILES=( t/91-pod_test.t t/release-pod-syntax.t t/release-eol.t )



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

2021-06-25 Thread Andreas K. Hüttel
commit: aabf63c5349d96f9a7ead720f6e18eefc5164412
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 25 21:31:42 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Fri Jun 25 21:38:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aabf63c5

dev-perl/Log-Agent: Version bump 1.005

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/Log-Agent/Log-Agent-1.5.0.ebuild | 17 +
 dev-perl/Log-Agent/Manifest   |  1 +
 2 files changed, 18 insertions(+)

diff --git a/dev-perl/Log-Agent/Log-Agent-1.5.0.ebuild 
b/dev-perl/Log-Agent/Log-Agent-1.5.0.ebuild
new file mode 100644
index 000..551fa239dc5
--- /dev/null
+++ b/dev-perl/Log-Agent/Log-Agent-1.5.0.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=MROGASKI
+DIST_VERSION=1.005
+inherit perl-module
+
+DESCRIPTION="A general logging framework"
+
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+# errors out when running in parallel
+DIST_TEST=do

diff --git a/dev-perl/Log-Agent/Manifest b/dev-perl/Log-Agent/Manifest
index e3c6c815526..df2cf255727 100644
--- a/dev-perl/Log-Agent/Manifest
+++ b/dev-perl/Log-Agent/Manifest
@@ -1 +1,2 @@
 DIST Log-Agent-1.001.tar.gz 56215 BLAKE2B 
a73673f718233dc915f6e3cb4ef6a7a8455ad196190ae378abb20db31eb848a8c41069d069ce69fbf25aad75fb3c6ebb47d80694dee5cd97364e64b778be0545
 SHA512 
b8d3a15e40129add73bb4967ecc5daf37c0fd8a17eb75ed86fe338a9eb228b37ddd56b9bbf9bdef91f8453eb1b53d7fe303a96f68cbb0834820f2354fa37b5e7
+DIST Log-Agent-1.005.tar.gz 57364 BLAKE2B 
1c5eb3fa6da20ceaba7d63bee1a79423bbb233662921fce9956a735a34b2994a903c58099cdfafe811130714fcac50e4c87586e8b8b058f591de5d6e8eed6f13
 SHA512 
9fb1c2377921b4a3036a24f343ef52ea05f569c27600d289f568a1544aff7d1acd4426dfec60b63879424360a27c6f7bff684e9f7b17aa5d49d3673c35bb65f5



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

2021-06-25 Thread Andreas K. Hüttel
commit: 3a9b3030e558a0e29e3fe868a708cb663eef3b4f
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 25 21:28:39 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Fri Jun 25 21:37:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a9b3030

dev-perl/Locale-PO: EAPI=8 bump

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 ...ocale-PO-0.270.0.ebuild => Locale-PO-0.270.0-r1.ebuild} | 14 ++
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/dev-perl/Locale-PO/Locale-PO-0.270.0.ebuild 
b/dev-perl/Locale-PO/Locale-PO-0.270.0-r1.ebuild
similarity index 73%
rename from dev-perl/Locale-PO/Locale-PO-0.270.0.ebuild
rename to dev-perl/Locale-PO/Locale-PO-0.270.0-r1.ebuild
index c1f32f30776..d432a2e721c 100644
--- a/dev-perl/Locale-PO/Locale-PO-0.270.0.ebuild
+++ b/dev-perl/Locale-PO/Locale-PO-0.270.0-r1.ebuild
@@ -1,26 +1,24 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=8
 
-MODULE_AUTHOR=COSIMO
-MODULE_VERSION=0.27
+DIST_AUTHOR=COSIMO
+DIST_VERSION=0.27
 inherit perl-module
 
 DESCRIPTION="Perl module for manipulating .po entries from GNU gettext"
 
 SLOT="0"
 KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ppc ppc64 ~s390 sparc x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="
sys-devel/gettext
dev-perl/File-Slurp
 "
 DEPEND="${RDEPEND}
+"
+BDEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? ( virtual/perl-Test-Simple )
 "
-
-SRC_TEST="do"



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

2021-06-25 Thread Andreas K. Hüttel
commit: e9e484e5bc1fa22106956d4ebff9b154555c3a85
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 25 21:34:24 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Fri Jun 25 21:38:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9e484e5

dev-perl/Log-Any: Version bump 1.709

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/Log-Any/Log-Any-1.709.0.ebuild | 33 +
 dev-perl/Log-Any/Manifest   |  1 +
 2 files changed, 34 insertions(+)

diff --git a/dev-perl/Log-Any/Log-Any-1.709.0.ebuild 
b/dev-perl/Log-Any/Log-Any-1.709.0.ebuild
new file mode 100644
index 000..e4a13a72a4a
--- /dev/null
+++ b/dev-perl/Log-Any/Log-Any-1.709.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=PREACTION
+DIST_VERSION=1.709
+inherit perl-module
+
+DESCRIPTION="Bringing loggers and listeners together"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="minimal"
+
+# Test::Builder needed for Log/Any/Adapter/Test.pm
+# constant -> perl
+RDEPEND="
+   virtual/perl-Carp
+   virtual/perl-Data-Dumper
+   virtual/perl-Exporter
+   virtual/perl-IO
+   virtual/perl-Storable
+   virtual/perl-Sys-Syslog
+   virtual/perl-Test-Simple
+"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   !minimal? ( >=virtual/perl-CPAN-Meta-2.120.900 )
+   virtual/perl-File-Spec
+   )
+"

diff --git a/dev-perl/Log-Any/Manifest b/dev-perl/Log-Any/Manifest
index 1f2841b7d67..bc7021f0340 100644
--- a/dev-perl/Log-Any/Manifest
+++ b/dev-perl/Log-Any/Manifest
@@ -1 +1,2 @@
 DIST Log-Any-1.701.tar.gz 49026 BLAKE2B 
ff3b791e41f8eccca380aebd2fd10a82e42669d491c22b4c58a8f35137ab909ee5c7c76398a1f25aa506215e51798e3f11ba250732357bedae3b92f8fb6ab1df
 SHA512 
cb66cf36d0bd15fee8e397f3e9f916875cfff485d2177832be9a36fbdf88fda963c658f3317182acd5fcaa88fa14c46b8d5d05d7bd7572b35f81a6eba10dddf3
+DIST Log-Any-1.709.tar.gz 56325 BLAKE2B 
4028b549f7898c60ceeaba293eaa91da7bd7a7d387fba74d1804fd83748fc6bf1eb3a578fdd9ce6f9ea36093a1a239c0b0ba12803ba1a37a9733436286f0a22c
 SHA512 
55beff3b56185e80aa4515d9e924356ffa2430fdbfe035f9d33cb6254bd8a23382055931939d4927befcc577486fb62f86b0362725fad60e571fbf0d669775c4



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

2021-06-25 Thread Matt Turner
commit: 4789b3a217c455255ac641ce403f940ec1f92432
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Apr 13 21:39:20 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jun 25 21:22:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4789b3a2

profiles: Mask media-gfx/ufraw for removal

Bug: https://bugs.gentoo.org/312935
Bug: https://bugs.gentoo.org/341923
Bug: https://bugs.gentoo.org/629050
Bug: https://bugs.gentoo.org/739984
Bug: https://bugs.gentoo.org/775761
Bug: https://bugs.gentoo.org/777534
Signed-off-by: Matt Turner  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index c4a0bd405be..cbc89167207 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Matt Turner  (2021-06-25)
+# Last release in 2015. Many open bugs. No reverse dependencies.
+# Bugs #312935, #341923, #629050, #739984, #775761, #777534
+# Removal on 2021-07-25
+media-gfx/ufraw
+
 # Marek Szuba  (2021-06-25)
 # Unslotted version conflicting with lua eclasses.
 # No revdeps left. EAPI 5. Removal in 30 days (Bug #798693)



[gentoo-commits] repo/proj/guru:dev commit in: x11-wm/phoc/

2021-06-25 Thread Marco Scardovi
commit: 746c2a856da253197a3ddb8b9d729c9500117eb8
Author: Marco Scardovi  scardovi  com>
AuthorDate: Fri Jun 25 21:13:05 2021 +
Commit: Marco Scardovi  scardovi  com>
CommitDate: Fri Jun 25 21:13:22 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=746c2a85

x11-wm/phoc: added missing package

Closes: https://bugs.gentoo.org/798501
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Marco Scardovi  scardovi.com>

 x11-wm/phoc/phoc-0.7.1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-wm/phoc/phoc-0.7.1.ebuild b/x11-wm/phoc/phoc-0.7.1.ebuild
index 4d5eaea51..1c0e78a69 100644
--- a/x11-wm/phoc/phoc-0.7.1.ebuild
+++ b/x11-wm/phoc/phoc-0.7.1.ebuild
@@ -30,6 +30,7 @@ DEPEND="
dev-libs/glib
dev-libs/gobject-introspection
dev-libs/libinput
+   dev-libs/wayland-protocols
gnome-base/gnome-desktop
!gui-libs/wlroots
x11-libs/xcb-util



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

2021-06-25 Thread Amy Liffey
commit: 1486e5d2e1b63a53a8fd805916cf098063f173bf
Author: Amy Liffey  gentoo  org>
AuthorDate: Fri Jun 25 21:03:32 2021 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Fri Jun 25 21:03:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1486e5d2

app-crypt/eid-mw: version bump 5.0.23

Closes: https://bugs.gentoo.org/798450
Submitted-by: Vincent Hardy  gmail.com>
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Amy Liffey  gentoo.org>

 app-crypt/eid-mw/Manifest  | 2 +-
 app-crypt/eid-mw/{eid-mw-5.0.14-r1.ebuild => eid-mw-5.0.23.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/eid-mw/Manifest b/app-crypt/eid-mw/Manifest
index 0af6a426942..61ef6b68174 100644
--- a/app-crypt/eid-mw/Manifest
+++ b/app-crypt/eid-mw/Manifest
@@ -1 +1 @@
-DIST eid-mw-5.0.14.tar.gz 8971565 BLAKE2B 
d1e6997c089c72f6b6b15fafefa227d7341721c1fa52e446f0334c3915b2e16d84ccb27053dc2e12c0f932bb3cb96e1cbfadc0d6b203098734f74fa0dbffc6ab
 SHA512 
97a4e1359c853f14e91d5ec6c3b13d97b3113106da1e7125b558d724aea76f8a15b289dd06ed13391896d9318daea0133eba9269b6103fb1b922e8b55ceaf9cc
+DIST eid-mw-5.0.23.tar.gz 13614039 BLAKE2B 
5df1ad1cfd658586352800119eca17b2c57f642678cb131bd46af7b3cd3e4599e4d84b91c139d47082f07a1a80d6719f352151982085c6a577b01a75b6875782
 SHA512 
35be133c81cd5824dcffd9d74dae2aaf4cecffc56cf0e106832ea930d7d8a9a7ae115aab19d21cc79d011fe98108b0d67a3a69e5cb27ff3ec0ec059a9d9e0035

diff --git a/app-crypt/eid-mw/eid-mw-5.0.14-r1.ebuild 
b/app-crypt/eid-mw/eid-mw-5.0.23.ebuild
similarity index 100%
rename from app-crypt/eid-mw/eid-mw-5.0.14-r1.ebuild
rename to app-crypt/eid-mw/eid-mw-5.0.23.ebuild



[gentoo-commits] repo/proj/guru:dev commit in: gui-wm/phosh-meta/

2021-06-25 Thread Marco Scardovi
commit: eb0462911c59370b0397698b50a397b2b78890f4
Author: Marco Scardovi  scardovi  com>
AuthorDate: Fri Jun 25 20:52:42 2021 +
Commit: Marco Scardovi  scardovi  com>
CommitDate: Fri Jun 25 20:52:42 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=eb046291

gui-wm/phosh-meta: dropped chatty

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Marco Scardovi  scardovi.com>

 gui-wm/phosh-meta/phosh-meta-0.2.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/gui-wm/phosh-meta/phosh-meta-0.2.ebuild 
b/gui-wm/phosh-meta/phosh-meta-0.2.ebuild
index 04f873cd5..51567e7e5 100644
--- a/gui-wm/phosh-meta/phosh-meta-0.2.ebuild
+++ b/gui-wm/phosh-meta/phosh-meta-0.2.ebuild
@@ -22,7 +22,6 @@ DEPEND="
gnome-extra/gnome-calendar
gui-wm/phosh
net-voip/calls
-   net-im/chatty
net-dns/dnsmasq
sys-power/gtherm
sys-auth/rtkit



[gentoo-commits] repo/proj/guru:dev commit in: dev-libs/libphonenumber/, net-im/chatty/

2021-06-25 Thread Marco Scardovi
commit: 8c42aca3336d3eaa443ce7b6edcdd45df0ec9f77
Author: Marco Scardovi  scardovi  com>
AuthorDate: Fri Jun 25 20:50:26 2021 +
Commit: Marco Scardovi  scardovi  com>
CommitDate: Fri Jun 25 20:50:26 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8c42aca3

net-im/chatty: dropped package

Signed-off-by: Marco Scardovi  scardovi.com>

 dev-libs/libphonenumber/Manifest   |  1 -
 .../libphonenumber/libphonenumber-8.12.25.ebuild   | 33 --
 dev-libs/libphonenumber/metadata.xml   |  8 -
 net-im/chatty/Manifest |  1 -
 net-im/chatty/chatty-0.3.1.ebuild  | 40 --
 net-im/chatty/metadata.xml |  8 -
 6 files changed, 91 deletions(-)

diff --git a/dev-libs/libphonenumber/Manifest b/dev-libs/libphonenumber/Manifest
deleted file mode 100644
index 8b5888b66..0
--- a/dev-libs/libphonenumber/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST libphonenumber-8.12.25.tar.gz 10988736 BLAKE2B 
373a31f815668fe9e284cedcb9503e45d3c25b0bb770939fa2c6badb54ae16bf68fba7e755d7b0178905401a99d22dcc2a6fde35a95daa01b50d63cb0a707654
 SHA512 
d2cd2ad3f1a9be6659bc8ef00ace295dfdbff354115aad563dca7dc169d7468a45941457b3d7c3af16691aee2537bbe7227a2989f30f2bbc7bf6ae410d3e3c5c

diff --git a/dev-libs/libphonenumber/libphonenumber-8.12.25.ebuild 
b/dev-libs/libphonenumber/libphonenumber-8.12.25.ebuild
deleted file mode 100644
index 4dd5fc667..0
--- a/dev-libs/libphonenumber/libphonenumber-8.12.25.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_MAKEFILE_GENERATOR=emake
-
-inherit cmake java-pkg-2 java-pkg-simple
-
-DESCRIPTION="library for parsing, formatting, and validating international 
phone numbers"
-HOMEPAGE="https://github.com/google/libphonenumber;
-SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-KEYWORDS="~amd64 ~arm64"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-
-DEPEND="
-   dev-libs/icu
-   dev-libs/protobuf
-   dev-libs/boost
-"
-RDEPEND="${DEPEND}"
-
-BDEPEND="
-   dev-cpp/gtest
-   virtual/jdk
-"
-
-RESTRICT+=" test" # test is broken
-
-CMAKE_USE_DIR="${S}"/cpp

diff --git a/dev-libs/libphonenumber/metadata.xml 
b/dev-libs/libphonenumber/metadata.xml
deleted file mode 100644
index 144c8091c..0
--- a/dev-libs/libphonenumber/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   ma...@scardovi.com
-   Marco Scardovi
-   
-

diff --git a/net-im/chatty/Manifest b/net-im/chatty/Manifest
deleted file mode 100644
index e6ba97fdf..0
--- a/net-im/chatty/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST chatty-v0.3.1.tar.gz 440910 BLAKE2B 
f2e3024fa44c4305a81ec6f340aefa9a1a1fed21be7483ac298da51f6e0bcb7bf506335d7257b589ccd1608c94a8390f18448be4b909751c047eb179cd1b00c3
 SHA512 
1283ea8f0a59659b219a1b01536389de74ecfbbb9a790788a91c54738f404bd1cbd77cf3b65074526a6b756817c198312cbd9d07ded6844d2baaa4af852c377a

diff --git a/net-im/chatty/chatty-0.3.1.ebuild 
b/net-im/chatty/chatty-0.3.1.ebuild
deleted file mode 100644
index bf045d351..0
--- a/net-im/chatty/chatty-0.3.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit gnome2-utils meson xdg
-
-MY_P="${PN}-v${PV}"
-
-DESCRIPTION="Messaging client"
-HOMEPAGE="https://source.puri.sm/Librem5/chatty;
-SRC_URI="https://source.puri.sm/Librem5/chatty/-/archive/v0.3.1/${MY_P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-
-S="${WORKDIR}/${MY_P}"
-
-DEPEND="
-   dev-libs/libphonenumber
-   dev-libs/feedbackd
-   >=gui-libs/libhandy-1.1.90
-   dev-libs/olm
-   net-im/jabber-base
-   x11-libs/gtk+:3
-   x11-plugins/purple-mm-sms
-"
-RDEPEND="${DEPEND}"
-BDEPEND="${DEPEND}"
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_schemas_update
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-   gnome2_schemas_update
-}

diff --git a/net-im/chatty/metadata.xml b/net-im/chatty/metadata.xml
deleted file mode 100644
index 144c8091c..0
--- a/net-im/chatty/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   ma...@scardovi.com
-   Marco Scardovi
-   
-



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

2021-06-25 Thread Michał Górny
commit: 3a09a3d2cbaa246ca1a3b285a053a9c5722dcea8
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 25 20:03:41 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 25 20:03:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a09a3d2

dev-python/jinja: Remove old

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

 dev-python/jinja/Manifest   |  1 -
 dev-python/jinja/jinja-3.0.0.ebuild | 52 -
 2 files changed, 53 deletions(-)

diff --git a/dev-python/jinja/Manifest b/dev-python/jinja/Manifest
index 49c8eee8dba..51ad3844ff6 100644
--- a/dev-python/jinja/Manifest
+++ b/dev-python/jinja/Manifest
@@ -1,3 +1,2 @@
 DIST jinja-2.11.3.tar.gz 258057 BLAKE2B 
4735464d044718ce1e6b2663ecb1b238b38fbf0f37ed683257775fe9e853186c089b98494209e511be5aa96bf6df8f6d472be132b6184a7d9213e182099c0433
 SHA512 
f8e2951edf780d7b44ac74d36579c89b0a5c076b4250faf643ae7e3ff6a431fedaabed640e5efb496cda1a79a4057bf312ae652484c8d4631d521689eb0adbc1
-DIST jinja-3.0.0.tar.gz 271882 BLAKE2B 
7013d74802534273c62db275d95f05f203af97f52fdf9f9be9ec89522e2fce2d4cd0dc00611ad1442680da9ec624dd4ca8be375f021bc9572ef736801fb4b0d0
 SHA512 
54841f5fc07349eb01002156fb148e8e5905574dcb6e0d51bef2f340c8b94f2b50964b94e09d888d8cd6aa834de3a495301bf2b3cdf3282bce1b04129ea6d69e
 DIST jinja-3.0.1.tar.gz 272329 BLAKE2B 
71aff8e78c49a522ef78d418be1b3b104dc149dd623b75aed3022f979930c8d6071c2adc3693a6110425469d6092e84a7721ac9d7907a8dc0c8414ccdf7c9049
 SHA512 
da3238bbab9f5966df933dd0511faf010d799aebf06d17b9352f412417ceea842145ee970a0ddd84f49a3ef1f7fbca29f62a14ee75c136a083168311eda89ddd

diff --git a/dev-python/jinja/jinja-3.0.0.ebuild 
b/dev-python/jinja/jinja-3.0.0.ebuild
deleted file mode 100644
index c8cab106f7d..000
--- a/dev-python/jinja/jinja-3.0.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} pypy3 )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="A full-featured template engine for Python"
-HOMEPAGE="https://jinja.palletsprojects.com/ https://pypi.org/project/Jinja2/;
-# pypi tarball is missing tests
-SRC_URI="https://github.com/pallets/jinja/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris"
-IUSE="examples"
-
-RDEPEND="
-   >=dev-python/markupsafe-2.0.0_rc2[${PYTHON_USEDEP}]
-   !dev-python/jinja:compat"
-
-distutils_enable_sphinx docs \
-   dev-python/sphinx-issues \
-   dev-python/pallets-sphinx-themes
-distutils_enable_tests pytest
-
-# XXX: handle Babel better?
-
-src_prepare() {
-   # avoid unnecessary dep on extra sphinxcontrib modules
-   sed -i '/sphinxcontrib.log_cabinet/ d' docs/conf.py || die
-
-   distutils-r1_src_prepare
-}
-
-python_install_all() {
-   if use examples ; then
-   docinto examples
-   dodoc -r examples/.
-   fi
-
-   distutils-r1_python_install_all
-}
-
-pkg_postinst() {
-   if ! has_version dev-python/Babel; then
-   elog "For i18n support, please emerge dev-python/Babel."
-   fi
-}



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

2021-06-25 Thread Michał Górny
commit: 4b88b8f86399d43200a2d5a7a1d76f8db85d4fdf
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 25 20:03:16 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 25 20:03:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b88b8f8

dev-python/abydos: Remove old

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

 dev-python/abydos/abydos-0.5.0.ebuild | 39 ---
 1 file changed, 39 deletions(-)

diff --git a/dev-python/abydos/abydos-0.5.0.ebuild 
b/dev-python/abydos/abydos-0.5.0.ebuild
deleted file mode 100644
index d4e625cdbb2..000
--- a/dev-python/abydos/abydos-0.5.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-
-inherit distutils-r1
-
-DESCRIPTION="Abydos NLP/IR library"
-HOMEPAGE="https://github.com/chrislit/abydos;
-SRC_URI="https://github.com/chrislit/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-# Requires access to the internet
-RESTRICT="test"
-
-RDEPEND="
-   dev-python/deprecation[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-"
-
-BDEPEND="test? (
-   dev-python/nltk[${PYTHON_USEDEP}]
-)"
-
-distutils_enable_tests pytest
-# Extension error: You must configure the bibtex_bibfiles setting
-#distutils_enable_sphinx docs dev-python/sphinx_rtd_theme 
dev-python/sphinxcontrib-bibtex
-
-python_prepare_all() {
-   # do not depend on pytest-cov
-   sed -i -e '/addopts/d' setup.cfg || die
-
-   distutils-r1_python_prepare_all
-}



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/fprobe/files/, net-analyzer/fprobe/

2021-06-25 Thread Robin H. Johnson
commit: d91c0ed83a72211fdd90b0db9f19d77cca2110e0
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Fri Jun 25 19:37:30 2021 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri Jun 25 19:39:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d91c0ed8

net-analyzer/fprobe: ensure pcap filter is always set

Closes: https://bugs.gentoo.org/301110
Signed-off-by: Robin H. Johnson  gentoo.org>

 net-analyzer/fprobe/files/conf.d-fprobe-r1 | 72 ++
 net-analyzer/fprobe/files/init.d-fprobe-r1 | 40 +
 net-analyzer/fprobe/fprobe-1.1-r4.ebuild   | 43 ++
 3 files changed, 155 insertions(+)

diff --git a/net-analyzer/fprobe/files/conf.d-fprobe-r1 
b/net-analyzer/fprobe/files/conf.d-fprobe-r1
new file mode 100644
index 000..ca7aff4e434
--- /dev/null
+++ b/net-analyzer/fprobe/files/conf.d-fprobe-r1
@@ -0,0 +1,72 @@
+# Config file for /etc/init.d/fprobe
+
+# Do we want the interface in promiscous mode [yes/no]
+#PROMISC=no
+
+# Interface
+IFACE=eth0
+
+# required: only capture packets matching this tcpdump expression
+# default is all IP + IPv6
+FILTER="ip or ip6"
+
+# Flow state timers
+#TIMER_EXPIRED=5
+#TIMER_FRAGMENTED=30
+#TIMER_IDLE=60
+#TIMER_ACTIVE=300
+
+# This is the default and should be left unless you know what you are doing
+#FLOW_VER=5
+
+# local ip. if configured fprobe will use this as the source IP for sending 
ALL flow data
+# If you want to specify a specific source address per collecter, customize it 
below
+#LOCALIP=
+
+# SNMP iface id
+SNMP_IFACE="${IFACE#eth}"
+
+# Maximum number of concurrent flows to track
+# using a specified amount of memory
+#MEMBULK=1
+#MEMLIMIT=
+
+# Pending queue
+#PENDING=100
+
+# Kernel capture buffer size (kB)
+#KERNBUF=1024
+
+# Realtime priority [0=disabled, 1..99]
+#RTPRIO=0
+
+# Delay N nanoseconds after each B bytes
+#DELAY="0:0"
+
+# How much of the start of each packet to grab
+#SNAPLEN=256
+
+# chroot() to this location after startup
+CHROOT="/var/empty"
+
+# User to run as. must have perms to the pidfile directory /var/run/fprobe/
+USER=nobody
+
+# logging level for syslog (0=EMERG, ..., 6=INFO, 7=DEBUG)
+#LOGLEVEL=6
+
+# If you want to run multiple instances of fprobe,
+# You MUST set this variable to a unique INTEGER for each one!
+PIDFILE_ID=''
+
+# remote ip. this is where we send flows
+REMOTEIP=127.0.0.1
+# port to listen on
+PORT=2055
+# Collector type, see the manpage for valid types
+TYPE=''
+
+# If you want multiple collectors, just specify each one here
+COLLECTORS="${REMOTEIP}:${PORT}/${LOCALIP}/${TYPE}"
+
+# vim:ft=gentoo-conf-d:

diff --git a/net-analyzer/fprobe/files/init.d-fprobe-r1 
b/net-analyzer/fprobe/files/init.d-fprobe-r1
new file mode 100644
index 000..2dc84b8bfbe
--- /dev/null
+++ b/net-analyzer/fprobe/files/init.d-fprobe-r1
@@ -0,0 +1,40 @@
+#!/sbin/openrc-run
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+depend() {
+   need net
+}
+
+BIN=/usr/sbin/fprobe
+PIDFILE_EXTRA=""
+[ -n "$PIDFILE_ID" ] && PIDFILE_EXTRA="[$PIDFILE_ID]"
+PIDFILE="/var/run/fprobe$PIDFILE_EXTRA.pid"
+
+start() {
+   ebegin "Starting fprobe"
+   local OPTS=""
+   [ "${PROMISC}" = "yes" ] || OPTS="${OPTS} -p"
+   for optname in i:IFACE s:TIMER_EXPIRED g:TIME_FRAGMENTED d:TIMER_IDLE \
+   e:TIMER_ACTIVE n:FLOW_VER a:LOCALIP x:SNMP_IFACE b:MEMBULK \
+   m:MEMLIMIT q:PENDING B:KERNBUF r:RTPRIO t:DELAY S:SNAPLEN \
+   c:CHROOT u:USER v:LOGLEVEL ; do
+   opt="${optname%:*}" optvar="${optname#*:}"
+   eval optvalue='$'$optvar
+   [ -n "$optvalue" ] && OPTS="${OPTS} -${opt} ${optvalue}"
+   done
+   OPTS="${OPTS} -l 1:${PIDFILE_ID} ${COLLECTORS}"
+   start-stop-daemon --start --exec $BIN \
+   --pidfile ${PIDFILE} \
+   -- -f "${FILTER}" ${OPTS}
+   eend $?
+}
+
+stop() {
+   ebegin "Stopping fprobe"
+   start-stop-daemon --stop --quiet --exec $BIN \
+   --pidfile ${PIDFILE}
+   eend $?
+}
+
+# vim:ft=gentoo-init-d:

diff --git a/net-analyzer/fprobe/fprobe-1.1-r4.ebuild 
b/net-analyzer/fprobe/fprobe-1.1-r4.ebuild
new file mode 100644
index 000..4b72538e6d5
--- /dev/null
+++ b/net-analyzer/fprobe/fprobe-1.1-r4.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="libpcap-based tool to collect network traffic data and emit it as 
NetFlow flows"
+HOMEPAGE="http://fprobe.sourceforge.net;
+LICENSE="GPL-2"
+
+SRC_URI="mirror://sourceforge/fprobe/${P}.tar.bz2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+IUSE="debug messages"
+
+DEPEND="
+   net-libs/libpcap
+"
+RDEPEND="
+   ${DEPEND}
+"
+PATCHES=(
+   "${FILESDIR}"/fprobe-1.1-pidfile-sanity.patch
+   "${FILESDIR}"/fprobe-1.1-setgroups.patch
+)
+
+src_configure() {
+   econf 

[gentoo-commits] repo/proj/guru:dev commit in: x11-misc/squeekboard/

2021-06-25 Thread Marco Scardovi
commit: aadc051dbf70d50c91fbbcec6796c49c67572a9a
Author: Marco Scardovi  scardovi  com>
AuthorDate: Fri Jun 25 19:33:12 2021 +
Commit: Marco Scardovi  scardovi  com>
CommitDate: Fri Jun 25 19:33:12 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=aadc051d

x11-misc/squeekboard: fix cc error

Closes: https://bugs.gentoo.org/798510
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Marco Scardovi  scardovi.com>

 x11-misc/squeekboard/squeekboard-1.14.0.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/x11-misc/squeekboard/squeekboard-1.14.0.ebuild 
b/x11-misc/squeekboard/squeekboard-1.14.0.ebuild
index ea4fa2184..d97b49706 100644
--- a/x11-misc/squeekboard/squeekboard-1.14.0.ebuild
+++ b/x11-misc/squeekboard/squeekboard-1.14.0.ebuild
@@ -49,7 +49,7 @@ CRATES="
xkbcommon-0.4.0
yaml-rust-0.4.5
 "
-inherit cargo gnome2-utils meson xdg
+inherit cargo gnome2-utils meson toolchain-funcs xdg
 
 MY_COMMIT="19630334b07d6d2949932cf05018925cb3ab9613"
 
@@ -83,6 +83,7 @@ S="${WORKDIR}/${PN}-${MY_COMMIT}"
 QA_FLAGS_IGNORED="/usr/bin/squeekboard-test-layout"
 
 src_install() {
+   CC="$(tc-getCC)"
meson_src_install
insinto /usr/bin
doins "${S}/tools/squeekboard-restyled"



[gentoo-commits] repo/proj/guru:dev commit in: app-mobilephone/flashlight/

2021-06-25 Thread Marco Scardovi
commit: 3eb4efb250e83390a0c32c8f4ffddb97e33061ed
Author: Marco Scardovi  scardovi  com>
AuthorDate: Fri Jun 25 19:36:53 2021 +
Commit: Marco Scardovi  scardovi  com>
CommitDate: Fri Jun 25 19:36:53 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3eb4efb2

app-mobilephone/flashlight: add missing package

Closes: https://bugs.gentoo.org/798507
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Marco Scardovi  scardovi.com>

 app-mobilephone/flashlight/flashlight-0.1.1-r1.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/app-mobilephone/flashlight/flashlight-0.1.1-r1.ebuild 
b/app-mobilephone/flashlight/flashlight-0.1.1-r1.ebuild
index 775fe6a04..80be96fe2 100644
--- a/app-mobilephone/flashlight/flashlight-0.1.1-r1.ebuild
+++ b/app-mobilephone/flashlight/flashlight-0.1.1-r1.ebuild
@@ -15,6 +15,8 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64"
 
+RDEPEND="x11-libs/gtk+"
+
 S="${WORKDIR}/${PN}-${MY_COMMIT}"
 
 src_install() {



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

2021-06-25 Thread Sam James
commit: 15d6113d3a8cefdb376f28e22643596bc3c1cd44
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun 25 19:35:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun 25 19:35:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15d6113d

net-analyzer/vnstat: Stabilize 2.7 arm, #796371

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

 net-analyzer/vnstat/vnstat-2.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/vnstat/vnstat-2.7.ebuild 
b/net-analyzer/vnstat/vnstat-2.7.ebuild
index 1805c7f4069..3582e908684 100644
--- a/net-analyzer/vnstat/vnstat-2.7.ebuild
+++ b/net-analyzer/vnstat/vnstat-2.7.ebuild
@@ -18,7 +18,7 @@ else
SRC_URI="https://humdi.net/vnstat/${P}.tar.gz;
SRC_URI+=" verify-sig? ( https://humdi.net/vnstat/${P}.tar.gz.asc )"
 
-   KEYWORDS="amd64 ~arm arm64 ~hppa ~mips ppc ppc64 sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ppc64 sparc x86"
 
BDEPEND="verify-sig? ( app-crypt/openpgp-keys-teemutoivola )"
 fi



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

2021-06-25 Thread Sam James
commit: c22f5d782ec66c5a6c0fe2531cde1a13b04049f2
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun 25 19:35:51 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun 25 19:35:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c22f5d78

sys-apps/hwinfo: Stabilize 21.74 ppc, #798723

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

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

diff --git a/sys-apps/hwinfo/hwinfo-21.74.ebuild 
b/sys-apps/hwinfo/hwinfo-21.74.ebuild
index 02e54630fa9..344dcb48ecc 100644
--- a/sys-apps/hwinfo/hwinfo-21.74.ebuild
+++ b/sys-apps/hwinfo/hwinfo-21.74.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://download.opensuse.org/tumbleweed/repo/src-oss/src/${P}-1.1.src.r
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ppc x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND="



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

2021-06-25 Thread Sam James
commit: 25937fc42e52c1a50cd213f7ffbc223354536aa3
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun 25 19:35:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun 25 19:35:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25937fc4

www-client/links: Stabilize 2.23 sparc, #798720

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

 www-client/links/links-2.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/links/links-2.23.ebuild 
b/www-client/links/links-2.23.ebuild
index a117d749476..4c55b5b41f3 100644
--- a/www-client/links/links-2.23.ebuild
+++ b/www-client/links/links-2.23.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://${PN}.twibright.com/download/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="brotli bzip2 fbcon freetype gpm ipv6 jpeg libevent livecd lzip lzma ssl 
suid svga tiff unicode X zlib zstd"
 
 GRAPHICS_DEPEND="media-libs/libpng:0="



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

2021-06-25 Thread Sam James
commit: 87b1a20ee9d3263a5dfe7d3cd95aa4d8c6e4c99b
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun 25 19:35:55 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun 25 19:35:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87b1a20e

www-client/links: Stabilize 2.23 ppc64, #798720

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

 www-client/links/links-2.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/links/links-2.23.ebuild 
b/www-client/links/links-2.23.ebuild
index 12a9d4b34e3..78173bd1d1d 100644
--- a/www-client/links/links-2.23.ebuild
+++ b/www-client/links/links-2.23.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://${PN}.twibright.com/download/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="brotli bzip2 fbcon freetype gpm ipv6 jpeg libevent livecd lzip lzma ssl 
suid svga tiff unicode X zlib zstd"
 
 GRAPHICS_DEPEND="media-libs/libpng:0="



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

2021-06-25 Thread Sam James
commit: 6bdb9e1ef66b65253717a9785d3e5925ffed3028
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun 25 19:35:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun 25 19:35:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bdb9e1e

net-dns/libidn: Stabilize 1.37 arm, #796380

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

 net-dns/libidn/libidn-1.37.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/libidn/libidn-1.37.ebuild 
b/net-dns/libidn/libidn-1.37.ebuild
index 2854a5c064a..c188af3af80 100644
--- a/net-dns/libidn/libidn-1.37.ebuild
+++ b/net-dns/libidn/libidn-1.37.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/libidn/${P}.tar.gz
 
 LICENSE="GPL-2 GPL-3 LGPL-3 java? ( Apache-2.0 )"
 SLOT="0/12"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc emacs java mono nls"
 
 DOCS=( AUTHORS ChangeLog FAQ NEWS README THANKS )



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

2021-06-25 Thread Sam James
commit: 76a24781e563d069436cc56f729b21ca9e7f8a19
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun 25 19:35:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun 25 19:35:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76a24781

app-admin/ps_mem: Stabilize 3.13_p20201212 sparc, #798726

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

 app-admin/ps_mem/ps_mem-3.13_p20201212.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/ps_mem/ps_mem-3.13_p20201212.ebuild 
b/app-admin/ps_mem/ps_mem-3.13_p20201212.ebuild
index 885663bac4e..32448460e08 100644
--- a/app-admin/ps_mem/ps_mem-3.13_p20201212.ebuild
+++ b/app-admin/ps_mem/ps_mem-3.13_p20201212.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/pixelb/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~ppc64 sparc x86"
 IUSE=""
 
 python_install() {



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

2021-06-25 Thread Sam James
commit: 99b3809d686bedad9c00ad84f28f7c896b6e3730
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun 25 19:35:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun 25 19:35:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99b3809d

www-client/links: Stabilize 2.23 ppc, #798720

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

 www-client/links/links-2.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/links/links-2.23.ebuild 
b/www-client/links/links-2.23.ebuild
index 4c55b5b41f3..12a9d4b34e3 100644
--- a/www-client/links/links-2.23.ebuild
+++ b/www-client/links/links-2.23.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://${PN}.twibright.com/download/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="brotli bzip2 fbcon freetype gpm ipv6 jpeg libevent livecd lzip lzma ssl 
suid svga tiff unicode X zlib zstd"
 
 GRAPHICS_DEPEND="media-libs/libpng:0="



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

2021-06-25 Thread Sam James
commit: 263f399199b855f4eda33109e50c45be86eb3875
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun 25 19:35:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun 25 19:35:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=263f3991

media-libs/libjpeg-turbo: Stabilize 2.1.0-r2 arm, #795390

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

 media-libs/libjpeg-turbo/libjpeg-turbo-2.1.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libjpeg-turbo/libjpeg-turbo-2.1.0-r2.ebuild 
b/media-libs/libjpeg-turbo/libjpeg-turbo-2.1.0-r2.ebuild
index b41b2d8363d..ca4189f486a 100644
--- a/media-libs/libjpeg-turbo/libjpeg-turbo-2.1.0-r2.ebuild
+++ b/media-libs/libjpeg-turbo/libjpeg-turbo-2.1.0-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
 LICENSE="BSD IJG ZLIB"
 SLOT="0/0.2"
 if [[ "$(ver_cut 3)" -lt 90 ]] ; then
-   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"
+   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"
 fi
 IUSE="cpu_flags_arm_neon java static-libs"
 



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

2021-06-25 Thread Sam James
commit: 62f9d61ce0a6b4348e7f92a10434033d1de4adfe
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun 25 19:35:19 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun 25 19:35:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62f9d61c

dev-python/argh: Stabilize 0.26.2-r2 arm, #796116

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

 dev-python/argh/argh-0.26.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/argh/argh-0.26.2-r2.ebuild 
b/dev-python/argh/argh-0.26.2-r2.ebuild
index 74670bc78db..f76d93a9237 100644
--- a/dev-python/argh/argh-0.26.2-r2.ebuild
+++ b/dev-python/argh/argh-0.26.2-r2.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://pythonhosted.org/argh/;
 SRC_URI="mirror://pypi/a/${PN}/${P}.tar.gz"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
 LICENSE="LGPL-3"
 
 BDEPEND="



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

2021-06-25 Thread Sam James
commit: afca900fde301268f91c50aa085f5963ff101046
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun 25 19:35:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun 25 19:35:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afca900f

dev-perl/HTTP-Daemon: Stabilize 6.120.0 arm, #796257

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

 dev-perl/HTTP-Daemon/HTTP-Daemon-6.120.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/HTTP-Daemon/HTTP-Daemon-6.120.0.ebuild 
b/dev-perl/HTTP-Daemon/HTTP-Daemon-6.120.0.ebuild
index 6ddaebdd156..260afa867f2 100644
--- a/dev-perl/HTTP-Daemon/HTTP-Daemon-6.120.0.ebuild
+++ b/dev-perl/HTTP-Daemon/HTTP-Daemon-6.120.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Base class for simple HTTP servers"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-06-25 Thread Sam James
commit: 7ce19993553b84a85551ab3ac1a782bba38471d3
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun 25 19:35:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun 25 19:35:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ce19993

dev-python/watchdog: Stabilize 2.1.2 arm, #796116

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

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

diff --git a/dev-python/watchdog/watchdog-2.1.2.ebuild 
b/dev-python/watchdog/watchdog-2.1.2.ebuild
index 3de398dca86..9ed9de0edfe 100644
--- a/dev-python/watchdog/watchdog-2.1.2.ebuild
+++ b/dev-python/watchdog/watchdog-2.1.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/gorakhargosh/${PN}/archive/v${PV}.tar.gz -> ${P}.tar
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
 
 CDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
 RDEPEND="${CDEPEND}



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

2021-06-25 Thread Sam James
commit: 0ef5fa867ebe45b792bb74ed9aa13661823c7a0e
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun 25 19:35:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun 25 19:35:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ef5fa86

net-dns/libidn2: Stabilize 2.3.1 arm, #796383

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

 net-dns/libidn2/libidn2-2.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/libidn2/libidn2-2.3.1.ebuild 
b/net-dns/libidn2/libidn2-2.3.1.ebuild
index 4e73cec21ce..a9c7703ca03 100644
--- a/net-dns/libidn2/libidn2-2.3.1.ebuild
+++ b/net-dns/libidn2/libidn2-2.3.1.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}"/${P/a/}
 
 LICENSE="GPL-2+ LGPL-3+"
 SLOT="0/2"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 RDEPEND="



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

2021-06-25 Thread Sam James
commit: 084c468e87cee0c3c4b92b850cab6cf528ae4998
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun 25 19:35:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun 25 19:35:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=084c468e

dev-python/jinja: Stabilize 3.0.1 arm, #796074

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

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

diff --git a/dev-python/jinja/jinja-3.0.1.ebuild 
b/dev-python/jinja/jinja-3.0.1.ebuild
index 73ff924880c..2c2a5c2e379 100644
--- a/dev-python/jinja/jinja-3.0.1.ebuild
+++ b/dev-python/jinja/jinja-3.0.1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/pallets/jinja/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris"
 IUSE="examples"
 
 RDEPEND="



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

2021-06-25 Thread Sam James
commit: 6e90586b72e613d8da2aa7f068724695948b534e
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun 25 19:35:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun 25 19:35:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e90586b

dev-python/iocapture: Stabilize 0.1.2-r2 arm, #796116

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

 dev-python/iocapture/iocapture-0.1.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/iocapture/iocapture-0.1.2-r2.ebuild 
b/dev-python/iocapture/iocapture-0.1.2-r2.ebuild
index b412d273dbf..7c797cdac9b 100644
--- a/dev-python/iocapture/iocapture-0.1.2-r2.ebuild
+++ b/dev-python/iocapture/iocapture-0.1.2-r2.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://pypi.org/project/iocapture/;
 SRC_URI="https://github.com/oinume/iocapture/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
 LICENSE="MIT"
 
 BDEPEND="



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

2021-06-25 Thread Sam James
commit: 71ca5c1459a26c015defc97717ffea2be2079c85
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun 25 19:35:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun 25 19:35:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71ca5c14

net-dns/unbound: Stabilize 1.13.1-r1 arm, #794691

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

 net-dns/unbound/unbound-1.13.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/unbound/unbound-1.13.1-r1.ebuild 
b/net-dns/unbound/unbound-1.13.1-r1.ebuild
index 720197f2a2b..da2a5db53fe 100644
--- a/net-dns/unbound/unbound-1.13.1-r1.ebuild
+++ b/net-dns/unbound/unbound-1.13.1-r1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://nlnetlabs.nl/downloads/unbound/${MY_P}.tar.gz;
 
 LICENSE="BSD GPL-2"
 SLOT="0/8" # ABI version of libunbound.so
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~mips ppc ppc64 x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~mips ppc ppc64 x86"
 IUSE="debug dnscrypt dnstap +ecdsa ecs gost +http2 python redis selinux 
static-libs systemd test threads"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 RESTRICT="!test? ( test )"



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

2021-06-25 Thread Sam James
commit: 4f3422f8fef4126a10a26f7f5924599a28e06610
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun 25 19:33:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun 25 19:33:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f3422f8

app-admin/ps_mem: Stabilize 3.13_p20201212 amd64, #798726

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

 app-admin/ps_mem/ps_mem-3.13_p20201212.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/ps_mem/ps_mem-3.13_p20201212.ebuild 
b/app-admin/ps_mem/ps_mem-3.13_p20201212.ebuild
index 5233cdaea2a..885663bac4e 100644
--- a/app-admin/ps_mem/ps_mem-3.13_p20201212.ebuild
+++ b/app-admin/ps_mem/ps_mem-3.13_p20201212.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/pixelb/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~ppc64 ~sparc x86"
 IUSE=""
 
 python_install() {



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

2021-06-25 Thread Sam James
commit: a79fb08c4b98e81b49b7ef5351cf3448d4ab9919
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun 25 19:33:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun 25 19:33:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a79fb08c

sys-apps/hwinfo: Stabilize 21.74 amd64, #798723

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

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

diff --git a/sys-apps/hwinfo/hwinfo-21.74.ebuild 
b/sys-apps/hwinfo/hwinfo-21.74.ebuild
index a111e49a98f..02e54630fa9 100644
--- a/sys-apps/hwinfo/hwinfo-21.74.ebuild
+++ b/sys-apps/hwinfo/hwinfo-21.74.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://download.opensuse.org/tumbleweed/repo/src-oss/src/${P}-1.1.src.r
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~ppc x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND="



  1   2   3   >