[gentoo-commits] repo/proj/guru:dev commit in: app-misc/fastfetch/

2022-02-16 Thread Viorel Munteanu
commit: 49e3437cf4c5d2e106b85a70d49f57b3bbb8
Author: Viorel Munteanu  gmail  com>
AuthorDate: Thu Feb 17 07:57:21 2022 +
Commit: Viorel Munteanu  gmail  com>
CommitDate: Thu Feb 17 07:57:21 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=49e3437c

app-misc/fastfetch: add 0.599

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

 app-misc/fastfetch/Manifest   |  1 +
 app-misc/fastfetch/fastfetch-0.599.ebuild | 85 +++
 2 files changed, 86 insertions(+)

diff --git a/app-misc/fastfetch/Manifest b/app-misc/fastfetch/Manifest
index 1e6111f73..34fddfa90 100644
--- a/app-misc/fastfetch/Manifest
+++ b/app-misc/fastfetch/Manifest
@@ -1 +1,2 @@
 DIST fastfetch-0.583.tar.gz 321971 BLAKE2B 
65565ecaa2a0d54d17fff98736c0c923371a848ab31ba403430d3dc76d6d412077a15761b951de907c82c87b879762c2b441a1baeebe179e7234308e5a988ec7
 SHA512 
81d1a54033517747349228c397ad4eda64bcf5946de25edcd3b7eb4bb90102e8b7bc886b5e7697f7de1f71f47e38fa75e33b6467b8a81421b6675384aebc24d2
+DIST fastfetch-0.599.tar.gz 323683 BLAKE2B 
73dd5269fd37b6393f2f02fa93c1a398726101922cc6ec05862939f290edb02269131292cf1384dba3bd13996e06e861f62cd77cfa5c2dd2eaeee28c0eb97707
 SHA512 
90af0425d8a7746009028aeddb50970ead3d74506bc75defb8c4a179a9e51b8d2cd32186b25e9cc45c40c85567ee783edf581a79ee1fd5468d6936caf5ab4e2a

diff --git a/app-misc/fastfetch/fastfetch-0.599.ebuild 
b/app-misc/fastfetch/fastfetch-0.599.ebuild
new file mode 100644
index 0..45e0a85f0
--- /dev/null
+++ b/app-misc/fastfetch/fastfetch-0.599.ebuild
@@ -0,0 +1,85 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit bash-completion-r1 cmake
+
+DESCRIPTION="Like neofetch but faster"
+HOMEPAGE="https://github.com/LinusDierheimer/fastfetch;
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/LinusDierheimer/fastfetch.git;
+else
+   COMMIT="ed63ef1a28d58f7f582b52c8a49495f27ae8885a"
+   VERSION_REV="ed63ef1"
+   
SRC_URI="https://github.com/LinusDierheimer/fastfetch/archive/${COMMIT}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/${PN}-${COMMIT}"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="X gnome pci vulkan wayland xcb xfce xrandr"
+
+# note - qa-vdb will always report errors because fastfetch loads the libs 
dynamically
+RDEPEND="
+   X? ( x11-libs/libX11 )
+   gnome? (
+   dev-libs/glib
+   gnome-base/dconf
+   )
+   pci? ( sys-apps/pciutils )
+   vulkan? ( media-libs/vulkan-loader )
+   wayland? ( dev-libs/wayland )
+   xcb? ( x11-libs/libxcb )
+   xfce? ( xfce-base/xfconf )
+   xrandr? ( x11-libs/libXrandr )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+REQUIRED_USE="xrandr? ( X )"
+
+src_configure() {
+   local mycmakeargs=(
+   -DENABLE_RPM=no
+   -DENABLE_VULKAN=$(usex vulkan)
+   -DENABLE_WAYLAND=$(usex wayland)
+   -DENABLE_XCB_RANDR=$(usex xcb)
+   -DENABLE_XCB=$(usex xcb)
+   -DENABLE_XRANDR=$(usex xrandr)
+   -DENABLE_X11=$(usex X)
+   -DENABLE_GIO=$(usex gnome)
+   -DENABLE_DCONF=$(usex gnome)
+   -DENABLE_XFCONF=$(usex xfce)
+   )
+
+   if [[ ${PV} != * ]]; then
+   # version comes from git, fake it
+   VERSION_MAJOR="$(ver_cut 2)"
+   sed -i -e "
+   s/\(PROJECT_VERSION\) .*$/\1 
\"r${VERSION_MAJOR}.${VERSION_REV}\")/
+   s/\(PROJECT_VERSION_MAJOR\) .*$/\1 
\"${VERSION_MAJOR}\")/" CMakeLists.txt || die "Cannot patch version"
+   fi
+
+   cmake_src_configure
+}
+
+src_install() {
+   if [[ ${PV} == * ]]; then
+   elog "REV=\"r$(git rev-list --count HEAD)\""
+   elog "COMMIT=\"$(git rev-parse HEAD)\""
+   elog "VERSION_REV=\"$(git rev-parse --short HEAD)\""
+   fi
+
+   pushd "${BUILD_DIR}" || die
+   dobin fastfetch
+   popd
+
+   newbashcomp completions/bash fastfetch
+   insinto /usr/share/${PN}/presets
+   doins presets/*
+
+   einstalldocs
+}



[gentoo-commits] repo/proj/guru:dev commit in: app-misc/fastfetch/

2022-02-16 Thread Viorel Munteanu
commit: 70ea9531c612a59ebae6d10b6ec98b48f01bf666
Author: Viorel Munteanu  gmail  com>
AuthorDate: Thu Feb 17 07:57:52 2022 +
Commit: Viorel Munteanu  gmail  com>
CommitDate: Thu Feb 17 07:57:52 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=70ea9531

app-misc/fastfetch: drop 0.583

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

 app-misc/fastfetch/Manifest   |  1 -
 app-misc/fastfetch/fastfetch-0.583.ebuild | 85 ---
 2 files changed, 86 deletions(-)

diff --git a/app-misc/fastfetch/Manifest b/app-misc/fastfetch/Manifest
index 34fddfa90..fe3f3bd75 100644
--- a/app-misc/fastfetch/Manifest
+++ b/app-misc/fastfetch/Manifest
@@ -1,2 +1 @@
-DIST fastfetch-0.583.tar.gz 321971 BLAKE2B 
65565ecaa2a0d54d17fff98736c0c923371a848ab31ba403430d3dc76d6d412077a15761b951de907c82c87b879762c2b441a1baeebe179e7234308e5a988ec7
 SHA512 
81d1a54033517747349228c397ad4eda64bcf5946de25edcd3b7eb4bb90102e8b7bc886b5e7697f7de1f71f47e38fa75e33b6467b8a81421b6675384aebc24d2
 DIST fastfetch-0.599.tar.gz 323683 BLAKE2B 
73dd5269fd37b6393f2f02fa93c1a398726101922cc6ec05862939f290edb02269131292cf1384dba3bd13996e06e861f62cd77cfa5c2dd2eaeee28c0eb97707
 SHA512 
90af0425d8a7746009028aeddb50970ead3d74506bc75defb8c4a179a9e51b8d2cd32186b25e9cc45c40c85567ee783edf581a79ee1fd5468d6936caf5ab4e2a

diff --git a/app-misc/fastfetch/fastfetch-0.583.ebuild 
b/app-misc/fastfetch/fastfetch-0.583.ebuild
deleted file mode 100644
index 84fc631ff..0
--- a/app-misc/fastfetch/fastfetch-0.583.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit bash-completion-r1 cmake
-
-DESCRIPTION="Like neofetch but faster"
-HOMEPAGE="https://github.com/LinusDierheimer/fastfetch;
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/LinusDierheimer/fastfetch.git;
-else
-   COMMIT="fb3028cafa5393c608aa83d7df826474a447c0b3"
-   VERSION_REV="fb3028c"
-   
SRC_URI="https://github.com/LinusDierheimer/fastfetch/archive/${COMMIT}.tar.gz 
-> ${P}.tar.gz"
-   S="${WORKDIR}/${PN}-${COMMIT}"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="X gnome pci vulkan wayland xcb xfce xrandr"
-
-# note - qa-vdb will always report errors because fastfetch loads the libs 
dynamically
-RDEPEND="
-   X? ( x11-libs/libX11 )
-   gnome? (
-   dev-libs/glib
-   gnome-base/dconf
-   )
-   pci? ( sys-apps/pciutils )
-   vulkan? ( media-libs/vulkan-loader )
-   wayland? ( dev-libs/wayland )
-   xcb? ( x11-libs/libxcb )
-   xfce? ( xfce-base/xfconf )
-   xrandr? ( x11-libs/libXrandr )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-REQUIRED_USE="xrandr? ( X )"
-
-src_configure() {
-   local mycmakeargs=(
-   -DENABLE_RPM=no
-   -DENABLE_VULKAN=$(usex vulkan)
-   -DENABLE_WAYLAND=$(usex wayland)
-   -DENABLE_XCB_RANDR=$(usex xcb)
-   -DENABLE_XCB=$(usex xcb)
-   -DENABLE_XRANDR=$(usex xrandr)
-   -DENABLE_X11=$(usex X)
-   -DENABLE_GIO=$(usex gnome)
-   -DENABLE_DCONF=$(usex gnome)
-   -DENABLE_XFCONF=$(usex xfce)
-   )
-
-   if [[ ${PV} != * ]]; then
-   # version comes from git, fake it
-   VERSION_MAJOR="$(ver_cut 2)"
-   sed -i -e "
-   s/\(PROJECT_VERSION\) .*$/\1 
\"r${VERSION_MAJOR}.${VERSION_REV}\")/
-   s/\(PROJECT_VERSION_MAJOR\) .*$/\1 
\"${VERSION_MAJOR}\")/" CMakeLists.txt || die "Cannot patch version"
-   fi
-
-   cmake_src_configure
-}
-
-src_install() {
-   if [[ ${PV} == * ]]; then
-   elog "REV=\"r$(git rev-list --count HEAD)\""
-   elog "COMMIT=\"$(git rev-parse HEAD)\""
-   elog "VERSION_REV=\"$(git rev-parse --short HEAD)\""
-   fi
-
-   pushd "${BUILD_DIR}" || die
-   dobin fastfetch
-   popd
-
-   newbashcomp completions/bash fastfetch
-   insinto /usr/share/${PN}/presets
-   doins presets/*
-
-   einstalldocs
-}



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

2022-02-16 Thread Agostino Sarubbo
commit: 6df8f0927365ef3b3f46662948c6906123fc1cb3
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Feb 17 07:35:07 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Feb 17 07:35:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6df8f092

media-libs/libwebp: x86 stable wrt bug #833489

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/media-libs/libwebp/libwebp-1.2.2.ebuild 
b/media-libs/libwebp/libwebp-1.2.2.ebuild
index 70ac533b7de7..f485740840a8 100644
--- a/media-libs/libwebp/libwebp-1.2.2.ebuild
+++ b/media-libs/libwebp/libwebp-1.2.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://storage.googleapis.com/downloads.webmproject.org/releases/webp/
 LICENSE="BSD"
 SLOT="0/7" # subslot = libwebp soname version
 [[ "${PV}" = *_rc* ]] || \
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="cpu_flags_arm_neon cpu_flags_x86_sse2 cpu_flags_x86_sse4_1 gif +jpeg 
opengl +png static-libs swap-16bit-csp tiff"
 
 # TODO: dev-lang/swig bindings in swig/ subdirectory



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

2022-02-16 Thread Agostino Sarubbo
commit: dc3cd82c35d1e5a4511ad56d87d9e38cb9856e8d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Feb 17 07:35:02 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Feb 17 07:35:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc3cd82c

dev-java/commons-digester: x86 stable wrt bug #833461

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-java/commons-digester/commons-digester-2.1-r2.ebuild | 2 +-
 dev-java/commons-digester/commons-digester-3.2-r3.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-java/commons-digester/commons-digester-2.1-r2.ebuild 
b/dev-java/commons-digester/commons-digester-2.1-r2.ebuild
index 40e772bfb667..2999e8c31357 100644
--- a/dev-java/commons-digester/commons-digester-2.1-r2.ebuild
+++ b/dev-java/commons-digester/commons-digester-2.1-r2.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="mirror://apache/commons/digester/source/commons-digester-2.1-src.tar.gz
 
 LICENSE="Apache-2.0"
 SLOT="2.1"
-KEYWORDS="amd64 ppc64 ~x86"
+KEYWORDS="amd64 ppc64 x86"
 
 # Common dependencies
 # POM: pom.xml

diff --git a/dev-java/commons-digester/commons-digester-3.2-r3.ebuild 
b/dev-java/commons-digester/commons-digester-3.2-r3.ebuild
index 7a9013a84797..14a7ba03b87c 100644
--- a/dev-java/commons-digester/commons-digester-3.2-r3.ebuild
+++ b/dev-java/commons-digester/commons-digester-3.2-r3.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="mirror://apache/commons/digester/source/${PN}3-${PV}-src.tar.gz -> ${P}
 
 LICENSE="Apache-2.0"
 SLOT="3.2"
-KEYWORDS="amd64 ppc64 ~x86"
+KEYWORDS="amd64 ppc64 x86"
 
 # 1) 
atomWithNamespaceParse(org.apache.commons.digester3.xmlrules.SetNamespaceURITestCase)
 # java.net.UnknownHostException: commons.apache.org



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

2022-02-16 Thread Agostino Sarubbo
commit: 90d63c78bccce9f7cc201b1cdbe89ca16a7334d2
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Feb 17 07:33:58 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Feb 17 07:33:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90d63c78

dev-php/xdebug: ppc64 stable wrt bug #833427

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-php/xdebug/xdebug-3.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/xdebug/xdebug-3.1.1.ebuild 
b/dev-php/xdebug/xdebug-3.1.1.ebuild
index 43d858f38f3f..5e6b98736460 100644
--- a/dev-php/xdebug/xdebug-3.1.1.ebuild
+++ b/dev-php/xdebug/xdebug-3.1.1.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 
 inherit php-ext-source-r3
 
-KEYWORDS="amd64 ~hppa ppc ~ppc64 x86"
+KEYWORDS="amd64 ~hppa ppc ppc64 x86"
 
 DESCRIPTION="A PHP debugging and profiling extension"
 HOMEPAGE="https://xdebug.org/;



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

2022-02-16 Thread Agostino Sarubbo
commit: 6cfd2bd70bfff8d4a10f32bf88f997f7da2a1a32
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Feb 17 07:34:05 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Feb 17 07:34:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cfd2bd7

dev-java/commons-digester: ppc64 stable wrt bug #833461

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-java/commons-digester/commons-digester-2.1-r2.ebuild | 2 +-
 dev-java/commons-digester/commons-digester-3.2-r3.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-java/commons-digester/commons-digester-2.1-r2.ebuild 
b/dev-java/commons-digester/commons-digester-2.1-r2.ebuild
index 82c5ebcc28f4..40e772bfb667 100644
--- a/dev-java/commons-digester/commons-digester-2.1-r2.ebuild
+++ b/dev-java/commons-digester/commons-digester-2.1-r2.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="mirror://apache/commons/digester/source/commons-digester-2.1-src.tar.gz
 
 LICENSE="Apache-2.0"
 SLOT="2.1"
-KEYWORDS="amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ppc64 ~x86"
 
 # Common dependencies
 # POM: pom.xml

diff --git a/dev-java/commons-digester/commons-digester-3.2-r3.ebuild 
b/dev-java/commons-digester/commons-digester-3.2-r3.ebuild
index 19f034471b2b..7a9013a84797 100644
--- a/dev-java/commons-digester/commons-digester-3.2-r3.ebuild
+++ b/dev-java/commons-digester/commons-digester-3.2-r3.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="mirror://apache/commons/digester/source/${PN}3-${PV}-src.tar.gz -> ${P}
 
 LICENSE="Apache-2.0"
 SLOT="3.2"
-KEYWORDS="amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ppc64 ~x86"
 
 # 1) 
atomWithNamespaceParse(org.apache.commons.digester3.xmlrules.SetNamespaceURITestCase)
 # java.net.UnknownHostException: commons.apache.org



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

2022-02-16 Thread Agostino Sarubbo
commit: b8c3b2fb1e386e810e675ff71fdeef2035f53c21
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Feb 17 07:33:35 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Feb 17 07:33:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8c3b2fb

dev-java/sax: ppc64 stable wrt bug #831135

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-java/sax/sax-2.2.1-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/sax/sax-2.2.1-r5.ebuild b/dev-java/sax/sax-2.2.1-r5.ebuild
index 8273c0771e06..d367d673cb21 100644
--- a/dev-java/sax/sax-2.2.1-r5.ebuild
+++ b/dev-java/sax/sax-2.2.1-r5.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_PN}.zip -> ${P}.zip"
 LICENSE="public-domain"
 
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
 
 DEPEND="
>=virtual/jdk-1.8:*"



[gentoo-commits] repo/gentoo:master commit in: app-shells/zsh/

2022-02-16 Thread Agostino Sarubbo
commit: 64c77a7626414f97b6d01450cfb3bc3ad1eec9f3
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Feb 17 07:33:52 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Feb 17 07:33:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64c77a76

app-shells/zsh: ppc64 stable wrt bug #833417

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-shells/zsh/zsh-5.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/zsh/zsh-5.8.1.ebuild b/app-shells/zsh/zsh-5.8.1.ebuild
index ee7440ab93a1..e44079087473 100644
--- a/app-shells/zsh/zsh-5.8.1.ebuild
+++ b/app-shells/zsh/zsh-5.8.1.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == * ]] ; then
inherit git-r3
EGIT_REPO_URI="https://git.code.sf.net/p/zsh/code;
 else
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
SRC_URI="https://www.zsh.org/pub/${P}.tar.xz
https://www.zsh.org/pub/old/${P}.tar.xz
mirror://sourceforge/${PN}/${P}.tar.xz



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

2022-02-16 Thread Agostino Sarubbo
commit: 37806f792e67d793416e1cc524f79a6e4f60b613
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Feb 17 07:33:45 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Feb 17 07:33:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37806f79

dev-java/jaxb-api: ppc64 stable wrt bug #833388

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-java/jaxb-api/jaxb-api-3.0.1.ebuild 
b/dev-java/jaxb-api/jaxb-api-3.0.1.ebuild
index 7786e7b8b1b9..857f9ebaa6e0 100644
--- a/dev-java/jaxb-api/jaxb-api-3.0.1.ebuild
+++ b/dev-java/jaxb-api/jaxb-api-3.0.1.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/eclipse-ee4j/${PN}/archive/refs/tags/${PV}.tar.gz ->
 
 LICENSE="EPL-1.0"
 SLOT="3"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 x86"
 
 # Common dependencies
 # POM: pom.xml



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

2022-02-16 Thread Agostino Sarubbo
commit: c604d160317115d128f60bb0de75cc86ec0b3920
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Feb 17 07:33:42 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Feb 17 07:33:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c604d160

dev-java/jakarta-activation: ppc64 stable wrt bug #833388

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-java/jakarta-activation/jakarta-activation-2.0.1.ebuild 
b/dev-java/jakarta-activation/jakarta-activation-2.0.1.ebuild
index d62e9ab9cc40..f7fe1163b923 100644
--- a/dev-java/jakarta-activation/jakarta-activation-2.0.1.ebuild
+++ b/dev-java/jakarta-activation/jakarta-activation-2.0.1.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/eclipse-ee4j/jaf/archive/refs/tags/${PV}.tar.gz -> $
 
 LICENSE="EPL-1.0"
 SLOT="2"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 x86"
 
 DEPEND="
>=virtual/jdk-1.8:*



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

2022-02-16 Thread Agostino Sarubbo
commit: 155112c0c134de46ac0761f1f92189489ba482f5
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Feb 17 07:33:29 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Feb 17 07:33:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=155112c0

dev-java/treelayout: ppc64 stable wrt bug #829137

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-java/treelayout/treelayout-1.0.3-r1.ebuild 
b/dev-java/treelayout/treelayout-1.0.3-r1.ebuild
index 06fd69d24b18..9a359f393dd7 100644
--- a/dev-java/treelayout/treelayout-1.0.3-r1.ebuild
+++ b/dev-java/treelayout/treelayout-1.0.3-r1.ebuild
@@ -19,7 +19,7 @@ SRC_URI="https://github.com/abego/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 #  LICENSE="!!!equivalentPortageLicenseName-not-found!!!"
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
 
 DEPEND="
>=virtual/jdk-1.8:*



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

2022-02-16 Thread Agostino Sarubbo
commit: 074b63ac42368d574238e5f62a4d00bd49cba88d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Feb 17 07:33:02 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Feb 17 07:33:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=074b63ac

sci-libs/indilib: ppc stable wrt bug #833124

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sci-libs/indilib/indilib-1.9.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/indilib/indilib-1.9.4.ebuild 
b/sci-libs/indilib/indilib-1.9.4.ebuild
index 938df23f267a..995237b8373c 100644
--- a/sci-libs/indilib/indilib-1.9.4.ebuild
+++ b/sci-libs/indilib/indilib-1.9.4.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${P/lib/}"
 
 LICENSE="BSD GPL-2+ LGPL-2+ LGPL-2.1+"
 SLOT="0/1"
-KEYWORDS="~amd64 ~ppc ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ppc ppc64 ~riscv ~x86"
 IUSE="ogg rtlsdr test websocket"
 
 RESTRICT="!test? ( test )"



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

2022-02-16 Thread Agostino Sarubbo
commit: f4a2b9330b3b75a4814396e11fbdd01e1c0b0101
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Feb 17 07:33:07 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Feb 17 07:33:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4a2b933

dev-php/xdebug: ppc stable wrt bug #833427

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-php/xdebug/xdebug-3.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/xdebug/xdebug-3.1.1.ebuild 
b/dev-php/xdebug/xdebug-3.1.1.ebuild
index 5aac18348c18..43d858f38f3f 100644
--- a/dev-php/xdebug/xdebug-3.1.1.ebuild
+++ b/dev-php/xdebug/xdebug-3.1.1.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 
 inherit php-ext-source-r3
 
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~hppa ppc ~ppc64 x86"
 
 DESCRIPTION="A PHP debugging and profiling extension"
 HOMEPAGE="https://xdebug.org/;



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

2022-02-16 Thread Agostino Sarubbo
commit: a42e0c982d235510d9f284348507dc28dd133a04
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Feb 17 07:32:22 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Feb 17 07:32:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a42e0c98

dev-java/commons-digester: amd64 stable wrt bug #833461

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-java/commons-digester/commons-digester-2.1-r2.ebuild | 2 +-
 dev-java/commons-digester/commons-digester-3.2-r3.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-java/commons-digester/commons-digester-2.1-r2.ebuild 
b/dev-java/commons-digester/commons-digester-2.1-r2.ebuild
index 7db4511aecd1..82c5ebcc28f4 100644
--- a/dev-java/commons-digester/commons-digester-2.1-r2.ebuild
+++ b/dev-java/commons-digester/commons-digester-2.1-r2.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="mirror://apache/commons/digester/source/commons-digester-2.1-src.tar.gz
 
 LICENSE="Apache-2.0"
 SLOT="2.1"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 ~x86"
 
 # Common dependencies
 # POM: pom.xml

diff --git a/dev-java/commons-digester/commons-digester-3.2-r3.ebuild 
b/dev-java/commons-digester/commons-digester-3.2-r3.ebuild
index 45e85fb373f2..19f034471b2b 100644
--- a/dev-java/commons-digester/commons-digester-3.2-r3.ebuild
+++ b/dev-java/commons-digester/commons-digester-3.2-r3.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="mirror://apache/commons/digester/source/${PN}3-${PV}-src.tar.gz -> ${P}
 
 LICENSE="Apache-2.0"
 SLOT="3.2"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 ~x86"
 
 # 1) 
atomWithNamespaceParse(org.apache.commons.digester3.xmlrules.SetNamespaceURITestCase)
 # java.net.UnknownHostException: commons.apache.org



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

2022-02-16 Thread Agostino Sarubbo
commit: 80177a7806fe49a63fddf4e6dd5107c13b60347c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Feb 17 07:32:13 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Feb 17 07:32:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80177a78

dev-php/xdebug: amd64 stable wrt bug #833427

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-php/xdebug/xdebug-3.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/xdebug/xdebug-3.1.1.ebuild 
b/dev-php/xdebug/xdebug-3.1.1.ebuild
index b7e27cd4c0c9..5aac18348c18 100644
--- a/dev-php/xdebug/xdebug-3.1.1.ebuild
+++ b/dev-php/xdebug/xdebug-3.1.1.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 
 inherit php-ext-source-r3
 
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 x86"
 
 DESCRIPTION="A PHP debugging and profiling extension"
 HOMEPAGE="https://xdebug.org/;



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

2022-02-16 Thread Agostino Sarubbo
commit: 8ae575470870fb3ecfbc4f20a688908a5e9a84bb
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Feb 17 07:32:28 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Feb 17 07:32:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ae57547

media-libs/libwebp: amd64 stable wrt bug #833489

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/media-libs/libwebp/libwebp-1.2.2.ebuild 
b/media-libs/libwebp/libwebp-1.2.2.ebuild
index 8e4d2d889bc4..70ac533b7de7 100644
--- a/media-libs/libwebp/libwebp-1.2.2.ebuild
+++ b/media-libs/libwebp/libwebp-1.2.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://storage.googleapis.com/downloads.webmproject.org/releases/webp/
 LICENSE="BSD"
 SLOT="0/7" # subslot = libwebp soname version
 [[ "${PV}" = *_rc* ]] || \
-KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="cpu_flags_arm_neon cpu_flags_x86_sse2 cpu_flags_x86_sse4_1 gif +jpeg 
opengl +png static-libs swap-16bit-csp tiff"
 
 # TODO: dev-lang/swig bindings in swig/ subdirectory



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

2022-02-16 Thread Ulrich Müller
commit: 89226c211c3e97d78092932c69863101496dd252
Author: Ulrich Müller  gentoo  org>
AuthorDate: Thu Feb 17 07:26:00 2022 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Thu Feb 17 07:26:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89226c21

app-emacs/avy: Fix test failure

Closes: https://bugs.gentoo.org/833512
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Ulrich Müller  gentoo.org>

 app-emacs/avy/avy-0.5.0.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-emacs/avy/avy-0.5.0.ebuild b/app-emacs/avy/avy-0.5.0.ebuild
index 600a7ba7c2eb..d4250402507e 100644
--- a/app-emacs/avy/avy-0.5.0.ebuild
+++ b/app-emacs/avy/avy-0.5.0.ebuild
@@ -14,10 +14,13 @@ LICENSE="GPL-3+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
-ELISP_REMOVE="avy-test.el"
 SITEFILE="50${PN}-gentoo.el"
 
 src_test() {
${EMACS} ${EMACSFLAGS} -l avy.el -l avy-test.el \
 -f ert-run-tests-batch-and-exit || die "tests failed"
 }
+
+src_install() {
+   elisp-install ${PN} avy.{el,elc}
+}



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

2022-02-16 Thread William Hubbs
commit: 52970e8a88acd307c10d19d943663edf434e7941
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Feb 17 07:24:45 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Feb 17 07:25:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52970e8a

go-module.eclass: add a manual example of how to extract  the content of EGO_SUM

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

 eclass/go-module.eclass | 8 
 1 file changed, 8 insertions(+)

diff --git a/eclass/go-module.eclass b/eclass/go-module.eclass
index 9fa482405fdd..00f5169ea6e2 100644
--- a/eclass/go-module.eclass
+++ b/eclass/go-module.eclass
@@ -103,6 +103,14 @@ RESTRICT+=" strip"
 # You can use some combination of sed/awk/cut to extract the
 # contents of EGO_SUM or use the dev-go/get-ego-vendor tool.
 # 
+# One manual way to do this is the following:
+#
+# @CODE
+#
+# cat go.sum | cut -d" " -f1,2 | awk '{print "\t\"" $0 "\""}'
+# 
+# @CODE
+#
 # The format of go.sum is described upstream here:
 # https://go.dev/ref/mod#go-sum-files
 #



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libXdmcp/

2022-02-16 Thread Matt Turner
commit: 93e6f5afe8bc23844c3338dc3e6b86cc61d957b6
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Feb 17 07:11:56 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Feb 17 07:12:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93e6f5af

x11-libs/libXdmcp: Depend on multilib libbsd

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

 x11-libs/libXdmcp/{libXdmcp-1.1.3.ebuild => libXdmcp-1.1.3-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libXdmcp/libXdmcp-1.1.3.ebuild 
b/x11-libs/libXdmcp/libXdmcp-1.1.3-r1.ebuild
similarity index 90%
rename from x11-libs/libXdmcp/libXdmcp-1.1.3.ebuild
rename to x11-libs/libXdmcp/libXdmcp-1.1.3-r1.ebuild
index 387662fc2a8c..dc445429439e 100644
--- a/x11-libs/libXdmcp/libXdmcp-1.1.3.ebuild
+++ b/x11-libs/libXdmcp/libXdmcp-1.1.3-r1.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="X.Org X Display Manager Control Protocol library"
 
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 
-RDEPEND="elibc_glibc? ( dev-libs/libbsd )"
+RDEPEND="elibc_glibc? ( dev-libs/libbsd[${MULTILIB_USEDEP}] )"
 DEPEND="${RDEPEND}
x11-base/xorg-proto"
 



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libICE/

2022-02-16 Thread Matt Turner
commit: 00ce89e76ba11145e2bb5162b1c22cdf017118d8
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Feb 17 07:11:04 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Feb 17 07:12:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00ce89e7

x11-libs/libICE: Depend on multilib libbsd

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

 x11-libs/libICE/{libICE-1.0.10.ebuild => libICE-1.0.10-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libICE/libICE-1.0.10.ebuild 
b/x11-libs/libICE/libICE-1.0.10-r1.ebuild
similarity index 92%
rename from x11-libs/libICE/libICE-1.0.10.ebuild
rename to x11-libs/libICE/libICE-1.0.10-r1.ebuild
index d296a6c49b06..8375f1dbefdd 100644
--- a/x11-libs/libICE/libICE-1.0.10.ebuild
+++ b/x11-libs/libICE/libICE-1.0.10-r1.ebuild
@@ -14,7 +14,7 @@ IUSE="ipv6"
 DEPEND="x11-base/xorg-proto
x11-libs/xtrans"
 RDEPEND="${DEPEND}
-   elibc_glibc? ( dev-libs/libbsd )"
+   elibc_glibc? ( dev-libs/libbsd[${MULTILIB_USEDEP}] )"
 
 src_configure() {
local XORG_CONFIGURE_OPTIONS=(



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

2022-02-16 Thread Joonas Niilola
commit: af8bf94a2ba7e37317df84325a34efa5d7579ed4
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Feb 17 07:11:22 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Feb 17 07:11:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af8bf94a

www-client/firefox-bin: drop 97.0

Signed-off-by: Joonas Niilola  gentoo.org>

 www-client/firefox-bin/Manifest|  98 ---
 www-client/firefox-bin/firefox-bin-97.0.ebuild | 389 -
 2 files changed, 487 deletions(-)

diff --git a/www-client/firefox-bin/Manifest b/www-client/firefox-bin/Manifest
index e557aa77b5fa..8fe9128c77a3 100644
--- a/www-client/firefox-bin/Manifest
+++ b/www-client/firefox-bin/Manifest
@@ -93,102 +93,6 @@ DIST firefox-91.6.0esr-vi.xpi 573490 BLAKE2B 
fd1a3db78b8ce5bb93e83a789affe722570
 DIST firefox-91.6.0esr-xh.xpi 428179 BLAKE2B 
3f3480f844684dc681961e390cdf02cc6fef238a963aa241eb8745f7c8ed483593a9cbfda9019cba40340180027c19d8524ae509564e3e3dc7633f4c4c76e8db
 SHA512 
e43e2b8502a1efd82d658b3d2cd559b5f624dafbbf7b5a327f9689fae0bc4db716e2eb5739890e8eaa18c8ae3c806420872078da8969960e48c515dd90de21f3
 DIST firefox-91.6.0esr-zh-CN.xpi 575379 BLAKE2B 
081ca8ec51d6da8357ee7fb4ee1f3f66b7f2084c177a5c2c94d8de06cd2a5399bb4f3d66f4c4ca557c0b5c6df31f520856b13f141757dae2cacb7112fb431429
 SHA512 
6a770336e06755b77006542151d748a482876b112e91307d98b06585e846a54889ba6957d409b6a68981be419dd1798fb2961d09a638186cc047f5b4536c125c
 DIST firefox-91.6.0esr-zh-TW.xpi 576228 BLAKE2B 
a04e5857e6ff2707a1000fb554a4e2ee78cb02ea4c158b375872a77e1e938c1f4b9598c576b32f8ba38b96c279708b2885ce6300a566773171d3ee26e4dc687d
 SHA512 
58d462c901bb5a892eb3f6924cf6ce9cd6a6d140b0ec47973981bb731c8e7f98dab1ac3f9d6d59a32d8c00bcdb394f5a3236e346fcc408abb5924198d7d8f9d8
-DIST firefox-97.0-ach.xpi 453065 BLAKE2B 
ae6a2ff0b39659d8b6367388bbbeadef61ea7cf91ae85fe594a87476a2402af5500d93f07d6bf1edf24da22de0198050b8fd44bd905cb840e971099be64a0c25
 SHA512 
82ccb67bfca8e402467d7cfe3b0c95e5eece0b85625a2232cb8c21df8ec8d6a91c9643736dac4cbcac8a54de87b7bf7a22586e1d89a798a7c4b1246d60870361
-DIST firefox-97.0-af.xpi 419749 BLAKE2B 
6efd866c643327868539d500aa51ebe0a044033a9be9cf1465f63c60b6e99a4c090574379b6f7fb917b4b3348696e47c640fcea37a4e90866f09753c4aa29715
 SHA512 
f1e3e016dd880f65600c3c161dd56a3d1cf9014c7eaee87eb58e294213df30aa12fbb65745861418bd05bb71098db42264cfd7e3f2314dbeb98fd07ce930b4fc
-DIST firefox-97.0-an.xpi 499584 BLAKE2B 
8696e412eb40458a90a590247ebee524a8713091277f2d4c8fe8a8fbd74b7ffe97cca85993435ef5b8eee6ef724b14004762cc8033391627699dd061d27afa8f
 SHA512 
0651eb1b317dba01b5954741bbe3319a693e58be91216b730423c6fb4b9ab2a7463900bfe007e9b232daaea17e5f9bfbadde3fa1e87ff8db1555060cf9f462e3
-DIST firefox-97.0-ar.xpi 569029 BLAKE2B 
6719c5be0d4c76b4559de1672759ace41e208f36fec419d6b5d795cb1cc007e99332080f0c89bd42457812bdf2b07bf706f87616ad08b5e62d1d3bd8bb2f2b49
 SHA512 
582c7df3daee36bfd2637b54747fe412e9323b994fd9dcabe442dbba7a3a6384919f9d9bc632f2a65f010ed5c54bcbece95688f008ccf35042d703b695ec5c16
-DIST firefox-97.0-ast.xpi 497672 BLAKE2B 
0d756dc86ab9bb8218751ee80a2687922019232f129c1fcd3b8db72506b7bf8af66cde179e8f26fb9f7c6a69a9e8a454a26211290bb20f0e4aae5921f8818201
 SHA512 
81e4225ff247675de82288786572a3d65871d39b248673c5f01e83608927e89023e5cf48f56902f2aca817e72b35d5bbb1b162f7a2d51f7d278be7206154b88e
-DIST firefox-97.0-az.xpi 488624 BLAKE2B 
9684e4eb042522ae620c8f4d9882277491f9ad6d799a4443a076f77feb53b962a17547fb2ef0ec96d84165f50423ba70ae46c6cca344140cc759ea8606ea37a8
 SHA512 
c9e61fdda00029e11178e0ef204755bcbb5635ba811bf1789892672493c9931cd79e2f0f527b4695eb9de1368efc33c225ed61f4712816735b053b0529f6154c
-DIST firefox-97.0-be.xpi 624017 BLAKE2B 
6876f9516e316532b23e058499b87a6e04122c14956c8cf60416ae3c04f23fb860a7292d08d6db242f477ed1de3bcd3424629be9780effe025c69ac31fbf34b0
 SHA512 
5604080a203ddef03e826be69eb417b5a0e3cba36070f77f7a9930ccafb2d37b616b4b37b69b72ab0e4f8b5547f8552a66f791775ea6a8d511159af32b4e56a3
-DIST firefox-97.0-bg.xpi 568838 BLAKE2B 
1f34c9fe80fdb0600303092d54ad33282f71a3ef3a4f92d5d86d92959b5e0927dede9aea013d624620860122599f50dfff4f0f266ed3386cdaaf21a18524b26c
 SHA512 
0e9336ce561e33c3ce81ea7bc67e8218f573a62c9ef87588620b435c2b6a8eda6e7c4a3f63a7026858d7181f5b598bf2b2b0a506dce875e4b7b59110fca12b53
-DIST firefox-97.0-bn.xpi 558302 BLAKE2B 
f0b14f06ec35cace4634b342bfa29d68077e521340f48f31540aafd1d2e74fd295154f73383fe369fbceabbb9e8c904255dacdb844814bf0f3060940b4035649
 SHA512 
dc08a9c564dbd3f3b99f3bdc7e7e52a7ee83d77685b256405f4374b8153e9e0d3a4179498a98cfa78dae62f065f9e961fd378a9e696be20c9df66fe998d56176
-DIST firefox-97.0-br.xpi 529039 BLAKE2B 
153ec9e71882cba266d7c9aa91a424a756e18c4766b366fe0696938a62caed913e253c5d930bc3d0317fa6c9e995267d02b9f5adca6c2417404111f2a17a82f3
 SHA512 
1247ca06d7d79b5556b9acf1b7b2e9891c89d1d28ef05796f916632083ebe9ecf9d88e9abb4d59dd2a3cf45d289c77b5e7f5e78900f0880c5769e586a13eda08
-DIST firefox-97.0-bs.xpi 463040 BLAKE2B 

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

2022-02-16 Thread Joonas Niilola
commit: f66471237ca44328d150c5652c396f901a243138
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Feb 17 07:11:05 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Feb 17 07:11:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6647123

www-client/firefox-bin: add 97.0.1

Signed-off-by: Joonas Niilola  gentoo.org>

 www-client/firefox-bin/Manifest  |  98 ++
 www-client/firefox-bin/firefox-bin-97.0.1.ebuild | 389 +++
 2 files changed, 487 insertions(+)

diff --git a/www-client/firefox-bin/Manifest b/www-client/firefox-bin/Manifest
index cab359588a13..e557aa77b5fa 100644
--- a/www-client/firefox-bin/Manifest
+++ b/www-client/firefox-bin/Manifest
@@ -189,7 +189,105 @@ DIST firefox-97.0-vi.xpi 577913 BLAKE2B 
ff36bb7e4fd89f487f53efb220e507e7237641de
 DIST firefox-97.0-xh.xpi 423165 BLAKE2B 
ff4128e5ed65771ad5dec76237a354a4d707dee9695b155cdbf58451cd5adc608c464bc99a7718d33b4be5915d0bab0d345a5256e53caf2612e361924d46d68d
 SHA512 
c5c7bdfea6689ea1c099de45d752fcce69e4f9dbaf21d3dc0c13f99efb15dbf224b1d4018db9ad334b56904d635524e068f0e1b4076bf702b4e98c9016a4f4ce
 DIST firefox-97.0-zh-CN.xpi 580060 BLAKE2B 
03d4ec821d4956dace05bd20955fb245277a2eda8d7c427233aeea205413ad9ab64fb96a587f6b72d0727e3a5820cf7e792695aee1fd12619d606ecec5a57e17
 SHA512 
fa58f6675d7fdb0271450acf160dd18f7c338671f85dc3a38846c68ac08c9516d1d6d89532b7ed4ed21a0f3d4decf5085b5c2b9156f6185b2842a4c8e14f1fa8
 DIST firefox-97.0-zh-TW.xpi 581193 BLAKE2B 
282b68de21d3b9700bdb1faacb14b70bd68b0e4cb14d940181c0d9c348b7df8211fd6352a5bcb975c598696ed2b5fdd9481d665a78cfc5d4499f4004735bb011
 SHA512 
70aaed830ce6651575790aa09cf4a9ad99f16e1a09acab32245b1d62ea28ac0740a3f3568118bb351436ecffb8921b5d727e90bcef944a3d8d2a3824deea192c
+DIST firefox-97.0.1-ach.xpi 453069 BLAKE2B 
706b5e7dbe8ae9c1511922c54f8ae229a795208f0e35d456fa4b91f5d23308200dde3494c5d9f563da819d6e63c078b1b77c0c3d940c48dc29eaa76ae97e7db2
 SHA512 
486b5101982bb652b21f2f6a3e7c7df86e9c30caf002f5ac249eb3ac84b3aac49dd05b4a1420b3e2acda5fa3a96fdf4bf4717ba7d8463365f34136de20d0bc07
+DIST firefox-97.0.1-af.xpi 419758 BLAKE2B 
9c960b84801a84d90ee065c367f7e3c5abfa905c0066a0a317a17c8e5625fcaec49bbebc19b3d9306513555d3db62e35771c534d117422846e9c67f21da28c78
 SHA512 
ba3f7ebf92a349e7570a1dd691ff8684db6e089313b836a559062664c0f037969ae8f84d76908a58e26631915d747f7338418e77594ceacd3b51a5ad9baf58f8
+DIST firefox-97.0.1-an.xpi 499592 BLAKE2B 
d83b1a1b0718af9294aa3a60fb2d94ab337778dea9a99438590b02c266e6117f29a985dc235052f50961c3177ea05c3723cc10003e4a2b43275681f74f5516a4
 SHA512 
f3ad5b9d0051d949cb716ca97c0cbdb97e036c91d1903d6592393fc1248dfd5eb1e425d2c81b4504efeda1c02583fca60bd7b8f91e679b1ba5cd7ab426bf687f
+DIST firefox-97.0.1-ar.xpi 569038 BLAKE2B 
f148ca413fdf14866c21c01d052ba54301a74ead5df546ff78c3b612eb28b745a607880b137be205897590202169c7d858a4f11c0082cb1af4b086c0aa59f8be
 SHA512 
52b295842823e0f816a9a41ad463479d2e15cb793fa75499c32e5321c2b7cda628832bc7daf077a46608f74fa3467f716d873c098069eedc3a0696db2033d74b
+DIST firefox-97.0.1-ast.xpi 497674 BLAKE2B 
9024ba567cc5397297ec7065b9cb2d9eabf4f619a61ac8f0d8d3f2d2f6de25a49ea1be203e88f30b2d3eee8b31d103d5793a8ad0c017ec96f9dfb65a92571040
 SHA512 
09abebd7563680acb166d92c8ab0e2f047f12bb5b1f554c80e8ba3c576a96cc6054fcbacde5fb581e204996fbb773281b28372f3cd1b1a42721bf7f4df06c306
+DIST firefox-97.0.1-az.xpi 488629 BLAKE2B 
88275fcf47fd280306b8c728dc5a6bba9b3f3c2bcb21128d583c9923bed17d9eba84cd924b48e5e0fff57c5869f431beacd67ca4f79319f0b718d469a32cdedb
 SHA512 
c2461b18bcc7c9aac87a5df99d9972b0978294222a7db947ba061a3ce4b413d4a6227295fe57e77a96157b070edb548f96e231518fe0955f8bfd38d13769d4a0
+DIST firefox-97.0.1-be.xpi 624010 BLAKE2B 
ea76ff3564a71444ec9a36f1d6ad43624382d70ea34f5f0d939a998cb04ddaba043f7b4b10be8ba10c6b5b42c4275b1ae1557306f71687eb53411629ee291c36
 SHA512 
e73acfa3516ff84d0917baecb543f9a5834df2b2554ea88716b535c1e4d96c8ee846d9d3c7eaed6c40c23303c115d653611f106153b18628f5d4224f6088cfbf
+DIST firefox-97.0.1-bg.xpi 568858 BLAKE2B 
e0653e22754c97942bcb18702c6679748b375b698185a20bd339020358d06d80f66c3c59e47e4b3c828f87fd61215cf980ddaff55b77f843bf2ea4d281a8
 SHA512 
9802867f06d886996e33c02d4a0bfd7394dd533aaae15508ddcc5651dda852a1f4c01758e0bf309b040f44b249868122611a27474fdbf2e3659c35cd
+DIST firefox-97.0.1-bn.xpi 558298 BLAKE2B 
4550e53029d0d577b74fb85fd937809712aabf84304723a67ffaa13ed0b83e1289701532ac8dfd65d982fc391c3884437ca5c053cd0f993076c73ad93e389610
 SHA512 
36cd991e14d2fd20b8a8dce9b35a40a0a3f2a9e25bc71c1f37778189ce4a9c005a8bc940b7b43d678696000f97b471319153a97d81448ac9d63d4ba0394e2263
+DIST firefox-97.0.1-br.xpi 529047 BLAKE2B 
eeff5a51e3ea17d94408555cee5601a7c8ba11bbd55ec7d01dc29ed2ef9aac2c5418a9d6ef520443b15a69641622a8f3da5e93c4d7e40b9b17c10f42c23f8867
 SHA512 
df41477c817cebb9c7135ed3d6ce5f5ec9629352771919570e6a66804a63823e5b7240c64d599d8170af93edb656530c53fadafefd28f61f7b19cb14ee0f6dbf
+DIST firefox-97.0.1-bs.xpi 463038 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: x11-libs/colord-gtk/

2022-02-16 Thread Matt Turner
commit: cc9d52b3e4909908af77d037551471b42db9c2fb
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Feb 17 04:28:16 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Feb 17 04:32:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc9d52b3

x11-libs/colord-gtk: Version bump to 0.3.0

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

 x11-libs/colord-gtk/Manifest|  1 +
 x11-libs/colord-gtk/colord-gtk-0.3.0.ebuild | 59 +
 2 files changed, 60 insertions(+)

diff --git a/x11-libs/colord-gtk/Manifest b/x11-libs/colord-gtk/Manifest
index 922295c12f23..8ee9f62d959b 100644
--- a/x11-libs/colord-gtk/Manifest
+++ b/x11-libs/colord-gtk/Manifest
@@ -1 +1,2 @@
 DIST colord-gtk-0.2.0.tar.xz 20480 BLAKE2B 
73bbb349e84e5bfd28358cbe22609de84b86f90eb96a3fedc6e30a1764d9c667cd82408116cdf65591496ab4e2f59f2b415cd1aa8f995fe2162ee4d649c5d496
 SHA512 
797eebfd4451fcae4cf70835f5de3d9bdc9e8401ddb82a2fef2310002f28bf523b599c587ff35eb89ceff38a245a6311129ad90b107f837ac4f42f268c9aad97
+DIST colord-gtk-0.3.0.tar.xz 21768 BLAKE2B 
e6fe56dfa969f18bd406d481dd13e83b689a820aeddaf1482ec97e89a3f78d4228544c79849d330962f3d45e3506f1c0b2540ed7bfab36ede04008877d503b94
 SHA512 
95ea9e8925d56462b8e5230a6737ca8e75d2273b2803e00f7aa2f933d22f88373194dccc00117fce85579274cc0daf88876fa265510580b1610734bb45220896

diff --git a/x11-libs/colord-gtk/colord-gtk-0.3.0.ebuild 
b/x11-libs/colord-gtk/colord-gtk-0.3.0.ebuild
new file mode 100644
index ..4f5121f700bb
--- /dev/null
+++ b/x11-libs/colord-gtk/colord-gtk-0.3.0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+VALA_USE_DEPEND="vapigen"
+
+inherit meson vala
+
+DESCRIPTION="GTK support library for colord"
+HOMEPAGE="https://www.freedesktop.org/software/colord/;
+SRC_URI="https://www.freedesktop.org/software/colord/releases/${P}.tar.xz;
+
+LICENSE="LGPL-3+"
+SLOT="0/1" # subslot = libcolord-gtk soname version
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc64 ~riscv ~x86"
+
+IUSE="doc +introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+DEPEND="
+   >=dev-libs/glib-2.28:2
+   >=x11-misc/colord-0.1.27:=[introspection?,vala?]
+   x11-libs/gtk+:3[introspection?]
+   >=gui-libs/gtk-4.4:4[introspection?]
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+   dev-libs/libxslt
+   >=sys-devel/gettext-0.17
+   virtual/pkgconfig
+   doc? (
+   app-text/docbook-xml-dtd:4.1.2
+   >=dev-util/gtk-doc-1.9
+   )
+   app-text/docbook-xsl-ns-stylesheets
+   introspection? ( >=dev-libs/gobject-introspection-0.9.8 )
+   vala? ( $(vala_depend) )
+"
+
+RESTRICT="test" # Tests need a display device with a default color profile set
+
+src_prepare() {
+   use vala && vala_src_prepare
+   default
+}
+
+src_configure() {
+   local -a emesonargs=(
+   -Dgtk4=true
+   -Dgtk3=true
+   -Dgtk2=false
+   $(meson_use introspection)
+   $(meson_use vala vapi)
+   -Dtests=false
+   -Dman=true
+   $(meson_use doc docs)
+   )
+   meson_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/colord/

2022-02-16 Thread Matt Turner
commit: 21dec0c305de7e4a12d54b78d9de82de9fdca939
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Feb 17 04:18:51 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Feb 17 04:32:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21dec0c3

x11-misc/colord: Version bump to 1.4.6

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

 x11-misc/colord/Manifest|   1 +
 x11-misc/colord/colord-1.4.6.ebuild | 118 
 2 files changed, 119 insertions(+)

diff --git a/x11-misc/colord/Manifest b/x11-misc/colord/Manifest
index 82082149fc57..a1e72f5dd446 100644
--- a/x11-misc/colord/Manifest
+++ b/x11-misc/colord/Manifest
@@ -1 +1,2 @@
 DIST colord-1.4.5.tar.xz 1869084 BLAKE2B 
34c886bade6f71b0b81bbed216695d839873fba46423f6422b80ef2f62e88a403edd1686bb705ef78bcaeb352477e0581d784ccd388961cd42d880661b4b31ab
 SHA512 
b6cc8087ceff4a99b7d764087208cc72e1219d9f6bb52bd3e3eb13bb62e3c1e99aefef36237dceff46925ab7680c76795f59057b7a4d1c8a123de6270708e03c
+DIST colord-1.4.6.tar.xz 1872528 BLAKE2B 
bf87ed1abe0a827ad81b5467847975d70e4cb83c1973fac3bcb1650875b7a0b375d48633bb1b01c7da1e8acd62cc4cf19f0efe9722e12bde3d8ec4833800ef2c
 SHA512 
d55d3322199d0bfee74eee9e183c9246ec33e755f0144d96087acb3c43ab5a3d872086fcef9f29cdd2295be71daac703cdf90ad10bf183622fdd84347e7af123

diff --git a/x11-misc/colord/colord-1.4.6.ebuild 
b/x11-misc/colord/colord-1.4.6.ebuild
new file mode 100644
index ..e96cde369c15
--- /dev/null
+++ b/x11-misc/colord/colord-1.4.6.ebuild
@@ -0,0 +1,118 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+VALA_USE_DEPEND="vapigen"
+
+inherit bash-completion-r1 meson-multilib tmpfiles vala
+
+DESCRIPTION="System service to accurately color manage input and output 
devices"
+HOMEPAGE="https://www.freedesktop.org/software/colord/;
+SRC_URI="https://www.freedesktop.org/software/colord/releases/${P}.tar.xz;
+
+LICENSE="GPL-2+"
+SLOT="0/2" # subslot = libcolord soname version
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86"
+
+IUSE="gtk-doc argyllcms examples extra-print-profiles +introspection scanner 
systemd test vala"
+RESTRICT="!test? ( test ) test" # Tests try to read and write files in /tmp
+REQUIRED_USE="vala? ( introspection )"
+
+DEPEND="
+   >=dev-libs/glib-2.58.0:2[${MULTILIB_USEDEP}]
+   >=media-libs/lcms-2.6:2=[${MULTILIB_USEDEP}]
+   dev-db/sqlite:3=[${MULTILIB_USEDEP}]
+   >=dev-libs/libgusb-0.2.7[introspection?,${MULTILIB_USEDEP}]
+
+   dev-libs/libgudev:=[${MULTILIB_USEDEP}]
+   virtual/libudev:=[${MULTILIB_USEDEP}]
+   virtual/udev
+
+   systemd? ( >=sys-apps/systemd-44:0= )
+   scanner? (
+   media-gfx/sane-backends
+   sys-apps/dbus
+   )
+   >=sys-auth/polkit-0.114
+   argyllcms? ( media-gfx/argyllcms )
+   introspection? ( >=dev-libs/gobject-introspection-1.56:= )
+"
+RDEPEND="${DEPEND}
+   acct-group/colord
+   acct-user/colord
+"
+BDEPEND="
+   acct-group/colord
+   acct-user/colord
+   app-text/docbook-xsl-ns-stylesheets
+   dev-libs/libxslt
+   >=dev-util/intltool-0.35
+   >=sys-devel/gettext-0.17
+   virtual/pkgconfig
+   extra-print-profiles? ( media-gfx/argyllcms )
+   gtk-doc? (
+   dev-util/gtk-doc
+   app-text/docbook-xml-dtd:4.1.2
+   )
+   vala? ( $(vala_depend) )
+"
+
+src_prepare() {
+   default
+   use vala && vala_src_prepare
+
+   # Test requires a running session
+   # https://github.com/hughsie/colord/issues/94
+   sed -i -e "/test('colord-test-daemon'/d" lib/colord/meson.build || die
+
+   # Adapt to Gentoo paths
+   sed -i \
+   -e "s|find_program('spotread'|find_program('argyll-spotread'|" \
+   -e "s|find_program('colprof'|find_program('argyll-colprof'|" \
+   meson.build || die
+
+   # meson gnome.generate_vapi properly handles VAPIGEN and other vala
+   # environment variables. It is counter-productive to check for an
+   # unversioned vapigen, as that breaks versioned VAPIGEN usages.
+   sed -i -e "/find_program('vapigen')/d" meson.build || die
+}
+
+multilib_src_configure() {
+   local emesonargs=(
+   $(meson_native_true daemon)
+   -Dbash_completion=false
+   $(meson_native_true udev_rules) # Install udev rules only from 
native build
+   $(meson_native_use_bool systemd)
+   -Dlibcolordcompat=true
+   $(meson_native_use_bool argyllcms argyllcms_sensor)
+   $(meson_native_use_bool scanner sane)
+   $(meson_native_use_bool introspection)
+   $(meson_native_use_bool vala vapi)
+   $(meson_native_use_bool extra-print-profiles print_profiles)
+   $(meson_use test tests)
+   -Dinstalled_tests=false
+   

[gentoo-commits] repo/gentoo:master commit in: x11-libs/libdrm/

2022-02-16 Thread Matt Turner
commit: 62cc80ec9e121ff1eefa0ee89f9741d7ff320289
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Feb 17 04:16:44 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Feb 17 04:32:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62cc80ec

x11-libs/libdrm: Version bump to 2.4.110

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

 x11-libs/libdrm/Manifest  |  1 +
 x11-libs/libdrm/libdrm-2.4.110.ebuild | 66 +++
 2 files changed, 67 insertions(+)

diff --git a/x11-libs/libdrm/Manifest b/x11-libs/libdrm/Manifest
index dac35302ce6c..75fca358f28f 100644
--- a/x11-libs/libdrm/Manifest
+++ b/x11-libs/libdrm/Manifest
@@ -1 +1,2 @@
 DIST libdrm-2.4.109.tar.xz 433708 BLAKE2B 
99c612a4f9a8e9068debbecfc428f4af530705fca47df9c8e6f0fe6ed740610ded1db0d0e37a063ae893e1697c2f8c4dcc8e15b8909d8ba7c66cd941d7400d24
 SHA512 
45194bb28207421afcff3e247930d2eeab77a5fea58e6be22f67525f2e0aab2f410a9ae0ab315b55ef56b80c481bba40b1660468b7cda539758b2bbb8e814fd8
+DIST libdrm-2.4.110.tar.xz 436372 BLAKE2B 
0d5f8bfe47bdcc96ef7dbe3ecf2da0b21262bae4396fa1e73c0f728d970d041a9925082c4526bc71e00f110c2eb0ba94313d9a7c27a2d4676073fdbc3708c628
 SHA512 
52f92ef1fe4c218a1d7dba53ef43334dbfca80e3209afe59f3a32c4bf67473126534e990df07a931a12d46a3b997c21ef17c1c4d8a0c88d44d5c6c040e3b6be3

diff --git a/x11-libs/libdrm/libdrm-2.4.110.ebuild 
b/x11-libs/libdrm/libdrm-2.4.110.ebuild
new file mode 100644
index ..15d2707a6f52
--- /dev/null
+++ b/x11-libs/libdrm/libdrm-2.4.110.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_REPO_URI="https://gitlab.freedesktop.org/mesa/drm.git;
+PYTHON_COMPAT=( python3_{8..10} )
+
+if [[ ${PV} = * ]]; then
+   GIT_ECLASS="git-r3"
+fi
+
+inherit ${GIT_ECLASS} python-any-r1 meson-multilib
+
+DESCRIPTION="X.Org libdrm library"
+HOMEPAGE="https://dri.freedesktop.org/ https://gitlab.freedesktop.org/mesa/drm;
+if [[ ${PV} = * ]]; then
+   SRC_URI=""
+else
+   SRC_URI="https://dri.freedesktop.org/libdrm/${P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+fi
+
+VIDEO_CARDS="amdgpu exynos freedreno intel nouveau omap radeon tegra vc4 
vivante vmware"
+for card in ${VIDEO_CARDS}; do
+   IUSE_VIDEO_CARDS+=" video_cards_${card}"
+done
+
+IUSE="${IUSE_VIDEO_CARDS} libkms valgrind"
+RESTRICT="test" # see bug #236845
+LICENSE="MIT"
+SLOT="0"
+
+RDEPEND="
+   video_cards_intel? ( 
>=x11-libs/libpciaccess-0.13.1-r1:=[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   valgrind? ( dev-util/valgrind )"
+BDEPEND="${PYTHON_DEPS}
+   $(python_gen_any_dep 'dev-python/docutils[${PYTHON_USEDEP}]')"
+
+python_check_deps() {
+   has_version -b "dev-python/docutils[${PYTHON_USEDEP}]"
+}
+
+multilib_src_configure() {
+   local emesonargs=(
+   # Udev is only used by tests now.
+   -Dudev=false
+   -Dcairo-tests=false
+   $(meson_use video_cards_amdgpu amdgpu)
+   $(meson_use video_cards_exynos exynos)
+   $(meson_use video_cards_freedreno freedreno)
+   $(meson_use video_cards_intel intel)
+   $(meson_use video_cards_nouveau nouveau)
+   $(meson_use video_cards_omap omap)
+   $(meson_use video_cards_radeon radeon)
+   $(meson_use video_cards_tegra tegra)
+   $(meson_use video_cards_vc4 vc4)
+   $(meson_use video_cards_vivante etnaviv)
+   $(meson_use video_cards_vmware vmwgfx)
+   $(meson_use libkms)
+   # valgrind installs its .pc file to the pkgconfig for the 
primary arch
+   -Dvalgrind=$(usex valgrind auto false)
+   )
+   meson_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: app-editors/hexedit/, app-editors/hexedit/files/

2022-02-16 Thread Yixun Lan
commit: 71dd489997a588b77ffa4d76a6f0c7ce77c32e5a
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Feb 17 03:14:19 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Feb 17 03:14:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71dd4899

app-editors/hexedit: drop old

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

 app-editors/hexedit/Manifest   |  1 -
 .../hexedit/files/hexedit-1.2.13-tinfo.patch   | 10 --
 app-editors/hexedit/hexedit-1.2.13.ebuild  | 36 --
 3 files changed, 47 deletions(-)

diff --git a/app-editors/hexedit/Manifest b/app-editors/hexedit/Manifest
index 921b20e0546c..aea3d3f41c94 100644
--- a/app-editors/hexedit/Manifest
+++ b/app-editors/hexedit/Manifest
@@ -1,2 +1 @@
-DIST hexedit-1.2.13.src.tgz 68778 BLAKE2B 
377c4f0008f6e3b54e4cf2e0249fa344b684b11a6acea9daf7d8e6585524f9d11a4eb199d5289a57a72be5efbdf3060cc47269aad1d218784e7679a469ca4f50
 SHA512 
df9afb0b9b965e20ea8c427c1986b0200216601b157862199c35bae9e201ccc478ab0bfecd39d0dfaa85bf582f1cf372b0134fadcfeacf4734805a6e6dcaa2bb
 DIST hexedit-1.5.tar.gz 30544 BLAKE2B 
d7292a70819826fddd63f99ee9d05073b8a59f51477390af91151146ee1f5a75333560829f0351fa9e158ef932c07a3582a3e822f42e645917a7fa321055d14e
 SHA512 
9d8e5c8c0cda0af17ffeaf528e3dacd7fc2878dfc0755cb055dae5c56f05c961353c1d1723b05897314b49a44a6eb96de5d3a599c6b29967425507eea7cc7ca5

diff --git a/app-editors/hexedit/files/hexedit-1.2.13-tinfo.patch 
b/app-editors/hexedit/files/hexedit-1.2.13-tinfo.patch
deleted file mode 100644
index 86e7dba4e88e..
--- a/app-editors/hexedit/files/hexedit-1.2.13-tinfo.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 a/configure.in
-+++ b/configure.in
-@@ -37,6 +37,7 @@
- AC_CHECK_LIB(curses, initscr, LIBS="$LIBS -lcurses",
-   AC_CHECK_LIB(ncurses, initscr, LIBS="$LIBS -lncurses")
- )
-+AC_SEARCH_LIBS(nodelay, tinfo)
- AC_CHECK_FUNC(use_default_colors, 
-   AC_DEFINE(HAVE_COLORS, , "Define if you want colored (fruit salad) display 
option")
- )

diff --git a/app-editors/hexedit/hexedit-1.2.13.ebuild 
b/app-editors/hexedit/hexedit-1.2.13.ebuild
deleted file mode 100644
index 1acb531a9217..
--- a/app-editors/hexedit/hexedit-1.2.13.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="View and edit files in hex or ASCII"
-HOMEPAGE="http://rigaux.org/hexedit.html;
-SRC_URI="http://rigaux.org/${P}.src.tgz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~mips ppc ppc64 ~riscv ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
-
-DEPEND="sys-libs/ncurses:="
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}"/${PN}
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.2.13-tinfo.patch
-)
-
-src_prepare() {
-   default
-
-   mv configure.in configure.ac || die
-   eautoreconf
-}
-
-src_install() {
-   dobin hexedit
-   doman hexedit.1
-   dodoc Changes
-}



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

2022-02-16 Thread William Hubbs
commit: ae86f3a5ae786632bc045e60c112d84aa2ec1271
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Feb 17 01:58:04 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Feb 17 01:58:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae86f3a5

go-module.eclass: update documentation

- document the minimum version of go that should be listed in go.mod.
- show how to generate the contents of EGO_SUM
Signed-off-by: William Hubbs  gentoo.org>

 eclass/go-module.eclass | 20 ++--
 1 file changed, 14 insertions(+), 6 deletions(-)

diff --git a/eclass/go-module.eclass b/eclass/go-module.eclass
index da786934ceca..9fa482405fdd 100644
--- a/eclass/go-module.eclass
+++ b/eclass/go-module.eclass
@@ -19,9 +19,13 @@
 # written in Go since version 1.16,
 # so if the software isn't using modules, it should be updated.
 #
+# Also, if the top level go.mod file contains a go directive that
+# specifies a version of go prior to 1.14, this should be reported
+# upstream and updated.
+#
 # If the software has a directory named vendor in its
 # top level directory, the only thing you need to do is inherit the
-# eclass. If there is no vendor directory, you need to also populate
+# eclass. Otherwise, you need to also populate
 # EGO_SUM and call go-module_set_globals as discussed below.
 #
 # Since Go programs are statically linked, it is important that your ebuild's
@@ -79,9 +83,10 @@ export GO111MODULE=on
 export GOCACHE="${T}/go-build"
 
 # The following go flags should be used for all builds.
+# -modcacherw makes the build cache read/write
 # -v prints the names of packages as they are compiled
 # -x prints commands as they are executed
-export GOFLAGS="-v -x -modcacherw"
+export GOFLAGS="-modcacherw -v -x"
 
 # Do not complain about CFLAGS etc since go projects do not use them.
 QA_FLAGS_IGNORED='.*'
@@ -91,12 +96,15 @@ RESTRICT+=" strip"
 
 # @ECLASS-VARIABLE: EGO_SUM
 # @DESCRIPTION:
-# This is an array based on the go.sum content from inside the target package.
-# Each array entry must be quoted and contain information from a single
-# line from go.sum.
+# This array is based on the contents of the go.sum file from the top
+# level directory of the software you are packaging. Each entry must be
+# quoted and contain the first two fields of a line from go.sum.
 #
+# You can use some combination of sed/awk/cut to extract the
+# contents of EGO_SUM or use the dev-go/get-ego-vendor tool.
+# 
 # The format of go.sum is described upstream here:
-# https://tip.golang.org/cmd/go/#hdr-Module_authentication_using_go_sum
+# https://go.dev/ref/mod#go-sum-files
 #
 # For inclusion in EGO_SUM, the h1: value and other future extensions SHOULD be
 # omitted at this time. The EGO_SUM parser will accept them for ease of ebuild



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

2022-02-16 Thread Conrad Kostecki
commit: 34e855ba3e67f6c21aa15aed4e90a529f64e3037
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Thu Feb 17 01:32:34 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Thu Feb 17 01:32:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34e855ba

net-wireless/unifi: add 7.0.22

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

 net-wireless/unifi/Manifest|  1 +
 net-wireless/unifi/unifi-7.0.22.ebuild | 96 ++
 2 files changed, 97 insertions(+)

diff --git a/net-wireless/unifi/Manifest b/net-wireless/unifi/Manifest
index 9be30f2af2cd..c2835ef74451 100644
--- a/net-wireless/unifi/Manifest
+++ b/net-wireless/unifi/Manifest
@@ -1,2 +1,3 @@
 DIST unifi-6.5.55.zip 157805689 BLAKE2B 
09a7b69143478d0b81dd6f7be1746b1a35cd00ee034471c512d04e4f91aa02688871857edf3c0ef538e601aaf8eccdd0c55193a9bde10924ddeff1fd333da355
 SHA512 
c2f677de819268366d65622238c1b8d6d8abcd5e06d6f1f635d9755573eff5a6aca0c84298a111b0da5e80bade8132e05339035edde3cc5fc08834f2d6c4b26e
 DIST unifi-7.0.21.zip 160838108 BLAKE2B 
6fbf7abe0a1aa4e72999f5875ac061713305868a4ea94fb67dc1eda0df2e33c8553a24572ab40d19cf5fc332bb55d58d29161d246251ccef2afd367b0f854e43
 SHA512 
4d3b292c688b5d64271c510680a5c31e860c023dde84975686f36a35b027be2b6e3052cdfc89bddb0f902345ba8f73a7a7c4b7a6cfa48a120b06f3fba79623bb
+DIST unifi-7.0.22.zip 160853259 BLAKE2B 
57fd335ebbb3136e2e3131527fa062210b28fc45d443efb9f5540827feb63b4b6b2b67419f4adfa77ac8c8a94f0bf430c936cf2b3fa7a9025d97069963d1a37f
 SHA512 
850063cff2792f00c3b87c6f9331b440ca32a5db21d30c6d2a5c1386a44e10cff434fbfe3944f8460f541aba963dc04ecd0cbfb5a6ca0b9d5b5f8f47fa039ee1

diff --git a/net-wireless/unifi/unifi-7.0.22.ebuild 
b/net-wireless/unifi/unifi-7.0.22.ebuild
new file mode 100644
index ..09783a8804ae
--- /dev/null
+++ b/net-wireless/unifi/unifi-7.0.22.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Set this var for any releases except stable
+RC_SUFFIX="-8c2c64c175"
+
+inherit java-pkg-2 systemd
+
+DESCRIPTION="A Management Controller for Ubiquiti Networks UniFi APs"
+HOMEPAGE="https://www.ubnt.com;
+SRC_URI="https://dl.ui.com/unifi/${PV}${RC_SUFFIX}/UniFi.unix.zip -> ${P}.zip"
+S="${WORKDIR}/UniFi"
+
+KEYWORDS="-* ~amd64 ~arm64"
+LICENSE="Apache-1.0 Apache-2.0 BSD-1 BSD-2 BSD CDDL EPL-1.0 GPL-2 LGPL-2.1 
LGPL-3 MIT ubiquiti"
+SLOT="0/$(ver_cut 1-2)"
+IUSE="systemd"
+RESTRICT="bindist mirror"
+
+RDEPEND="
+   acct-group/unifi
+   acct-user/unifi
+   dev-db/mongodb
+   virtual/jre:1.8
+"
+
+BDEPEND="app-arch/unzip"
+
+DOCS=( "readme.txt" )
+
+QA_PREBUILT="usr/lib/unifi/lib/native/Linux/x86_64/*.so"
+
+src_prepare() {
+   # Remove unneeded files Mac and Windows
+   rm -r lib/native/{Mac,Windows} || die
+
+   if [[ ${CHOST} != aarch64* ]]; then
+   rm -r lib/native/Linux/aarch64 || die "Failed in removing 
aarch64 native libraries"
+   fi
+   if [[ ${CHOST} != armv7* ]]; then
+   rm -r lib/native/Linux/armv7 || die "Failed in removing armv7 
native libraries"
+   fi
+   if [[ ${CHOST} != x86_64* ]]; then
+   rm -r lib/native/Linux/x86_64 || die "Failed in removing x86_64 
native libraries"
+   fi
+
+   if [[ ${CHOST} == aarch64* ]]; then
+   if ! use systemd; then
+   rm lib/native/Linux/aarch64/libubnt_sdnotify_jni.so || 
die
+   fi
+   fi
+   if [[ ${CHOST} == armv7* ]]; then
+   if ! use systemd; then
+   rm lib/native/Linux/armv7/libubnt_sdnotify_jni.so || die
+   fi
+   fi
+   if [[ ${CHOST} == x86_64* ]]; then
+   if ! use systemd; then
+   rm lib/native/Linux/x86_64/libubnt_sdnotify_jni.so || 
die
+   fi
+   fi
+
+   default
+}
+
+src_compile() {
+   :;
+}
+
+src_install() {
+   insinto /usr/lib/unifi
+   doins -r bin dl lib webapps
+
+   diropts -o unifi -g unifi
+   keepdir /var/lib/unifi/{conf,data,run,tmp,work} /var/log/unifi
+
+   for symlink in conf data run tmp work; do
+   dosym ../../../var/lib/unifi/${symlink} 
/usr/lib/unifi/${symlink}
+   done
+   dosym ../../../var/log/unifi /usr/lib/unifi/logs
+
+   java-pkg_regjar "${D}"/usr/lib/unifi/lib/*.jar
+   java-pkg_dolauncher unifi --java_args 
'-Dorg.xerial.snappy.tempdir=/usr/lib/unifi/tmp -Djava.library.path=' --jar 
ace.jar --pwd '/usr/lib/unifi'
+
+   newinitd "${FILESDIR}"/unifi.initd-r2 unifi
+   systemd_dounit "${FILESDIR}"/unifi.service-r1
+
+   newconfd "${FILESDIR}"/unifi.confd unifi
+
+   echo 'CONFIG_PROTECT="/var/lib/unifi"' > "${T}"/99unifi || die
+   doenvd "${T}"/99unifi
+
+   einstalldocs
+}



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

2022-02-16 Thread Conrad Kostecki
commit: 36d1d1a6bae15f29cd3d8fe04b060f268c0ab748
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Thu Feb 17 01:32:54 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Thu Feb 17 01:32:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36d1d1a6

net-wireless/unifi: drop 7.0.21-r2

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

 net-wireless/unifi/Manifest   |  1 -
 net-wireless/unifi/unifi-7.0.21-r2.ebuild | 96 ---
 2 files changed, 97 deletions(-)

diff --git a/net-wireless/unifi/Manifest b/net-wireless/unifi/Manifest
index c2835ef74451..e29cae29694c 100644
--- a/net-wireless/unifi/Manifest
+++ b/net-wireless/unifi/Manifest
@@ -1,3 +1,2 @@
 DIST unifi-6.5.55.zip 157805689 BLAKE2B 
09a7b69143478d0b81dd6f7be1746b1a35cd00ee034471c512d04e4f91aa02688871857edf3c0ef538e601aaf8eccdd0c55193a9bde10924ddeff1fd333da355
 SHA512 
c2f677de819268366d65622238c1b8d6d8abcd5e06d6f1f635d9755573eff5a6aca0c84298a111b0da5e80bade8132e05339035edde3cc5fc08834f2d6c4b26e
-DIST unifi-7.0.21.zip 160838108 BLAKE2B 
6fbf7abe0a1aa4e72999f5875ac061713305868a4ea94fb67dc1eda0df2e33c8553a24572ab40d19cf5fc332bb55d58d29161d246251ccef2afd367b0f854e43
 SHA512 
4d3b292c688b5d64271c510680a5c31e860c023dde84975686f36a35b027be2b6e3052cdfc89bddb0f902345ba8f73a7a7c4b7a6cfa48a120b06f3fba79623bb
 DIST unifi-7.0.22.zip 160853259 BLAKE2B 
57fd335ebbb3136e2e3131527fa062210b28fc45d443efb9f5540827feb63b4b6b2b67419f4adfa77ac8c8a94f0bf430c936cf2b3fa7a9025d97069963d1a37f
 SHA512 
850063cff2792f00c3b87c6f9331b440ca32a5db21d30c6d2a5c1386a44e10cff434fbfe3944f8460f541aba963dc04ecd0cbfb5a6ca0b9d5b5f8f47fa039ee1

diff --git a/net-wireless/unifi/unifi-7.0.21-r2.ebuild 
b/net-wireless/unifi/unifi-7.0.21-r2.ebuild
deleted file mode 100644
index e623f1c82bf2..
--- a/net-wireless/unifi/unifi-7.0.21-r2.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# Set this var for any releases except stable
-RC_SUFFIX="-ebd087e2ad"
-
-inherit java-pkg-2 systemd
-
-DESCRIPTION="A Management Controller for Ubiquiti Networks UniFi APs"
-HOMEPAGE="https://www.ubnt.com;
-SRC_URI="https://dl.ui.com/unifi/${PV}${RC_SUFFIX}/UniFi.unix.zip -> ${P}.zip"
-S="${WORKDIR}/UniFi"
-
-KEYWORDS="-* ~amd64 ~arm64"
-LICENSE="Apache-1.0 Apache-2.0 BSD-1 BSD-2 BSD CDDL EPL-1.0 GPL-2 LGPL-2.1 
LGPL-3 MIT ubiquiti"
-SLOT="0/$(ver_cut 1-2)"
-IUSE="systemd"
-RESTRICT="bindist mirror"
-
-RDEPEND="
-   acct-group/unifi
-   acct-user/unifi
-   dev-db/mongodb
-   virtual/jre:1.8
-"
-
-BDEPEND="app-arch/unzip"
-
-DOCS=( "readme.txt" )
-
-QA_PREBUILT="usr/lib/unifi/lib/native/Linux/x86_64/*.so"
-
-src_prepare() {
-   # Remove unneeded files Mac and Windows
-   rm -r lib/native/{Mac,Windows} || die
-
-   if [[ ${CHOST} != aarch64* ]]; then
-   rm -r lib/native/Linux/aarch64 || die "Failed in removing 
aarch64 native libraries"
-   fi
-   if [[ ${CHOST} != armv7* ]]; then
-   rm -r lib/native/Linux/armv7 || die "Failed in removing armv7 
native libraries"
-   fi
-   if [[ ${CHOST} != x86_64* ]]; then
-   rm -r lib/native/Linux/x86_64 || die "Failed in removing x86_64 
native libraries"
-   fi
-
-   if [[ ${CHOST} == aarch64* ]]; then
-   if ! use systemd; then
-   rm lib/native/Linux/aarch64/libubnt_sdnotify_jni.so || 
die
-   fi
-   fi
-   if [[ ${CHOST} == armv7* ]]; then
-   if ! use systemd; then
-   rm lib/native/Linux/armv7/libubnt_sdnotify_jni.so || die
-   fi
-   fi
-   if [[ ${CHOST} == x86_64* ]]; then
-   if ! use systemd; then
-   rm lib/native/Linux/x86_64/libubnt_sdnotify_jni.so || 
die
-   fi
-   fi
-
-   default
-}
-
-src_compile() {
-   :;
-}
-
-src_install() {
-   insinto /usr/lib/unifi
-   doins -r bin dl lib webapps
-
-   diropts -o unifi -g unifi
-   keepdir /var/lib/unifi/{conf,data,run,tmp,work} /var/log/unifi
-
-   for symlink in conf data run tmp work; do
-   dosym ../../../var/lib/unifi/${symlink} 
/usr/lib/unifi/${symlink}
-   done
-   dosym ../../../var/log/unifi /usr/lib/unifi/logs
-
-   java-pkg_regjar "${D}"/usr/lib/unifi/lib/*.jar
-   java-pkg_dolauncher unifi --java_args 
'-Dorg.xerial.snappy.tempdir=/usr/lib/unifi/tmp -Djava.library.path=' --jar 
ace.jar --pwd '/usr/lib/unifi'
-
-   newinitd "${FILESDIR}"/unifi.initd-r2 unifi
-   systemd_dounit "${FILESDIR}"/unifi.service-r1
-
-   newconfd "${FILESDIR}"/unifi.confd unifi
-
-   echo 'CONFIG_PROTECT="/var/lib/unifi"' > "${T}"/99unifi || die
-   doenvd "${T}"/99unifi
-
-   einstalldocs
-}



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

2022-02-16 Thread Ionen Wolkens
commit: 77f853e7f8a30e1922765d2e99e8d19c752a1c21
Author: Robert Siebeck  r123  de>
AuthorDate: Wed Feb 16 21:45:22 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Feb 17 00:51:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77f853e7

net-im/signal-desktop-bin: remove old version

Signed-off-by: Robert Siebeck  r123.de>
Closes: https://github.com/gentoo/gentoo/pull/24220
Signed-off-by: Ionen Wolkens  gentoo.org>

 net-im/signal-desktop-bin/Manifest |  2 -
 .../signal-desktop-bin-5.30.0.ebuild   | 98 --
 .../signal-desktop-bin-5.31.1.ebuild   | 98 --
 3 files changed, 198 deletions(-)

diff --git a/net-im/signal-desktop-bin/Manifest 
b/net-im/signal-desktop-bin/Manifest
index 28646ee8b759..34ae84278564 100644
--- a/net-im/signal-desktop-bin/Manifest
+++ b/net-im/signal-desktop-bin/Manifest
@@ -1,3 +1 @@
-DIST signal-desktop_5.30.0_amd64.deb 125068854 BLAKE2B 
97e7b2cd038e3b4fc9648aafef4a1c912be0051dae90279c599b3898eca91616640e3489acbcb09b071a70c22a8d8c7d69f3fb9165d64cf226197a5997dfbe70
 SHA512 
0f947ef2761b9440d538434d44d4fe050a42185dd0774e9504db0a5491424420475a4736c53e364dcb0b5132f9b8046f70d8f622b8c89be32aa084a619eb0572
-DIST signal-desktop_5.31.1_amd64.deb 125122076 BLAKE2B 
d2091a2dc6539fe9db2abe0f24647376373a24e19f4cbfef7edd4d26cbef86fe547188d561e98ab98e3ca3a793df7db0a6aad0b7d7878cdf9c21b96eb5a17bf4
 SHA512 
9f7a7f2665b07dc73aa4382b7007e3fc35137084c336ef4123efab61bd6bd3124617d2f9b7c5c2b1cae303207d473a41e02b9894b25851853bec6db49c7989d7
 DIST signal-desktop_5.32.0_amd64.deb 141498312 BLAKE2B 
cd3d0abf26c6cba51d70af689966350e6c81deb876d315ba4ba81994b5863da6eb24733dd53c2f81d77ae4f225dba37aa397ac72ff3c621ae7e3e46a078c475d
 SHA512 
a5ee049c92777ae052a5ec1ebe32f50ef7fe19a4ce1519a01bcd7d307beed343547f636386ac39b3b62979ef766a0ca1c10820e00607eda186590ef6caefc7e0

diff --git a/net-im/signal-desktop-bin/signal-desktop-bin-5.30.0.ebuild 
b/net-im/signal-desktop-bin/signal-desktop-bin-5.30.0.ebuild
deleted file mode 100644
index 75db5c2f8043..
--- a/net-im/signal-desktop-bin/signal-desktop-bin-5.30.0.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_PN="${PN/-bin/}"
-
-inherit pax-utils unpacker xdg
-
-DESCRIPTION="Allows you to send and receive messages of Signal Messenger on 
your computer"
-HOMEPAGE="https://signal.org/
-   https://github.com/signalapp/Signal-Desktop;
-SRC_URI="https://updates.signal.org/desktop/apt/pool/main/s/${MY_PN}/${MY_PN}_${PV}_amd64.deb;
-S="${WORKDIR}"
-
-LICENSE="GPL-3 MIT MIT-with-advertising BSD-1 BSD-2 BSD Apache-2.0 ISC openssl 
ZLIB APSL-2 icu Artistic-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="-* amd64"
-IUSE="+sound"
-RESTRICT="splitdebug"
-
-RDEPEND="
-   app-accessibility/at-spi2-atk:2
-   app-accessibility/at-spi2-core:2
-   dev-libs/atk
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   media-libs/alsa-lib
-   media-libs/mesa[X(+)]
-   net-print/cups
-   sys-apps/dbus[X]
-   x11-libs/gdk-pixbuf:2
-   x11-libs/cairo
-   x11-libs/gtk+:3[X]
-   x11-libs/libdrm
-   x11-libs/libX11
-   x11-libs/libxcb
-   x11-libs/libxkbcommon
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXrandr
-   x11-libs/pango
-   sound? (
-   || (
-   media-sound/pulseaudio
-   media-sound/apulse
-   )
-   )
-"
-
-QA_PREBUILT="
-   opt/Signal/chrome_crashpad_handler
-   opt/Signal/chrome-sandbox
-   opt/Signal/libEGL.so
-   opt/Signal/libGLESv2.so
-   opt/Signal/libffmpeg.so
-   opt/Signal/libvk_swiftshader.so
-   opt/Signal/libvulkan.so.1
-   opt/Signal/resources/app.asar.unpacked/node_modules/*
-   opt/Signal/signal-desktop
-   opt/Signal/swiftshader/libEGL.so
-   opt/Signal/swiftshader/libGLESv2.so"
-
-src_prepare() {
-   default
-   sed -e 's| --no-sandbox||g' \
-   -i usr/share/applications/signal-desktop.desktop || die
-   unpack usr/share/doc/signal-desktop/changelog.gz
-}
-
-src_install() {
-   insinto /
-   dodoc changelog
-   doins -r opt
-   insinto /usr/share
-
-   if has_version media-sound/apulse[-sdk] && ! has_version 
media-sound/pulseaudio; then
-   sed -i 's/Exec=/Exec=apulse /g' 
usr/share/applications/signal-desktop.desktop || die
-   fi
-
-   doins -r usr/share/applications
-   doins -r usr/share/icons
-   fperms +x /opt/Signal/signal-desktop /opt/Signal/chrome-sandbox
-   fperms u+s /opt/Signal/chrome-sandbox
-   pax-mark m opt/Signal/signal-desktop opt/Signal/chrome-sandbox
-
-   dosym ../../opt/Signal/${MY_PN} /usr/bin/${MY_PN}
-}
-
-pkg_postinst() {
-  

[gentoo-commits] repo/gentoo:master commit in: app-shells/mcfly/

2022-02-16 Thread Ionen Wolkens
commit: 88e10de99a61c0959264c64dc77f7edcaf1474b0
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Feb 16 16:17:22 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Feb 17 00:37:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88e10de9

app-shells/mcfly: remove myself from maintainers

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/24212
Signed-off-by: Ionen Wolkens  gentoo.org>

 app-shells/mcfly/metadata.xml | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/app-shells/mcfly/metadata.xml b/app-shells/mcfly/metadata.xml
index e2f80ba8812a..d3d189231d33 100644
--- a/app-shells/mcfly/metadata.xml
+++ b/app-shells/mcfly/metadata.xml
@@ -1,14 +1,7 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   m...@levelnine.at
-   Michael Mair-Keimberger
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
+   

McFly replaces your default ctrl-r Bash history search with an 
intelligent search engine
that takes into account your working directory and the context 
of recently executed commands.



[gentoo-commits] repo/gentoo:master commit in: app-shells/mcfly/

2022-02-16 Thread Ionen Wolkens
commit: 660ece8670ec2bf44d9eeba1a4632c1662da1a14
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Feb 16 16:15:18 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Feb 17 00:36:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=660ece86

app-shells/mcfly: version bump (0.5.13)

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Ionen Wolkens  gentoo.org>

 app-shells/mcfly/Manifest|   1 +
 app-shells/mcfly/mcfly-0.5.13.ebuild | 115 +++
 2 files changed, 116 insertions(+)

diff --git a/app-shells/mcfly/Manifest b/app-shells/mcfly/Manifest
index eab283538e24..37397de5d98e 100644
--- a/app-shells/mcfly/Manifest
+++ b/app-shells/mcfly/Manifest
@@ -32,6 +32,7 @@ DIST linked-hash-map-0.5.3.crate 16130 BLAKE2B 
20ca73044271533d2da6bb6ca863a192b
 DIST lru-cache-0.1.2.crate 9307 BLAKE2B 
606072bc5390a13cf24b4c64c77ba7f84c4c2b1a73c4abe8ead4e1d19067b063888d5cbe478dc9108d193f0a66aa5fb2ddc073f3edfac466de34f85a52a15ef2
 SHA512 
ecc67b4b2ed8d3596816c47e9c6aa242c7bdd1ee8087646e90c27a60d59175f661ec3ef82058c196bef2abdd302d429b7ea4279169689254a9f322dfd5697bf1
 DIST mcfly-0.5.11.tar.gz 208182 BLAKE2B 
ebdde50be976fa13f4edc558d6afa203aa40cbe169e03d249068c7d662b8fd563bf9f62909b97caabe3a5607410c7c4cbc85ccf010c353b6e79499c27869389c
 SHA512 
9c3d4062b3aab7e6656b8c3dddb1102a54092d3f0bf87b898ee9a63976335fa0c3fe0de1cd1da4ea1322b1b970938703f8eeb82919ceecf015f465eca0871c8e
 DIST mcfly-0.5.12.tar.gz 208419 BLAKE2B 
20faefb68a6ac4ad40cfc8d98b901b5c0aaf2cbd1d8c002ff44f389f19f005e1a57b21e4fbedf93a17664ccc38f446511fce33081283e43b57f4f2a76c9e770e
 SHA512 
1a5946520d6887afbaf4969d8a3a3ab266f32672ba63189164d245015b3d1224e627658bda3b6868f19099246a884fa7bf95e50bc4a1b2ac186f3209331cd678
+DIST mcfly-0.5.13.tar.gz 208538 BLAKE2B 
93a63a7e2f78d914e6c1a098eb7139c2c23a30afeed7779991abd0f492e8401703e117556d5378150403fd4baf0ff700cbff438396dff07808223f7ef67286df
 SHA512 
cd95457fd0063e828eb6882b61d2368159412e33c584d3c48cb4b58898f1c930d0d5fa77d19edeedb4489b4d5641dcbfe9994afc95927d9d774d0a71be82682b
 DIST memchr-2.3.3.crate 22566 BLAKE2B 
f952070b98ef30f0d2780a6efbeb36d295710734f678517d913a8002cafebbd3cfc38975fc4546d306efc11bc815764d14320af3b7a2360bd46fc2ab3db9efa5
 SHA512 
922e05da920d0d94226857788878ee5e31518cd80d95ae57e1d7ecd233942c37d01565525db2f1dfdfd5b3b1f81b2c73eee058cbfd745cb4e1519518318df248
 DIST num-integer-0.1.44.crate 22216 BLAKE2B 
e1c08427e006cde6f2084adadb6086e87e6d6f8bb8dfa757a8228aa671e862a366e4bd8ca5e058c18bab128aead9bd5b1e53568a4f40afadcaf3882ee98f
 SHA512 
d07e27ede02a1d007373935fd91e57a26e0e84ae14bbe24be66763baae6850788bd64ad2598d2bde4f4fad6c8a4675c40bfe0927164b16b9b69de5e9a83d9771
 DIST num-traits-0.2.14.crate 45476 BLAKE2B 
ae310d9d5640acc3e45e1e5d1d2f519539795922c0058ee940c94c94b6654b39358b7c18dd23a276f2c1b16a30dd4de4cbc8575bcda6a5c11e70665d670e6439
 SHA512 
c3028eca9f7b718de0db3a36cf3e462bdba43562d52c9b809ed4cc0aa6af403aea542d6d4da743cd1dd541397815a3c5a84cef4d6e40122994e4be6a62319b2e

diff --git a/app-shells/mcfly/mcfly-0.5.13.ebuild 
b/app-shells/mcfly/mcfly-0.5.13.ebuild
new file mode 100644
index ..888504821bc2
--- /dev/null
+++ b/app-shells/mcfly/mcfly-0.5.13.ebuild
@@ -0,0 +1,115 @@
+# Copyright 2017-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CRATES="
+   aho-corasick-0.7.10
+   ansi_term-0.11.0
+   arrayref-0.3.6
+   arrayvec-0.5.1
+   atty-0.2.14
+   autocfg-1.0.0
+   base64-0.11.0
+   bitflags-1.2.1
+   blake2b_simd-0.5.10
+   bstr-0.2.12
+   byteorder-1.3.4
+   cc-1.0.52
+   cfg-if-0.1.10
+   chrono-0.4.19
+   clap-2.33.0
+   constant_time_eq-0.1.5
+   crossbeam-utils-0.7.2
+   csv-1.1.3
+   csv-core-0.1.10
+   dirs-2.0.2
+   dirs-sys-0.3.4
+   either-1.6.1
+   getrandom-0.1.14
+   hermit-abi-0.1.12
+   humantime-2.1.0
+   itertools-0.9.0
+   itoa-0.4.5
+   lazy_static-1.4.0
+   libc-0.2.69
+   libsqlite3-sys-0.10.0
+   linked-hash-map-0.5.3
+   lru-cache-0.1.2
+   memchr-2.3.3
+   num-integer-0.1.44
+   num-traits-0.2.14
+   numtoa-0.1.0
+   pkg-config-0.3.17
+   ppv-lite86-0.2.6
+   rand-0.7.3
+   rand_chacha-0.2.2
+   rand_core-0.5.1
+   rand_hc-0.2.0
+   redox_syscall-0.1.56
+   redox_termios-0.1.1
+   redox_users-0.3.4
+   regex-1.3.7
+   regex-automata-0.1.9
+   regex-syntax-0.6.17
+   relative-path-1.0.0
+   rusqlite-0.15.0
+   rust-argon2-0.7.0
+   ryu-1.0.4
+   serde-1.0.106
+   shellexpand-2.0.0
+   strsim-0.8.0
+   termion-1.5.5
+   textwrap-0.11.0
+   thread_local-1.0.1
+   time-0.1.43
+   unicode-segmentation-1.6.0
+   unicode-width-0.1.7
+   vcpkg-0.2.8
+   vec_map-0.8.2
+   wasi-0.9.0+wasi-snapshot-preview1
+ 

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

2022-02-16 Thread Ionen Wolkens
commit: e973ca1ee6ace19870ca8b15228050e016f071a2
Author: Jimi Huotari  gentoo  org>
AuthorDate: Tue Feb 15 15:01:25 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Feb 17 00:15:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e973ca1e

media-video/obs-studio: update CEF and deps/remove patch/workarounds

PulseAudio detection during configure has been improved upon, and
the Python issue should be gone as well.

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jimi Huotari  gentoo.org>
Signed-off-by: Ionen Wolkens  gentoo.org>

 media-video/obs-studio/Manifest   |  1 +
 media-video/obs-studio/obs-studio-.ebuild | 25 -
 2 files changed, 9 insertions(+), 17 deletions(-)

diff --git a/media-video/obs-studio/Manifest b/media-video/obs-studio/Manifest
index 8e4776e01191..3136925c5622 100644
--- a/media-video/obs-studio/Manifest
+++ b/media-video/obs-studio/Manifest
@@ -1,4 +1,5 @@
 DIST cef_binary_4280_linux64.tar.bz2 79740715 BLAKE2B 
c648a9a4205094450f9eae407e98cbc3da2b7cd81b3c19c4f52cfa3efcca01dce40528018996c65f026eb97520d78040165d1906b0d19236a86e76ec39c58c26
 SHA512 
060a5a8716a75b4b96dfb6ac28c132e22b93107915d680311c1b9d4fd12c7712a9e3497338eac6d2b9f4e74f2dc005a75d195c597bba049e4731fe3724f519ba
+DIST cef_binary_4638_linux64.tar.bz2 104578246 BLAKE2B 
13ee05d4a2fbf27290506297416b298c786954450c19183b493d13aa691db409c22b30870fbc55adf814ff30142a666eb8b172f16ccc48e6cf01135c72e5d6d6
 SHA512 
2eb01151e07adf332affce36a659c6e87da1fbc403c65db7e7c53472ff418df6cd04300a7c6ebc8789c094926429cc70d829e556e5de3127da230f8258fabe49
 DIST obs-browser-aee43000bd994022cd73e32dc50938ab777d4a06.tar.gz 89603 BLAKE2B 
a51b92f829ecb7055dcf969d6d5bdc4632b51288f0bc7e2ab66fda087da608869ddffccda83aa925f049c79e745a6f67e70ec72303184b970f5009fe37b34054
 SHA512 
8159ca02b5c30d2733ce8e566f21d6b77d6b7beabd0a5898049ee83b0b4d720b967fc55fcf876cd772fdaa12ca08163a0f8cabf249a9b3b6eb56b7666d1192c7
 DIST obs-browser-f1a61c5a2579e5673765c31a47c2053d4b502d4b.tar.gz 79259 BLAKE2B 
28cfa46928de0b5e626b384673f7b92b3a48cb631066dda06288c51df78f06b913707a1295a5142d4521505b0678a6c639bfbb5b8a066d585fa12849578a382e
 SHA512 
3ecab39bfb36774ac501de087ca70ecde12f408cfd54cdf12539a92e89d0cf531767a066ff77139389158c46beee423cf1848081ed187890b86241aa96f7b179
 DIST obs-studio-27.0.1.tar.gz 15787807 BLAKE2B 
c2ea571f06a81b2e87ce5d9fd010610ea6cc2753223e6373025f0389972d4638a5f3ff1802f9f0af2c631d71ebcf4603e064da804e8c89eb032b1ad5743d1bd4
 SHA512 
c15dda62c1f212f623914e61a90c6b1e035720fb84d64726c14f43d77ae7569777a23d04221db34347ce610e7c3407c29e726ae36412e98e34ea2ddb2072b7f3

diff --git a/media-video/obs-studio/obs-studio-.ebuild 
b/media-video/obs-studio/obs-studio-.ebuild
index 6e23d6b2b473..886f44b7284f 100644
--- a/media-video/obs-studio/obs-studio-.ebuild
+++ b/media-video/obs-studio/obs-studio-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -9,8 +9,8 @@ PYTHON_COMPAT=( python3_{8..10} )
 
 inherit cmake lua-single python-single-r1 xdg
 
-OBS_BROWSER_COMMIT="2a338b7c76d5dd0a6b23f1d49affefd40213b0e9"
-CEF_DIR="cef_binary_4280_linux64"
+OBS_BROWSER_COMMIT="b0d687937af876b52b69c46e276b4ab601b07f0e"
+CEF_DIR="cef_binary_4638_linux64"
 
 if [[ ${PV} ==  ]]; then
inherit git-r3
@@ -61,6 +61,7 @@ DEPEND="
media-video/ffmpeg:=[x264]
net-misc/curl
sys-apps/dbus
+   sys-apps/pciutils
sys-libs/zlib:=
virtual/udev
x11-libs/libX11
@@ -82,6 +83,7 @@ DEPEND="
media-libs/fontconfig
media-libs/mesa[gbm(+)]
net-print/cups
+   x11-libs/cairo
x11-libs/libdrm
x11-libs/libXScrnSaver
x11-libs/libXcursor
@@ -112,17 +114,15 @@ RDEPEND="${DEPEND}"
 
 QA_PREBUILT="
usr/lib*/obs-plugins/chrome-sandbox
+   usr/lib*/obs-plugins/libcef.so
usr/lib*/obs-plugins/libEGL.so
usr/lib*/obs-plugins/libGLESv2.so
-   usr/lib*/obs-plugins/libcef.so
+   usr/lib*/obs-plugins/libvk_swiftshader.so
+   usr/lib*/obs-plugins/libvulkan.so.1
usr/lib*/obs-plugins/swiftshader/libEGL.so
usr/lib*/obs-plugins/swiftshader/libGLESv2.so
 "
 
-PATCHES=(
-   "${FILESDIR}/${PN}-26.1.2-python-3.8.patch"
-)
-
 pkg_setup() {
use lua && lua-single_pkg_setup
use python && python-single-r1_pkg_setup
@@ -153,7 +153,6 @@ src_configure() {
-DDISABLE_LIBFDK=$(usex !fdk)
-DENABLE_PIPEWIRE=$(usex pipewire)
-DDISABLE_PULSEAUDIO=$(usex !pulseaudio)
-   $(cmake_use_find_package pulseaudio PulseAudio)
-DDISABLE_SPEEXDSP=$(usex !speex)
-DDISABLE_V4L2=$(usex !v4l)
-DDISABLE_VLC=$(usex !vlc)
@@ -203,12 +202,4 @@ pkg_postinst() {
elog 

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

2022-02-16 Thread Ionen Wolkens
commit: a426467a11ff60df784ab21bec5b843ec02836d5
Author: Robert Siebeck  r123  de>
AuthorDate: Wed Feb 16 21:44:34 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Feb 17 00:49:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a426467a

net-im/signal-desktop-bin: add new version 5.32.0

ionen's note:
  going straight-to-stable with these from now on is something we
  agreed on (unless there is some major changes), release are very
  frequent and almost never have issues

Signed-off-by: Robert Siebeck  r123.de>
Signed-off-by: Ionen Wolkens  gentoo.org>

 net-im/signal-desktop-bin/Manifest |  1 +
 .../signal-desktop-bin-5.32.0.ebuild   | 98 ++
 2 files changed, 99 insertions(+)

diff --git a/net-im/signal-desktop-bin/Manifest 
b/net-im/signal-desktop-bin/Manifest
index 2b281bbf13f0..28646ee8b759 100644
--- a/net-im/signal-desktop-bin/Manifest
+++ b/net-im/signal-desktop-bin/Manifest
@@ -1,2 +1,3 @@
 DIST signal-desktop_5.30.0_amd64.deb 125068854 BLAKE2B 
97e7b2cd038e3b4fc9648aafef4a1c912be0051dae90279c599b3898eca91616640e3489acbcb09b071a70c22a8d8c7d69f3fb9165d64cf226197a5997dfbe70
 SHA512 
0f947ef2761b9440d538434d44d4fe050a42185dd0774e9504db0a5491424420475a4736c53e364dcb0b5132f9b8046f70d8f622b8c89be32aa084a619eb0572
 DIST signal-desktop_5.31.1_amd64.deb 125122076 BLAKE2B 
d2091a2dc6539fe9db2abe0f24647376373a24e19f4cbfef7edd4d26cbef86fe547188d561e98ab98e3ca3a793df7db0a6aad0b7d7878cdf9c21b96eb5a17bf4
 SHA512 
9f7a7f2665b07dc73aa4382b7007e3fc35137084c336ef4123efab61bd6bd3124617d2f9b7c5c2b1cae303207d473a41e02b9894b25851853bec6db49c7989d7
+DIST signal-desktop_5.32.0_amd64.deb 141498312 BLAKE2B 
cd3d0abf26c6cba51d70af689966350e6c81deb876d315ba4ba81994b5863da6eb24733dd53c2f81d77ae4f225dba37aa397ac72ff3c621ae7e3e46a078c475d
 SHA512 
a5ee049c92777ae052a5ec1ebe32f50ef7fe19a4ce1519a01bcd7d307beed343547f636386ac39b3b62979ef766a0ca1c10820e00607eda186590ef6caefc7e0

diff --git a/net-im/signal-desktop-bin/signal-desktop-bin-5.32.0.ebuild 
b/net-im/signal-desktop-bin/signal-desktop-bin-5.32.0.ebuild
new file mode 100644
index ..75db5c2f8043
--- /dev/null
+++ b/net-im/signal-desktop-bin/signal-desktop-bin-5.32.0.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="${PN/-bin/}"
+
+inherit pax-utils unpacker xdg
+
+DESCRIPTION="Allows you to send and receive messages of Signal Messenger on 
your computer"
+HOMEPAGE="https://signal.org/
+   https://github.com/signalapp/Signal-Desktop;
+SRC_URI="https://updates.signal.org/desktop/apt/pool/main/s/${MY_PN}/${MY_PN}_${PV}_amd64.deb;
+S="${WORKDIR}"
+
+LICENSE="GPL-3 MIT MIT-with-advertising BSD-1 BSD-2 BSD Apache-2.0 ISC openssl 
ZLIB APSL-2 icu Artistic-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="-* amd64"
+IUSE="+sound"
+RESTRICT="splitdebug"
+
+RDEPEND="
+   app-accessibility/at-spi2-atk:2
+   app-accessibility/at-spi2-core:2
+   dev-libs/atk
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   media-libs/alsa-lib
+   media-libs/mesa[X(+)]
+   net-print/cups
+   sys-apps/dbus[X]
+   x11-libs/gdk-pixbuf:2
+   x11-libs/cairo
+   x11-libs/gtk+:3[X]
+   x11-libs/libdrm
+   x11-libs/libX11
+   x11-libs/libxcb
+   x11-libs/libxkbcommon
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXrandr
+   x11-libs/pango
+   sound? (
+   || (
+   media-sound/pulseaudio
+   media-sound/apulse
+   )
+   )
+"
+
+QA_PREBUILT="
+   opt/Signal/chrome_crashpad_handler
+   opt/Signal/chrome-sandbox
+   opt/Signal/libEGL.so
+   opt/Signal/libGLESv2.so
+   opt/Signal/libffmpeg.so
+   opt/Signal/libvk_swiftshader.so
+   opt/Signal/libvulkan.so.1
+   opt/Signal/resources/app.asar.unpacked/node_modules/*
+   opt/Signal/signal-desktop
+   opt/Signal/swiftshader/libEGL.so
+   opt/Signal/swiftshader/libGLESv2.so"
+
+src_prepare() {
+   default
+   sed -e 's| --no-sandbox||g' \
+   -i usr/share/applications/signal-desktop.desktop || die
+   unpack usr/share/doc/signal-desktop/changelog.gz
+}
+
+src_install() {
+   insinto /
+   dodoc changelog
+   doins -r opt
+   insinto /usr/share
+
+   if has_version media-sound/apulse[-sdk] && ! has_version 
media-sound/pulseaudio; then
+   sed -i 's/Exec=/Exec=apulse /g' 
usr/share/applications/signal-desktop.desktop || die
+   fi
+
+   doins -r usr/share/applications
+   doins -r usr/share/icons
+   fperms +x /opt/Signal/signal-desktop /opt/Signal/chrome-sandbox
+   fperms u+s /opt/Signal/chrome-sandbox
+   pax-mark m opt/Signal/signal-desktop opt/Signal/chrome-sandbox
+
+   dosym 

[gentoo-commits] repo/gentoo:master commit in: app-shells/mcfly/

2022-02-16 Thread Ionen Wolkens
commit: 24c8ecd315067acb49fc8ee121648e4deeadc92c
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Feb 16 16:15:33 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Feb 17 00:36:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24c8ecd3

app-shells/mcfly: remove old

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Ionen Wolkens  gentoo.org>

 app-shells/mcfly/Manifest|   1 -
 app-shells/mcfly/mcfly-0.5.11.ebuild | 115 ---
 2 files changed, 116 deletions(-)

diff --git a/app-shells/mcfly/Manifest b/app-shells/mcfly/Manifest
index 37397de5d98e..b456aeb6999e 100644
--- a/app-shells/mcfly/Manifest
+++ b/app-shells/mcfly/Manifest
@@ -30,7 +30,6 @@ DIST libc-0.2.69.crate 472393 BLAKE2B 
41a9cd242ccc994c69da10f091061b2c31ed6a9c52
 DIST libsqlite3-sys-0.10.0.crate 2175426 BLAKE2B 
dc7cbbcb632e2de1e8fcd6372cb0a82ed044db1d8634fa88b4294efb01470528fc86cece8c1ba6c4800a97c39d78bebb4b858efaf7c3c74510f5cf675ca2a1f0
 SHA512 
df030105952e8e0ca9def15d914a2eb7fb81754c85465788f7a3df5626b647d4af7f93b11f2f6d6e3dba286fd101c779dd51de7f2732084ba9542120cbc0e299
 DIST linked-hash-map-0.5.3.crate 16130 BLAKE2B 
20ca73044271533d2da6bb6ca863a192b61231760fddb82ac373a34fe63d92efe5b841fa401b9aa509cc1e05b86cf672eae3f26ab5c07c7b0c25e764e128344e
 SHA512 
90ec22fcd830ccfdefd1f7c480c5cebd5e95c822e0c28fff9ccf00bfbdda080c17a722697fdc991ee04a4a32e974309440a91284bc13c9ee70284e4e247d33b1
 DIST lru-cache-0.1.2.crate 9307 BLAKE2B 
606072bc5390a13cf24b4c64c77ba7f84c4c2b1a73c4abe8ead4e1d19067b063888d5cbe478dc9108d193f0a66aa5fb2ddc073f3edfac466de34f85a52a15ef2
 SHA512 
ecc67b4b2ed8d3596816c47e9c6aa242c7bdd1ee8087646e90c27a60d59175f661ec3ef82058c196bef2abdd302d429b7ea4279169689254a9f322dfd5697bf1
-DIST mcfly-0.5.11.tar.gz 208182 BLAKE2B 
ebdde50be976fa13f4edc558d6afa203aa40cbe169e03d249068c7d662b8fd563bf9f62909b97caabe3a5607410c7c4cbc85ccf010c353b6e79499c27869389c
 SHA512 
9c3d4062b3aab7e6656b8c3dddb1102a54092d3f0bf87b898ee9a63976335fa0c3fe0de1cd1da4ea1322b1b970938703f8eeb82919ceecf015f465eca0871c8e
 DIST mcfly-0.5.12.tar.gz 208419 BLAKE2B 
20faefb68a6ac4ad40cfc8d98b901b5c0aaf2cbd1d8c002ff44f389f19f005e1a57b21e4fbedf93a17664ccc38f446511fce33081283e43b57f4f2a76c9e770e
 SHA512 
1a5946520d6887afbaf4969d8a3a3ab266f32672ba63189164d245015b3d1224e627658bda3b6868f19099246a884fa7bf95e50bc4a1b2ac186f3209331cd678
 DIST mcfly-0.5.13.tar.gz 208538 BLAKE2B 
93a63a7e2f78d914e6c1a098eb7139c2c23a30afeed7779991abd0f492e8401703e117556d5378150403fd4baf0ff700cbff438396dff07808223f7ef67286df
 SHA512 
cd95457fd0063e828eb6882b61d2368159412e33c584d3c48cb4b58898f1c930d0d5fa77d19edeedb4489b4d5641dcbfe9994afc95927d9d774d0a71be82682b
 DIST memchr-2.3.3.crate 22566 BLAKE2B 
f952070b98ef30f0d2780a6efbeb36d295710734f678517d913a8002cafebbd3cfc38975fc4546d306efc11bc815764d14320af3b7a2360bd46fc2ab3db9efa5
 SHA512 
922e05da920d0d94226857788878ee5e31518cd80d95ae57e1d7ecd233942c37d01565525db2f1dfdfd5b3b1f81b2c73eee058cbfd745cb4e1519518318df248

diff --git a/app-shells/mcfly/mcfly-0.5.11.ebuild 
b/app-shells/mcfly/mcfly-0.5.11.ebuild
deleted file mode 100644
index 888504821bc2..
--- a/app-shells/mcfly/mcfly-0.5.11.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# Copyright 2017-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CRATES="
-   aho-corasick-0.7.10
-   ansi_term-0.11.0
-   arrayref-0.3.6
-   arrayvec-0.5.1
-   atty-0.2.14
-   autocfg-1.0.0
-   base64-0.11.0
-   bitflags-1.2.1
-   blake2b_simd-0.5.10
-   bstr-0.2.12
-   byteorder-1.3.4
-   cc-1.0.52
-   cfg-if-0.1.10
-   chrono-0.4.19
-   clap-2.33.0
-   constant_time_eq-0.1.5
-   crossbeam-utils-0.7.2
-   csv-1.1.3
-   csv-core-0.1.10
-   dirs-2.0.2
-   dirs-sys-0.3.4
-   either-1.6.1
-   getrandom-0.1.14
-   hermit-abi-0.1.12
-   humantime-2.1.0
-   itertools-0.9.0
-   itoa-0.4.5
-   lazy_static-1.4.0
-   libc-0.2.69
-   libsqlite3-sys-0.10.0
-   linked-hash-map-0.5.3
-   lru-cache-0.1.2
-   memchr-2.3.3
-   num-integer-0.1.44
-   num-traits-0.2.14
-   numtoa-0.1.0
-   pkg-config-0.3.17
-   ppv-lite86-0.2.6
-   rand-0.7.3
-   rand_chacha-0.2.2
-   rand_core-0.5.1
-   rand_hc-0.2.0
-   redox_syscall-0.1.56
-   redox_termios-0.1.1
-   redox_users-0.3.4
-   regex-1.3.7
-   regex-automata-0.1.9
-   regex-syntax-0.6.17
-   relative-path-1.0.0
-   rusqlite-0.15.0
-   rust-argon2-0.7.0
-   ryu-1.0.4
-   serde-1.0.106
-   shellexpand-2.0.0
-   strsim-0.8.0
-   termion-1.5.5
-   textwrap-0.11.0
-   thread_local-1.0.1
-   time-0.1.43
-   unicode-segmentation-1.6.0
-   unicode-width-0.1.7
-   vcpkg-0.2.8
-   vec_map-0.8.2
-   wasi-0.9.0+wasi-snapshot-preview1

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

2022-02-16 Thread Ionen Wolkens
commit: b4c8078f642ae7c0804a687ad7b65d9fef804802
Author: Jimi Huotari  gentoo  org>
AuthorDate: Tue Feb 15 14:35:40 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Feb 17 00:15:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4c8078f

media-video/obs-studio: add version 27.2.0

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jimi Huotari  gentoo.org>
Signed-off-by: Ionen Wolkens  gentoo.org>

 media-video/obs-studio/Manifest |   2 +
 media-video/obs-studio/obs-studio-27.2.0.ebuild | 205 
 2 files changed, 207 insertions(+)

diff --git a/media-video/obs-studio/Manifest b/media-video/obs-studio/Manifest
index 3136925c5622..a494d9da154f 100644
--- a/media-video/obs-studio/Manifest
+++ b/media-video/obs-studio/Manifest
@@ -1,6 +1,8 @@
 DIST cef_binary_4280_linux64.tar.bz2 79740715 BLAKE2B 
c648a9a4205094450f9eae407e98cbc3da2b7cd81b3c19c4f52cfa3efcca01dce40528018996c65f026eb97520d78040165d1906b0d19236a86e76ec39c58c26
 SHA512 
060a5a8716a75b4b96dfb6ac28c132e22b93107915d680311c1b9d4fd12c7712a9e3497338eac6d2b9f4e74f2dc005a75d195c597bba049e4731fe3724f519ba
 DIST cef_binary_4638_linux64.tar.bz2 104578246 BLAKE2B 
13ee05d4a2fbf27290506297416b298c786954450c19183b493d13aa691db409c22b30870fbc55adf814ff30142a666eb8b172f16ccc48e6cf01135c72e5d6d6
 SHA512 
2eb01151e07adf332affce36a659c6e87da1fbc403c65db7e7c53472ff418df6cd04300a7c6ebc8789c094926429cc70d829e556e5de3127da230f8258fabe49
 DIST obs-browser-aee43000bd994022cd73e32dc50938ab777d4a06.tar.gz 89603 BLAKE2B 
a51b92f829ecb7055dcf969d6d5bdc4632b51288f0bc7e2ab66fda087da608869ddffccda83aa925f049c79e745a6f67e70ec72303184b970f5009fe37b34054
 SHA512 
8159ca02b5c30d2733ce8e566f21d6b77d6b7beabd0a5898049ee83b0b4d720b967fc55fcf876cd772fdaa12ca08163a0f8cabf249a9b3b6eb56b7666d1192c7
+DIST obs-browser-b0d687937af876b52b69c46e276b4ab601b07f0e.tar.gz 99899 BLAKE2B 
2787ce1a652432cd3637f3af782ce2db6d9fda0d2d7a20b42cc4f51365b8b53dcd9101aaccc70e42ce770b36a4d3a993c540215d571dbfe81762aa2291211feb
 SHA512 
e7df0ea4ecf4cdbb2c6b20742c40e1e9f5941c505d69b6c749ab9b2016a4066dc6c5bdd5942f35fd0b1f628e201ac1c4888910658535605a7471a5815cf9a337
 DIST obs-browser-f1a61c5a2579e5673765c31a47c2053d4b502d4b.tar.gz 79259 BLAKE2B 
28cfa46928de0b5e626b384673f7b92b3a48cb631066dda06288c51df78f06b913707a1295a5142d4521505b0678a6c639bfbb5b8a066d585fa12849578a382e
 SHA512 
3ecab39bfb36774ac501de087ca70ecde12f408cfd54cdf12539a92e89d0cf531767a066ff77139389158c46beee423cf1848081ed187890b86241aa96f7b179
 DIST obs-studio-27.0.1.tar.gz 15787807 BLAKE2B 
c2ea571f06a81b2e87ce5d9fd010610ea6cc2753223e6373025f0389972d4638a5f3ff1802f9f0af2c631d71ebcf4603e064da804e8c89eb032b1ad5743d1bd4
 SHA512 
c15dda62c1f212f623914e61a90c6b1e035720fb84d64726c14f43d77ae7569777a23d04221db34347ce610e7c3407c29e726ae36412e98e34ea2ddb2072b7f3
 DIST obs-studio-27.1.3.tar.gz 15994678 BLAKE2B 
5544a1ecdb04dca7f6422936ea5499a206b4beb8e5332605c18cd72a91ce73aa74ff06c49a106931822c1c413ee94d383942f173a71f2b21168a00495b4e301f
 SHA512 
04c11c79e3b091aa9ea8fc6674c9fbcaa1c924fe049f68e9be63f63724c31305d6e4fb33aecdd4d0095d20013e2ee188983f6938b175257368d2260681c2fb39
+DIST obs-studio-27.2.0.tar.gz 16382704 BLAKE2B 
9628467a706b076896aeac26b06f3cca0ebfcce110c8862bb62bc81129300d2ec710cd2768a5d6b526a40b21e08f77135b7146c18f58303e50ab837c0e7885a0
 SHA512 
0f56e12d429c3208a9d200d085606dd401952a9a37d03ecf70e46d932fb8e907906b53c3a4ea7c9e10a3cbb3001bbd569163457d5bcb41eb8cce984b3c2b4d90

diff --git a/media-video/obs-studio/obs-studio-27.2.0.ebuild 
b/media-video/obs-studio/obs-studio-27.2.0.ebuild
new file mode 100644
index ..886f44b7284f
--- /dev/null
+++ b/media-video/obs-studio/obs-studio-27.2.0.ebuild
@@ -0,0 +1,205 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CMAKE_REMOVE_MODULES_LIST=( FindFreetype )
+LUA_COMPAT=( luajit )
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit cmake lua-single python-single-r1 xdg
+
+OBS_BROWSER_COMMIT="b0d687937af876b52b69c46e276b4ab601b07f0e"
+CEF_DIR="cef_binary_4638_linux64"
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/obsproject/obs-studio.git;
+   EGIT_SUBMODULES=( plugins/obs-browser )
+else
+   SRC_URI="https://github.com/obsproject/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI+=" browser? ( 
https://github.com/obsproject/obs-browser/archive/${OBS_BROWSER_COMMIT}.tar.gz 
-> obs-browser-${OBS_BROWSER_COMMIT}.tar.gz )"
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+SRC_URI+=" browser? ( 
https://cdn-fastly.obsproject.com/downloads/${CEF_DIR}.tar.bz2 )"
+
+DESCRIPTION="Software for Recording and Streaming Live Video Content"
+HOMEPAGE="https://obsproject.com;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="
+   +alsa browser decklink fdk jack lua nvenc pipewire
+   pulseaudio python speex +ssl truetype v4l vlc wayland
+"
+REQUIRED_USE="
+   browser? ( || ( alsa pulseaudio 

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

2022-02-16 Thread Ionen Wolkens
commit: af532464a0a3c6c279fe5e6260e0f4095b9cedd2
Author: Jimi Huotari  gentoo  org>
AuthorDate: Tue Feb 15 16:12:57 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Feb 17 00:15:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af532464

media-video/obs-studio: remove version 27.0.1 (r1)

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jimi Huotari  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/24200
Signed-off-by: Ionen Wolkens  gentoo.org>

 media-video/obs-studio/Manifest|   2 -
 media-video/obs-studio/obs-studio-27.0.1-r1.ebuild | 218 -
 2 files changed, 220 deletions(-)

diff --git a/media-video/obs-studio/Manifest b/media-video/obs-studio/Manifest
index a494d9da154f..4b96226ae45e 100644
--- a/media-video/obs-studio/Manifest
+++ b/media-video/obs-studio/Manifest
@@ -2,7 +2,5 @@ DIST cef_binary_4280_linux64.tar.bz2 79740715 BLAKE2B 
c648a9a4205094450f9eae407e
 DIST cef_binary_4638_linux64.tar.bz2 104578246 BLAKE2B 
13ee05d4a2fbf27290506297416b298c786954450c19183b493d13aa691db409c22b30870fbc55adf814ff30142a666eb8b172f16ccc48e6cf01135c72e5d6d6
 SHA512 
2eb01151e07adf332affce36a659c6e87da1fbc403c65db7e7c53472ff418df6cd04300a7c6ebc8789c094926429cc70d829e556e5de3127da230f8258fabe49
 DIST obs-browser-aee43000bd994022cd73e32dc50938ab777d4a06.tar.gz 89603 BLAKE2B 
a51b92f829ecb7055dcf969d6d5bdc4632b51288f0bc7e2ab66fda087da608869ddffccda83aa925f049c79e745a6f67e70ec72303184b970f5009fe37b34054
 SHA512 
8159ca02b5c30d2733ce8e566f21d6b77d6b7beabd0a5898049ee83b0b4d720b967fc55fcf876cd772fdaa12ca08163a0f8cabf249a9b3b6eb56b7666d1192c7
 DIST obs-browser-b0d687937af876b52b69c46e276b4ab601b07f0e.tar.gz 99899 BLAKE2B 
2787ce1a652432cd3637f3af782ce2db6d9fda0d2d7a20b42cc4f51365b8b53dcd9101aaccc70e42ce770b36a4d3a993c540215d571dbfe81762aa2291211feb
 SHA512 
e7df0ea4ecf4cdbb2c6b20742c40e1e9f5941c505d69b6c749ab9b2016a4066dc6c5bdd5942f35fd0b1f628e201ac1c4888910658535605a7471a5815cf9a337
-DIST obs-browser-f1a61c5a2579e5673765c31a47c2053d4b502d4b.tar.gz 79259 BLAKE2B 
28cfa46928de0b5e626b384673f7b92b3a48cb631066dda06288c51df78f06b913707a1295a5142d4521505b0678a6c639bfbb5b8a066d585fa12849578a382e
 SHA512 
3ecab39bfb36774ac501de087ca70ecde12f408cfd54cdf12539a92e89d0cf531767a066ff77139389158c46beee423cf1848081ed187890b86241aa96f7b179
-DIST obs-studio-27.0.1.tar.gz 15787807 BLAKE2B 
c2ea571f06a81b2e87ce5d9fd010610ea6cc2753223e6373025f0389972d4638a5f3ff1802f9f0af2c631d71ebcf4603e064da804e8c89eb032b1ad5743d1bd4
 SHA512 
c15dda62c1f212f623914e61a90c6b1e035720fb84d64726c14f43d77ae7569777a23d04221db34347ce610e7c3407c29e726ae36412e98e34ea2ddb2072b7f3
 DIST obs-studio-27.1.3.tar.gz 15994678 BLAKE2B 
5544a1ecdb04dca7f6422936ea5499a206b4beb8e5332605c18cd72a91ce73aa74ff06c49a106931822c1c413ee94d383942f173a71f2b21168a00495b4e301f
 SHA512 
04c11c79e3b091aa9ea8fc6674c9fbcaa1c924fe049f68e9be63f63724c31305d6e4fb33aecdd4d0095d20013e2ee188983f6938b175257368d2260681c2fb39
 DIST obs-studio-27.2.0.tar.gz 16382704 BLAKE2B 
9628467a706b076896aeac26b06f3cca0ebfcce110c8862bb62bc81129300d2ec710cd2768a5d6b526a40b21e08f77135b7146c18f58303e50ab837c0e7885a0
 SHA512 
0f56e12d429c3208a9d200d085606dd401952a9a37d03ecf70e46d932fb8e907906b53c3a4ea7c9e10a3cbb3001bbd569163457d5bcb41eb8cce984b3c2b4d90

diff --git a/media-video/obs-studio/obs-studio-27.0.1-r1.ebuild 
b/media-video/obs-studio/obs-studio-27.0.1-r1.ebuild
deleted file mode 100644
index 4c9f4cd3f3a8..
--- a/media-video/obs-studio/obs-studio-27.0.1-r1.ebuild
+++ /dev/null
@@ -1,218 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_REMOVE_MODULES_LIST=( FindFreetype )
-LUA_COMPAT=( luajit )
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit xdg cmake lua-single python-single-r1
-
-OBS_BROWSER_COMMIT="f1a61c5a2579e5673765c31a47c2053d4b502d4b"
-CEF_DIR="cef_binary_4280_linux64"
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/obsproject/obs-studio.git;
-   EGIT_SUBMODULES=( plugins/obs-browser )
-else
-   SRC_URI="https://github.com/obsproject/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   SRC_URI+=" browser? ( 
https://github.com/obsproject/obs-browser/archive/${OBS_BROWSER_COMMIT}.tar.gz 
-> obs-browser-${OBS_BROWSER_COMMIT}.tar.gz )"
-   KEYWORDS="~amd64 ~ppc64 ~x86"
-fi
-SRC_URI+=" browser? ( 
https://cdn-fastly.obsproject.com/downloads/${CEF_DIR}.tar.bz2 )"
-
-DESCRIPTION="Software for Recording and Streaming Live Video Content"
-HOMEPAGE="https://obsproject.com;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="
-   +alsa browser decklink fdk jack lua nvenc pipewire
-   pulseaudio python speex +ssl truetype v4l vlc wayland
-"
-REQUIRED_USE="
-   browser? ( || ( alsa pulseaudio ) )
-   lua? ( ${LUA_REQUIRED_USE} )
-   python? ( ${PYTHON_REQUIRED_USE} )
-"
-
-BDEPEND="
-   lua? ( dev-lang/swig )
-   python? ( dev-lang/swig )

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

2022-02-16 Thread Sam James
commit: fe5e2ea127bff7c96b417e9b87233f749870f272
Author: Sam James  gentoo  org>
AuthorDate: Thu Feb 17 00:11:05 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Feb 17 00:11:05 2022 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=fe5e2ea1

python-utils-r1.eclass: fix sync with ::gentoo (adjust Python dependencies)

Our Python (base/actual non-revision versions) are older than ::gentoo,
but I've made the necessary dep adjustments / ebuild changes in them already,
so adjust to the latest versions in ::prefix which should be fine.

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

 eclass/python-utils-r1.eclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index 8c29a02090..a96fbc78a7 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -476,9 +476,9 @@ _python_export() {
python2.7)

PYTHON_PKG_DEP='>=dev-lang/python-2.7.5-r2:2.7';;
python3.8)
-   
PYTHON_PKG_DEP=">=dev-lang/python-3.8.12_p1-r1:3.8";;
+   
PYTHON_PKG_DEP=">=dev-lang/python-3.8.8_p1-r1:3.8";;
python3.9)
-   
PYTHON_PKG_DEP=">=dev-lang/python-3.9.9-r1:3.9";;
+   
PYTHON_PKG_DEP=">=dev-lang/python-3.9.6_p1-r1:3.9";;
python3.10)

PYTHON_PKG_DEP=">=dev-lang/python-3.10.0_p1-r1:3.10";;
python*)



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

2022-02-16 Thread Mike Pagano
commit: 19b41d789a1667e6df58046ff5a8943cc038caf8
Author: Mike Pagano  gentoo  org>
AuthorDate: Wed Feb 16 23:26:55 2022 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Feb 16 23:26:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19b41d78

dev-util/quilt: Version bump and minor fix

Fix download url

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

 dev-util/quilt/Manifest| 1 +
 dev-util/quilt/quilt-0.66-r1.ebuild| 2 +-
 dev-util/quilt/{quilt-0.66-r1.ebuild => quilt-0.67.ebuild} | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-util/quilt/Manifest b/dev-util/quilt/Manifest
index 380e0647ab06..e2e543d43e71 100644
--- a/dev-util/quilt/Manifest
+++ b/dev-util/quilt/Manifest
@@ -1 +1,2 @@
 DIST quilt-0.66.tar.gz 413069 BLAKE2B 
41201d54cb26d4761413365fe19b65bd6971ada1e69198d2edbc346df6a3060ff3af4d80551d68ab4ffe003183bc0a28515ce1d070db95f2b1a04a0680ac4fb2
 SHA512 
c2cb75c0937612e1e0da25b713acf629b6b5aacbd8254d8bd17220b63c7b8ca996cd9d0315a32d67d54a4a7dc01b212cdda33afaacf3db063da757f1973306f4
+DIST quilt-0.67.tar.gz 543713 BLAKE2B 
691b42378a862bfaa8ac9ca042d03d149aaada05894e1d9b92ad4ddf213bf13674c08b72788626ed49c8ccbc792c31e5bc827f8911bf7b0e23733fbc75fca1d1
 SHA512 
2dcf939684e1664f3dc9bf6a024d11fbaac4e984a295b269bab2649e254dafe3dd89d8f79cfaf1c33d2aa80a803ea55eef4debbc1ebc8d3459ecfa52e4ec

diff --git a/dev-util/quilt/quilt-0.66-r1.ebuild 
b/dev-util/quilt/quilt-0.66-r1.ebuild
index 8d6ead9a83ba..4ae623c1eb56 100644
--- a/dev-util/quilt/quilt-0.66-r1.ebuild
+++ b/dev-util/quilt/quilt-0.66-r1.ebuild
@@ -7,7 +7,7 @@ inherit bash-completion-r1
 
 DESCRIPTION="quilt patch manager"
 HOMEPAGE="https://savannah.nongnu.org/projects/quilt;
-SRC_URI="https://savannah.nongnu.orgdownload/quilt/${P}.tar.gz;
+SRC_URI="https://savannah.nongnu.org/download/quilt/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"

diff --git a/dev-util/quilt/quilt-0.66-r1.ebuild 
b/dev-util/quilt/quilt-0.67.ebuild
similarity index 96%
copy from dev-util/quilt/quilt-0.66-r1.ebuild
copy to dev-util/quilt/quilt-0.67.ebuild
index 8d6ead9a83ba..4ae623c1eb56 100644
--- a/dev-util/quilt/quilt-0.66-r1.ebuild
+++ b/dev-util/quilt/quilt-0.67.ebuild
@@ -7,7 +7,7 @@ inherit bash-completion-r1
 
 DESCRIPTION="quilt patch manager"
 HOMEPAGE="https://savannah.nongnu.org/projects/quilt;
-SRC_URI="https://savannah.nongnu.orgdownload/quilt/${P}.tar.gz;
+SRC_URI="https://savannah.nongnu.org/download/quilt/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"



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

2022-02-16 Thread Ionen Wolkens
commit: 1f781826a1c70818ec1168862af737ef81c67bfd
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Wed Feb 16 22:47:21 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Wed Feb 16 23:09:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f781826

games-emulation/pcsx2: drop passing unnecessary toolchain file

Undocumented not-for-ebuilds MYCMAKEARGS was used as a way to
replace the toolchain file, however Gentoo's is perfectly fine
here thanks to `multilib_toolchain_setup x86` setting this up.

Still revbump to ~arch as a precaution, but should be fine.

Could use some other fixups but ideal would be for a new release
(or maybe start looking into snapshots after upstream stops doing
major changes) to get rid of all this 32bit stuff.

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

 games-emulation/pcsx2/pcsx2-1.6.0-r3.ebuild | 103 
 1 file changed, 103 insertions(+)

diff --git a/games-emulation/pcsx2/pcsx2-1.6.0-r3.ebuild 
b/games-emulation/pcsx2/pcsx2-1.6.0-r3.ebuild
new file mode 100644
index ..cc399bd2cc8a
--- /dev/null
+++ b/games-emulation/pcsx2/pcsx2-1.6.0-r3.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+WX_GTK_VER="3.0-gtk3"
+inherit cmake fcaps flag-o-matic multilib toolchain-funcs wxwidgets
+
+MY_PV="${PV/_/-}"
+
+DESCRIPTION="A PlayStation 2 emulator"
+HOMEPAGE="https://pcsx2.net/;
+SRC_URI="https://github.com/PCSX2/${PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+
+RDEPEND="
+   app-arch/bzip2[abi_x86_32(-)]
+   app-arch/xz-utils[abi_x86_32(-)]
+   dev-libs/libaio[abi_x86_32(-)]
+   dev-libs/libxml2:2[abi_x86_32(-)]
+   media-libs/alsa-lib[abi_x86_32(-)]
+   media-libs/libpng:=[abi_x86_32(-)]
+   media-libs/libsdl2[abi_x86_32(-),haptic,joystick,sound]
+   media-libs/libsoundtouch[abi_x86_32(-)]
+   media-libs/portaudio[abi_x86_32(-)]
+   net-libs/libpcap[abi_x86_32(-)]
+   sys-libs/zlib[abi_x86_32(-)]
+   virtual/libudev[abi_x86_32(-)]
+   virtual/opengl[abi_x86_32(-)]
+   x11-libs/gtk+:3[abi_x86_32(-)]
+   x11-libs/libICE[abi_x86_32(-)]
+   x11-libs/libX11[abi_x86_32(-)]
+   x11-libs/libXext[abi_x86_32(-)]
+   x11-libs/wxGTK:${WX_GTK_VER}[abi_x86_32(-),X]
+"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${PN}-${MY_PV}"
+
+FILECAPS=(
+   -m 755 "CAP_NET_RAW+eip CAP_NET_ADMIN+eip" usr/bin/PCSX2
+)
+
+PATCHES=(
+   "${FILESDIR}/${P}-disable-setcap.patch"
+)
+
+pkg_setup() {
+   if [[ ${MERGE_TYPE} != binary && $(tc-getCC) == *gcc* ]]; then
+   # -mxsave flag is needed when GCC >= 8.2 is used
+   # https://bugs.gentoo.org/685156
+   if [[ $(gcc-major-version) -gt 8 || $(gcc-major-version) == 8 
&& $(gcc-minor-version) -ge 2 ]]; then
+   append-flags -mxsave
+   fi
+   fi
+}
+
+src_configure() {
+   multilib_toolchain_setup x86
+   # Build with ld.gold fails
+   # https://github.com/PCSX2/pcsx2/issues/1671
+   tc-ld-disable-gold
+
+   # pcsx2 build scripts will force CMAKE_BUILD_TYPE=Devel
+   # if it something other than "Devel|Debug|Release"
+   local CMAKE_BUILD_TYPE="Release"
+
+   local mycmakeargs=(
+   -DARCH_FLAG=
+   -DDISABLE_BUILD_DATE=TRUE
+   -DDISABLE_PCSX2_WRAPPER=TRUE
+   -DDISABLE_SETCAP=TRUE
+   -DEXTRA_PLUGINS=FALSE
+   -DOPTIMIZATION_FLAG=
+   -DPACKAGE_MODE=TRUE
+   -DXDG_STD=TRUE
+
+   -DCMAKE_LIBRARY_PATH="/usr/$(get_libdir)/${PN}"
+   -DDOC_DIR=/usr/share/doc/"${PF}"
+   -DEGL_API=FALSE
+   -DGTK3_API=TRUE
+   -DOPENCL_API=FALSE
+   -DPLUGIN_DIR="/usr/$(get_libdir)/${PN}"
+   # wxGTK must be built against same sdl version
+   -DSDL2_API=TRUE
+   -DUSE_VTUNE=FALSE
+   )
+
+   setup-wxwidgets
+   cmake_src_configure
+}
+
+src_install() {
+   # Upstream issues:
+   #  https://github.com/PCSX2/pcsx2/issues/417
+   #  https://github.com/PCSX2/pcsx2/issues/3077
+   QA_EXECSTACK="usr/bin/PCSX2"
+   QA_TEXTRELS="usr/$(get_libdir)/pcsx2/* usr/bin/PCSX2"
+   cmake_src_install
+}



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

2022-02-16 Thread Michał Górny
commit: 0c654526c87ce43db4e26bfbd9c243dba6968cd0
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 22:35:10 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:42:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c654526

dev-python/cfn-lint: Bump to 0.58.1

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

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-0.58.1.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 9b4faffce978..231c5689eb72 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1 +1,2 @@
 DIST cfn-lint-0.58.0.tar.gz 8645209 BLAKE2B 
b198c8e6a56095782ab5fbd70f1f5872d951da133ee7056ef468e5d1cd0ba1a7831ebd4263248ec2cec04980211e01cf3525e18f8ad272d6b1aaeee07527028d
 SHA512 
238929a79d25b6a5945fd43f29fa3c432c650923634495c2ace7e3f6ace0c7701bcc278ea151a9172691bd04164f8a7b409dd8387e82e5917a9f65e1a556a4d2
+DIST cfn-lint-0.58.1.tar.gz 8711246 BLAKE2B 
28655e076f3bdee358b1a1bb61170b176d0c90ab04ae43f1892798a239d0fd92e5dd939433a263321da02b349b9299e4f4916ccc5091df081a8b6fdf2aa0e050
 SHA512 
06bb38462c1cb7d4da8159eba6fa1ff05de8849bc4374a7df799d41a1f023eb38c75636956616cdc0e45a800f870bd0694575d9773b6dff91aaf2dfdbfe45169

diff --git a/dev-python/cfn-lint/cfn-lint-0.58.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-0.58.1.ebuild
new file mode 100644
index ..b8ea9d7827e1
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-0.58.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="https://pypi.org/project/cfn-lint/ 
https://github.com/aws-cloudformation/cfn-lint/;
+SRC_URI="
+   https://github.com/aws-cloudformation/cfn-lint/archive/v${PV}.tar.gz
+   -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.42.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema_to_python-1.2.3[${PYTHON_USEDEP}]
+   >=dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/networkx[${PYTHON_USEDEP}]
+   >dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.15.0[${PYTHON_USEDEP}]
+   >=dev-python/sarif_om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/six-1.11[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # TODO
+   test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_2
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+)
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i setup.py || die
+   distutils-r1_src_prepare
+}



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

2022-02-16 Thread Maciej Barć
commit: 56d76431e9102567913dfb447758629b9f4e8220
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Feb 16 21:44:18 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Wed Feb 16 22:38:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56d76431

dev-scheme/guile: remove tests that use network

Closes: https://bugs.gentoo.org/712362
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Maciej Barć  gentoo.org>

 dev-scheme/guile/guile-2.2.6.ebuild | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/dev-scheme/guile/guile-2.2.6.ebuild 
b/dev-scheme/guile/guile-2.2.6.ebuild
index fe2a735e677e..ab320b7a78ec 100644
--- a/dev-scheme/guile/guile-2.2.6.ebuild
+++ b/dev-scheme/guile/guile-2.2.6.ebuild
@@ -37,6 +37,16 @@ QA_PREBUILT='*[.]go'
 
 DOCS=( GUILE-VERSION HACKING README )
 
+src_prepare() {
+   # Remove tests that require network
+   local bad_test
+   for bad_test in test-suite/tests/web-*.test ; do
+   echo "#t" > "${bad_test}" || die
+   done
+
+   default
+}
+
 src_configure() {
# see bug #676468
mv prebuilt/32-bit-big-endian{,.broken} || die



[gentoo-commits] proj/catalyst:master commit in: catalyst/

2022-02-16 Thread Matt Turner
commit: 1a8d6cd3d31f960755c3237679539d9cab175bc6
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Feb 16 22:33:17 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Feb 16 22:33:52 2022 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=1a8d6cd3

catalyst: Add .sha256 to list of ignored extensions

Otherwise the presence of a .sha256 file would cause this error:

ERROR:catalyst:CatalystError: Ambiguous Filename: 
/home/catalyst/builds/default/stage3-ia64-openrc-20220216T032203Z
ERROR:catalyst:Please specify the correct extension as well

Fixes: 7457cd3b ("catalyst: generate .sha256 file if any digest is enabled")
Signed-off-by: Matt Turner  gentoo.org>

 catalyst/support.py | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/catalyst/support.py b/catalyst/support.py
index 37d53bc4..a69566d2 100644
--- a/catalyst/support.py
+++ b/catalyst/support.py
@@ -77,8 +77,11 @@ def file_check(filepath, extensions=None):
 # so check if there are files of that name with an extension
 files = glob.glob("%s.*" % filepath)
 # remove any false positive files
-files = [x for x in files if not x.endswith(
-".CONTENTS") and not x.endswith(".CONTENTS.gz") and not 
x.endswith(".DIGESTS")]
+files = [x for x in files if
+ not x.endswith( ".CONTENTS") and
+ not x.endswith(".CONTENTS.gz") and
+ not x.endswith(".DIGESTS") and
+ not x.endswith(".sha256")]
 if len(files) == 1:
 return files[0]
 if len(files) > 1:



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

2022-02-16 Thread Michał Górny
commit: 8d220beef579cb0327b0ee87069d71d0d056600a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 22:03:04 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:34:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d220bee

dev-python/setuptools: Bump to 60.9.2

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

 dev-python/setuptools/Manifest |   1 +
 dev-python/setuptools/setuptools-60.9.2.ebuild | 113 +
 2 files changed, 114 insertions(+)

diff --git a/dev-python/setuptools/Manifest b/dev-python/setuptools/Manifest
index a41a6aa816d4..76e112b0aabb 100644
--- a/dev-python/setuptools/Manifest
+++ b/dev-python/setuptools/Manifest
@@ -4,3 +4,4 @@ DIST setuptools-60.7.1.tar.gz 2358541 BLAKE2B 
b48443b95cbd3891ec93d743eb4177302d
 DIST setuptools-60.8.0.tar.gz 2397546 BLAKE2B 
6522057b03fcfc8a0be9806ac74964d6d792878c3daf4873b854f64c66685aa0ba4166cb9cf92edeac134bc27c900a457758e68bbb48e4d9d1c0f54c6b76a68d
 SHA512 
5466c0ff15d74b06bb50d660a2890b1ecd28bdda32f70d8343c3adcb894a23c129f127cf0a49ab1db9ac1a648472b956b73caae80d08a2353979d47da3d155d6
 DIST setuptools-60.9.0.tar.gz 2416431 BLAKE2B 
70dde8a23054aad0a8d5ff4a0dd812619d6d4a8885021eaf20c8b0af95ae571926fb99cb93be1bad4a2a5b24ea507701a17f890e6bae132338b6e7b5cf3fe4c9
 SHA512 
ef21ffc1ed3d90d075345d98d8daa6ee296613294b2fd8581cc891aac190d6ef36af0a7cbb92e64fc40f6cde813c43303bdc110b13191514fb263f82f74c243d
 DIST setuptools-60.9.1.tar.gz 2417022 BLAKE2B 
2f64be8e3d7cc912fa26097ceac4d40caf21aa54d8fb72c3bd16b8a6b6e47171bf822978b2245fcb0c00ddfcc4f283868cfc60e744a8e34a4a4c3045a6b3bba8
 SHA512 
cca4db6658f9b0f2e97f24420e51c7a829a92d4031ed065b1de472505cf29c94c135b096e2f616ff540ac4e8c31fff55f8f05b1938a5e6433af669c33f9e717d
+DIST setuptools-60.9.2.tar.gz 2425956 BLAKE2B 
09baded7eef555ebd76db1672d69cd06cf6bcfc1126ba0fb0143b038d658f53460afc914f761d44ff25710802f6f371a793dca60040240cc328da0a3ea92
 SHA512 
be99bee951797632a68d08b94e0b604763662c13f58cecc872615081036081b3d72c5c468af47649449d6f7422f52ee99cf2f87fa9c840d10f98cd0217c0cff2

diff --git a/dev-python/setuptools/setuptools-60.9.2.ebuild 
b/dev-python/setuptools/setuptools-60.9.2.ebuild
new file mode 100644
index ..7c438eb90965
--- /dev/null
+++ b/dev-python/setuptools/setuptools-60.9.2.ebuild
@@ -0,0 +1,113 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
+EAPI=7
+
+DISTUTILS_USE_PEP517=standalone
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+PYTHON_REQ_USE="xml(+)"
+
+inherit distutils-r1 multiprocessing
+
+CPY_PATCHSET="python-gentoo-patches-3.10.0_p1"
+DESCRIPTION="Collection of extensions to Distutils"
+HOMEPAGE="https://github.com/pypa/setuptools 
https://pypi.org/project/setuptools/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
+   https://dev.gentoo.org/~floppym/python/${CPY_PATCHSET}.tar.xz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/appdirs-1.4.4-r2[${PYTHON_USEDEP}]
+   >=dev-python/jaraco-text-3.7.0-r1[${PYTHON_USEDEP}]
+   >=dev-python/more-itertools-8.12.0-r1[${PYTHON_USEDEP}]
+   >=dev-python/ordered-set-4.0.2-r1[${PYTHON_USEDEP}]
+   >=dev-python/packaging-21.3-r2[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   >=dev-python/importlib_metadata-4.10.1-r1[${PYTHON_USEDEP}]
+   ' python3_{8,9} pypy3)
+   $(python_gen_cond_dep '
+   >=dev-python/importlib_resources-5.4.0-r3[${PYTHON_USEDEP}]
+   ' python3_8 pypy3)
+"
+BDEPEND="
+   ${RDEPEND}
+   >=dev-python/wheel-0.37.1-r1[${PYTHON_USEDEP}]
+   test? (
+   $(python_gen_cond_dep '
+   dev-python/build[${PYTHON_USEDEP}]
+   >=dev-python/filelock-3.4.0[${PYTHON_USEDEP}]
+   >=dev-python/jaraco-envs-2.2[${PYTHON_USEDEP}]
+   >=dev-python/jaraco-path-3.2.0[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pip[${PYTHON_USEDEP}]
+   dev-python/pip-run[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/pytest-fixture-config[${PYTHON_USEDEP}]
+   dev-python/pytest-virtualenv[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   dev-python/tomli[${PYTHON_USEDEP}]
+   >=dev-python/virtualenv-20[${PYTHON_USEDEP}]
+   dev-python/wheel[${PYTHON_USEDEP}]
+   ' python3_{8..10} pypy3)
+   )
+"
+PDEPEND="
+   >=dev-python/certifi-2016.9.26[${PYTHON_USEDEP}]
+   

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

2022-02-16 Thread Michał Górny
commit: 3b8a55ad8ebad5b8a81ae2bbb4ac981899f8f3fb
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 22:16:20 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:34:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b8a55ad

dev-python/pyspnego: Bump to 0.4.0

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

 dev-python/pyspnego/Manifest  |  1 +
 dev-python/pyspnego/pyspnego-0.4.0.ebuild | 44 +++
 2 files changed, 45 insertions(+)

diff --git a/dev-python/pyspnego/Manifest b/dev-python/pyspnego/Manifest
index 9bde7d91ef7e..47b1e3fd4b58 100644
--- a/dev-python/pyspnego/Manifest
+++ b/dev-python/pyspnego/Manifest
@@ -1 +1,2 @@
 DIST pyspnego-0.3.1.tar.gz 30 BLAKE2B 
23d77718bcb3deb807764ef3098c8f25b487c18b022ba9e48bc46bbab8f77de82ddc4a2bd66485041b1012958304d77236f54e9f87150e68631045bd50ca2a0a
 SHA512 
2f46c727dbb29e1b9a7e4912c14fe49f47595ef7134358eae03e0645cce927e69e3612d11b1b5986fbb945f684e87d6eddf08bc6153af9d29325718a6207e3a1
+DIST pyspnego-0.4.0.tar.gz 324322 BLAKE2B 
97ef46ba072df46f873a9f2bdf4dd440a37395a87856da92b5438af8ed05aad381189eb86b6fe031ab77158c482f91a3fb12dde69082decfbe328c150d8210f0
 SHA512 
e110bffebf746e7ef1c1bd74e071ec7b224c30cf7be12f6c1101feb58d85fa6f4fa48e946e1a620115b2857dcad07c77986800d623cc1a94b24a253d3205b9ea

diff --git a/dev-python/pyspnego/pyspnego-0.4.0.ebuild 
b/dev-python/pyspnego/pyspnego-0.4.0.ebuild
new file mode 100644
index ..27b39859d871
--- /dev/null
+++ b/dev-python/pyspnego/pyspnego-0.4.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Library to handle SPNEGO and CredSSP authentication"
+HOMEPAGE="https://pypi.org/project/pyspnego/ 
https://github.com/jborean93/pyspnego;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   dev-python/cryptography[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/gssapi[${PYTHON_USEDEP}]
+   >=dev-python/krb5-0.3.0[${PYTHON_USEDEP}]
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   dev-python/ruamel-yaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # https://github.com/jborean93/pyspnego/issues/33
+   'tests/test_auth.py::test_kerberos_auth_keytab[negotiate-False]'
+   'tests/test_auth.py::test_kerberos_auth_keytab[negotiate-True]'
+   'tests/test_auth.py::test_kerberos_auth_ccache[negotiate-False]'
+   'tests/test_auth.py::test_kerberos_auth_env_cache[negotiate-False]'
+)
+
+pkg_postinst() {
+   optfeature "Kerberos authentication" "dev-python/gssapi 
>=dev-python/krb5-0.3.0"
+   optfeature "YAML output support" "dev-python/ruamel-yaml"
+}



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

2022-02-16 Thread Michał Górny
commit: c4f6ec63d2e0ae176bf97056e40226b1bb93b3c5
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 21:52:04 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:34:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4f6ec63

dev-python/stripe: Bump to 2.66.0

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

 dev-python/stripe/Manifest |  1 +
 dev-python/stripe/stripe-2.66.0.ebuild | 62 ++
 2 files changed, 63 insertions(+)

diff --git a/dev-python/stripe/Manifest b/dev-python/stripe/Manifest
index 84db4ba2c82e..925e74355ba1 100644
--- a/dev-python/stripe/Manifest
+++ b/dev-python/stripe/Manifest
@@ -1,2 +1,3 @@
 DIST stripe-2.64.0.tar.gz 234442 BLAKE2B 
504e32c19f1a65a39ee709d3abc7211d648c7aaf8493edb4130d49d3fbbebea4ec7d2c116b9b715e9e0d5d383578c477ae0e2cbace51f5b8574d540e9b9238d8
 SHA512 
5055b5a712c0891f3660d00fe7bb27452cce33aa4a9c70fbd7391dd989d31aeb8d8288c3cdd22747b6fd4c480be17f7ab9428c31ea7d2c674e175e77f4f6a0b7
 DIST stripe-2.65.0.tar.gz 234847 BLAKE2B 
474757c17abd5259f46913d5be0fa1130e64608f0306d772d6776bc34b76a62c2a7cc1dbe812201d867b06e361f9ec905e0a12bb4830e9ccc1e5211e2aeecd6b
 SHA512 
309a3e2202e7e8983bf7d8a403a588c6793f35866bf44edf6fc2877624a98716033e633b1f38790b2731049cfef3f90c878b5bc9df65dce9f4606414944dc8f4
+DIST stripe-2.66.0.tar.gz 234929 BLAKE2B 
289c3464c3aa9ef5ebeccaffde383271ca23e704303d5b5499d1f5f1f197483088781d16878749bca03c8ea56209a22173c376ef00510f53d81c733f0a626af8
 SHA512 
d716e82580757ec0b187a74de1f8ef7bbe2f32468f13c551886bcbadf631eef001df9f4d249f091856b009545ca8b6d60f16c07e79345fee33651e7d27fb31c0

diff --git a/dev-python/stripe/stripe-2.66.0.ebuild 
b/dev-python/stripe/stripe-2.66.0.ebuild
new file mode 100644
index ..9c29dc6f0a0d
--- /dev/null
+++ b/dev-python/stripe/stripe-2.66.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Stripe python bindings"
+HOMEPAGE="https://github.com/stripe/stripe-python;
+SRC_URI="mirror://pypi/s/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND=">=dev-python/requests-2.20[${PYTHON_USEDEP}]"
+BDEPEND="
+   test? (
+   >=dev-util/stripe-mock-0.118.0
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   net-misc/curl
+   )
+"
+
+distutils_enable_tests pytest
+
+DOCS=( LONG_DESCRIPTION.rst CHANGELOG.md README.md )
+
+src_test() {
+   local stripe_mock_port=12111
+   local stripe_mock_max_port=12121
+   local stripe_mock_logfile="${T}/stripe_mock_${EPYTHON}.log"
+   # Try to start stripe-mock until we find a free port
+   while [[ "${stripe_mock_port}" -le "${stripe_mock_max_port}" ]]; do
+   ebegin "Trying to start stripe-mock on port ${stripe_mock_port}"
+   stripe-mock --http-port ${stripe_mock_port} &> 
"${stripe_mock_logfile}" &
+   local stripe_mock_pid=$!
+   sleep 2
+   # Did stripe-mock start?
+   curl --fail -u "sk_test_123:" \
+   http://127.0.0.1:${stripe_mock_port}/v1/customers &> 
/dev/null
+   eend $? "Port ${stripe_mock_port} unavailable"
+   if [[ $? -eq 0 ]]; then
+   einfo "stripe-mock running on port ${stripe_mock_port}"
+   break
+   fi
+   (( stripe_mock_port++ ))
+   done
+   if [[ "${stripe_mock_port}" -gt "${stripe_mock_max_port}" ]]; then
+   eerror "Unable to start stripe-mock for tests"
+   die "Please see the logfile located at: ${stripe_mock_logfile}"
+   fi
+
+   local -x STRIPE_MOCK_PORT=${stripe_mock_port}
+   distutils-r1_src_test
+
+   # Tear down stripe-mock
+   kill "${stripe_mock_pid}" || die "Unable to stop stripe-mock"
+}



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

2022-02-16 Thread Michał Górny
commit: 65be130dc4824d3f107019ab9102b07cffbb05f7
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 21:55:20 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:34:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65be130d

dev-python/filelock: Bump to 3.5.1

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

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

diff --git a/dev-python/filelock/Manifest b/dev-python/filelock/Manifest
index be2279e5f2b6..3f13b72675a1 100644
--- a/dev-python/filelock/Manifest
+++ b/dev-python/filelock/Manifest
@@ -1,2 +1,3 @@
 DIST py-filelock-3.4.2.tar.gz 203805 BLAKE2B 
be1cb206c4571b86987ea406af4b8efed503f53584fe9f5af5cbc6493728dbeafa3d0154a66ea30404d51700155be877aa74e6c08b1dbf7cefbee1ca3274f1e1
 SHA512 
361586f976a4b4011af4446e34932cb9e42565e87d828852b0bb7bed48f59c19b3c95895836c9c63c1978d9d113432df19c52e59523a0f00797b3b94f36a4d73
 DIST py-filelock-3.5.0.tar.gz 203949 BLAKE2B 
c502e2a3e5bd3da0b49db6f8c292f382c13b69f57a44bdbe62965e36701130957b2644eee7728d5f4df5f8e396d0979c1ba2609569310389582d1657f936e7f3
 SHA512 
f46e1ac8b022a9aead975d6cda406d1a25ad19290cd64f1f179d6823d33013aeb4f3b42d2c90764a0607a8b9e67c3e287a565e7d4b07ddce63cafc5e988d7d2c
+DIST py-filelock-3.5.1.tar.gz 204014 BLAKE2B 
d49c5ac66d7922fd40b3fe88fc8ae7c59e9ae5f16e393d0b20249d55e1b8e29d91193fe8785087a9fa66418528faa915c81be753ca8f7cae5040dc0d4b792427
 SHA512 
9bcebdf7c289187f22ec4b7b2e2b1756e4eba1d5a79896a6ab3143c853e5e58bb67f800bba4c8aec6bc93346e0d5a27cc34f7d4faa123788233face8d5afdb75

diff --git a/dev-python/filelock/filelock-3.5.1.ebuild 
b/dev-python/filelock/filelock-3.5.1.ebuild
new file mode 100644
index ..8f33f233cea9
--- /dev/null
+++ b/dev-python/filelock/filelock-3.5.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 2018-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+
+inherit distutils-r1
+
+MY_P=py-filelock-${PV}
+DESCRIPTION="A platform independent file lock for Python"
+HOMEPAGE="
+   https://github.com/tox-dev/py-filelock/
+   https://pypi.org/project/filelock/;
+SRC_URI="
+   https://github.com/tox-dev/py-filelock/archive/${PV}.tar.gz
+   -> ${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="Unlicense"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-macos"
+
+BDEPEND="
+   test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



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

2022-02-16 Thread Michał Górny
commit: b6a9678438e9e3ef5984727a789318a9c1ad3c16
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 21:46:23 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:34:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6a96784

dev-python/oslo-utils: Bump to 4.12.2

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

 dev-python/oslo-utils/Manifest |  1 +
 dev-python/oslo-utils/oslo-utils-4.12.2.ebuild | 49 ++
 2 files changed, 50 insertions(+)

diff --git a/dev-python/oslo-utils/Manifest b/dev-python/oslo-utils/Manifest
index 4cc081b5095a..cba4a261f4b8 100644
--- a/dev-python/oslo-utils/Manifest
+++ b/dev-python/oslo-utils/Manifest
@@ -1,2 +1,3 @@
 DIST oslo.utils-4.12.0.tar.gz 100927 BLAKE2B 
6f175d7c08a9084af083d1e2a339ef81c9d49f832f0c94b17fe652485f077d787731bbef61bb7b4cc30188b776b7494f53700b76a736be70cff0ce5b4da5b11d
 SHA512 
a31d307199584d6aa891464e0d9ef218d0a2aa6b54337e081ac3d787d883dfa088484f894c421c4cbf428ce2a53b6547770d469299ec7b9d0159e5a38fde06e3
 DIST oslo.utils-4.12.1.tar.gz 101375 BLAKE2B 
d6f74c8cbe8d28b0955a7f46906f28d7719413a3ea4e210fc050f89aebf30fa03c36bec9d1ccc658d59bcfe6c933d9eb8cc6096d693f0c75882fd3099de5953a
 SHA512 
26d4d8c7584e516c05b035a11d12b638713c9349fa8cf8a310b6ead2a078684b29409c1a6a01ac035f872f3deb0dda2aaef8c3a0150825b36d6583052d887ed7
+DIST oslo.utils-4.12.2.tar.gz 101505 BLAKE2B 
fb2d56c767e8ed100ba789560e6b50dfecf8528de2a2717a9660e3dc8ceb93838137d59f1c2e3f05ccb99b95ea1ec86870e22160fb670a8cfb2dd9d6783f1d0f
 SHA512 
fa56225f1991b031e2122cf08cd0992d8a9bfacd9a83d590f87ff86c495d51763ac06f65076c746a59563a60f886601d00ea9536dfcc927fca94c5a1431bcf67

diff --git a/dev-python/oslo-utils/oslo-utils-4.12.2.ebuild 
b/dev-python/oslo-utils/oslo-utils-4.12.2.ebuild
new file mode 100644
index ..90d9c1b9be66
--- /dev/null
+++ b/dev-python/oslo-utils/oslo-utils-4.12.2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..9} )
+
+inherit distutils-r1
+
+MY_P=${P/-/.}
+DESCRIPTION="Oslo Utility library"
+HOMEPAGE="https://launchpad.net/oslo;
+SRC_URI="mirror://pypi/${PN::1}/${PN/-/.}/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND="
+   >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
+   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
+   >=dev-python/pytz-2013.6[${PYTHON_USEDEP}]
+   >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}]
+   >=dev-python/netifaces-0.10.4[${PYTHON_USEDEP}]
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
+   >=dev-python/pyparsing-2.1.0[${PYTHON_USEDEP}]
+   >=dev-python/packaging-20.4[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/pbr-2.2.0[${PYTHON_USEDEP}]
+   >dev-python/eventlet-0.23.0[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
+   >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   >=dev-python/ddt-1.0.1[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests unittest
+
+src_prepare() {
+   # spurious rdep
+   sed -i -e '/pbr/d' requirements.txt || die
+   distutils-r1_src_prepare
+}



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

2022-02-16 Thread Michał Górny
commit: 778edfd8544fd89cae639be42c01142bb7b04090
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 21:54:40 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:34:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=778edfd8

dev-python/prettytable: Bump to 3.1.1

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

 dev-python/prettytable/Manifest |  1 +
 dev-python/prettytable/prettytable-3.1.1.ebuild | 31 +
 2 files changed, 32 insertions(+)

diff --git a/dev-python/prettytable/Manifest b/dev-python/prettytable/Manifest
index e0241d681f74..2d7cded44975 100644
--- a/dev-python/prettytable/Manifest
+++ b/dev-python/prettytable/Manifest
@@ -1,2 +1,3 @@
 DIST prettytable-3.0.0.tar.gz 50012 BLAKE2B 
9a1c57abf46fd00fa74022ad9a8bd19c5f501610ac4dcd806511f5cd9e0ab17cbf24ce90b8f1c3f98db5601e1df75cf57c7709c84e0c3b703ebe2d69f57294d3
 SHA512 
f7b03ee1c1371187708b1cd7724f1afead1249a796928d2abdce42fa834ee128e930f20aef1df579426c65f1fb574b1a831e521ade6e9e65977d5dd88bafc5af
 DIST prettytable-3.1.0.tar.gz 52695 BLAKE2B 
0a1f60ebc27f495f54a645a0e4a363d4bd052933c9e8b66a9ba209f1357e3d50e817cf6384ec99038d13dce03f60b86ececab0e7a76319be9f67869892e56ec0
 SHA512 
0f1fe86412cc553ef74d264044fd1830c1d5de6914a5a3d7ba3c7e9c92ed5e7b00dcaed1654f819b6a5233b24dfc331453a4ebb86a3e11779ea9932059519a56
+DIST prettytable-3.1.1.tar.gz 52705 BLAKE2B 
4a52892763777045abbf1d74cbb3dc8b1fdf9dfed006723b3f47a6af44dd8c5a09204e3ead1e586b0bc78255dec93691805f634027f9502a5d97f649ada88449
 SHA512 
2abfe1039161fc7c1d25b0d053776e842c1413e70ce209324fd9b2f1885949513238ca362f93b1adf405461c978760bc7d635e3321b94352ac2aa9fea94450d5

diff --git a/dev-python/prettytable/prettytable-3.1.1.ebuild 
b/dev-python/prettytable/prettytable-3.1.1.ebuild
new file mode 100644
index ..1396cbe52707
--- /dev/null
+++ b/dev-python/prettytable/prettytable-3.1.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Easily displaying tabular data in a visually appealing ASCII 
table format"
+HOMEPAGE="
+   https://github.com/jazzband/prettytable/
+   https://pypi.org/project/prettytable/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc64 ~riscv ~sparc 
~x86"
+
+RDEPEND="
+   dev-python/wcwidth[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? (
+   $(python_gen_impl_dep sqlite)
+   dev-python/pytest-lazy-fixture[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests pytest



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

2022-02-16 Thread Michał Górny
commit: ab3e602a282268d9f59223e564db57157c4274eb
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 21:53:19 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:34:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab3e602a

dev-python/oslo-serialization: Bump to 4.3.0

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

 dev-python/oslo-serialization/Manifest |  1 +
 .../oslo-serialization-4.3.0.ebuild| 43 ++
 2 files changed, 44 insertions(+)

diff --git a/dev-python/oslo-serialization/Manifest 
b/dev-python/oslo-serialization/Manifest
index 35c37256435c..a6d97c65fc83 100644
--- a/dev-python/oslo-serialization/Manifest
+++ b/dev-python/oslo-serialization/Manifest
@@ -1 +1,2 @@
 DIST oslo.serialization-4.2.0.tar.gz 34024 BLAKE2B 
709c71abeb9cf84d68dddbb5fc404401408b17eaeace13935bfd5e567899d087d4e5d5521546c3791e03c24591f64b182337d78f2d54d74e71e50922099bf4d7
 SHA512 
2a2c51d03432c35bf872b2da9c51f6deb764e38d86d5561843fe4f7a39af8383500b214039acb37f0e972141e7c9e5f20c457084e287498d4c93a89207bdd938
+DIST oslo.serialization-4.3.0.tar.gz 34114 BLAKE2B 
a123cdf8a52be65e5c8ce8073bd04db7013f88aae20ebbb8d32a8a4e30588d5e5c11ba8c60087264b0b55e98962172ecfa1030f48c223d52b6dbe814c69c9014
 SHA512 
78c8d08365755c2bd10fce1fbee403e3c8301bfe0f3b7dd9dccbd5aeb3e010cc00c7b295c3b33b472b50911f332aa3d40d761e49ca0252e522e9cd11017b807f

diff --git a/dev-python/oslo-serialization/oslo-serialization-4.3.0.ebuild 
b/dev-python/oslo-serialization/oslo-serialization-4.3.0.ebuild
new file mode 100644
index ..6591e4aae52d
--- /dev/null
+++ b/dev-python/oslo-serialization/oslo-serialization-4.3.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..9} )
+
+inherit distutils-r1
+
+MY_P=${P/-/.}
+DESCRIPTION="Oslo Serialization library"
+HOMEPAGE="https://launchpad.net/oslo;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN/-/.}/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND="
+   >=dev-python/msgpack-0.5.2[${PYTHON_USEDEP}]
+   >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
+   >=dev-python/pytz-2013.6[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/pbr-2.2.0[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests unittest
+distutils_enable_sphinx doc/source \
+   dev-python/openstackdocstheme
+
+python_prepare_all() {
+   # remove spurious rdep on pbr
+   sed -i -e '/pbr/d' requirements.txt || die
+   distutils-r1_python_prepare_all
+}



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

2022-02-16 Thread Michał Górny
commit: 438396359d9a5d6c2a1307de2be9a442e32c5357
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 22:09:15 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:34:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43839635

dev-python/redis-py: Bump to 4.1.4

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

 dev-python/redis-py/Manifest  |  1 +
 dev-python/redis-py/redis-py-4.1.4.ebuild | 78 +++
 2 files changed, 79 insertions(+)

diff --git a/dev-python/redis-py/Manifest b/dev-python/redis-py/Manifest
index ff2d0e2bb226..d7d38713b654 100644
--- a/dev-python/redis-py/Manifest
+++ b/dev-python/redis-py/Manifest
@@ -2,3 +2,4 @@ DIST redis-py-4.1.0.tar.gz 2346542 BLAKE2B 
3d59f904f376df7bca14dcd7bc8547d7a7b41
 DIST redis-py-4.1.1.tar.gz 2349319 BLAKE2B 
adebda19239e1fd4cf685c0de7a9b2c2fc4e8f23df0e80f2ecdf5f4b9b8b2698fbab613975bd380ea74dc275710d8ed58ee0720486c079bf554612cb7d8b392e
 SHA512 
a974a910dcbaf75516e311badbe6e019cdce668a6d8cd918503934bb92bf97f7ea373fae32139f89a9eecdb360184ae42d24d742ef8b008e95eae648bd992e64
 DIST redis-py-4.1.2.tar.gz 2349862 BLAKE2B 
3e68918654e63c3403f2408350b2a877027a3c3990b623818332e0e77e1fbaa413e85912ea586a90788a87e0206ebe408ab55df522864dc534907c31a690c0c1
 SHA512 
beb6e50051eae61e84e7cf37f9f3e3efbc404d49e506b0b3bdae0d0c45fd940f12c801434a6394505519bf327b5933c076ad4f8c66ad812441bc08b3aa682542
 DIST redis-py-4.1.3.tar.gz 2349885 BLAKE2B 
d1c16a88e7ec70cf2b954fa9cf841f971c02023b7c9387e3e680e16972d546347ee454febf096e54f7bfcd4dabf163e22e1a0ba3186cbb9417cdd7a613d5a992
 SHA512 
797c1ee4ff4f0e32b52add5bc1cc81fd36cb1eb4d6f9328b38dca46c79a01bc105bc172f56d3bea20d802ee7a6eb934c2ee3ab5f611a49d77f9c4c50d7a4b0d8
+DIST redis-py-4.1.4.tar.gz 2352106 BLAKE2B 
a7f40d381e3e1d295d2ce88f0adb897704d0065ee7d5bb00108c2c8c67ef649ea63d4ca06dbbe2b21b2f92d70d96f8e2d32a7992ecf702bb4c73589f30c1bae8
 SHA512 
6dd1bc7622529382901b2fe6e63a5f9d6a4b89175b486c879a63cc8f0e708737431dfe5b834124f0d33f34540ac54813a0e6953bbed3a9dbd226597b4b1cb3ae

diff --git a/dev-python/redis-py/redis-py-4.1.4.ebuild 
b/dev-python/redis-py/redis-py-4.1.4.ebuild
new file mode 100644
index ..c0b0dc09baf3
--- /dev/null
+++ b/dev-python/redis-py/redis-py-4.1.4.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+
+inherit distutils-r1
+
+MY_PN="redis"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Python client for Redis key-value store"
+HOMEPAGE="https://github.com/redis/redis-py;
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+
+RDEPEND="
+   dev-python/deprecated[${PYTHON_USEDEP}]"
+BDEPEND="
+   test? (
+   dev-db/redis
+   dev-python/pytest-timeout[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # Flaky test
+   tests/test_pubsub.py::TestPubSubDeadlock::test_pubsub_deadlock
+
+   # Needs a second Redis running
+   tests/test_commands.py::TestRedisCommands::test_sync
+   tests/test_commands.py::TestRedisCommands::test_psync
+   )
+
+   local EPYTEST_IGNORE=(
+   # SSL tests need Docker/stunnel:
+   # 
https://github.com/redis/redis-py/commit/18c6809b761bc6755349e1d7e08e74e857ec2c65
+   tests/test_ssl.py
+
+   # Needs multiple Redises running
+   tests/test_cluster.py
+   )
+
+   epytest -k "not redismod and not ssl"
+}
+
+src_test() {
+   local redis_pid="${T}"/redis.pid
+   local redis_port=6379
+
+   # Spawn Redis itself for testing purposes
+   # NOTE: On sam@'s machine, spawning Redis can hang in the sandbox.
+   # I'm not restricting tests yet because this doesn't happen for anyone 
else AFAICT.
+   einfo "Spawning Redis"
+   einfo "NOTE: Port ${redis_port} must be free"
+   # "${EPREFIX}"/usr/sbin/redis-server - <<< "${redis_test_config}" || die
+   "${EPREFIX}"/usr/sbin/redis-server - <<- EOF || die "Unable to start 
redis server"
+   daemonize yes
+   pidfile ${redis_pid}
+   port ${redis_port}
+   bind 127.0.0.1
+   EOF
+
+   # Run the tests
+   distutils-r1_src_test
+
+   # Clean up afterwards
+   kill "$(<"${redis_pid}")" || die
+}



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

2022-02-16 Thread Michał Górny
commit: 25d74e08bf439c5b50ea41b42adf4aeb548d0964
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 22:11:27 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:34:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25d74e08

dev-python/krb5: Bump to 0.3.0

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

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

diff --git a/dev-python/krb5/Manifest b/dev-python/krb5/Manifest
index ef4472eb7e6a..84a00a6c9f81 100644
--- a/dev-python/krb5/Manifest
+++ b/dev-python/krb5/Manifest
@@ -1 +1,2 @@
 DIST krb5-0.2.0.tar.gz 1086940 BLAKE2B 
af0028f91fc86bba3a450cfb09d1da31d976670f844f46b6a3c7dbddeaa8a4d4cffcde21fa076b5ae5f740052cd60b3872d10174eae3613181f9a3f4d6c9841f
 SHA512 
f2e8558f5800467e362798092f1f37268558d9890491f1d808b51ac2f5372f0b495ce19d1addc74da663eef1baf838ac514b74b5cbc5cf262925bdca2d7231a9
+DIST krb5-0.3.0.tar.gz 1707212 BLAKE2B 
0fa7a60372876f28cdbc2865fbd898c717aaaf22837bfd123008611973a0d6907ea9e5941d5da4ef707161d6aadd883fdef1faab81d307153eb4e115defe32a6
 SHA512 
5074cecfcd82c8f525d77c2faba5b34d6cdc593b15124741df1adec64cdde59fec2f17a02c04f78484ab4b82f7f37f5c1a4d856a2040c8d11c7e4a1b74307b27

diff --git a/dev-python/krb5/krb5-0.3.0.ebuild 
b/dev-python/krb5/krb5-0.3.0.ebuild
new file mode 100644
index ..2f970f72d609
--- /dev/null
+++ b/dev-python/krb5/krb5-0.3.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Kerberos API bindings for Python"
+HOMEPAGE="https://pypi.org/project/krb5/ https://github.com/jborean93/pykrb5;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   virtual/krb5
+"
+BDEPEND="
+   test? ( dev-python/k5test[${PYTHON_USEDEP}] )
+"
+
+distutils_enable_tests pytest



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

2022-02-16 Thread Michał Górny
commit: efe96de0f4d562f0ca3129666b9938c3cc384df7
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 22:03:54 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:34:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efe96de0

dev-python/uvicorn: Bump to 0.17.5

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

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

diff --git a/dev-python/uvicorn/Manifest b/dev-python/uvicorn/Manifest
index 9b964b9e0a41..1d2d96027f85 100644
--- a/dev-python/uvicorn/Manifest
+++ b/dev-python/uvicorn/Manifest
@@ -4,3 +4,4 @@ DIST uvicorn-0.17.0.tar.gz 708241 BLAKE2B 
77f87f0ecb911bb19d599fd48d6ea51105c194
 DIST uvicorn-0.17.1.tar.gz 708124 BLAKE2B 
ee376b5d5c23c955dde9a8994ef589bcaa253f4c35617faa6996f5e2e82ea9268f59e25a0c9a092383ba308a03d98c2964b11d7997a3265dd13d3736a48b89ec
 SHA512 
3a34f04757c4487d64351359da5e12b0ae9cd617ab8cab79cfe8c1e3521c91b324ff253c3dcf774b897c06b24e8e78c0c4c4ee52e7bce4971cba2b3d4fe90b2d
 DIST uvicorn-0.17.3.tar.gz 706936 BLAKE2B 
f96f1707fc966f2972392a413517ba4f3f65097c83134bd648a759ef65496ffa166507d64a2c51d5c301adab4203e0766ab2b359d1182dceeb31dd70e6bbf8e3
 SHA512 
d2a35a69420b2715c2688be341860958b8697c1565d5b2665d4b9c6fa7bf72060e61f72bfd99fb7c346df48f4a962e3c7a7118dd1d0782bc35ac0fcc57cb4e1d
 DIST uvicorn-0.17.4.tar.gz 706950 BLAKE2B 
51d30a97f70984929bc4d4eb3934a16514307ff3e504f86813d0b5ea81467cc5fcc06da6aaa298f0319b2ccddf88b02ee4006ba9f1d573da50365cc4455f5da3
 SHA512 
4e61d712551ee6e6471f88f511e31b5543ef16d8ebe960447f5de6d02753bdbc38fd5fbae0d736b54b01a61d8519ef3891db2bbc1c7440806650b92a765d1d23
+DIST uvicorn-0.17.5.tar.gz 707840 BLAKE2B 
70a5aa4c084f63231b2c4f11c9a4add6a84362789243fe59b4c954665b67f859dcd92076454cac7b960d30c878bccb52e6da5232e052d70ca0a71f4035804b96
 SHA512 
b73c99d03957bf5f37957386da77cad68e0c9603fb0bfe48ab81f1066953ca01bc75b2eb458a20a587df4f2e1f591fe1c56f26d8df84070c833ccbb912d55ca2

diff --git a/dev-python/uvicorn/uvicorn-0.17.5.ebuild 
b/dev-python/uvicorn/uvicorn-0.17.5.ebuild
new file mode 100644
index ..7539908c79ed
--- /dev/null
+++ b/dev-python/uvicorn/uvicorn-0.17.5.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Lightning-fast ASGI server implementation"
+HOMEPAGE="https://www.uvicorn.org/;
+SRC_URI="https://github.com/encode/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/asgiref-3.4.0[${PYTHON_USEDEP}]
+   >=dev-python/click-7.0[${PYTHON_USEDEP}]
+   >=dev-python/h11-0.8[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   dev-python/httpx[${PYTHON_USEDEP}]
+   dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   dev-python/python-dotenv[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/trustme[${PYTHON_USEDEP}]
+   >=dev-python/websockets-10.0[${PYTHON_USEDEP}]
+   dev-python/watchgod[${PYTHON_USEDEP}]
+   dev-python/wsproto[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # too long path for unix socket
+   tests/test_config.py::test_bind_unix_socket_works_with_reload_or_workers
+   # need unpackaged httptools
+   
"tests/middleware/test_logging.py::test_trace_logging_on_http_protocol[httptools]"
+   tests/protocols/test_http.py::test_fragmentation
+)



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

2022-02-16 Thread Michał Górny
commit: 274951723b6b9c919e4e5d0d5b48b826151c624d
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 22:05:39 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:34:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27495172

dev-python/requests-credssp: Bump to 1.3.1

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

 dev-python/requests-credssp/Manifest   |  1 +
 .../requests-credssp/requests-credssp-1.3.1.ebuild | 27 ++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/requests-credssp/Manifest 
b/dev-python/requests-credssp/Manifest
index 05c5d94c1dc9..0a4085ab7a57 100644
--- a/dev-python/requests-credssp/Manifest
+++ b/dev-python/requests-credssp/Manifest
@@ -1 +1,2 @@
 DIST requests-credssp-1.3.0.tar.gz 23666 BLAKE2B 
3ab7db4c06a65483b26012b282a85174a50c9e9449fc33b90a22f7963bcd33c2b4642ce83f0632383e8c1fbc8dd4761fc00bc6d1adccb5cee020f0d67971f225
 SHA512 
6281ecd5d7e14792bd175603dfbb95237b990d5cad6e4c7252fd503b76c579590217194ecd3eb3120cb33cc4f2958be459e63fa3fa8d7411a8aa40d1666276b7
+DIST requests-credssp-1.3.1.tar.gz 23672 BLAKE2B 
e1c0134c02c3779301a8a8a803a6cc500779e9bfc319d3fa3f53bf5b8f5ce9f2624b5961d7586b205f3c1b005305d15b909ae05387a8af7448012ebe3f45bfbe
 SHA512 
ff051b63705fca755a65202b930f622b6a3037455d43bdd2d1bb8726ed4a3a47f76b2d73c005d75d39f7c21048ac91a06abfdd5e88c014ea686a966d37535657

diff --git a/dev-python/requests-credssp/requests-credssp-1.3.1.ebuild 
b/dev-python/requests-credssp/requests-credssp-1.3.1.ebuild
new file mode 100644
index ..e0a776837c10
--- /dev/null
+++ b/dev-python/requests-credssp/requests-credssp-1.3.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="HTTPS CredSSP authentication with the requests library"
+HOMEPAGE="https://pypi.org/project/requests-credssp/ 
https://github.com/jborean93/requests-credssp;
+SRC_URI="https://github.com/jborean93/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv"
+
+RDEPEND="dev-python/cryptography[${PYTHON_USEDEP}]
+   dev-python/gssapi[${PYTHON_USEDEP}]
+   dev-python/krb5[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-0.3.1[${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-16.0.0[${PYTHON_USEDEP}]
+   dev-python/pyspnego[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.0.0[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest



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

2022-02-16 Thread Michał Górny
commit: f06125ddbdd73d4b132a2fa5295649087074d47d
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 21:41:39 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:34:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f06125dd

dev-python/installer: Bump to 0.5.0

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

 dev-python/installer/Manifest   |  2 ++
 dev-python/installer/installer-0.5.0.ebuild | 44 +
 2 files changed, 46 insertions(+)

diff --git a/dev-python/installer/Manifest b/dev-python/installer/Manifest
index 9add80aee415..c3a388cfad95 100644
--- a/dev-python/installer/Manifest
+++ b/dev-python/installer/Manifest
@@ -1,2 +1,4 @@
 DIST installer-0.4.0-py2.py3-none-any.whl.zip 451433 BLAKE2B 
933b7e63b3d0306213789d493d4df112df26b432d63ecd1f8f21449520c34bd2ad542aac25069043fbb535c44f988dca927625eafd0a5a20489fc3ce2bcf84a2
 SHA512 
cf303bb422e329a36007b361034144a232ba021d4013bb8678dc7c326544e74ec9a3b3fe8b9d3696433dbbe90d2ce4a0ae8967fb054bd5ed49321d470be729a8
 DIST installer-0.4.0_p20220124.gh.tar.gz 468296 BLAKE2B 
44763fd05b9e3cc665871817f3a6a417ddc12274ae42989e96ad432af98d42c23ab9f1c1cc37e17d4b9ce06ead7ef0c8227b2b10fe5744c899a9e3ea347e4e33
 SHA512 
b25fa910e8a7d9a2757af4694bf12a64c8731213a5682ab02bbe472229c99dd9190b1e7663a7632d61cbf0585006b2d4de62115c40f9b132be2c70672e23726d
+DIST installer-0.5.0-py3-none-any.whl.zip 452177 BLAKE2B 
41bb5929c1bc42afa1e09f366356aa441eb92d258da40421d7f46ceb466ee4604ed96fef0969dcd2fe28e8f4b06c741ac3108000f69ea42b6bb194890102ad71
 SHA512 
470c4fec114af6769db8b8cefa09a376bfcdf0d78320f884a7453a4991765cdf0b9122c74d8e147d193e75ab3e12cc24c3b93c0668956c17f52443833c4e
+DIST installer-0.5.0.gh.tar.gz 468351 BLAKE2B 
6c258bdaae3351e87a88675fb813bb70611d9188ba16a09ba03de4caa3d79fe32544e229f880338304d00343c2b3121b1948bbef2e27c7255d231a3d5665aa5f
 SHA512 
8731bbf8a51b1094dc87f84575eec07a650988bdeddf205d04cf80a5088eac0d8b2927022864f4011a9562fcaae9f511747e5672f94ec3cce1dccdfa833c4fce

diff --git a/dev-python/installer/installer-0.5.0.ebuild 
b/dev-python/installer/installer-0.5.0.ebuild
new file mode 100644
index ..1460b1996ea3
--- /dev/null
+++ b/dev-python/installer/installer-0.5.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=manual
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+inherit distutils-r1
+
+DESCRIPTION="A library for installing Python wheels"
+HOMEPAGE="
+   https://pypi.org/project/installer/
+   https://github.com/pradyunsg/installer/
+   https://installer.readthedocs.io/en/latest/
+"
+SRC_URI="
+   https://github.com/pradyunsg/installer/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   
https://files.pythonhosted.org/packages/py3/${PN::1}/${PN}/${P%_p*}-py3-none-any.whl
+   -> ${P%_p*}-py3-none-any.whl.zip
+"
+
+LICENSE="MIT"
+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"
+
+BDEPEND="
+   app-arch/unzip
+"
+
+distutils_enable_tests pytest
+
+# do not use any build system to avoid circular deps
+python_compile() { :; }
+
+python_test() {
+   local -x PYTHONPATH=src
+   epytest
+}
+
+python_install() {
+   python_domodule src/installer "${WORKDIR}"/*.dist-info
+}



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

2022-02-16 Thread Michał Górny
commit: ae0671ee92ff8d047ac70a939ca9719dc6413640
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 21:33:15 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:33:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae0671ee

dev-python/boto3: Bump to 1.21.1

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

 dev-python/boto3/Manifest|  1 +
 dev-python/boto3/boto3-1.21.1.ebuild | 60 
 2 files changed, 61 insertions(+)

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index 1d36ae68cf32..2072193680ac 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -4,3 +4,4 @@ DIST boto3-1.20.46.tar.gz 464857 BLAKE2B 
40eb0f2c298821530028c84f90d8acd9757a4b6
 DIST boto3-1.20.49.tar.gz 466426 BLAKE2B 
82f2ed7f14576afd5a4d2dab91b99986904fef97b98460dce152e0806cb20e39b14975e4c3362c9d208c4dce9de3e7a4fa9fa60559aa0007ff735ce9e43995e4
 SHA512 
6ea92236726b9200a8b06f773483b0d6803585480cfad1f68eab227598ca86c3aa93cbeccec5338febc52eb48691f003c5983d52be56dd91e97735ddbfac7053
 DIST boto3-1.20.54.tar.gz 468340 BLAKE2B 
4b7406411200f7af7768c2ed213d623ff6ce607451abd9242c1fd3654132445bc40fd7d608ef9adad143883755e6729f42c223ace2037aca886ecc38f130d166
 SHA512 
8d82a433eae2b57fe5b3057d42f25769cf70f5e24db1b680c32a34e605caf573e273daae82164c746a6f6cf2c75d67e19bf99efd6ebe27d195aeb67dd8555808
 DIST boto3-1.21.0.tar.gz 468664 BLAKE2B 
7d118b2d91a7d8fa38c27a218fc2eb8e8964f0974ddbaf84b92a9bf2ada884738b22d603fe9665ee27191508ea916e1bb8aeaa2eafb43162b7bbf0c48424415e
 SHA512 
b3f9831c43dd3223dd72daeb4aeba9483927913570ffaee7d2d19736dca4fe587cca8703e8ec887440bc0abba55c0094bc2cf824f3e1982b626af11acec18290
+DIST boto3-1.21.1.tar.gz 469079 BLAKE2B 
c2a30539709c7c9741e3a34d5d352a31a0997cfadc29bb3b86c32c602229077414485b77c58718f2a519a5bb2ec8a3d7bfe1d6ef2daf26a8a4ae3c804c636464
 SHA512 
a94d195cbcee2b18877502eca9a79f231519f63712c7522ede23357d1117885e1fd2cce91d3698527d7f19140e08d68dd7272ef1278b9cbad86c77d81aa2661b

diff --git a/dev-python/boto3/boto3-1.21.1.ebuild 
b/dev-python/boto3/boto3-1.21.1.ebuild
new file mode 100644
index ..48ea5aa483a1
--- /dev/null
+++ b/dev-python/boto3/boto3-1.21.1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="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 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux"
+
+   # botocore is x.(y+3).z
+   BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)"
+fi
+
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # don't lock versions to narrow ranges
+   sed -e '/botocore/ d' \
+   -e '/jmespath/ d' \
+   -e '/s3transfer/ d' \
+   -i setup.py || die
+
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   epytest tests/{functional,unit}
+}



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

2022-02-16 Thread Michał Górny
commit: a0784daf7687e82358ca25f2029e0dde3989b4cd
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 21:33:27 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:34:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0784daf

app-admin/awscli: Bump to 1.22.56

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

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

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index 65ba75fa9596..cdc02b5901bb 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -4,3 +4,4 @@ DIST awscli-1.22.46.tar.gz 2160630 BLAKE2B 
628f60975b66fb60b4a91edb98856d9cc8cf7
 DIST awscli-1.22.49.tar.gz 2161874 BLAKE2B 
de97f0f9aeb075049e69c5bbd4bc67d59ba964f6508c92f8c2d1574f77dd4f2d602cd16b07270242c516e68d4119f8df95834935bfbcb16eccc3c1bc0a6cb08a
 SHA512 
d55cf65bb8f70e4f98bd1eb0a79385d0959985b1b969e6f0269e7185c4af2cf3b40e0cd6d736431a489e21e4ec5b055ac0727dd1b2226b6d4dc6b19c4609ff11
 DIST awscli-1.22.54.tar.gz 2164355 BLAKE2B 
86f103c0ab646f78b77ca35740af816d1e36b2a4055f5f3283a7ce70eea2e3f4c481f2fa0b82f964ad1e725705c3c1adde7f365b2e21b3a435b5766da3d4b645
 SHA512 
63e95c767cd38fd7b68a4a74acac72abeb02c220ef16941b6d9069c74f9eca1ad29c6f63a89da2873b65b45999017dfe667dab4864cf7877405ac6328865c811
 DIST awscli-1.22.55.tar.gz 2164540 BLAKE2B 
7e69d2810ba3a829522e4ada836f70d229ac62d1dae6f9fb087f932ab356b9be98cfd85ab8fe80d7ea2cf1e886def41b11b4d30031784b1ff68bd00ba05798b2
 SHA512 
1f08c624739e59d416a0a1642e38da3230f6df2d4b2b497b704949965a17d955c0c7c65fde29b037a3176487ba6c5d86e6017aaadf980253fff19d44f410ea5b
+DIST awscli-1.22.56.tar.gz 2164531 BLAKE2B 
86ed7632aded1a5c3b18d2eabfbf5fd9954ef2d8f61ebf5c23e596452381a3915909d6fc93c92eaa5d58f02a27df994476fbc847b40984c141946e6f08933dd8
 SHA512 
fb4ad95f2990397fb1d83559e71dbebf1b4f2f52b46912da02bded1d486a61141c94dabc0f59ba2ffd724ef7e379f66113a71f2ea466e7a28cf6ac9582579004

diff --git a/app-admin/awscli/awscli-1.22.56.ebuild 
b/app-admin/awscli/awscli-1.22.56.ebuild
new file mode 100644
index ..2fb60d145aa8
--- /dev/null
+++ b/app-admin/awscli/awscli-1.22.56.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+inherit bash-completion-r1 distutils-r1
+
+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"
+
+# awscli 1.22.55 → botocore 1.24.0
+# so botocore is x.(y+2).(z-55)
+BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 2)).$(( $(ver_cut 3-) - 55))"
+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}]
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+   # strip overzealous upper bounds on requirements
+   sed -i -e 's:,<[0-9.]*::' -e 's:==:>=:' setup.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   # integration tests require AWS credentials and Internet access
+   epytest tests/{functional,unit}
+}
+
+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/oslo-context/

2022-02-16 Thread Michał Górny
commit: ffed957d9ee526dd338f0eda5d4b60f1bfa97f3c
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 21:44:40 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:34:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffed957d

dev-python/oslo-context: Bump to 4.1.0

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

 dev-python/oslo-context/Manifest  |  1 +
 dev-python/oslo-context/oslo-context-4.1.0.ebuild | 32 +++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index e03e3ed3caa5..03801bf0fb44 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1,3 @@
 DIST oslo.context-3.4.0.tar.gz 32954 BLAKE2B 
9f22ce6af5efcfec8ab92bdb6c806e420b09037bce08b68fd43684fd459cb12b8196a1e6ee48dcb41ae7aa5d4679851fbed2058709d17e5bb7efc85c9b6d04ea
 SHA512 
bf31c01237352a296e46fdb533ea921dce24cd3c3a918e39f7ff17305104d8f033527738fe562dfe61c8700dbce96e26433068503ca8c5cf9dffb0780e42ec53
 DIST oslo.context-4.0.0.tar.gz 33057 BLAKE2B 
180df04bd331489f2f175f8ab6f23750f0ab5f2c805ecd3a4ece4ad3e04a165ab08244cbb70bedfaeb2b38912ba45f4773671408eb1b5e8ee379809362e6016f
 SHA512 
6a79d4c9568ad021365531e58679297700207472667a84153f016edd9044550d7c8ab868940772a45e9359ebf660a15a6f6d21f8f653fb8f297219bee1122d2f
+DIST oslo.context-4.1.0.tar.gz 33573 BLAKE2B 
8fa4f94f5cb5c82d95e55bbc553f97088ae8907b38ebc95b81674709c6fb4eeffab4f83f042c2069a9bcddfa827ca0c5c9e31ec12f21ad1c82dc111ea7d1732e
 SHA512 
83ef0aafc94460bc16ac84841ffa78bad2594d7b81578552579251b2548779296552f86204788fe3acd1a393e7ca54d479475e8c062649d0fd2f4989c3cbebe9

diff --git a/dev-python/oslo-context/oslo-context-4.1.0.ebuild 
b/dev-python/oslo-context/oslo-context-4.1.0.ebuild
new file mode 100644
index ..93efa8adf760
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-4.1.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="https://pypi.org/project/oslo.context/;
+SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
+S="${WORKDIR}/oslo.context-${PV}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]"
+BDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests unittest
+distutils_enable_sphinx doc/source \
+   dev-python/openstackdocstheme



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

2022-02-16 Thread Michał Górny
commit: 32108c6ae5f8f2851d12768c768772f5d8872cbd
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 21:33:06 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:33:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32108c6a

dev-python/botocore: Bump to 1.24.1

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

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

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index b5ab568392b2..b1582c2f16a1 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -4,3 +4,4 @@ DIST botocore-1.23.46.tar.gz 8743469 BLAKE2B 
804e4ea772bbc74a12645fa5b5e1056115a
 DIST botocore-1.23.49.tar.gz 8758361 BLAKE2B 
5e53366fdd705e81af6752665f3078e26d55460bc2e3644fa030f6b3a4485bd504c445ac15d6b6abcdb164d6c93f33fe8a596d5eb8e7f85c10363cd93a3d3e58
 SHA512 
2450752613a815a67f007a23371e0349a2ebaa991f3b48062bab5ed5736fa11255e206a20cc71a2477b65673f689c5447229a9e0c14358ffcd322e1f55971a86
 DIST botocore-1.23.54.tar.gz 8766494 BLAKE2B 
27af2f4575fc133a253a4fe0671375f0389a0d526912e63b33a4cc5ee0cfa1898c27b52a53c9f4a496d6034f8d120e96616dd14e037f39dd67a410b8445391a4
 SHA512 
c986a8c346aea4bda5fc8bbcc02a7fe9ef83c2b278a81f4e6adc865add4e903e097b6f774a3f0716519ced9594ccc792656ffb8adc150be69d1fc2f94d83689a
 DIST botocore-1.24.0.tar.gz 8767222 BLAKE2B 
9cdcb7677544230f006783d5a666c39c0ec27cf4f854f5dd47865ed8a42ad416b764e81e2b4b539c3a54934cf254f33ced562cd933cd2bd37c36dda0d16afe9b
 SHA512 
1a60073f825cbbe50a8a45c1630391ee0c40646e520e60aef67698f121d1cc31ca5d9ff034ba5c05560193bf24438b5541e9b06c75b9d13888685565d01ff5b9
+DIST botocore-1.24.1.tar.gz 8768807 BLAKE2B 
649633afa85cab9fb248ed9907e2ea3e57aae7325f4f53271669fbb7fa3f6932ce693878905bfe09e1dd1102a05e4be9dec58f9d3f53778a759c5afd85be6e32
 SHA512 
192113e6d072897d6eead85d31f44ee3051ab4610718cbb7b49bfc1e1b884fda9b9f793445275d6ecd678fea12b789fa137c41d1effcafd2ab50cbce81a57927

diff --git a/dev-python/botocore/botocore-1.24.1.ebuild 
b/dev-python/botocore/botocore-1.24.1.ebuild
new file mode 100644
index ..79a1cd5da0e2
--- /dev/null
+++ b/dev-python/botocore/botocore-1.24.1.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="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 ~riscv ~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/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 pytest
+
+src_prepare() {
+   # unpin deps
+   sed -i -e "s:>=.*':':" setup.py || die
+
+   # unbundle deps
+   rm -r botocore/vendored || die
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # rely on bundled six
+   tests/functional/test_six_imports.py::test_no_bare_six_imports
+   tests/functional/test_six_threading.py::test_six_thread_safety
+   )
+
+   epytest tests/{functional,unit}
+}



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

2022-02-16 Thread David Seifert
commit: a8926d08d3dc62e29809e2f5925c46e591386b08
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 16 22:33:36 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 16 22:33:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8926d08

app-crypt/gpgstats: add subslot op on app-crypt/gpgme

Signed-off-by: David Seifert  gentoo.org>

 .../{gpgstats-0.5-r1.ebuild => gpgstats-0.5-r2.ebuild} | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/app-crypt/gpgstats/gpgstats-0.5-r1.ebuild 
b/app-crypt/gpgstats/gpgstats-0.5-r2.ebuild
similarity index 79%
rename from app-crypt/gpgstats/gpgstats-0.5-r1.ebuild
rename to app-crypt/gpgstats/gpgstats-0.5-r2.ebuild
index aaf6c2ee7add..85f24aeaccea 100644
--- a/app-crypt/gpgstats/gpgstats-0.5-r1.ebuild
+++ b/app-crypt/gpgstats/gpgstats-0.5-r2.ebuild
@@ -1,28 +1,28 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit toolchain-funcs
 
 DESCRIPTION="GPGstats calculates statistics on the keys in your key-ring"
 HOMEPAGE="http://www.vanheusden.com/gpgstats/;
 SRC_URI="http://www.vanheusden.com/gpgstats/${P}.tgz;
+
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-RDEPEND="app-crypt/gpgme"
+
+RDEPEND="app-crypt/gpgme:="
 DEPEND="${RDEPEND}"
 
-PATCHES=(
-   "${FILESDIR}/${P}-flags.patch"
-)
+PATCHES=( "${FILESDIR}"/${P}-flags.patch )
 
 src_compile() {
emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" DEBUG=
 }
 
 src_install() {
-   einstalldocs
dobin gpgstats
+   einstalldocs
 }



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

2022-02-16 Thread Miroslav Šulc
commit: 8c32c61f28ae147f4ba84ea383643469ff6ec208
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Feb 16 22:28:48 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Feb 16 22:28:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c32c61f

dev-java/cpptasks: removed obsolete 1.0_beta5

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/cpptasks/cpptasks-1.0_beta5.ebuild | 47 -
 1 file changed, 47 deletions(-)

diff --git a/dev-java/cpptasks/cpptasks-1.0_beta5.ebuild 
b/dev-java/cpptasks/cpptasks-1.0_beta5.ebuild
deleted file mode 100644
index e72710bc3451..
--- a/dev-java/cpptasks/cpptasks-1.0_beta5.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-JAVA_PKG_IUSE="doc source examples"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="Ant-tasks to compile various source languages and produce 
executables"
-HOMEPAGE="http://ant-contrib.sourceforge.net/;
-SRC_URI="mirror://sourceforge/ant-contrib/ant-contrib/${P/_/-}/${P/_beta/b}.tar.gz"
-S="${WORKDIR}/${P/_beta/b}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-
-CDEPEND="
-   dev-java/ant-core:0
-   dev-java/xerces:2"
-RDEPEND="${CDEPEND}
-   >=virtual/jre-1.6"
-DEPEND="${CDEPEND}
-   >=virtual/jdk-1.6"
-
-JAVA_ANT_REWRITE_CLASSPATH="yes"
-
-EANT_BUILD_TARGET="jars"
-EANT_DOC_TARGET="javadocs -Dbuild.javadocs=build/api"
-EANT_GENTOO_CLASSPATH="ant-core,xerces-2"
-
-src_prepare() {
-   default
-   find -name '*.jar' -exec rm -v {} + || die
-}
-
-src_install() {
-   java-pkg_dojar target/lib/${PN}.jar
-
-   java-pkg_register-ant-task
-
-   dodoc NOTICE
-   use doc && java-pkg_dojavadoc build/api
-   use examples && java-pkg_doexamples src/samples/*
-   use source && java-pkg_dosrc src/main/java/*
-}



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

2022-02-16 Thread David Seifert
commit: 9cc477ab7d6c6add0c4145d15d6b4676d42cd824
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 16 22:27:19 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 16 22:27:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cc477ab

app-crypt/nasty: add subslot op on app-crypt/gpgme

Signed-off-by: David Seifert  gentoo.org>

 .../nasty/{nasty-0.6-r1.ebuild => nasty-0.6-r2.ebuild} | 18 +++---
 1 file changed, 7 insertions(+), 11 deletions(-)

diff --git a/app-crypt/nasty/nasty-0.6-r1.ebuild 
b/app-crypt/nasty/nasty-0.6-r2.ebuild
similarity index 72%
rename from app-crypt/nasty/nasty-0.6-r1.ebuild
rename to app-crypt/nasty/nasty-0.6-r2.ebuild
index 574cd87cb1de..2596a2964bf5 100644
--- a/app-crypt/nasty/nasty-0.6-r1.ebuild
+++ b/app-crypt/nasty/nasty-0.6-r2.ebuild
@@ -1,32 +1,28 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit toolchain-funcs
 
 DESCRIPTION="Proof-of-concept GPG passphrase recovery tool"
 HOMEPAGE="http://www.vanheusden.com/nasty/;
 SRC_URI="http://www.vanheusden.com/nasty/${P}.tgz;
+
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-RDEPEND="app-crypt/gpgme"
-DEPEND="${RDEPEND}"
 
-DOCS=(
-   readme.txt
-)
+RDEPEND="app-crypt/gpgme:="
+DEPEND="${RDEPEND}"
 
-PATCHES=(
-   "${FILESDIR}/${P}-flags.patch"
-)
+PATCHES=( "${FILESDIR}"/${P}-flags.patch )
 
 src_compile() {
emake CC="$(tc-getCC)" DEBUG=
 }
 
 src_install() {
-   einstalldocs
dobin nasty
+   dodoc readme.txt
 }



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

2022-02-16 Thread Miroslav Šulc
commit: 5aa8bc7be14fcafd05fcad0f201c5357e83672b6
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Feb 16 22:26:21 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Feb 16 22:26:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5aa8bc7b

dev-java/slf4j-simple: removed obsolete 1.7.30-r1

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/slf4j-simple/Manifest |  1 -
 .../slf4j-simple/slf4j-simple-1.7.30-r1.ebuild | 74 --
 2 files changed, 75 deletions(-)

diff --git a/dev-java/slf4j-simple/Manifest b/dev-java/slf4j-simple/Manifest
index eb394e27d31e..9b91652ca75b 100644
--- a/dev-java/slf4j-simple/Manifest
+++ b/dev-java/slf4j-simple/Manifest
@@ -1,2 +1 @@
-DIST slf4j-1.7.30-sources.tar.gz 2272772 BLAKE2B 
c6692a20406983fa333bdb27bf8da599140d7d37fe55da6dfa2c2aff1825ee57c9d6b7bf0015e4b41b3c15ac0971559b3dd4bb5244e5393cd209ee26fac5e93d
 SHA512 
4f05c996532560b16f22d78fcd47f8c4ba14691ce218a51ee6d50b283a51f8e40475a3a47f1117c1898a7be922e3f85806c4a7eb526759f0e7ea8426b5c6035f
 DIST slf4j-1.7.32.tar.gz 2277207 BLAKE2B 
d16c93ddc4667700a868d872a58b64248c8594fafa37e05ed300a71061c58ec2b3f1e0036326ff42ebdd57d5df3576e8ec2d8ae6090439b5d8e6f1fa0c555332
 SHA512 
512c33cb812058a7419eb717e55ad9a0522e602339f088e7295bb0bfb3cf39972412a74479896c14e8c48124d8c2adc4c4d78735f4747b4fa9742ddac2ae07fa

diff --git a/dev-java/slf4j-simple/slf4j-simple-1.7.30-r1.ebuild 
b/dev-java/slf4j-simple/slf4j-simple-1.7.30-r1.ebuild
deleted file mode 100644
index 1cea0263a4b9..
--- a/dev-java/slf4j-simple/slf4j-simple-1.7.30-r1.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# Skeleton command:
-# java-ebuilder --generate-ebuild --workdir . --pom 
slf4j-v_1.7.30/slf4j-simple/pom.xml --download-uri 
https://github.com/qos-ch/slf4j/archive/refs/tags/v_1.7.30.tar.gz --slot 0 
--keywords "~amd64 ~arm64 ~ppc64 ~x86" --ebuild slf4j-simple-1.7.30.ebuild
-
-EAPI=7
-
-JAVA_PKG_IUSE="doc source test"
-MAVEN_ID="org.slf4j:slf4j-simple:1.7.30"
-JAVA_TESTING_FRAMEWORKS="junit-4"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="SLF4J Simple binding"
-HOMEPAGE="https://www.slf4j.org;
-SRC_URI="https://github.com/qos-ch/slf4j/archive/refs/tags/v_${PV}.tar.gz -> 
slf4j-${PV}-sources.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86"
-
-# Common dependencies
-# POM: slf4j-v_${PV}/${PN}/pom.xml
-# org.slf4j:slf4j-api:1.7.30 -> >=dev-java/slf4j-api-1.7.30:0
-
-CDEPEND="
-   >=dev-java/slf4j-api-1.7.30:0
-"
-
-# Compile dependencies
-# POM: slf4j-v_${PV}/${PN}/pom.xml
-# test? junit:junit:4.12 -> >=dev-java/junit-4.12:4
-# test? org.slf4j:slf4j-api:1.7.30 -> >=dev-java/slf4j-api-1.7.30:0
-
-DEPEND="
-   >=virtual/jdk-1.8:*
-   ${CDEPEND}
-   test? (
-   >=dev-java/slf4j-api-1.7.30:0
-   )
-"
-
-RDEPEND="
-   >=virtual/jre-1.8:*
-   ${CDEPEND}
-"
-
-S="${WORKDIR}/slf4j-v_${PV}/${PN}"
-
-JAVA_GENTOO_CLASSPATH="slf4j-api"
-JAVA_SRC_DIR="src/main/java"
-JAVA_RESOURCE_DIRS="src/main/resources"
-
-JAVA_TEST_GENTOO_CLASSPATH="junit-4,slf4j-api"
-JAVA_TEST_SRC_DIR="src/test/java"
-JAVA_TEST_RESOURCE_DIRS="src/test/resources"
-
-JAVA_TEST_EXCLUDES=(
-   # java.lang.InstantiationException
-   "org.slf4j.helpers.MultithreadedInitializationTest"
-
-   # java.lang.AssertionError: 1284 < 1263+16
-   "org.slf4j.helpers.SimpleLoggerMultithreadedInitializationTest"
-)
-
-src_prepare() {
-   default
-   java-pkg_clean
-   cp 
"../slf4j-api/src/test/java/org/slf4j/helpers/MultithreadedInitializationTest.java"
 \
-   "${JAVA_TEST_SRC_DIR}/org/slf4j/helpers/" || die
-   cp "../slf4j-api/src/test/java/org/slf4j/LoggerAccessingThread.java" \
-   "${JAVA_TEST_SRC_DIR}/org/slf4j/" || die
-}



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

2022-02-16 Thread Miroslav Šulc
commit: 53d3007ccdfbdb9cdf4bf5eb409f9d3a9dd82f3e
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Feb 16 22:25:02 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Feb 16 22:26:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53d3007c

dev-java/slf4j-nop: removed obsolete 1.7.30

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/slf4j-nop/Manifest|  1 -
 dev-java/slf4j-nop/slf4j-nop-1.7.30.ebuild | 58 --
 2 files changed, 59 deletions(-)

diff --git a/dev-java/slf4j-nop/Manifest b/dev-java/slf4j-nop/Manifest
index eb394e27d31e..9b91652ca75b 100644
--- a/dev-java/slf4j-nop/Manifest
+++ b/dev-java/slf4j-nop/Manifest
@@ -1,2 +1 @@
-DIST slf4j-1.7.30-sources.tar.gz 2272772 BLAKE2B 
c6692a20406983fa333bdb27bf8da599140d7d37fe55da6dfa2c2aff1825ee57c9d6b7bf0015e4b41b3c15ac0971559b3dd4bb5244e5393cd209ee26fac5e93d
 SHA512 
4f05c996532560b16f22d78fcd47f8c4ba14691ce218a51ee6d50b283a51f8e40475a3a47f1117c1898a7be922e3f85806c4a7eb526759f0e7ea8426b5c6035f
 DIST slf4j-1.7.32.tar.gz 2277207 BLAKE2B 
d16c93ddc4667700a868d872a58b64248c8594fafa37e05ed300a71061c58ec2b3f1e0036326ff42ebdd57d5df3576e8ec2d8ae6090439b5d8e6f1fa0c555332
 SHA512 
512c33cb812058a7419eb717e55ad9a0522e602339f088e7295bb0bfb3cf39972412a74479896c14e8c48124d8c2adc4c4d78735f4747b4fa9742ddac2ae07fa

diff --git a/dev-java/slf4j-nop/slf4j-nop-1.7.30.ebuild 
b/dev-java/slf4j-nop/slf4j-nop-1.7.30.ebuild
deleted file mode 100644
index 2a8cbe6c6f10..
--- a/dev-java/slf4j-nop/slf4j-nop-1.7.30.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# Skeleton command:
-# java-ebuilder --generate-ebuild --workdir . --pom 
slf4j-v_1.7.30/slf4j-nop/pom.xml --download-uri 
https://github.com/qos-ch/slf4j/archive/refs/tags/v_1.7.30.tar.gz --slot 0 
--keywords "~amd64 ~arm64 ~ppc64 ~x86" --ebuild slf4j-nop-1.7.30.ebuild
-
-EAPI=7
-
-JAVA_PKG_IUSE="doc source test"
-MAVEN_ID="org.slf4j:slf4j-nop:1.7.30"
-JAVA_TESTING_FRAMEWORKS="junit-4"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="SLF4J NOP Binding"
-HOMEPAGE="https://www.slf4j.org;
-SRC_URI="https://github.com/qos-ch/slf4j/archive/refs/tags/v_${PV}.tar.gz -> 
slf4j-${PV}-sources.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86"
-
-# Common dependencies
-# POM: slf4j-v_${PV}/${PN}/pom.xml
-# org.slf4j:slf4j-api:1.7.30 -> >=dev-java/slf4j-api-1.7.30:0
-
-CDEPEND="
-   >=dev-java/slf4j-api-1.7.30:0
-"
-
-DEPEND="
-   >=virtual/jdk-1.8:*
-   ${CDEPEND}
-"
-
-RDEPEND="
-   >=virtual/jre-1.8:*
-   ${CDEPEND}"
-
-S="${WORKDIR}"
-
-JAVA_GENTOO_CLASSPATH="slf4j-api"
-JAVA_SRC_DIR="slf4j-v_${PV}/${PN}/src/main/java"
-JAVA_RESOURCE_DIRS=(
-   "slf4j-v_${PV}/${PN}/src/main/resources"
-)
-
-JAVA_TEST_GENTOO_CLASSPATH="junit-4"
-JAVA_TEST_SRC_DIR="slf4j-v_${PV}/${PN}/src/test/java"
-JAVA_TEST_EXCLUDES=(
-   # java.lang.AssertionError: expected:<0> but was:<5>
-   "org.slf4j.impl.MultithreadedInitializationTest"
-)
-
-src_prepare() {
-   default
-   java-pkg_clean
-}



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

2022-02-16 Thread Miroslav Šulc
commit: cf6aabc0f718a034887c62d3e29eb3828942386a
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Feb 16 22:24:10 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Feb 16 22:26:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf6aabc0

dev-java/slf4j-nop: forward-ported ~arm

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/slf4j-nop/slf4j-nop-1.7.32.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/slf4j-nop/slf4j-nop-1.7.32.ebuild 
b/dev-java/slf4j-nop/slf4j-nop-1.7.32.ebuild
index 3860b2f545e4..db043c55fe30 100644
--- a/dev-java/slf4j-nop/slf4j-nop-1.7.32.ebuild
+++ b/dev-java/slf4j-nop/slf4j-nop-1.7.32.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/qos-ch/slf4j/archive/refs/tags/v_${PV}.tar.gz -> slf
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm64 ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 x86"
 
 # Common dependencies
 # POM: pom.xml



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

2022-02-16 Thread Miroslav Šulc
commit: 4e52969ed91d03326d59a05eea7d131a5ece1f52
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Feb 16 22:21:29 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Feb 16 22:26:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e52969e

dev-java/slf4j-api: removed obsolete 1.7.30-r1

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/slf4j-api/Manifest   |  1 -
 dev-java/slf4j-api/slf4j-api-1.7.30-r1.ebuild | 55 ---
 2 files changed, 56 deletions(-)

diff --git a/dev-java/slf4j-api/Manifest b/dev-java/slf4j-api/Manifest
index eb394e27d31e..9b91652ca75b 100644
--- a/dev-java/slf4j-api/Manifest
+++ b/dev-java/slf4j-api/Manifest
@@ -1,2 +1 @@
-DIST slf4j-1.7.30-sources.tar.gz 2272772 BLAKE2B 
c6692a20406983fa333bdb27bf8da599140d7d37fe55da6dfa2c2aff1825ee57c9d6b7bf0015e4b41b3c15ac0971559b3dd4bb5244e5393cd209ee26fac5e93d
 SHA512 
4f05c996532560b16f22d78fcd47f8c4ba14691ce218a51ee6d50b283a51f8e40475a3a47f1117c1898a7be922e3f85806c4a7eb526759f0e7ea8426b5c6035f
 DIST slf4j-1.7.32.tar.gz 2277207 BLAKE2B 
d16c93ddc4667700a868d872a58b64248c8594fafa37e05ed300a71061c58ec2b3f1e0036326ff42ebdd57d5df3576e8ec2d8ae6090439b5d8e6f1fa0c555332
 SHA512 
512c33cb812058a7419eb717e55ad9a0522e602339f088e7295bb0bfb3cf39972412a74479896c14e8c48124d8c2adc4c4d78735f4747b4fa9742ddac2ae07fa

diff --git a/dev-java/slf4j-api/slf4j-api-1.7.30-r1.ebuild 
b/dev-java/slf4j-api/slf4j-api-1.7.30-r1.ebuild
deleted file mode 100644
index 2acf963a0925..
--- a/dev-java/slf4j-api/slf4j-api-1.7.30-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# Skeleton command:
-# java-ebuilder --generate-ebuild --workdir . --pom 
slf4j-v_1.7.30/slf4j-api/pom.xml --download-uri 
https://github.com/qos-ch/slf4j/archive/refs/tags/v_1.7.30.tar.gz --slot 0 
--keywords "~amd64 ~arm64 ~ppc64 ~x86" --ebuild slf4j-api-1.7.30.ebuild
-
-EAPI=7
-
-JAVA_PKG_IUSE="doc source test"
-MAVEN_ID="org.slf4j:slf4j-api:1.7.30"
-JAVA_TESTING_FRAMEWORKS="junit-4"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="The slf4j API"
-HOMEPAGE="https://www.slf4j.org;
-SRC_URI="https://github.com/qos-ch/slf4j/archive/refs/tags/v_${PV}.tar.gz -> 
slf4j-${PV}-sources.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86"
-
-DEPEND="
-   >=virtual/jdk-1.8:*
-"
-
-RDEPEND="
-   >=virtual/jre-1.8:*
-"
-BDEPEND="app-arch/zip"
-
-S="${WORKDIR}/slf4j-v_${PV}/${PN}"
-
-JAVA_SRC_DIR="src/main/java"
-JAVA_RESOURCE_DIRS="src/main/resources"
-
-JAVA_TEST_GENTOO_CLASSPATH="junit-4"
-JAVA_TEST_SRC_DIR="src/test/java"
-
-JAVA_TEST_EXCLUDES=(
-   # java.lang.InstantiationException - not run by upstream anyway
-   "org.slf4j.helpers.MultithreadedInitializationTest"
-)
-
-src_prepare() {
-   default
-   java-pkg_clean
-}
-
-src_compile() {
-   java-pkg-simple_src_compile
-
-   # remove org/slf4j/impl/ from the jar file
-   zip -d ${PN}.jar org/slf4j/impl/\* || die "Failed to remove impl files"
-}



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

2022-02-16 Thread David Seifert
commit: f36f1ae0b2e23dbd5e18a66065b2409b48d7982d
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 16 22:20:58 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 16 22:20:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f36f1ae0

app-crypt/seahorse: add subslot op on app-crypt/gpgme

Signed-off-by: David Seifert  gentoo.org>

 .../seahorse/{seahorse-40.0-r1.ebuild => seahorse-40.0-r2.ebuild} | 4 ++--
 app-crypt/seahorse/{seahorse-41.0.ebuild => seahorse-41.0-r1.ebuild}  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-crypt/seahorse/seahorse-40.0-r1.ebuild 
b/app-crypt/seahorse/seahorse-40.0-r2.ebuild
similarity index 96%
rename from app-crypt/seahorse/seahorse-40.0-r1.ebuild
rename to app-crypt/seahorse/seahorse-40.0-r2.ebuild
index 935f5b5b2e62..a7c957e63a0b 100644
--- a/app-crypt/seahorse/seahorse-40.0-r1.ebuild
+++ b/app-crypt/seahorse/seahorse-40.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,7 +15,7 @@ KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~sparc 
x86"
 RDEPEND="
>=dev-libs/glib-2.58:2
>=app-crypt/gcr-3.38:=
-   >=app-crypt/gpgme-1.14.0
+   >=app-crypt/gpgme-1.14.0:=
>=x11-libs/gtk+-3.24.0:3
>=app-crypt/gnupg-2.2
>=gui-libs/libhandy-1.1:1=

diff --git a/app-crypt/seahorse/seahorse-41.0.ebuild 
b/app-crypt/seahorse/seahorse-41.0-r1.ebuild
similarity index 96%
rename from app-crypt/seahorse/seahorse-41.0.ebuild
rename to app-crypt/seahorse/seahorse-41.0-r1.ebuild
index abbf0c377707..89044cb83cb5 100644
--- a/app-crypt/seahorse/seahorse-41.0.ebuild
+++ b/app-crypt/seahorse/seahorse-41.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,7 +15,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv 
~sparc ~x86"
 RDEPEND="
>=dev-libs/glib-2.66:2
>=app-crypt/gcr-3.38:=
-   >=app-crypt/gpgme-1.14.0
+   >=app-crypt/gpgme-1.14.0:=
>=x11-libs/gtk+-3.24.0:3
>=app-crypt/gnupg-2.2
>=gui-libs/libhandy-1.1:1=



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

2022-02-16 Thread Miroslav Šulc
commit: e63c4012f7a33258f58efc374d02eeaeed9f4f49
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Feb 16 22:18:51 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Feb 16 22:18:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e63c4012

dev-java/xmlunit: removed obsolete 1.6

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/xmlunit/xmlunit-1.6.ebuild | 54 -
 1 file changed, 54 deletions(-)

diff --git a/dev-java/xmlunit/xmlunit-1.6.ebuild 
b/dev-java/xmlunit/xmlunit-1.6.ebuild
deleted file mode 100644
index b6e5dc47b97b..
--- a/dev-java/xmlunit/xmlunit-1.6.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-JAVA_PKG_IUSE="doc source test"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="XMLUnit extends JUnit and NUnit to enable unit testing of XML"
-SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip"
-HOMEPAGE="http://xmlunit.sourceforge.net/;
-
-LICENSE="BSD"
-SLOT="1"
-KEYWORDS="amd64 ppc64 x86"
-
-CDEPEND="dev-java/junit:0"
-
-DEPEND=">=virtual/jdk-1.6
-   app-arch/unzip:0
-   doc? ( app-text/docbook-xsl-stylesheets:0 )
-   test? (
-   dev-java/ant-junit:0
-   dev-java/ant-core:0
-   )
-   ${CDEPEND}"
-
-RDEPEND=">=virtual/jre-1.6
-   ${CDEPEND}"
-
-JAVA_ANT_REWRITE_CLASSPATH="true"
-EANT_GENTOO_CLASSPATH="junit"
-
-EANT_DOC_TARGET="users-guide-html javadocs"
-EANT_ANT_TASKS="ant-core"
-EANT_EXTRA_ARGS="-Ddb5.xsl=/usr/share/sgml/docbook/xsl-stylesheets"
-
-src_test() {
-   ANT_TASKS="ant-junit ant-core" eant test
-}
-
-src_install() {
-   java-pkg_newjar "build/lib/${P}.jar"
-
-   dodoc README.txt
-
-   if use doc; then
-   java-pkg_dojavadoc build/doc/api
-   dohtml build/doc/userguide/html/*
-   fi
-
-   use source && java-pkg_dosrc src/java/org
-}



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

2022-02-16 Thread Miroslav Šulc
commit: 75167982c6b49601363c39bb9d8d8d6bb59fdc05
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Feb 16 22:16:38 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Feb 16 22:16:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75167982

dev-java/mchange-commons: removed obsolete 0.2.10

Closes: https://bugs.gentoo.org/833411
Closes: https://bugs.gentoo.org/567464
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/mchange-commons/Manifest  |  1 -
 .../mchange-commons/mchange-commons-0.2.10.ebuild  | 43 --
 2 files changed, 44 deletions(-)

diff --git a/dev-java/mchange-commons/Manifest 
b/dev-java/mchange-commons/Manifest
index 919f9bf6793b..96c8ad15ed34 100644
--- a/dev-java/mchange-commons/Manifest
+++ b/dev-java/mchange-commons/Manifest
@@ -1,2 +1 @@
 DIST mchange-commons-0.2.10.tar.gz 218657 BLAKE2B 
f073aac7a560c31ea71c4114c5128de55d4b384c9579f649e0ca28c1257be64d22bce406b241f3b7665c5ec0e4cdc64c079c0f27f328e54803612abae43aef42
 SHA512 
098712b3b61d74a832699b6c92c75fdb243260400c1180511b5299a25553660750261ff8c2cf322350afd3d4b84fdf9900c26123b56add0f772e26e4f3ed8d7b
-DIST mchange-commons-java-0.2.10.zip 773768 BLAKE2B 
abfcc70e109431afcc514e80a2dc3585a90de07f8cb800d0a9807b72ad10f0488ad0a8b7a641c3de7a91029e3d6b25590985df85e592d90d0af42728389d7e28
 SHA512 
8196cd4476c3dea55355ba11cc2f801602235de3a977d75eff3835dacaf612647adc0e595e0bf77a6313adcd718d143d08ecf6fd5aa0e6638a419cf1f107c3a9

diff --git a/dev-java/mchange-commons/mchange-commons-0.2.10.ebuild 
b/dev-java/mchange-commons/mchange-commons-0.2.10.ebuild
deleted file mode 100644
index da085079a41a..
--- a/dev-java/mchange-commons/mchange-commons-0.2.10.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-JAVA_PKG_IUSE="doc source"
-inherit java-pkg-2 java-pkg-simple
-
-MY_PN="${PN}-java"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="a library of arguably useful Java utilities"
-HOMEPAGE="https://github.com/swaldman/mchange-commons-java;
-SRC_URI="https://github.com/swaldman/${MY_PN}/archive/${MY_P}.zip;
-
-LICENSE="CDDL"
-SLOT="0"
-KEYWORDS="amd64 ppc64 x86"
-
-IUSE="doc source"
-
-CDEPEND="
-   dev-java/log4j:0
-   dev-java/slf4j-api:0
-   dev-java/typesafe-config:0"
-
-RDEPEND="
-   ${CDEPEND}
-   >=virtual/jre-1.6"
-
-DEPEND="
-   ${CDEPEND}
-   app-arch/zip
-   >=virtual/jdk-1.6"
-
-S="${WORKDIR}/${MY_PN}-${MY_P}"
-
-JAVA_SRC_DIR="src/main"
-
-JAVA_GENTOO_CLASSPATH="
-   log4j
-   slf4j-api
-   typesafe-config"



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

2022-02-16 Thread Miroslav Šulc
commit: b1eff7a8fee918008153f3fc453a4e90f6e81e8c
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Feb 16 22:12:26 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Feb 16 22:12:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1eff7a8

dev-java/jsch: removed obsolete 0.1.54-r1

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/jsch/Manifest  |  1 -
 dev-java/jsch/jsch-0.1.54-r1.ebuild | 56 -
 2 files changed, 57 deletions(-)

diff --git a/dev-java/jsch/Manifest b/dev-java/jsch/Manifest
index 38e84063f341..80775bf0b8a4 100644
--- a/dev-java/jsch/Manifest
+++ b/dev-java/jsch/Manifest
@@ -1,2 +1 @@
-DIST jsch-0.1.54.zip 365455 BLAKE2B 
5cd6fa012e5a511bad8f23a233559e6ad6d600f39ea7b519e66e118b1fdb997491b7ac8cff5bc1491c28f7ee99f0f4a3b4727f5d8ec02030576f34949d74e203
 SHA512 
2ed29f07495fbc28d6eb7b4fe414e8a9a96b911b2feea5b1513cc48a9439adba12341bceb23a3ea9ab307e32d48bfd4356c7bc877c56e77f6f55d69214db3a9e
 DIST jsch-0.1.55.zip 369664 BLAKE2B 
4a35845e7b9e57c64a890547b2cabdec5bd03fa462ac3c78d8bcb757dbd5b50b366d41c042e904e44b967c85da01396c7dd085b8fe5f69ad243237fab38fa1f1
 SHA512 
334b550594272fe179f13fb6bbfc0a353334586786db2b3279608b85cdab3dd604e6dd04aa2376b5532816d906133e636b5359dda36c449d90173be501c61418

diff --git a/dev-java/jsch/jsch-0.1.54-r1.ebuild 
b/dev-java/jsch/jsch-0.1.54-r1.ebuild
deleted file mode 100644
index 2764fb8bedc7..
--- a/dev-java/jsch/jsch-0.1.54-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-JAVA_PKG_IUSE="doc source examples"
-MAVEN_ID="com.jcraft:jsch:0.1.55"
-
-inherit java-pkg-2 java-ant-2 java-osgi
-
-DESCRIPTION="JSch is a pure Java implementation of SSH2"
-HOMEPAGE="http://www.jcraft.com/jsch/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="zlib"
-
-CDEPEND="
-   zlib? ( dev-java/jzlib:0 )"
-
-RDEPEND="
-   ${CDEPEND}
-   >=virtual/jre-1.8:*"
-
-DEPEND="
-   ${CDEPEND}
-   >=virtual/jdk-1.8:*"
-
-BDEPEND="
-   app-arch/unzip
-"
-
-EANT_BUILD_TARGET="dist"
-JAVA_ANT_REWRITE_CLASSPATH="true"
-
-src_compile() {
-   if use zlib; then
-   EANT_EXTRA_ARGS="-Djzlib.available=true"
-   EANT_GENTOO_CLASSPATH="jzlib"
-   fi
-
-   java-pkg-2_src_compile
-}
-
-src_install() {
-   java-osgi_newjar dist/lib/jsch*.jar \
-   "com.jcraft.jsch" "JSch" \
-   "com.jcraft.jsch, com.jcraft.jsch.jce;x-internal:=true, \
-   com.jcraft.jsch.jcraft;x-internal:=true"
-
-   einstalldocs
-   use doc && java-pkg_dojavadoc javadoc
-   use source && java-pkg_dosrc src/*
-   use examples && java-pkg_doexamples examples
-}



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

2022-02-16 Thread David Seifert
commit: f3a18c731d6a1dd49a047ebff75f92652ef3b3ef
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 16 22:11:10 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 16 22:11:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3a18c73

dev-ruby/gpgme: add subslot op on app-crypt/gpgme

Signed-off-by: David Seifert  gentoo.org>

 dev-ruby/gpgme/{gpgme-2.0.20.ebuild => gpgme-2.0.20-r2.ebuild}| 7 ---
 dev-ruby/gpgme/{gpgme-2.0.20-r1.ebuild => gpgme-2.0.20-r3.ebuild} | 7 ---
 2 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/dev-ruby/gpgme/gpgme-2.0.20.ebuild 
b/dev-ruby/gpgme/gpgme-2.0.20-r2.ebuild
similarity index 90%
rename from dev-ruby/gpgme/gpgme-2.0.20.ebuild
rename to dev-ruby/gpgme/gpgme-2.0.20-r2.ebuild
index e0e3c9d28214..5b45be052d93 100644
--- a/dev-ruby/gpgme/gpgme-2.0.20.ebuild
+++ b/dev-ruby/gpgme/gpgme-2.0.20-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -20,8 +20,9 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 
-DEPEND+=">=app-crypt/gpgme-1.1.3 test? ( >=app-crypt/gpgme-1.13.0 )"
-RDEPEND+=">=app-crypt/gpgme-1.1.3"
+RDEPEND="
+   app-crypt/gpgme:="
+DEPEND="${RDEPEND}"
 
 ruby_add_bdepend "test? ( dev-ruby/mocha:0.14 )"
 

diff --git a/dev-ruby/gpgme/gpgme-2.0.20-r1.ebuild 
b/dev-ruby/gpgme/gpgme-2.0.20-r3.ebuild
similarity index 89%
rename from dev-ruby/gpgme/gpgme-2.0.20-r1.ebuild
rename to dev-ruby/gpgme/gpgme-2.0.20-r3.ebuild
index a5f8cb60ba63..3200ae3ba2e0 100644
--- a/dev-ruby/gpgme/gpgme-2.0.20-r1.ebuild
+++ b/dev-ruby/gpgme/gpgme-2.0.20-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -22,8 +22,9 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 
-DEPEND+=">=app-crypt/gpgme-1.1.3 test? ( >=app-crypt/gpgme-1.13.0 )"
-RDEPEND+=">=app-crypt/gpgme-1.1.3"
+RDEPEND="
+   app-crypt/gpgme:="
+DEPEND="${RDEPEND}"
 
 ruby_add_bdepend "test? ( dev-ruby/mocha:0.14 )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-gpg/

2022-02-16 Thread David Seifert
commit: 2c77b3ba0f774bd2fa359e9cff5d3f3c462520ba
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 16 22:11:12 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 16 22:11:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c77b3ba

x11-plugins/pidgin-gpg: add subslot op on app-crypt/gpgme

Signed-off-by: David Seifert  gentoo.org>

 .../{pidgin-gpg-0.9.3.ebuild => pidgin-gpg-0.9.3-r1.ebuild}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/pidgin-gpg/pidgin-gpg-0.9.3.ebuild 
b/x11-plugins/pidgin-gpg/pidgin-gpg-0.9.3-r1.ebuild
similarity index 89%
rename from x11-plugins/pidgin-gpg/pidgin-gpg-0.9.3.ebuild
rename to x11-plugins/pidgin-gpg/pidgin-gpg-0.9.3-r1.ebuild
index 05c290348af0..ac3eeac2c984 100644
--- a/x11-plugins/pidgin-gpg/pidgin-gpg-0.9.3.ebuild
+++ b/x11-plugins/pidgin-gpg/pidgin-gpg-0.9.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -13,7 +13,7 @@ LICENSE="GPL-3+"
 SLOT="0"
 KEYWORDS="~amd64 ~riscv ~x86"
 
-RDEPEND="app-crypt/gpgme
+RDEPEND="app-crypt/gpgme:=
net-im/pidgin"
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"



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

2022-02-16 Thread David Seifert
commit: 0d24c3a10c7f37b0f5a621e860c46af15a47dece
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 16 22:11:11 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 16 22:11:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d24c3a1

dev-util/ostree: add subslot op on app-crypt/gpgme

Signed-off-by: David Seifert  gentoo.org>

 dev-util/ostree/{ostree-2021.3-r2.ebuild => ostree-2021.3-r3.ebuild} | 4 ++--
 dev-util/ostree/{ostree-2022.1.ebuild => ostree-2021.4-r2.ebuild}| 2 +-
 dev-util/ostree/{ostree-2021.4-r1.ebuild => ostree-2021.5-r1.ebuild} | 4 ++--
 dev-util/ostree/{ostree-2021.5.ebuild => ostree-2022.1-r1.ebuild}| 4 ++--
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/dev-util/ostree/ostree-2021.3-r2.ebuild 
b/dev-util/ostree/ostree-2021.3-r3.ebuild
similarity index 97%
rename from dev-util/ostree/ostree-2021.3-r2.ebuild
rename to dev-util/ostree/ostree-2021.3-r3.ebuild
index b422addea358..424f7319c6e0 100644
--- a/dev-util/ostree/ostree-2021.3-r2.ebuild
+++ b/dev-util/ostree/ostree-2021.3-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -29,7 +29,7 @@ COMMON_DEPEND="
dev-libs/glib:2
dracut? ( sys-kernel/dracut )
gpg? (
-   app-crypt/gpgme
+   app-crypt/gpgme:=
dev-libs/libgpg-error
)
grub? ( sys-boot/grub:2= )

diff --git a/dev-util/ostree/ostree-2022.1.ebuild 
b/dev-util/ostree/ostree-2021.4-r2.ebuild
similarity index 99%
rename from dev-util/ostree/ostree-2022.1.ebuild
rename to dev-util/ostree/ostree-2021.4-r2.ebuild
index 6993c19e5db7..68a663e35584 100644
--- a/dev-util/ostree/ostree-2022.1.ebuild
+++ b/dev-util/ostree/ostree-2021.4-r2.ebuild
@@ -31,7 +31,7 @@ COMMON_DEPEND="
curl? ( net-misc/curl )
dracut? ( sys-kernel/dracut )
gpg? (
-   app-crypt/gpgme
+   app-crypt/gpgme:=
dev-libs/libgpg-error
)
grub? ( sys-boot/grub:2= )

diff --git a/dev-util/ostree/ostree-2021.4-r1.ebuild 
b/dev-util/ostree/ostree-2021.5-r1.ebuild
similarity index 97%
rename from dev-util/ostree/ostree-2021.4-r1.ebuild
rename to dev-util/ostree/ostree-2021.5-r1.ebuild
index d8ab1b23e9b9..68a663e35584 100644
--- a/dev-util/ostree/ostree-2021.4-r1.ebuild
+++ b/dev-util/ostree/ostree-2021.5-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -31,7 +31,7 @@ COMMON_DEPEND="
curl? ( net-misc/curl )
dracut? ( sys-kernel/dracut )
gpg? (
-   app-crypt/gpgme
+   app-crypt/gpgme:=
dev-libs/libgpg-error
)
grub? ( sys-boot/grub:2= )

diff --git a/dev-util/ostree/ostree-2021.5.ebuild 
b/dev-util/ostree/ostree-2022.1-r1.ebuild
similarity index 97%
rename from dev-util/ostree/ostree-2021.5.ebuild
rename to dev-util/ostree/ostree-2022.1-r1.ebuild
index d8ab1b23e9b9..68a663e35584 100644
--- a/dev-util/ostree/ostree-2021.5.ebuild
+++ b/dev-util/ostree/ostree-2022.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -31,7 +31,7 @@ COMMON_DEPEND="
curl? ( net-misc/curl )
dracut? ( sys-kernel/dracut )
gpg? (
-   app-crypt/gpgme
+   app-crypt/gpgme:=
dev-libs/libgpg-error
)
grub? ( sys-boot/grub:2= )



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

2022-02-16 Thread David Seifert
commit: f54153b74030901323cddc5585aa65443985e321
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 16 22:11:08 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 16 22:11:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f54153b7

app-backup/dar: remove explicit gpgme slot

Signed-off-by: David Seifert  gentoo.org>

 app-backup/dar/dar-2.7.2.ebuild | 4 ++--
 app-backup/dar/dar-2.7.3.ebuild | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-backup/dar/dar-2.7.2.ebuild b/app-backup/dar/dar-2.7.2.ebuild
index ccbb6731f19a..86e173b25733 100644
--- a/app-backup/dar/dar-2.7.2.ebuild
+++ b/app-backup/dar/dar-2.7.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -31,7 +31,7 @@ RDEPEND="
dev-libs/libgcrypt:0=
dev-libs/libgpg-error
)
-   gpg? ( app-crypt/gpgme:1= )
+   gpg? ( app-crypt/gpgme:= )
lz4? ( app-arch/lz4:= )
lzo? ( dev-libs/lzo:2 )
nls? ( virtual/libintl )

diff --git a/app-backup/dar/dar-2.7.3.ebuild b/app-backup/dar/dar-2.7.3.ebuild
index 420983ec8132..86e173b25733 100644
--- a/app-backup/dar/dar-2.7.3.ebuild
+++ b/app-backup/dar/dar-2.7.3.ebuild
@@ -31,7 +31,7 @@ RDEPEND="
dev-libs/libgcrypt:0=
dev-libs/libgpg-error
)
-   gpg? ( app-crypt/gpgme:1= )
+   gpg? ( app-crypt/gpgme:= )
lz4? ( app-arch/lz4:= )
lzo? ( dev-libs/lzo:2 )
nls? ( virtual/libintl )



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

2022-02-16 Thread David Seifert
commit: 8a8c84486a5def0d8422378de46e4d6ddb4adc63
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 16 22:11:09 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 16 22:11:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a8c8448

dev-util/geany-plugins: remove explicit gpgme slot

Signed-off-by: David Seifert  gentoo.org>

 dev-util/geany-plugins/geany-plugins-1.37-r101.ebuild | 4 ++--
 dev-util/geany-plugins/geany-plugins-1.38.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-util/geany-plugins/geany-plugins-1.37-r101.ebuild 
b/dev-util/geany-plugins/geany-plugins-1.37-r101.ebuild
index 6d06c1275d7d..607708251221 100644
--- a/dev-util/geany-plugins/geany-plugins-1.37-r101.ebuild
+++ b/dev-util/geany-plugins/geany-plugins-1.37-r101.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -28,7 +28,7 @@ DEPEND="
)
enchant? ( app-text/enchant:= )
git? ( dev-libs/libgit2:= )
-   gpg? ( app-crypt/gpgme:1= )
+   gpg? ( app-crypt/gpgme:= )
gtkspell? ( app-text/gtkspell:3= )
lua? ( ${LUA_DEPS} )
markdown? (

diff --git a/dev-util/geany-plugins/geany-plugins-1.38.ebuild 
b/dev-util/geany-plugins/geany-plugins-1.38.ebuild
index bd644947d156..e8065a8877f3 100644
--- a/dev-util/geany-plugins/geany-plugins-1.38.ebuild
+++ b/dev-util/geany-plugins/geany-plugins-1.38.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -26,7 +26,7 @@ DEPEND="
debugger? ( x11-libs/vte:2.91 )
enchant? ( app-text/enchant:= )
git? ( dev-libs/libgit2:= )
-   gpg? ( app-crypt/gpgme:1= )
+   gpg? ( app-crypt/gpgme:= )
gtkspell? ( app-text/gtkspell:3= )
lua? ( ${LUA_DEPS} )
markdown? (



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

2022-02-16 Thread Arthur Zamarin
commit: f3fbd8eb6da8885e22872971dcae4ca8aa90f58b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 22:10:38 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 22:10:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3fbd8eb

dev-java/cpptasks: Stabilize 1.0_beta5-r1 arm64, #833474

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

 dev-java/cpptasks/cpptasks-1.0_beta5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/cpptasks/cpptasks-1.0_beta5-r1.ebuild 
b/dev-java/cpptasks/cpptasks-1.0_beta5-r1.ebuild
index 14d5c3683a14..38a0c3f54a50 100644
--- a/dev-java/cpptasks/cpptasks-1.0_beta5-r1.ebuild
+++ b/dev-java/cpptasks/cpptasks-1.0_beta5-r1.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${P/_beta/b}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 x86"
 
 CP_DEPEND="
dev-java/ant-core:0



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

2022-02-16 Thread Arthur Zamarin
commit: 69b2828b5a6a81761fe33e46b2efaebb1ea035d1
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 22:06:12 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 22:06:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69b2828b

media-libs/libwebp: Stabilize 1.2.2 ppc64, #833489

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

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

diff --git a/media-libs/libwebp/libwebp-1.2.2.ebuild 
b/media-libs/libwebp/libwebp-1.2.2.ebuild
index 8f6e25907cf6..8e4d2d889bc4 100644
--- a/media-libs/libwebp/libwebp-1.2.2.ebuild
+++ b/media-libs/libwebp/libwebp-1.2.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://storage.googleapis.com/downloads.webmproject.org/releases/webp/
 LICENSE="BSD"
 SLOT="0/7" # subslot = libwebp soname version
 [[ "${PV}" = *_rc* ]] || \
-KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="cpu_flags_arm_neon cpu_flags_x86_sse2 cpu_flags_x86_sse4_1 gif +jpeg 
opengl +png static-libs swap-16bit-csp tiff"
 
 # TODO: dev-lang/swig bindings in swig/ subdirectory



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

2022-02-16 Thread Arthur Zamarin
commit: f43e670e0516452fbb01c3aa47510fc174019af0
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 22:06:11 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 22:06:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f43e670e

dev-java/slf4j-simple: Stabilize 1.7.32 arm64, #833459

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

 dev-java/slf4j-simple/slf4j-simple-1.7.32.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/slf4j-simple/slf4j-simple-1.7.32.ebuild 
b/dev-java/slf4j-simple/slf4j-simple-1.7.32.ebuild
index 74c44482dc3d..a98ef1a0d287 100644
--- a/dev-java/slf4j-simple/slf4j-simple-1.7.32.ebuild
+++ b/dev-java/slf4j-simple/slf4j-simple-1.7.32.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/qos-ch/slf4j/archive/refs/tags/v_${PV}.tar.gz -> slf
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 x86"
 
 # Common dependencies
 # POM: pom.xml



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

2022-02-16 Thread Arthur Zamarin
commit: 8d051cc1953a5c2347ea55ababe003432b5f3264
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 22:06:11 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 22:06:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d051cc1

dev-java/slf4j-nop: Stabilize 1.7.32 arm64, #833459

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

 dev-java/slf4j-nop/slf4j-nop-1.7.32.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/slf4j-nop/slf4j-nop-1.7.32.ebuild 
b/dev-java/slf4j-nop/slf4j-nop-1.7.32.ebuild
index ab59592cb354..3860b2f545e4 100644
--- a/dev-java/slf4j-nop/slf4j-nop-1.7.32.ebuild
+++ b/dev-java/slf4j-nop/slf4j-nop-1.7.32.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/qos-ch/slf4j/archive/refs/tags/v_${PV}.tar.gz -> slf
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ppc64 x86"
+KEYWORDS="amd64 arm64 ppc64 x86"
 
 # Common dependencies
 # POM: pom.xml



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

2022-02-16 Thread Arthur Zamarin
commit: dc3fddb2700a03da6eaebd5f6fa7d6a896ec7193
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 22:06:10 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 22:06:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc3fddb2

dev-java/slf4j-api: Stabilize 1.7.32 arm64, #833459

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

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

diff --git a/dev-java/slf4j-api/slf4j-api-1.7.32.ebuild 
b/dev-java/slf4j-api/slf4j-api-1.7.32.ebuild
index d17837de356a..bf1ff2d20242 100644
--- a/dev-java/slf4j-api/slf4j-api-1.7.32.ebuild
+++ b/dev-java/slf4j-api/slf4j-api-1.7.32.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/qos-ch/slf4j/archive/refs/tags/v_${PV}.tar.gz -> slf
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 x86"
 
 DEPEND="
>=virtual/jdk-1.8:*



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

2022-02-16 Thread Arthur Zamarin
commit: 9a5f3bdbd9d0fa2382eedc887829e88ae0a79b31
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 22:01:27 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 22:01:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a5f3bdb

dev-java/cpptasks: Stabilize 1.0_beta5-r1 ppc64, #833474

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

 dev-java/cpptasks/cpptasks-1.0_beta5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/cpptasks/cpptasks-1.0_beta5-r1.ebuild 
b/dev-java/cpptasks/cpptasks-1.0_beta5-r1.ebuild
index a5b409f82ea7..14d5c3683a14 100644
--- a/dev-java/cpptasks/cpptasks-1.0_beta5-r1.ebuild
+++ b/dev-java/cpptasks/cpptasks-1.0_beta5-r1.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${P/_beta/b}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
 
 CP_DEPEND="
dev-java/ant-core:0



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

2022-02-16 Thread Arthur Zamarin
commit: a2044a5f730ed3caa7aa9ece59b622c51ad444d9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 21:59:15 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 21:59:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2044a5f

dev-java/slf4j-api: Stabilize 1.7.32 ppc64, #833459

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

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

diff --git a/dev-java/slf4j-api/slf4j-api-1.7.32.ebuild 
b/dev-java/slf4j-api/slf4j-api-1.7.32.ebuild
index a68c0fd917fb..d17837de356a 100644
--- a/dev-java/slf4j-api/slf4j-api-1.7.32.ebuild
+++ b/dev-java/slf4j-api/slf4j-api-1.7.32.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/qos-ch/slf4j/archive/refs/tags/v_${PV}.tar.gz -> slf
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
 
 DEPEND="
>=virtual/jdk-1.8:*



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

2022-02-16 Thread Arthur Zamarin
commit: 3998073e446150d2edf816f1c1cf14ea8c31d7d5
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 21:59:15 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 21:59:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3998073e

dev-java/slf4j-simple: Stabilize 1.7.32 ppc64, #833459

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

 dev-java/slf4j-simple/slf4j-simple-1.7.32.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/slf4j-simple/slf4j-simple-1.7.32.ebuild 
b/dev-java/slf4j-simple/slf4j-simple-1.7.32.ebuild
index a49d920b04b1..74c44482dc3d 100644
--- a/dev-java/slf4j-simple/slf4j-simple-1.7.32.ebuild
+++ b/dev-java/slf4j-simple/slf4j-simple-1.7.32.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/qos-ch/slf4j/archive/refs/tags/v_${PV}.tar.gz -> slf
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
 
 # Common dependencies
 # POM: pom.xml



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

2022-02-16 Thread Arthur Zamarin
commit: 54a36e634354cb9289d5916ba00f732dc850733f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 21:59:15 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 21:59:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54a36e63

dev-java/slf4j-nop: Stabilize 1.7.32 ppc64, #833459

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

 dev-java/slf4j-nop/slf4j-nop-1.7.32.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/slf4j-nop/slf4j-nop-1.7.32.ebuild 
b/dev-java/slf4j-nop/slf4j-nop-1.7.32.ebuild
index cd4b09fdbb11..ab59592cb354 100644
--- a/dev-java/slf4j-nop/slf4j-nop-1.7.32.ebuild
+++ b/dev-java/slf4j-nop/slf4j-nop-1.7.32.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/qos-ch/slf4j/archive/refs/tags/v_${PV}.tar.gz -> slf
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm64 ppc64 x86"
 
 # Common dependencies
 # POM: pom.xml



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

2022-02-16 Thread Arthur Zamarin
commit: 398c07f31bd61fc05ea3bc7f0b35e9d2e06d0b70
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 21:57:11 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 21:57:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=398c07f3

dev-java/xmlunit: Stabilize 1.6-r1 ppc64, #833473

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

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

diff --git a/dev-java/xmlunit/xmlunit-1.6-r1.ebuild 
b/dev-java/xmlunit/xmlunit-1.6-r1.ebuild
index b68c9b7ba452..9c340bc65330 100644
--- a/dev-java/xmlunit/xmlunit-1.6-r1.ebuild
+++ b/dev-java/xmlunit/xmlunit-1.6-r1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="http://xmlunit.sourceforge.net/;
 
 LICENSE="BSD"
 SLOT="1"
-KEYWORDS="amd64 ~ppc64 x86"
+KEYWORDS="amd64 ppc64 x86"
 
 CDEPEND="dev-java/junit:0"
 



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

2022-02-16 Thread Arthur Zamarin
commit: 737d804778b5b23f69b2182bd22492020bc3135b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 21:56:12 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 21:56:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=737d8047

dev-java/jansi: Stabilize 2.4.0-r1 arm64, #833458

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

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

diff --git a/dev-java/jansi/jansi-2.4.0-r1.ebuild 
b/dev-java/jansi/jansi-2.4.0-r1.ebuild
index 017f8fbf2485..7974adb4db91 100644
--- a/dev-java/jansi/jansi-2.4.0-r1.ebuild
+++ b/dev-java/jansi/jansi-2.4.0-r1.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/fusesource/${PN}/archive/refs/tags/${P}.tar.gz;
 
 LICENSE="Apache-2.0"
 SLOT="2"
-KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 x86"
 
 # Compile dependencies
 # POM: pom.xml



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

2022-02-16 Thread David Seifert
commit: 0472477ac8e6c2d6e65784c3cab9169e33ebc1af
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 16 21:53:20 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 16 21:53:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0472477a

dev-libs/libjcat: add subslot op on app-crypt/gpgme

Signed-off-by: David Seifert  gentoo.org>

 dev-libs/libjcat/{libjcat-0.1.8.ebuild => libjcat-0.1.8-r1.ebuild} | 4 ++--
 dev-libs/libjcat/{libjcat-0.1.9.ebuild => libjcat-0.1.9-r1.ebuild} | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-libs/libjcat/libjcat-0.1.8.ebuild 
b/dev-libs/libjcat/libjcat-0.1.8-r1.ebuild
similarity index 96%
rename from dev-libs/libjcat/libjcat-0.1.8.ebuild
rename to dev-libs/libjcat/libjcat-0.1.8-r1.ebuild
index 1740585297c8..24bfd4adac21 100644
--- a/dev-libs/libjcat/libjcat-0.1.8.ebuild
+++ b/dev-libs/libjcat/libjcat-0.1.8-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -20,7 +20,7 @@ IUSE="+gpg gtk-doc +introspection +man +pkcs7 test vala"
 RDEPEND="dev-libs/glib:2
dev-libs/json-glib:=
gpg? (
-   app-crypt/gpgme
+   app-crypt/gpgme:=
dev-libs/libgpg-error
)
introspection? ( dev-libs/gobject-introspection:= )

diff --git a/dev-libs/libjcat/libjcat-0.1.9.ebuild 
b/dev-libs/libjcat/libjcat-0.1.9-r1.ebuild
similarity index 98%
rename from dev-libs/libjcat/libjcat-0.1.9.ebuild
rename to dev-libs/libjcat/libjcat-0.1.9-r1.ebuild
index fe17a3465a41..530eb115d6af 100644
--- a/dev-libs/libjcat/libjcat-0.1.9.ebuild
+++ b/dev-libs/libjcat/libjcat-0.1.9-r1.ebuild
@@ -20,7 +20,7 @@ IUSE="+gpg gtk-doc +introspection +man +pkcs7 test vala"
 RDEPEND="dev-libs/glib:2
dev-libs/json-glib:=
gpg? (
-   app-crypt/gpgme
+   app-crypt/gpgme:=
dev-libs/libgpg-error
)
introspection? ( dev-libs/gobject-introspection:= )



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

2022-02-16 Thread David Seifert
commit: 3383ff0ab75e5a835c46d1a9aed3b6cf426e7643
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 16 21:53:23 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 16 21:53:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3383ff0a

net-im/mcabber: add subslot op on app-crypt/gpgme

Signed-off-by: David Seifert  gentoo.org>

 net-im/mcabber/{mcabber-1.1.2.ebuild => mcabber-1.1.2-r1.ebuild} | 4 ++--
 net-im/mcabber/mcabber-.ebuild   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-im/mcabber/mcabber-1.1.2.ebuild 
b/net-im/mcabber/mcabber-1.1.2-r1.ebuild
similarity index 96%
rename from net-im/mcabber/mcabber-1.1.2.ebuild
rename to net-im/mcabber/mcabber-1.1.2-r1.ebuild
index 616c5e554f8a..bd5a83f961ef 100644
--- a/net-im/mcabber/mcabber-1.1.2.ebuild
+++ b/net-im/mcabber/mcabber-1.1.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -30,7 +30,7 @@ for i in ${LANGS}; do
IUSE="${IUSE} l10n_${i}"
 done;
 
-RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
+RDEPEND="crypt? ( app-crypt/gpgme:= )
otr? ( >=net-libs/libotr-3.1.0 )
aspell? ( app-text/aspell )
vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )

diff --git a/net-im/mcabber/mcabber-.ebuild 
b/net-im/mcabber/mcabber-.ebuild
index 9e0a12b1fef1..eb94b6002a7b 100644
--- a/net-im/mcabber/mcabber-.ebuild
+++ b/net-im/mcabber/mcabber-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -30,7 +30,7 @@ for i in ${LANGS}; do
IUSE="${IUSE} l10n_${i}"
 done;
 
-RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
+RDEPEND="crypt? ( app-crypt/gpgme:= )
otr? ( >=net-libs/libotr-3.1.0 )
aspell? ( app-text/aspell )
vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )



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

2022-02-16 Thread David Seifert
commit: f84b6969c36f62a27a4fcfe161476f3d0fc54186
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 16 21:53:21 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 16 21:53:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f84b6969

dev-libs/volume_key: add subslot op on app-crypt/gpgme

Signed-off-by: David Seifert  gentoo.org>

 .../{volume_key-0.3.12-r3.ebuild => volume_key-0.3.12-r4.ebuild}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/volume_key/volume_key-0.3.12-r3.ebuild 
b/dev-libs/volume_key/volume_key-0.3.12-r4.ebuild
similarity index 95%
rename from dev-libs/volume_key/volume_key-0.3.12-r3.ebuild
rename to dev-libs/volume_key/volume_key-0.3.12-r4.ebuild
index b2489cc3917b..cc8940edb1c6 100644
--- a/dev-libs/volume_key/volume_key-0.3.12-r3.ebuild
+++ b/dev-libs/volume_key/volume_key-0.3.12-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -21,7 +21,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 RDEPEND="
${PYTHON_DEPS}
-   app-crypt/gpgme
+   app-crypt/gpgme:=
dev-libs/glib:2
dev-libs/nspr
dev-libs/nss



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

2022-02-16 Thread David Seifert
commit: 6b0203e61b74a08f6db7febb518a4d82a2f7d8bc
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 16 21:53:22 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 16 21:53:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b0203e6

net-firewall/fwknop: add subslot op on app-crypt/gpgme

Signed-off-by: David Seifert  gentoo.org>

 .../fwknop/{fwknop-2.6.10-r2.ebuild => fwknop-2.6.10-r3.ebuild}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-firewall/fwknop/fwknop-2.6.10-r2.ebuild 
b/net-firewall/fwknop/fwknop-2.6.10-r3.ebuild
similarity index 98%
rename from net-firewall/fwknop/fwknop-2.6.10-r2.ebuild
rename to net-firewall/fwknop/fwknop-2.6.10-r3.ebuild
index f8c21045b3ae..3b582da13606 100644
--- a/net-firewall/fwknop/fwknop-2.6.10-r2.ebuild
+++ b/net-firewall/fwknop/fwknop-2.6.10-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -19,7 +19,7 @@ DEPEND="
firewalld? ( net-firewall/firewalld )
gdbm? ( sys-libs/gdbm )
gpg? (
-   app-crypt/gpgme
+   app-crypt/gpgme:=
dev-libs/libassuan
dev-libs/libgpg-error
)



[gentoo-commits] repo/gentoo:master commit in: app-cdr/isoimagewriter/

2022-02-16 Thread David Seifert
commit: 83bc020624ade772a5ac1ed3bfbdcbbdb4e24c2c
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 16 21:53:19 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 16 21:53:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83bc0206

app-cdr/isoimagewriter: add subslot op on app-crypt/gpgme

Signed-off-by: David Seifert  gentoo.org>

 .../{isoimagewriter-0.8.ebuild => isoimagewriter-0.8-r1.ebuild}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-cdr/isoimagewriter/isoimagewriter-0.8.ebuild 
b/app-cdr/isoimagewriter/isoimagewriter-0.8-r1.ebuild
similarity index 89%
rename from app-cdr/isoimagewriter/isoimagewriter-0.8.ebuild
rename to app-cdr/isoimagewriter/isoimagewriter-0.8-r1.ebuild
index 54df9ef3f20f..21ffe0f329ab 100644
--- a/app-cdr/isoimagewriter/isoimagewriter-0.8.ebuild
+++ b/app-cdr/isoimagewriter/isoimagewriter-0.8-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -20,7 +20,7 @@ SLOT="5"
 IUSE=""
 
 DEPEND="
-   app-crypt/gpgme[cxx,qt5]
+   app-crypt/gpgme:=[cxx(+),qt5]
>=dev-qt/qtgui-${QTMIN}:5
>=dev-qt/qtwidgets-${QTMIN}:5
>=kde-frameworks/kauth-${KFMIN}:5



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

2022-02-16 Thread David Seifert
commit: b2d80ca7aa69e764bae55d8eb56cfa8db94c3cd3
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 16 21:53:17 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 16 21:53:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2d80ca7

dev-libs/gmime: remove explicit gpgme slot

Signed-off-by: David Seifert  gentoo.org>

 dev-libs/gmime/gmime-2.6.23-r1.ebuild | 4 ++--
 dev-libs/gmime/gmime-3.2.7.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-libs/gmime/gmime-2.6.23-r1.ebuild 
b/dev-libs/gmime/gmime-2.6.23-r1.ebuild
index 6c2ade626ef3..2a6e0ed982f4 100644
--- a/dev-libs/gmime/gmime-2.6.23-r1.ebuild
+++ b/dev-libs/gmime/gmime-2.6.23-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -18,7 +18,7 @@ RESTRICT="!test? ( test )"
 RDEPEND="
>=dev-libs/glib-2.32.0:2
sys-libs/zlib
-   smime? ( >=app-crypt/gpgme-1.1.6:1= )
+   smime? ( >=app-crypt/gpgme-1.1.6:= )
vala? (
$(vala_depend)
>=dev-libs/gobject-introspection-1.30.0:= )

diff --git a/dev-libs/gmime/gmime-3.2.7.ebuild 
b/dev-libs/gmime/gmime-3.2.7.ebuild
index 6806355fa243..0fcd6cccaaf5 100644
--- a/dev-libs/gmime/gmime-3.2.7.ebuild
+++ b/dev-libs/gmime/gmime-3.2.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -18,7 +18,7 @@ RESTRICT="!test? ( test )"
 RDEPEND="
>=dev-libs/glib-2.32.0:2
sys-libs/zlib
-   crypt? ( >=app-crypt/gpgme-1.8.0:1= )
+   crypt? ( >=app-crypt/gpgme-1.8.0:= )
idn? ( net-dns/libidn2:= )
vala? (
$(vala_depend)



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

2022-02-16 Thread David Seifert
commit: cfac4f4755eefb8407248c41bba2a0fdf838233a
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 16 21:53:18 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 16 21:53:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfac4f47

net-im/ekg2: remove explicit gpgme slot

Signed-off-by: David Seifert  gentoo.org>

 net-im/ekg2/ekg2-0.4_pre20190315-r1.ebuild | 4 ++--
 net-im/ekg2/ekg2-.ebuild   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-im/ekg2/ekg2-0.4_pre20190315-r1.ebuild 
b/net-im/ekg2/ekg2-0.4_pre20190315-r1.ebuild
index f1e09d360c6b..3dfe36b6ea6c 100644
--- a/net-im/ekg2/ekg2-0.4_pre20190315-r1.ebuild
+++ b/net-im/ekg2/ekg2-0.4_pre20190315-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -19,7 +19,7 @@ IUSE="gadu gpm gpg gtk minimal ncurses nls nntp openssl
 
 RDEPEND="dev-libs/glib:2
gadu? ( 

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

2022-02-16 Thread Arthur Zamarin
commit: dce88002668c4e60a6dabb2ca4b2c9f294a18a88
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 21:52:27 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 21:52:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dce88002

dev-java/mchange-commons: Stabilize 0.2.10-r1 ppc64, #833472

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

 dev-java/mchange-commons/mchange-commons-0.2.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/mchange-commons/mchange-commons-0.2.10-r1.ebuild 
b/dev-java/mchange-commons/mchange-commons-0.2.10-r1.ebuild
index 2a8542c089e9..6df76356d302 100644
--- a/dev-java/mchange-commons/mchange-commons-0.2.10-r1.ebuild
+++ b/dev-java/mchange-commons/mchange-commons-0.2.10-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/swaldman/${MY_PN}/archive/refs/tags/${MY_P}.tar.gz -
 
 LICENSE="CDDL"
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86"
+KEYWORDS="amd64 ppc64 x86"
 
 IUSE="doc source"
 



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

2022-02-16 Thread Arthur Zamarin
commit: 225735d18048a30deb2770a802e53c1830131c48
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 21:49:49 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 21:49:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=225735d1

dev-java/jsch: Stabilize 0.1.55 arm64, #833457

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

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

diff --git a/dev-java/jsch/jsch-0.1.55.ebuild b/dev-java/jsch/jsch-0.1.55.ebuild
index c3931b13aaa7..33cc6811dfc7 100644
--- a/dev-java/jsch/jsch-0.1.55.ebuild
+++ b/dev-java/jsch/jsch-0.1.55.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 x86"
 
 # Common dependencies
 # POM: ${P}.pom



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

2022-02-16 Thread Arthur Zamarin
commit: 432a939dc664c859d1dd2a54641590f799ebd203
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 21:46:56 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 21:46:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=432a939d

dev-java/jansi: Stabilize 2.4.0-r1 ppc64, #833458

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

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

diff --git a/dev-java/jansi/jansi-2.4.0-r1.ebuild 
b/dev-java/jansi/jansi-2.4.0-r1.ebuild
index 7fb3f9b40aac..017f8fbf2485 100644
--- a/dev-java/jansi/jansi-2.4.0-r1.ebuild
+++ b/dev-java/jansi/jansi-2.4.0-r1.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/fusesource/${PN}/archive/refs/tags/${P}.tar.gz;
 
 LICENSE="Apache-2.0"
 SLOT="2"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
 
 # Compile dependencies
 # POM: pom.xml



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

2022-02-16 Thread Arthur Zamarin
commit: c3d827d9f117cb5b5368c18028ed5bafeaba80b4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 21:44:58 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 21:44:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3d827d9

net-misc/rdate: Stabilize 1.10.2 arm64, #833447

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

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

diff --git a/net-misc/rdate/rdate-1.10.2.ebuild 
b/net-misc/rdate/rdate-1.10.2.ebuild
index 7df5279abdf6..f64d1f48a116 100644
--- a/net-misc/rdate/rdate-1.10.2.ebuild
+++ b/net-misc/rdate/rdate-1.10.2.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_P}-${PV}"
 
 LICENSE="BSD-4"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86"
 
 DEPEND="dev-libs/libbsd"
 RDEPEND="${DEPEND}"



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

2022-02-16 Thread Arthur Zamarin
commit: 10ad034f19bafbabb419bf7aa400039ea37e94aa
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 21:44:14 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 21:44:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10ad034f

dev-java/jsch: Stabilize 0.1.55 ppc64, #833457

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

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

diff --git a/dev-java/jsch/jsch-0.1.55.ebuild b/dev-java/jsch/jsch-0.1.55.ebuild
index 1e6d54e32b62..c3931b13aaa7 100644
--- a/dev-java/jsch/jsch-0.1.55.ebuild
+++ b/dev-java/jsch/jsch-0.1.55.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
 
 # Common dependencies
 # POM: ${P}.pom



[gentoo-commits] repo/gentoo:master commit in: net-ftp/gftp/

2022-02-16 Thread Arthur Zamarin
commit: 6a1845b8d1590227ebec050e47ee7ba4556c4144
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 21:44:12 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 21:44:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a1845b8

net-ftp/gftp: Keyword 2.0.19-r3 arm64, #833403

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

 net-ftp/gftp/gftp-2.0.19-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-ftp/gftp/gftp-2.0.19-r3.ebuild 
b/net-ftp/gftp/gftp-2.0.19-r3.ebuild
index 15a2379d9b76..8d4fab840477 100644
--- a/net-ftp/gftp/gftp-2.0.19-r3.ebuild
+++ b/net-ftp/gftp/gftp-2.0.19-r3.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://www.gftp.org;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ppc ppc64 ~riscv sparc x86"
+KEYWORDS="~alpha amd64 ~arm64 ppc ppc64 ~riscv sparc x86"
 IUSE="gtk ssl"
 
 RDEPEND="



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

2022-02-16 Thread Arthur Zamarin
commit: d08bbf5b5166e06bab38d98e199298afd88b6de3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Feb 16 21:37:34 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Feb 16 21:37:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d08bbf5b

net-misc/rdate: Stabilize 1.10.2 ppc64, #833447

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

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

diff --git a/net-misc/rdate/rdate-1.10.2.ebuild 
b/net-misc/rdate/rdate-1.10.2.ebuild
index 0206123e97c5..7df5279abdf6 100644
--- a/net-misc/rdate/rdate-1.10.2.ebuild
+++ b/net-misc/rdate/rdate-1.10.2.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_P}-${PV}"
 
 LICENSE="BSD-4"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86"
 
 DEPEND="dev-libs/libbsd"
 RDEPEND="${DEPEND}"



  1   2   3   4   >