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

2021-12-21 Thread Joonas Niilola
commit: 26b3cf6e8249327f730696c3f7765a6b7fa0ef79
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Dec 22 07:09:58 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Dec 22 07:59:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26b3cf6e

app-containers/lxc: remove unused patch

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/23464
Signed-off-by: Joonas Niilola  gentoo.org>

 .../lxc/files/lxc-3.0.0-bash-completion.patch  | 27 --
 1 file changed, 27 deletions(-)

diff --git a/app-containers/lxc/files/lxc-3.0.0-bash-completion.patch 
b/app-containers/lxc/files/lxc-3.0.0-bash-completion.patch
deleted file mode 100644
index 2a08eedb1c2d..
--- a/app-containers/lxc/files/lxc-3.0.0-bash-completion.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-diff --git a/config/bash/lxc.in b/config/bash/lxc.in
-index 43056882..0a22d4ad 100644
 a/config/bash/lxc.in
-+++ b/config/bash/lxc.in
-@@ -1,4 +1,3 @@
--_have lxc-start && {
- _lxc_names() {
- COMPREPLY=( $( compgen -W "$( lxc-ls )" "$cur" ) )
- }
-@@ -108,4 +107,3 @@ _have lxc-start && {
- complete -o default -F _lxc_generic_t lxc-create
- 
- complete -o default -F _lxc_generic_o lxc-copy
--}
-diff --git a/configure.ac b/configure.ac
-index 50c99836..0569caec 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -395,7 +395,7 @@ AM_CONDITIONAL([ENABLE_BASH], [test "x$enable_bash" = 
"xyes"])
- AM_COND_IF([ENABLE_BASH],
-   [AC_MSG_CHECKING([bash completion directory])
-   PKG_CHECK_VAR(bashcompdir, [bash-completion], [completionsdir], ,
--  bashcompdir="${sysconfdir}/bash_completion.d")
-+  bashcompdir="$datadir/bash-completion/completions")
-   AC_MSG_RESULT([$bashcompdir])
-   AC_SUBST(bashcompdir)
-   ])



[gentoo-commits] repo/gentoo:master commit in: app-admin/syslog-ng/files/

2021-12-21 Thread John Helmert III
commit: 3daa1de4626fc42656ae9a366581d191007185b6
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Dec 22 07:08:44 2021 +
Commit: John Helmert III  gentoo  org>
CommitDate: Wed Dec 22 07:54:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3daa1de4

app-admin/syslog-ng: remove unused patch

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/23465
Signed-off-by: John Helmert III  gentoo.org>

 .../files/syslog-ng-3.30.1-esmtp-pkgconfig.patch   | 50 --
 1 file changed, 50 deletions(-)

diff --git a/app-admin/syslog-ng/files/syslog-ng-3.30.1-esmtp-pkgconfig.patch 
b/app-admin/syslog-ng/files/syslog-ng-3.30.1-esmtp-pkgconfig.patch
deleted file mode 100644
index a9c761af98c2..
--- a/app-admin/syslog-ng/files/syslog-ng-3.30.1-esmtp-pkgconfig.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-https://bugs.gentoo.org/782643
-https://github.com/syslog-ng/syslog-ng/pull/3669/commits/b8284f8ecac588f6a321c779cce06cbe182611a5
-
-From b8284f8ecac588f6a321c779cce06cbe182611a5 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?L=C3=A1szl=C3=B3=20V=C3=A1rady?=
- 
-Date: Sun, 9 May 2021 03:43:46 +0200
-Subject: [PATCH] configure: add pkg-config detection for libesmtp
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Signed-off-by: László Várady 

- configure.ac | 22 +-
- 1 file changed, 13 insertions(+), 9 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 86b67ba9a2..bd6efa8711 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -1278,15 +1278,19 @@ if test "x$enable_smtp" != "xno" && test 
"x$with_libesmtp" != "xno"; then
-   CPPFLAGS="$CPPFLAGS_SAVE"
-   LDFLAGS="$LDFLAGS_SAVE"
-   else
--  AC_MSG_CHECKING(for libESMTP)
--  if libesmtp-config --version >/dev/null 2>&1; then
--  AC_MSG_RESULT(yes)
--  LIBESMTP_CFLAGS="`libesmtp-config --cflags`"
--  LIBESMTP_LIBS="`libesmtp-config --libs`"
--  else
--  AC_MSG_RESULT(no)
--  libesmtp=no
--  fi
-+  PKG_CHECK_MODULES(LIBESMTP, libesmtp-1.0, libesmtp="yes", 
libesmtp="no")
-+  if test "x$libesmtp" = "xno"; then
-+  AC_MSG_CHECKING(for libESMTP with libesmtp-config)
-+  if libesmtp-config --version >/dev/null 2>&1; then
-+  AC_MSG_RESULT(yes)
-+  LIBESMTP_CFLAGS="`libesmtp-config --cflags`"
-+  LIBESMTP_LIBS="`libesmtp-config --libs`"
-+  libesmtp="yes"
-+  else
-+  AC_MSG_RESULT(no)
-+  libesmtp=no
-+  fi
-+fi
-   fi
-   if test "x$enable_smtp" = "xyes" && test "x$libesmtp" = "xno"; then
-   AC_MSG_ERROR(libESMTP not found)



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

2021-12-21 Thread Michał Górny
commit: 872448cd79abd2c89a6f942d918056d1a3d73b51
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Dec 22 07:28:55 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Dec 22 07:43:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=872448cd

dev-python/identify: Remove old

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

 dev-python/identify/Manifest  |  1 -
 dev-python/identify/identify-2.3.7.ebuild | 19 ---
 2 files changed, 20 deletions(-)

diff --git a/dev-python/identify/Manifest b/dev-python/identify/Manifest
index 2b80ccb03a9b..b70620a2532e 100644
--- a/dev-python/identify/Manifest
+++ b/dev-python/identify/Manifest
@@ -1,2 +1 @@
-DIST identify-2.3.7.tar.gz 101296 BLAKE2B 
0facbd03d84c453e63133741fd688e195785a2ac79ee728bbe3a3e42e4d53a7d17cc935f7fdade37ac0329a52db4bd514be917c82a45bbe0c88f1999d0a248b6
 SHA512 
00ba94ac2b5d762b500a51a9de6ac6ee863235b5d928776d033317fe7b250360465b7fa011ce04a4f2c63d1e27b1b1b687f5e4e8b3c426ede71ebae91c172863
 DIST identify-2.4.0.tar.gz 101312 BLAKE2B 
1ba4fcf235518427fba8a59eb30ceb0c20ed23f5a3c4f56d6039ab530aaaba6b83ee395626a7d086f193f57f00a8d34a659883d897a21dc0fae5018cb0a4e87a
 SHA512 
f0806d3785ef5db9cb1b5354c146fc0d33b4a4f04b3ff899945e9e93273a0bf8e4c8ff07ace22b5d71721c953148c007630dc400b82849321e8399ecdfffbc85

diff --git a/dev-python/identify/identify-2.3.7.ebuild 
b/dev-python/identify/identify-2.3.7.ebuild
deleted file mode 100644
index ac2115b5caa6..
--- a/dev-python/identify/identify-2.3.7.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="File identification library for Python"
-HOMEPAGE="https://github.com/pre-commit/identify;
-SRC_URI="https://github.com/pre-commit/${PN}/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~riscv x86"
-
-RDEPEND="dev-python/editdistance-s[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest



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

2021-12-21 Thread Michał Górny
commit: c43c18f584c704dac23c8c412ce1d51ee0edc6e0
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Dec 22 07:43:34 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Dec 22 07:43:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c43c18f5

dev-python/sphinx_rtd_theme: Remove old

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

 dev-python/sphinx_rtd_theme/Manifest   |  1 -
 .../sphinx_rtd_theme/sphinx_rtd_theme-0.5.2.ebuild | 32 --
 2 files changed, 33 deletions(-)

diff --git a/dev-python/sphinx_rtd_theme/Manifest 
b/dev-python/sphinx_rtd_theme/Manifest
index 37d58481f12a..36c2ba7770a6 100644
--- a/dev-python/sphinx_rtd_theme/Manifest
+++ b/dev-python/sphinx_rtd_theme/Manifest
@@ -1,2 +1 @@
-DIST sphinx_rtd_theme-0.5.2.tar.gz 7606638 BLAKE2B 
c104121b36c89f4d2b7c2fc12433ffd1a7cba9b9d532358dafd53061b2ca9ead4bb93b7b596394c244a9da51c0b9299f2fe0ec8d4ca102015b6c7dfb92081813
 SHA512 
dd46bfeb05b433970d8130c06cad6dfa9dbc4e9db2d9a8190b80232d75b4d0a86590c17d64b9b1dcd2cb1d042033f4d2c2ce2e5cac0239c6b86899628b94b274
 DIST sphinx_rtd_theme-1.0.0.tar.gz 2780623 BLAKE2B 
02e72ddade0632423d21e512ab86fbdcc9f18eddbef328ba766f1b06a49c838808af4ee000e57c8f0f40112569b35c1b62c9c0c8853c237fd2ddb6de76d48a21
 SHA512 
06025445e1358c994bf0c15a382ec8f8f3f2114dfac19f340585a3660d91a279100c2d16ef665d9eb8d38b0e4ed264e96d3ac6814dd01b9430d2f8a0d8275178

diff --git a/dev-python/sphinx_rtd_theme/sphinx_rtd_theme-0.5.2.ebuild 
b/dev-python/sphinx_rtd_theme/sphinx_rtd_theme-0.5.2.ebuild
deleted file mode 100644
index e63a57663ece..
--- a/dev-python/sphinx_rtd_theme/sphinx_rtd_theme-0.5.2.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="ReadTheDocs.org theme for Sphinx"
-HOMEPAGE="https://github.com/readthedocs/sphinx_rtd_theme;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~x64-macos"
-IUSE=""
-
-PDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]"
-RDEPEND="

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

2021-12-21 Thread Michał Górny
commit: 684397147e2690d911d3f8938e4f20ee95a29a17
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Dec 22 07:42:45 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Dec 22 07:43:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68439714

dev-util/shadowman: Remove old

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

 dev-util/shadowman/Manifest   |  1 -
 dev-util/shadowman/shadowman-2.ebuild | 23 ---
 2 files changed, 24 deletions(-)

diff --git a/dev-util/shadowman/Manifest b/dev-util/shadowman/Manifest
index b5db0d8a3405..5a460ce0b0dd 100644
--- a/dev-util/shadowman/Manifest
+++ b/dev-util/shadowman/Manifest
@@ -1,2 +1 @@
-DIST shadowman-2.tar.gz 3349 BLAKE2B 
2881c0487205c00114967be7600ef5483cc64c7ad5ed5cac60fe8bf2ca17e5b06d5df6e39148d90ff68a51d3e918ca616d0c5eedf11366df90c788a07e4c63b0
 SHA512 
eeb10248c7f76116352bffa671ab7c761b2f79cb943de20dba327b0d7bf1126d15021508c9e9389b9f0c37cf5049ad2c67bad93f6a03340fcfd27e03c4969110
 DIST shadowman-3.tar.gz 3256 BLAKE2B 
b4e1ac2ee8576feac3d33fafa9540ad150a635d8a3f3d186265039fa62612176a67a7bb6e39d86dafc7d96dc40ed34db66a819af01dc8590288181f17725547b
 SHA512 
2061bb03a23bc8981dd137afa52e0a78535032326ce07ce43f2c51cc115673a4a626e9cf431497fac1d9983cef2a4fd4defe1340ed46140adce0fe7ceabe6448

diff --git a/dev-util/shadowman/shadowman-2.ebuild 
b/dev-util/shadowman/shadowman-2.ebuild
deleted file mode 100644
index 42799184709b..
--- a/dev-util/shadowman/shadowman-2.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Unified compiler shadow link directory updater"
-HOMEPAGE="https://github.com/mgorny/shadowman;
-SRC_URI="https://github.com/mgorny/shadowman/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
-IUSE=""
-
-RDEPEND="app-admin/eselect"
-DEPEND="${RDEPEND}"
-
-src_install() {
-   # tool modules are split into their respective packages
-   emake DESTDIR="${D}" prefix="${EPREFIX}"/usr install \
-   INSTALL_MODULES_TOOL=""
-   keepdir /usr/share/shadowman/tools
-}



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

2021-12-21 Thread Stephan Hartmann
commit: f6f813aa5d4e485e90f5275ac22df5740d6d8d7a
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Dec 22 07:10:41 2021 +
Commit: Stephan Hartmann  gentoo  org>
CommitDate: Wed Dec 22 07:34:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6f813aa

dev-util/gn: remove unused patch

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/23468
Signed-off-by: Stephan Hartmann  gentoo.org>

 dev-util/gn/files/gn-gen-r4.patch | 46 ---
 1 file changed, 46 deletions(-)

diff --git a/dev-util/gn/files/gn-gen-r4.patch 
b/dev-util/gn/files/gn-gen-r4.patch
deleted file mode 100644
index 717c908f29dd..
--- a/dev-util/gn/files/gn-gen-r4.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From ad008cd029c995226fef36554e2e3cc657ef1380 Mon Sep 17 00:00:00 2001
-From: Mike Gilbert 
-Date: Sat, 14 Mar 2020 18:02:51 +
-Subject: [PATCH] Remove unwanted cflags/ldflags parameters
-

- build/gen.py | 9 -
- 1 file changed, 9 deletions(-)
-
-diff --git a/build/gen.py b/build/gen.py
-index bcd9f15d..b48e844c 100755
 a/build/gen.py
-+++ b/build/gen.py
-@@ -288,11 +288,6 @@ def WriteGNNinja(path, platform, host, options):
- if options.debug:
-   cflags.extend(['-O0', '-g'])
- else:
--  cflags.append('-DNDEBUG')
--  cflags.append('-O3')
--  if options.no_strip:
--cflags.append('-g')
--  ldflags.append('-O3')
-   # Use -fdata-sections and -ffunction-sections to place each function
-   # or data item into its own section so --gc-sections can eliminate any
-   # unused functions and data items.
-@@ -325,7 +320,6 @@ def WriteGNNinja(path, platform, host, options):
- '-D_FILE_OFFSET_BITS=64',
- '-D__STDC_CONSTANT_MACROS', '-D__STDC_FORMAT_MACROS',
- '-pthread',
--'-pipe',
- '-fno-exceptions',
- '-fno-rtti',
- '-fdiagnostics-color',
-@@ -341,9 +335,6 @@ def WriteGNNinja(path, platform, host, options):
-   if not options.no_static_libstdcpp:
- ldflags.append('-static-libstdc++')
- 
--  # This is needed by libc++.
--  if not platform.is_mingw():
--libs.append('-ldl')
- elif platform.is_darwin():
-   min_mac_version_flag = '-mmacosx-version-min=10.9'
-   cflags.append(min_mac_version_flag)
--- 
-2.24.1
-



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

2021-12-21 Thread Arthur Zamarin
commit: b0e8c020f40bb11174802575fcfedef70f0c9c8a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Dec 22 06:44:13 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Dec 22 06:44:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0e8c020

app-misc/binclock: Keyword 1.5 arm64, #829778

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

 app-misc/binclock/binclock-1.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/binclock/binclock-1.5.ebuild 
b/app-misc/binclock/binclock-1.5.ebuild
index 169393991ea0..733fc66c5a74 100644
--- a/app-misc/binclock/binclock-1.5.ebuild
+++ b/app-misc/binclock/binclock-1.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="http://www.ngolde.de/download/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~mips ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~arm64 ~ia64 ~mips ppc ppc64 sparc x86"
 IUSE=""
 
 RDEPEND=""



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

2021-12-21 Thread Arthur Zamarin
commit: 7e6039d27d987c2993376ee12fc41a3001ed2d19
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Dec 22 06:36:07 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Dec 22 06:36:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e6039d2

dev-python/matplotlib: Stabilize 3.5.1 arm64, #829532

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

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

diff --git a/dev-python/matplotlib/matplotlib-3.5.1.ebuild 
b/dev-python/matplotlib/matplotlib-3.5.1.ebuild
index 292937384a84..ea4d22abb906 100644
--- a/dev-python/matplotlib/matplotlib-3.5.1.ebuild
+++ b/dev-python/matplotlib/matplotlib-3.5.1.ebuild
@@ -22,7 +22,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
 # Fonts: BitstreamVera, OFL-1.1
 LICENSE="BitstreamVera BSD matplotlib MIT OFL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 sparc ~x86"
 IUSE="cairo doc excel examples gtk3 latex qt5 tk webagg wxwidgets"
 
 # internal copy of pycxx highly patched



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

2021-12-21 Thread Arthur Zamarin
commit: 60cd3876874148214022a34b5f0a934ab41762b6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Dec 22 06:36:07 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Dec 22 06:36:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60cd3876

dev-python/setuptools_scm_git_archive: Stabilize 1.1-r4 arm64, #829532

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

 .../setuptools_scm_git_archive/setuptools_scm_git_archive-1.1-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/setuptools_scm_git_archive/setuptools_scm_git_archive-1.1-r4.ebuild
 
b/dev-python/setuptools_scm_git_archive/setuptools_scm_git_archive-1.1-r4.ebuild
index 50db76ddcaf0..909c37537714 100644
--- 
a/dev-python/setuptools_scm_git_archive/setuptools_scm_git_archive-1.1-r4.ebuild
+++ 
b/dev-python/setuptools_scm_git_archive/setuptools_scm_git_archive-1.1-r4.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/Changaco/setuptools_scm_git_archive/archive/${PV}.ta
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 sparc x86"
 IUSE=""
 
 RDEPEND="



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

2021-12-21 Thread Arthur Zamarin
commit: d36b1d4e6790bf9d3febbf16826ba290e646616c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Dec 22 06:35:03 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Dec 22 06:35:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d36b1d4e

dev-python/matplotlib: Stabilize 3.5.1 arm, #829532

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

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

diff --git a/dev-python/matplotlib/matplotlib-3.5.1.ebuild 
b/dev-python/matplotlib/matplotlib-3.5.1.ebuild
index 7c54005f2ad2..292937384a84 100644
--- a/dev-python/matplotlib/matplotlib-3.5.1.ebuild
+++ b/dev-python/matplotlib/matplotlib-3.5.1.ebuild
@@ -22,7 +22,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
 # Fonts: BitstreamVera, OFL-1.1
 LICENSE="BitstreamVera BSD matplotlib MIT OFL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 sparc ~x86"
 IUSE="cairo doc excel examples gtk3 latex qt5 tk webagg wxwidgets"
 
 # internal copy of pycxx highly patched



[gentoo-commits] repo/gentoo:master commit in: app-containers/lxd/, app-containers/lxd/files/

2021-12-21 Thread Joonas Niilola
commit: a05b3092dc61c390e599b33e29d508dd81827a9f
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Dec 22 06:10:25 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Dec 22 06:22:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a05b3092

app-containers/lxd: drop 4.0.7-r2

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

 app-containers/lxd/Manifest|   2 -
 ...appers-don-t-conflict-with-glibc-provided.patch |  58 ---
 app-containers/lxd/lxd-4.0.7-r2.ebuild | 175 -
 3 files changed, 235 deletions(-)

diff --git a/app-containers/lxd/Manifest b/app-containers/lxd/Manifest
index 2295b2e0b2c5..5aa9fa7a435c 100644
--- a/app-containers/lxd/Manifest
+++ b/app-containers/lxd/Manifest
@@ -1,4 +1,2 @@
-DIST lxd-4.0.7.tar.gz 15454709 BLAKE2B 
6278fa058efa15a689a982dcf0bce58bf320ac500bc8bd6cd4227f5f126a03dd85a65363d4d36b3437a0a2fd8e08e8a7332b96f9aba8e8eb2aa508d1129fec13
 SHA512 
dd99db21a4de95d95e6bd53dcbd68f4d9f0ffbd9e60d994340cd0b1e820068e671507a9718d1c56488c79ad49019f86637a4a8b9c945cdd3f70d59c9e2026fb1
-DIST lxd-4.0.7.tar.gz.asc 833 BLAKE2B 
a28e43d1fd0d5851a62121069703637e7ba25cbeb142507e4e162b254eddce2b5a13a100eedb202fbf3d8aa40f6e20b4fd587ef38f6c73a07d2bd9d8d9d00c8f
 SHA512 
561d7cbf94a37e7ed03828ac98a2022dc1a4e11b80cdee3ad925bf4226b78b9e1d1b9c51ed070e60fba881b69e06dc70be2713026285b10de5cca59549ac5f82
 DIST lxd-4.0.8.tar.gz 8898153 BLAKE2B 
c02bea1019079f59fff5fbb2c3d3ebf13e01751fd1c18b9aa44a9306a8f631cb0c0a55f77eb17945e44c040dfdad5c790bb2c2e3ab165356e3900c3d6cccec0e
 SHA512 
9bf5ee91438bc14e916410254979838a110d21d8329c0eaa0a5eecfd378039a3ac10291197d2f680dc12484866f21ef724618e88e6c02038e6d2484d33571dd6
 DIST lxd-4.0.8.tar.gz.asc 833 BLAKE2B 
2073b113f34b2ab052e6e4f406016ac04631ec63269b79dd1e85ca5191aa73ed1f47f0e87f5155b6e5c6659138a182c4c403a66e20925cdb347f49e542e8139b
 SHA512 
9b5f00f9d4a601e718ca91f623dd31e864963b7b8a9e9be6af8da2288b775c4fc8c60b0d6fcefa2a347d733d1e002a3714ac3dbfadf9a1188f9747e9682fe8b9

diff --git 
a/app-containers/lxd/files/lxd-syscall_wrappers-don-t-conflict-with-glibc-provided.patch
 
b/app-containers/lxd/files/lxd-syscall_wrappers-don-t-conflict-with-glibc-provided.patch
deleted file mode 100644
index 0b471688cc0d..
--- 
a/app-containers/lxd/files/lxd-syscall_wrappers-don-t-conflict-with-glibc-provided.patch
+++ /dev/null
@@ -1,58 +0,0 @@
-From 9a128f32fc277dd0c07bc85c71dc25d123f8a831 Mon Sep 17 00:00:00 2001
-From: Christian Brauner 
-Date: Wed, 4 Aug 2021 21:34:11 +0200
-Subject: [PATCH] syscall_wrappers: don't conflict with glibc provided
- close_range()
-
-Newer glibc version's provide a wrapper for close_range().
-
-Fixes: #9084
-Signed-off-by: Christian Brauner 

- lxd/include/syscall_wrappers.h | 2 +-
- lxd/main_checkfeature.go   | 2 +-
- lxd/main_forkexec.go   | 2 +-
- 3 files changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/lxd/include/syscall_wrappers.h b/lxd/include/syscall_wrappers.h
-index 4405a622b801..25e56a5cefac 100644
 a/lxd/include/syscall_wrappers.h
-+++ b/lxd/include/syscall_wrappers.h
-@@ -16,7 +16,7 @@
- #define CLOSE_RANGE_UNSHARE (1U << 1)
- #endif
- 
--static inline int close_range(unsigned int fd, unsigned int max_fd, unsigned 
int flags)
-+static inline int lxd_close_range(unsigned int fd, unsigned int max_fd, 
unsigned int flags)
- {
-   return syscall(__NR_close_range, fd, max_fd, flags);
- }
-diff --git a/lxd/main_checkfeature.go b/lxd/main_checkfeature.go
-index 9511b684fa5d..0cc89207158d 100644
 a/lxd/main_checkfeature.go
-+++ b/lxd/main_checkfeature.go
-@@ -496,7 +496,7 @@ static void is_close_range_aware(void)
-   if (fd < 0)
-   return;
- 
--  if (close_range(fd, fd, CLOSE_RANGE_UNSHARE))
-+  if (lxd_close_range(fd, fd, CLOSE_RANGE_UNSHARE))
-   return;
- 
-   close_range_aware = true;
-diff --git a/lxd/main_forkexec.go b/lxd/main_forkexec.go
-index 574f25eeb988..cfa4cd6bcda8 100644
 a/lxd/main_forkexec.go
-+++ b/lxd/main_forkexec.go
-@@ -290,7 +290,7 @@ __attribute__ ((noinline)) static int __forkexec(void)
-   if (!argvp || !*argvp)
-   return log_error(EXIT_FAILURE, "No command specified");
- 
--  ret = close_range(EXEC_PIPE_FD + 1, UINT_MAX, CLOSE_RANGE_UNSHARE);
-+  ret = lxd_close_range(EXEC_PIPE_FD + 1, UINT_MAX, CLOSE_RANGE_UNSHARE);
-   if (ret) {
-   // Fallback to close_inherited() when the syscall is not
-   // available or when CLOSE_RANGE_UNSHARE isn't supported.
--- 
-2.32.0
-

diff --git a/app-containers/lxd/lxd-4.0.7-r2.ebuild 
b/app-containers/lxd/lxd-4.0.7-r2.ebuild
deleted file mode 100644
index 0d725dd9c643..
--- a/app-containers/lxd/lxd-4.0.7-r2.ebuild
+++ /dev/null
@@ -1,175 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit bash-completion-r1 linux-info optfeature systemd verify-sig
-

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

2021-12-21 Thread Arthur Zamarin
commit: 31f75efcb11aefe2502f36facf2f1c329b022233
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Dec 22 06:05:25 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Dec 22 06:05:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31f75efc

dev-python/pyamg: add 4.2.1, fix tests

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

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

diff --git a/dev-python/pyamg/Manifest b/dev-python/pyamg/Manifest
index d4fd0a1ff161..e7e4e0cd9cec 100644
--- a/dev-python/pyamg/Manifest
+++ b/dev-python/pyamg/Manifest
@@ -1,2 +1,3 @@
 DIST pyamg-4.1.0.tar.gz 749906 BLAKE2B 
31c05d64317b32cbdbd616e982557f0a94bc17b2fce3d982fe93e629d56ad526516603032b3cba9785bf5ebed038481ae641f55a5a1ad621442dde08791981cb
 SHA512 
311642cbbe8dca621cb58bebb1bb05b7dc7b2364713886df96937ba56575137bcb4fb7006a232d2c14380cd41f4337f6f09a8a9794e279a155f27287497d2b08
 DIST pyamg-4.2.0.gh.tar.gz 3900381 BLAKE2B 
df556553f74ebbc3b83d5a9479af25a54a4fd999edeadaeb0951893612abdb7c2aa79909f6eb4196322752ae87c5636e23c8c9b7dcdbb1f8d515651526e8aff4
 SHA512 
71e8e1937437888fec275e8522a30f9eb35cb79cc07d6da8032b653ed58e086285701ebb40dbe3b9fe82b53dc6e112e18cf62d42b18233326639417cf808b7c1
+DIST pyamg-4.2.1.gh.tar.gz 3900395 BLAKE2B 
ad4427eb297f044b4782274ce55799bd9da4abec108267c4c0aaedab38e2fb4d89c4c365eca90e4045c411254640ead667fa0e511d9597ff00081c0ebacde9b2
 SHA512 
933f5f1da808cb02ff5fa91df54a48a971bb3b017582f5a829cf71c94f698469476b9f0306962140dc38f7265266c9b53f98dc7aaa99945b45bfa83003d26df9

diff --git a/dev-python/pyamg/pyamg-4.2.1.ebuild 
b/dev-python/pyamg/pyamg-4.2.1.ebuild
new file mode 100644
index ..cdcc0310a2cb
--- /dev/null
+++ b/dev-python/pyamg/pyamg-4.2.1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Algebraic multigrid solvers in Python"
+HOMEPAGE="https://pyamg.org;
+SRC_URI="
+   https://github.com/pyamg/pyamg/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]"
+BDEPEND="
+   dev-python/pybind11[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   test? (
+   dev-python/matplotlib[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+   cp -r -l -n pyamg "${BUILD_DIR}/lib" || die
+   cd "${BUILD_DIR}/lib" || die
+   epytest
+}



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

2021-12-21 Thread Arthur Zamarin
commit: 2ffb2acf8f073795aadc57a3c61e8b7abee18c00
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Dec 22 06:05:43 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Dec 22 06:05:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ffb2acf

dev-python/pyamg: drop 4.2.0

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

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

diff --git a/dev-python/pyamg/Manifest b/dev-python/pyamg/Manifest
index e7e4e0cd9cec..4fa01624f567 100644
--- a/dev-python/pyamg/Manifest
+++ b/dev-python/pyamg/Manifest
@@ -1,3 +1,2 @@
 DIST pyamg-4.1.0.tar.gz 749906 BLAKE2B 
31c05d64317b32cbdbd616e982557f0a94bc17b2fce3d982fe93e629d56ad526516603032b3cba9785bf5ebed038481ae641f55a5a1ad621442dde08791981cb
 SHA512 
311642cbbe8dca621cb58bebb1bb05b7dc7b2364713886df96937ba56575137bcb4fb7006a232d2c14380cd41f4337f6f09a8a9794e279a155f27287497d2b08
-DIST pyamg-4.2.0.gh.tar.gz 3900381 BLAKE2B 
df556553f74ebbc3b83d5a9479af25a54a4fd999edeadaeb0951893612abdb7c2aa79909f6eb4196322752ae87c5636e23c8c9b7dcdbb1f8d515651526e8aff4
 SHA512 
71e8e1937437888fec275e8522a30f9eb35cb79cc07d6da8032b653ed58e086285701ebb40dbe3b9fe82b53dc6e112e18cf62d42b18233326639417cf808b7c1
 DIST pyamg-4.2.1.gh.tar.gz 3900395 BLAKE2B 
ad4427eb297f044b4782274ce55799bd9da4abec108267c4c0aaedab38e2fb4d89c4c365eca90e4045c411254640ead667fa0e511d9597ff00081c0ebacde9b2
 SHA512 
933f5f1da808cb02ff5fa91df54a48a971bb3b017582f5a829cf71c94f698469476b9f0306962140dc38f7265266c9b53f98dc7aaa99945b45bfa83003d26df9

diff --git a/dev-python/pyamg/pyamg-4.2.0.ebuild 
b/dev-python/pyamg/pyamg-4.2.0.ebuild
deleted file mode 100644
index 25ff16c10f4f..
--- a/dev-python/pyamg/pyamg-4.2.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Algebraic multigrid solvers in Python"
-HOMEPAGE="https://pyamg.org;
-SRC_URI="
-   https://github.com/pyamg/pyamg/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/scipy[${PYTHON_USEDEP}]"
-# cannot be enabled by "distutils_enable_tests pytest"
-BDEPEND="
-   dev-python/pybind11[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   test? (
-   dev-python/matplotlib[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests setup.py
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



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

2021-12-21 Thread Arthur Zamarin
commit: 1430e876cde6774856e6372429938e02a9be25ce
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Dec 22 05:53:31 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Dec 22 05:53:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1430e876

dev-python/jc: add 1.17.5

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

 dev-python/jc/Manifest |  1 +
 dev-python/jc/jc-1.17.5.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-python/jc/Manifest b/dev-python/jc/Manifest
index eea86bc5b2aa..1b84e0209f9a 100644
--- a/dev-python/jc/Manifest
+++ b/dev-python/jc/Manifest
@@ -1,3 +1,4 @@
 DIST jc-1.16.0.tar.gz 2532019 BLAKE2B 
583d52102a2e27a53171d300fb6e9ac094d5b09496193b359590322cab0f63582d14e0d27aacdd4f87e179cff1b0ffe0efc5bfc1982e64a7d053cf6210c2ed2a
 SHA512 
a75c411d3f961061262b577e7a6611759f01df508e7d12e09cb364736dca343a098f9cbe4b2552ab2bd56fed925e7c11ba1f954808a11453380ba0ba0c32130b
 DIST jc-1.17.3.tar.gz 3814789 BLAKE2B 
09134b85c881b2701d7db68f0a16eb6f696aeb5e4fa8b6a0b1aff148adbad302fcc9019944acc45b5830966f0ffae90ff4c006895d559ca47595347442e72a5c
 SHA512 
6cc36abcb9d57eb95b36968647a0923f3d6d39aed478df83e9d4437b0ea4aba49a5f08d9f61ba88f3a76ce3b57c2e019e7cec5b89e71ce7be8186e9e18ab4ad7
 DIST jc-1.17.4.tar.gz 3818285 BLAKE2B 
0761e923916c61125967451f3b4806e3080184106c84e2c85f5de8b37d03106bde98d1b4d99f4d00308b7d935898e81cd5c7d112ed611dd4707074019becc968
 SHA512 
b5fc437be425d60c5e859ed9107be8a3190bc5e1eb157b01cd3b4cdcf27ccab51b6d0299f0c462b1e595d741bf905c11b25d49568159f04aa4443f51889027b6
+DIST jc-1.17.5.tar.gz 3851890 BLAKE2B 
86b6c1b9786bbe30138cb7ba5171fd14682b420c3ff11716ab5d1bd4e4cc3d95067ca836c6217040799607933037b3cd6dc49e6395831140c10906e8be530685
 SHA512 
6e7207af158be41cf55ac7f9400c1a676075e85de0fecd63d9ddcffeed5d903a9619ac52b955d10e0db354f97e73fb9766b96e51c5648104907426000ecd1594

diff --git a/dev-python/jc/jc-1.17.5.ebuild b/dev-python/jc/jc-1.17.5.ebuild
new file mode 100644
index ..55a2e83ea478
--- /dev/null
+++ b/dev-python/jc/jc-1.17.5.ebuild
@@ -0,0 +1,25 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Converts the output of popular command-line tools and file-types 
to JSON"
+HOMEPAGE="https://github.com/kellyjonbrazil/jc;
+SRC_URI="
+   https://github.com/kellyjonbrazil/jc/archive/v${PV}.tar.gz
+   -> ${P}.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="dev-python/pygments[${PYTHON_USEDEP}]
+   dev-python/ruamel-yaml[${PYTHON_USEDEP}]
+   dev-python/xmltodict[${PYTHON_USEDEP}]"
+
+distutils_enable_tests unittest



[gentoo-commits] repo/gentoo:master commit in: app-editors/neovim/

2021-12-21 Thread Sam James
commit: 14c9c6b9a8688c86d318ab79d2052051a35f050a
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 05:36:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 05:36:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14c9c6b9

app-editors/neovim: Stabilize 0.5.1 amd64, #829776

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

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

diff --git a/app-editors/neovim/neovim-0.5.1.ebuild 
b/app-editors/neovim/neovim-0.5.1.ebuild
index 78a18344f655..f75cc58cc162 100644
--- a/app-editors/neovim/neovim-0.5.1.ebuild
+++ b/app-editors/neovim/neovim-0.5.1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://github.com/neovim/neovim.git;
 else
SRC_URI="https://github.com/neovim/neovim/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~riscv x86 ~x64-macos"
+   KEYWORDS="amd64 ~arm ~arm64 ~riscv x86 ~x64-macos"
 fi
 
 LICENSE="Apache-2.0 vim"



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

2021-12-21 Thread Sam James
commit: efe6d78d931bf77368d541301b79c3b56fbc2026
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 05:32:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 05:32:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efe6d78d

dev-python/sphinx_rtd_theme: Stabilize 1.0.0 ALLARCHES, #829788

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

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

diff --git a/dev-python/sphinx_rtd_theme/sphinx_rtd_theme-1.0.0.ebuild 
b/dev-python/sphinx_rtd_theme/sphinx_rtd_theme-1.0.0.ebuild
index 8a078a686591..b2e72c5b20de 100644
--- a/dev-python/sphinx_rtd_theme/sphinx_rtd_theme-1.0.0.ebuild
+++ b/dev-python/sphinx_rtd_theme/sphinx_rtd_theme-1.0.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86 ~x64-macos"
 IUSE=""
 
 PDEPEND=">=dev-python/sphinx-1.6[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: app-editors/neovim/

2021-12-21 Thread Sam James
commit: 79e53798ae48e15030e492a517969746635b22d3
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 05:32:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 05:32:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79e53798

app-editors/neovim: Stabilize 0.5.1 x86, #829776

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

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

diff --git a/app-editors/neovim/neovim-0.5.1.ebuild 
b/app-editors/neovim/neovim-0.5.1.ebuild
index 6e99dc9e54d6..78a18344f655 100644
--- a/app-editors/neovim/neovim-0.5.1.ebuild
+++ b/app-editors/neovim/neovim-0.5.1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://github.com/neovim/neovim.git;
 else
SRC_URI="https://github.com/neovim/neovim/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~x64-macos"
+   KEYWORDS="~amd64 ~arm ~arm64 ~riscv x86 ~x64-macos"
 fi
 
 LICENSE="Apache-2.0 vim"



[gentoo-commits] repo/gentoo:master commit in: net-mail/mu/

2021-12-21 Thread Sam James
commit: 435b852133adbee75fc6dd2add44094943fa9bac
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 05:32:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 05:32:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=435b8521

net-mail/mu: Stabilize 1.6.10 arm, #829781

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

 net-mail/mu/mu-1.6.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/mu/mu-1.6.10.ebuild b/net-mail/mu/mu-1.6.10.ebuild
index dd17eed95d08..ce62a8d42dd1 100644
--- a/net-mail/mu/mu-1.6.10.ebuild
+++ b/net-mail/mu/mu-1.6.10.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/djcb/mu/releases/download/${PV}/mu-${PV}.tar.xz;
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 x86 ~x64-macos"
+KEYWORDS="amd64 arm arm64 x86 ~x64-macos"
 IUSE="emacs guile readline"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-mail/mu/

2021-12-21 Thread Sam James
commit: bc925b4b641661a63704b1f40d39fc1e94c5a4b4
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 05:31:51 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 05:31:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc925b4b

net-mail/mu: Stabilize 1.6.10 arm64, #829781

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

 net-mail/mu/mu-1.6.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/mu/mu-1.6.10.ebuild b/net-mail/mu/mu-1.6.10.ebuild
index f0d641e2507e..dd17eed95d08 100644
--- a/net-mail/mu/mu-1.6.10.ebuild
+++ b/net-mail/mu/mu-1.6.10.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/djcb/mu/releases/download/${PV}/mu-${PV}.tar.xz;
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86 ~x64-macos"
+KEYWORDS="amd64 ~arm arm64 x86 ~x64-macos"
 IUSE="emacs guile readline"
 
 DEPEND="



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

2021-12-21 Thread Sam James
commit: bec8587283c77bf6e61d3f84a86c701c5e4efb1c
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 05:31:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 05:31:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bec85872

media-libs/exiftool: add note re 'production' releases

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

 media-libs/exiftool/exiftool-12.30.ebuild | 3 +++
 media-libs/exiftool/exiftool-12.33.ebuild | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/media-libs/exiftool/exiftool-12.30.ebuild 
b/media-libs/exiftool/exiftool-12.30.ebuild
index 8e18fe6a6c47..debd1e4016eb 100644
--- a/media-libs/exiftool/exiftool-12.30.ebuild
+++ b/media-libs/exiftool/exiftool-12.30.ebuild
@@ -3,6 +3,9 @@
 
 EAPI=7
 
+# Check https://exiftool.org/history.html for whether a release is 'production'
+# Ideally don't bump to non-production at all, but certainly don't stable.
+
 DIST_NAME=Image-ExifTool
 inherit perl-module
 

diff --git a/media-libs/exiftool/exiftool-12.33.ebuild 
b/media-libs/exiftool/exiftool-12.33.ebuild
index 6136373aa4a1..cdbb44a589d6 100644
--- a/media-libs/exiftool/exiftool-12.33.ebuild
+++ b/media-libs/exiftool/exiftool-12.33.ebuild
@@ -3,6 +3,9 @@
 
 EAPI=8
 
+# Check https://exiftool.org/history.html for whether a release is 'production'
+# Ideally don't bump to non-production at all, but certainly don't stable.
+
 DIST_NAME=Image-ExifTool
 inherit perl-module
 



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

2021-12-21 Thread Sam James
commit: a42ba0e3fb9123c40bc99c920c3d3bd9dab17dc8
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 05:30:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 05:30:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a42ba0e3

media-libs/exiftool: add sourceforge backup link to HOMEPAGE

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

 media-libs/exiftool/exiftool-12.30.ebuild | 2 +-
 media-libs/exiftool/exiftool-12.33.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/exiftool/exiftool-12.30.ebuild 
b/media-libs/exiftool/exiftool-12.30.ebuild
index 579e441d9422..8e18fe6a6c47 100644
--- a/media-libs/exiftool/exiftool-12.30.ebuild
+++ b/media-libs/exiftool/exiftool-12.30.ebuild
@@ -7,7 +7,7 @@ DIST_NAME=Image-ExifTool
 inherit perl-module
 
 DESCRIPTION="Read and write meta information in image, audio and video files"
-HOMEPAGE="https://exiftool.org/;
+HOMEPAGE="https://exiftool.org/ http://exiftool.sourceforge.net/;
 SRC_URI="https://exiftool.org/${DIST_P}.tar.gz;
 
 SLOT="0"

diff --git a/media-libs/exiftool/exiftool-12.33.ebuild 
b/media-libs/exiftool/exiftool-12.33.ebuild
index b40b4ece01ca..6136373aa4a1 100644
--- a/media-libs/exiftool/exiftool-12.33.ebuild
+++ b/media-libs/exiftool/exiftool-12.33.ebuild
@@ -7,7 +7,7 @@ DIST_NAME=Image-ExifTool
 inherit perl-module
 
 DESCRIPTION="Read and write meta information in image, audio and video files"
-HOMEPAGE="https://exiftool.org/;
+HOMEPAGE="https://exiftool.org/ http://exiftool.sourceforge.net;
 SRC_URI="https://exiftool.org/${DIST_P}.tar.gz;
 
 SLOT="0"



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

2021-12-21 Thread Sam James
commit: 08478f0703855f0661093049268748a968ff052a
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 05:25:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 05:25:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08478f07

profiles/features/musl: don't force htop[unwind]

Works fine without, I misread configure.

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

 profiles/features/musl/package.use.force | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/profiles/features/musl/package.use.force 
b/profiles/features/musl/package.use.force
index 5495a35bbcbe..f11de170c840 100644
--- a/profiles/features/musl/package.use.force
+++ b/profiles/features/musl/package.use.force
@@ -1,11 +1,6 @@
-# Copyright 1999-2018 Gentoo Foundation.
+# Copyright 1999-2021 Gentoo Authors.
 # Distributed under the terms of the GNU General Public License v2
 
-# Sam James  (2021-12-15)
-# Force libunwind/llvm-libunwind (either way, a -lunwind) here as execinfo
-# isn't on musl. bug #818208.
-sys-process/htop unwind
-
 # Andreas K. Hüttel  (2021-07-14)
 # Do not force system install for libxcrypt here
 >=sys-libs/libxcrypt-4.4.23-r1 -system -compat



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

2021-12-21 Thread Sam James
commit: e34e4dd79ca842b3701fcafaf16dd04a14b0f048
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 04:29:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 04:29:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e34e4dd7

net-misc/turbovnc: add 2.2.7

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

 net-misc/turbovnc/Manifest  |   1 +
 net-misc/turbovnc/turbovnc-2.2.7.ebuild | 103 
 2 files changed, 104 insertions(+)

diff --git a/net-misc/turbovnc/Manifest b/net-misc/turbovnc/Manifest
index 79f84d7ca892..8b9eb2ffc41e 100644
--- a/net-misc/turbovnc/Manifest
+++ b/net-misc/turbovnc/Manifest
@@ -1 +1,2 @@
 DIST turbovnc-2.2.6.tar.gz 9022414 BLAKE2B 
5baf1d5a9ea488ae1148feb107920d1e2cd2d29af58b6486ac8b7381f07def05d5fbf3a8b231221ef05a8365dd431f0640de0c4fc507475b0c801a53472870c4
 SHA512 
74fabb7006135853b662e8b6fcfc9b0cf55aa516477106de40587b4513a708c1458ab73f7a51f5f70c4abdc09f1ce13aafdcd56cd039655870a7614169d98af7
+DIST turbovnc-2.2.7.tar.gz 8789325 BLAKE2B 
257a9c9b3793b40668bf2f3bd9839b3003364f9130699caa52beaec24b75cb054830ee1b1aa67a22eb6173afc9af99c51e45fa3fa52e050c78e5226466ce99ce
 SHA512 
932faa645a71b825e467bdcdb4b872e961ad688c959beb0adbdd35d77969d856bb5c82b893afe8f6b0aa8be18cac3fa9192ce05074295c92a83f1a2344468788

diff --git a/net-misc/turbovnc/turbovnc-2.2.7.ebuild 
b/net-misc/turbovnc/turbovnc-2.2.7.ebuild
new file mode 100644
index ..c7db05f8cba5
--- /dev/null
+++ b/net-misc/turbovnc/turbovnc-2.2.7.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop cmake java-pkg-opt-2
+
+DESCRIPTION="A fast replacement for TigerVNC"
+HOMEPAGE="https://www.turbovnc.org/;
+SRC_URI="https://sourceforge.net/projects/turbovnc/files/${PV}/${P}.tar.gz/download
 -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="gnutls +ssl"
+
+DEPEND="
+   app-arch/bzip2
+   media-libs/freetype
+   >=media-libs/libjpeg-turbo-2.0.0[java?]
+   sys-libs/zlib
+   virtual/jdk:1.8
+   virtual/opengl
+   x11-libs/libfontenc
+   x11-libs/libX11
+   x11-libs/libXau
+   x11-libs/libXdmcp
+   x11-libs/libXext
+   x11-libs/libXfont2
+   x11-libs/libxkbfile
+   x11-libs/pixman
+   ssl? (
+   !gnutls? ( dev-libs/openssl:= )
+   gnutls? ( net-libs/gnutls:= )
+   )
+   !net-misc/tigervnc
+"
+RDEPEND="
+   ${DEPEND}
+   x11-apps/xkbcomp
+"
+
+src_prepare() {
+   use java && java-pkg-opt-2_src_prepare
+   cmake_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DTVNC_SYSTEMX11=ON
+   -DTVNC_SYSTEMLIBS=ON
+   -DTVNC_BUILDJAVA=$(usex java)
+   -DTVNC_BUILDNATIVE=ON
+   -DXKB_BIN_DIRECTORY=/usr/bin
+   -DXKB_DFLT_RULES=base
+   )
+
+   if use ssl ; then
+   # We prefer OpenSSL, so default to that if SSL is enabled
+   if use gnutls ; then
+   mycmakeargs+=( -DTVNC_USETLS=GnuTLS )
+   else
+   # Link properly against OpenSSL to ensure
+   # we catch e.g. ABI change
+   # (i.e. don't dlopen it)
+   mycmakeargs+=(
+   -DTVNC_USETLS=OpenSSL
+   -DTVNC_DLOPENSSL=OFF
+   )
+   fi
+   else
+   mycmakeargs+=( -DTVNC_USETLS=OFF )
+   fi
+
+   if use java ; then
+   export JAVACFLAGS="$(java-pkg_javac-args)"
+   export JNI_CFLAGS="$(java-pkg_get-jni-cflags)"
+
+   mycmakeargs+=(
+   -DTJPEG_JAR="${EPREFIX}/usr/share/java/turbojpeg.jar"
+   
-DTJPEG_JNILIBRARY="${EPREFIX}/usr/$(get_libdir)/libturbojpeg.so"
+   )
+   fi
+
+   cmake_src_configure
+}
+
+src_install() {
+   cmake_src_install
+
+   if use java ; then
+   java-pkg_dojar "${BUILD_DIR}"/java/VncViewer.jar
+   make_desktop_entry vncviewer "TurboVNC Viewer" 
/usr/share/icons/hicolor/48x48/apps/${PN}.png
+   fi
+
+   # Don't install incompatible init script
+   rm -rf "${ED}"/etc/init.d/ || die
+   rm -rf "${ED}"/etc/sysconfig/ || die
+
+   find "${ED}"/usr/share/man/man1/ -name Xserver.1\* -print0 | xargs -0 
rm || die
+
+   einstalldocs
+}



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

2021-12-21 Thread Sam James
commit: 59a511f3eb46bb4dcc9569513497509699bf1d38
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 05:05:19 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 05:05:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59a511f3

app-text/qpdf: add 10.5.0

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

 app-text/qpdf/Manifest   |  2 +
 app-text/qpdf/qpdf-10.5.0.ebuild | 88 
 2 files changed, 90 insertions(+)

diff --git a/app-text/qpdf/Manifest b/app-text/qpdf/Manifest
index c7ed6bb77b41..22144477787b 100644
--- a/app-text/qpdf/Manifest
+++ b/app-text/qpdf/Manifest
@@ -1,2 +1,4 @@
 DIST qpdf-10.3.2.tar.gz 18943834 BLAKE2B 
5b4e320ddd663721d8201139842bb09a752347f86c3e33116063b2fff1426aed5ff6e3c581c120771a712a8ed278102e0d41816db207a25dabd84e5b89490d35
 SHA512 
4e630959abf27d1801e36d0cbd754945ded42ade9299057a6b9a642c7cb2a3f8242e274642f1c33a65b4a5a77562d91dcbe64fd5772d483cbe5edb4a6a389219
 DIST qpdf-10.4.0.tar.gz 18942833 BLAKE2B 
bc984c742bec582b5b67f7a4f4f00bb22a36e8e14d78b8e8848baed0c94489f6920070bc317928c53aca855c252c2fa5de0fba8b64ba16ba37afc2362d6ae7ba
 SHA512 
7a17cc2b3168bb60ac05d01b585d34d94f62e44e309b86635351b2564bc2c3b7846d3a008ae0d6c068bce3b1d9c42d3a3ab40de3f85a1ec4952280cf8321a041
+DIST qpdf-10.5.0-doc.zip 6621139 BLAKE2B 
9297946619df67799a450495ead8a980d8e2cfa92556e9eb6ac6f365b80d489bb11a9c5dd95e13df9a8fb013a3f254e89ae1682e8be73799ba0c872dc50075c5
 SHA512 
75c4eac6e828eb5f8544b4194b775e8258a769aa5e18006b9491d9658981abcd286cd082a233122805e785f283704dccaf2078cd84965ab58ebc6c80fdb4a06f
+DIST qpdf-10.5.0.tar.gz 18362586 BLAKE2B 
efb0a051df9824c6324ce3c4de7b6f5890a04e0a0e1e08a1086c7b7a7e3d29e01d8b6760eeb36cd5461f5ea8a9ac1e6453711df53b514c223abd3d2a41ae1a93
 SHA512 
758dd4fd86b79a8b08738abb36685cf4a458dcf70a480efe3207d1148a691cf06a8040c83075ace9c3bbaf372cefe78508df2e52513cc969dca76442ed43775d

diff --git a/app-text/qpdf/qpdf-10.5.0.ebuild b/app-text/qpdf/qpdf-10.5.0.ebuild
new file mode 100644
index ..d83ec13d06ca
--- /dev/null
+++ b/app-text/qpdf/qpdf-10.5.0.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit bash-completion-r1
+
+DESCRIPTION="Command-line tool for structural, content-preserving 
transformation of PDF files"
+HOMEPAGE="http://qpdf.sourceforge.net/;
+SRC_URI="mirror://sourceforge/qpdf/${P}.tar.gz"
+SRC_URI+=" doc? ( mirror://sourceforge/qpdf/${P}-doc.zip )"
+
+LICENSE="|| ( Apache-2.0 Artistic-2 )"
+# subslot = libqpdf soname version
+SLOT="0/28"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris"
+IUSE="doc examples gnutls ssl test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   sys-libs/zlib
+   virtual/jpeg:0=
+   ssl? (
+   gnutls? ( net-libs/gnutls:= )
+   !gnutls? ( dev-libs/openssl:= )
+   )
+"
+DEPEND="${RDEPEND}
+   test? (
+   app-text/ghostscript-gpl[tiff(+)]
+   media-libs/tiff
+   sys-apps/diffutils
+   )
+"
+BDEPEND="dev-lang/perl
+   doc? ( app-arch/unzip )"
+
+DOCS=( ChangeLog README.md TODO )
+
+src_configure() {
+   # Keep an eye on https://qpdf.readthedocs.io/en/stable/packaging.html.
+   local myeconfargs=(
+   --disable-check-autofiles
+
+   --disable-implicit-crypto
+   --enable-crypto-native
+
+   --disable-oss-fuzz
+   $(use_enable test test-compare-images)
+   )
+
+   if use ssl ; then
+   local crypto_provider=openssl
+
+   if use gnutls ; then
+   crypto_provider=gnutls
+   fi
+
+   myeconfargs+=(
+   --with-default-crypto=${crypto_provider}
+   --enable-crypto-${crypto_provider}
+   )
+   fi
+
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+
+   if use doc ; then
+   docompress -x /usr/share/doc/${PF}/singlehtml
+   dodoc -r "${WORKDIR}"/${P}-doc/.
+
+   fi
+
+   if use examples ; then
+   dobin $(find examples/build/.libs -maxdepth 1 -type f 
-executable || die)
+   fi
+
+   # Completions
+   dobashcomp completions/bash/qpdf
+
+   insinto /usr/share/zsh/site-functions
+   doins completions/zsh/_qpdf
+
+   find "${ED}" -type f -name '*.la' -delete || die
+}



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

2021-12-21 Thread Sam James
commit: 5d8910d38a0f3ed04795e822256a4f8dfbabe18e
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 04:30:08 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 04:30:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d8910d3

app-text/qpdf: drop 10.0.4, 10.1.0, 10.3.1

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

 app-text/qpdf/Manifest   |  3 ---
 app-text/qpdf/qpdf-10.0.4.ebuild | 56 
 app-text/qpdf/qpdf-10.1.0.ebuild | 56 
 app-text/qpdf/qpdf-10.3.1.ebuild | 56 
 4 files changed, 171 deletions(-)

diff --git a/app-text/qpdf/Manifest b/app-text/qpdf/Manifest
index 935af25fb201..c7ed6bb77b41 100644
--- a/app-text/qpdf/Manifest
+++ b/app-text/qpdf/Manifest
@@ -1,5 +1,2 @@
-DIST qpdf-10.0.4.tar.gz 18465085 BLAKE2B 
3b9edc38069d58d43d26b131da755b7921b7add905ed652e3abb48d9b2e140d0c3b38f0250dbd3dca1c4b3dadf76c636606c6fa802b1ebe2dda77444badd828e
 SHA512 
0a8c243928a3273d78b4a898e17a619f1565ec5e9b6f637800a2937749fb8006d0438fee2e623d2f8dc715bfb478ee818e86e9da7c7e0fcf14af496464b79a07
-DIST qpdf-10.1.0.tar.gz 18528427 BLAKE2B 
e62b1c8ca8d301b082cde292cb8430d6ae26433c77a30a6a21379f00cbfb3df09117d042f532f77d372d091a89a3f6581ef7d7734c67a4a1b29c1708129078f3
 SHA512 
f9b22d89fc62e430e6232c840ad74d220ac9eb09d7f2dfe2c42c1c943d35b5fd25e2abec9970ac19ad7ad25dc3d95c74e68e50bad395abf815cf71c432233106
-DIST qpdf-10.3.1.tar.gz 18956768 BLAKE2B 
1581799b7bd08e28829fd26571ddaa06fc8460fd4f6935a4f69374e49c445cfcbe824175de7137817a26278c2f58d7524f6440181945064fc853f4dd30b2d528
 SHA512 
def94fe09770e67fe13bd3fc946667fc2935e7c448eb43602e15218e5b50f452e4f4152411f818115620e67934890c37203663537ac77ed1fcd4317e01a6d623
 DIST qpdf-10.3.2.tar.gz 18943834 BLAKE2B 
5b4e320ddd663721d8201139842bb09a752347f86c3e33116063b2fff1426aed5ff6e3c581c120771a712a8ed278102e0d41816db207a25dabd84e5b89490d35
 SHA512 
4e630959abf27d1801e36d0cbd754945ded42ade9299057a6b9a642c7cb2a3f8242e274642f1c33a65b4a5a77562d91dcbe64fd5772d483cbe5edb4a6a389219
 DIST qpdf-10.4.0.tar.gz 18942833 BLAKE2B 
bc984c742bec582b5b67f7a4f4f00bb22a36e8e14d78b8e8848baed0c94489f6920070bc317928c53aca855c252c2fa5de0fba8b64ba16ba37afc2362d6ae7ba
 SHA512 
7a17cc2b3168bb60ac05d01b585d34d94f62e44e309b86635351b2564bc2c3b7846d3a008ae0d6c068bce3b1d9c42d3a3ab40de3f85a1ec4952280cf8321a041

diff --git a/app-text/qpdf/qpdf-10.0.4.ebuild b/app-text/qpdf/qpdf-10.0.4.ebuild
deleted file mode 100644
index e6c1b1772480..
--- a/app-text/qpdf/qpdf-10.0.4.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Command-line tool for structural, content-preserving 
transformation of PDF files"
-HOMEPAGE="http://qpdf.sourceforge.net/;
-SRC_URI="mirror://sourceforge/qpdf/${P}.tar.gz"
-
-LICENSE="|| ( Apache-2.0 Artistic-2 )"
-# subslot = libqpdf soname version
-SLOT="0/28"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~sparc-solaris"
-IUSE="doc examples ssl test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   net-libs/gnutls:0=
-   sys-libs/zlib
-   virtual/jpeg:0=
-   ssl? (
-   dev-libs/openssl:0=
-   )
-"
-DEPEND="${RDEPEND}
-   test? (
-   app-text/ghostscript-gpl[tiff(+)]
-   media-libs/tiff
-   sys-apps/diffutils
-   )
-"
-
-DOCS=( ChangeLog README.md TODO )
-
-src_configure() {
-   local myeconfargs=(
-   --disable-implicit-crypto
-   --enable-crypto-gnutls
-   --enable-crypto-native
-   --with-default-crypto=gnutls
-   --disable-static
-   $(use_enable ssl crypto-openssl)
-   $(use_enable test test-compare-images)
-   )
-   CONFIG_SHELL="${BROOT}/bin/bash" econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   default
-
-   if use examples ; then
-   dobin examples/build/.libs/*
-   fi
-
-   find "${ED}" -type f -name '*.la' -delete || die
-}

diff --git a/app-text/qpdf/qpdf-10.1.0.ebuild b/app-text/qpdf/qpdf-10.1.0.ebuild
deleted file mode 100644
index e6c1b1772480..
--- a/app-text/qpdf/qpdf-10.1.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Command-line tool for structural, content-preserving 
transformation of PDF files"
-HOMEPAGE="http://qpdf.sourceforge.net/;
-SRC_URI="mirror://sourceforge/qpdf/${P}.tar.gz"
-
-LICENSE="|| ( Apache-2.0 Artistic-2 )"
-# subslot = libqpdf soname version
-SLOT="0/28"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~sparc-solaris"
-IUSE="doc examples ssl test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   net-libs/gnutls:0=
-   

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

2021-12-21 Thread Sam James
commit: 8074269a6d25b05041d526345912f7eac107d196
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 05:15:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 05:15:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8074269a

media-sound/timidity++: fix further automagic deps

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

 .../{timidity++-2.15.0-r2.ebuild => timidity++-2.15.0-r3.ebuild} | 9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/media-sound/timidity++/timidity++-2.15.0-r2.ebuild 
b/media-sound/timidity++/timidity++-2.15.0-r3.ebuild
similarity index 96%
rename from media-sound/timidity++/timidity++-2.15.0-r2.ebuild
rename to media-sound/timidity++/timidity++-2.15.0-r3.ebuild
index f0377e343868..9d6db7b8acf6 100644
--- a/media-sound/timidity++/timidity++-2.15.0-r2.ebuild
+++ b/media-sound/timidity++/timidity++-2.15.0-r3.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv sparc x86"
-IUSE="alsa ao emacs flac gtk jack motif nas ncurses oss selinux slang speex tk 
vorbis X Xaw3d"
+IUSE="alsa ao emacs flac gtk jack motif nas ncurses ogg oss selinux slang 
speex tk vorbis X Xaw3d"
 
 REQUIRED_USE="tk? ( X )"
 
@@ -30,12 +30,14 @@ DEPEND="
motif? ( >=x11-libs/motif-2.3:0 )
nas? ( >=media-libs/nas-1.4 )
ncurses? ( sys-libs/ncurses:0= )
+   ogg? ( media-libs/libogg )
slang? ( sys-libs/slang )
speex? ( media-libs/speex )
-   tk? ( dev-lang/tk:0= )
+   tk? ( dev-lang/tk:= )
vorbis? ( media-libs/libvorbis )
X? (
-   media-libs/libpng:0=
+   media-libs/libpng:=
+   x11-libs/libX11
x11-libs/libXext
Xaw3d? ( x11-libs/libXaw3d )
!Xaw3d? ( x11-libs/libXaw )
@@ -121,6 +123,7 @@ src_configure() {
use flac && audios+=",flac"
use speex && audios+=",speex"
use vorbis && audios+=",vorbis"
+   use ogg && audios+=",ogg"
use oss && audios+=",oss"
use jack && audios+=",jack"
use ao && audios+=",ao"



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

2021-12-21 Thread Sam James
commit: bb9d0cb08ae28f065db8324da9effaa9ae89582e
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 04:15:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 04:15:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb9d0cb0

dev-cpp/pangomm: depend on older Pango for 2.42.2

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

 dev-cpp/pangomm/{pangomm-2.42.2.ebuild => pangomm-2.42.2-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/pangomm/pangomm-2.42.2.ebuild 
b/dev-cpp/pangomm/pangomm-2.42.2-r1.ebuild
similarity index 95%
rename from dev-cpp/pangomm/pangomm-2.42.2.ebuild
rename to dev-cpp/pangomm/pangomm-2.42.2-r1.ebuild
index 1415ead43d39..f647a9f7e6e0 100644
--- a/dev-cpp/pangomm/pangomm-2.42.2.ebuild
+++ b/dev-cpp/pangomm/pangomm-2.42.2-r1.ebuild
@@ -18,7 +18,7 @@ DEPEND="
>=dev-cpp/cairomm-1.2.2:0[doc?,${MULTILIB_USEDEP}]
>=dev-cpp/glibmm-2.48.0:2[doc?,${MULTILIB_USEDEP}]
dev-libs/libsigc++:2[doc?,${MULTILIB_USEDEP}]
-   >=x11-libs/pango-1.41.0[${MULTILIB_USEDEP}]
+   

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

2021-12-21 Thread Sam James
commit: 3258c361c0af4999b40216aced377d7cd19d4c5b
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 03:27:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 03:27:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3258c361

sci-libs/gdal: add 3.4.0

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

 sci-libs/gdal/Manifest  |   1 +
 sci-libs/gdal/gdal-3.4.0.ebuild | 323 
 2 files changed, 324 insertions(+)

diff --git a/sci-libs/gdal/Manifest b/sci-libs/gdal/Manifest
index 339b258265c8..47abf004c3d3 100644
--- a/sci-libs/gdal/Manifest
+++ b/sci-libs/gdal/Manifest
@@ -1 +1,2 @@
 DIST gdal-3.3.3.tar.gz 19600111 BLAKE2B 
2d4558062b35016372d6964884296878fdcef0afa83fb03b10cd902ce101ec52f551d48014d95b391d19b8db13d7ca1d639575b39e9421780f4212bef02dd51f
 SHA512 
c49e4555e598e4182e6419758c31df08d46b8b061480f08be09d61e840057529bd88eaa8c1ecfe1c6a0cc8cd6a073bf15fa6cdae003e4475485cf3851145
+DIST gdal-3.4.0.tar.gz 20008930 BLAKE2B 
b4dad7226d2cfee3bdcab9782d2d35355501c1dd830d247099f6a8030311b86e7620e90f7bba675bf49dc47d166ab586fabe45ba02d9d7e9a73829194da6b360
 SHA512 
e363258172cff9647804be11f28ebec1614ddfbfc6eed72d44700c23aea674267e413099555d25e784d567ea915b5fb9092ff74b98d890dfcb8aae56b0575eb6

diff --git a/sci-libs/gdal/gdal-3.4.0.ebuild b/sci-libs/gdal/gdal-3.4.0.ebuild
new file mode 100644
index ..55cb5824be6f
--- /dev/null
+++ b/sci-libs/gdal/gdal-3.4.0.ebuild
@@ -0,0 +1,323 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+GENTOO_DEPEND_ON_PERL="no"
+PYTHON_COMPAT=( python3_{8,9,10} )
+DISTUTILS_OPTIONAL=1
+inherit autotools bash-completion-r1 distutils-r1 flag-o-matic java-pkg-opt-2 
perl-module toolchain-funcs
+
+DESCRIPTION="Translator library for raster geospatial data formats (includes 
OGR support)"
+HOMEPAGE="https://gdal.org/;
+SRC_URI="https://download.osgeo.org/${PN}/${PV}/${P}.tar.gz;
+
+# subslot is libgdal.so.
+SLOT="0/30"
+LICENSE="BSD Info-ZIP MIT"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+IUSE="armadillo +aux-xml curl cpu_flags_x86_avx cpu_flags_x86_sse 
cpu_flags_x86_ssse3 debug doc fits geos gif gml hdf5 heif java jpeg jpeg2k lzma 
mdb mysql netcdf odbc ogdi opencl oracle pdf perl png postgres python 
spatialite sqlite threads webp xls zstd"
+
+REQUIRED_USE="
+   mdb? ( java )
+   python? ( ${PYTHON_REQUIRED_USE} )
+   spatialite? ( sqlite )
+"
+
+BDEPEND="
+   virtual/pkgconfig
+   doc? ( app-doc/doxygen )
+   java? (
+   dev-java/ant-core
+   dev-lang/swig:0
+   >=virtual/jdk-1.8:*
+   )
+   perl? ( dev-lang/swig:0 )
+   python? (
+   dev-lang/swig:0
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   )
+"
+DEPEND="
+   dev-libs/expat
+   dev-libs/json-c:=
+   dev-libs/libpcre
+   dev-libs/libxml2:2
+   dev-libs/openssl:=
+   media-libs/tiff
+   >=sci-libs/libgeotiff-1.5.1-r1:=
+   >=sci-libs/proj-6.0.0:=
+   sys-libs/zlib[minizip(+)]
+   armadillo? ( sci-libs/armadillo:=[lapack] )
+   curl? ( net-misc/curl )
+   fits? ( sci-libs/cfitsio:= )
+   geos? ( >=sci-libs/geos-3.8.0 )
+   gif? ( media-libs/giflib:= )
+   gml? ( >=dev-libs/xerces-c-3.1 )
+   heif? ( media-libs/libheif:= )
+   hdf5? ( >=sci-libs/hdf5-1.6.4:=[szip] )
+   jpeg? ( virtual/jpeg:0= )
+   jpeg2k? ( media-libs/openjpeg:2= )
+   lzma? ( || (
+   app-arch/xz-utils
+   app-arch/lzma
+   ) )
+   mdb? ( dev-java/jackcess:1 )
+   mysql? ( virtual/mysql )
+   netcdf? ( sci-libs/netcdf:= )
+   odbc? ( dev-db/unixODBC )
+   ogdi? ( sci-libs/ogdi )
+   opencl? ( virtual/opencl )
+   oracle? ( dev-db/oracle-instantclient:= )
+   pdf? ( app-text/poppler:= )
+   perl? ( dev-lang/perl:= )
+   png? ( media-libs/libpng:0= )
+   postgres? ( >=dev-db/postgresql-8.4:= )
+   python? (
+   ${PYTHON_DEPS}
+   dev-python/numpy[${PYTHON_USEDEP}]
+   )
+   spatialite? ( dev-db/spatialite )
+   sqlite? ( dev-db/sqlite:3 )
+   webp? ( media-libs/libwebp:= )
+   xls? ( dev-libs/freexl )
+   zstd? ( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}
+   java? ( >=virtual/jre-1.8:* )
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-2.2.3-soname.patch"
+   "${FILESDIR}/${PN}-2.3.0-curl.patch" # bug 659840
+   "${FILESDIR}/${PN}-3.3.0-libdir.patch"
+)
+
+src_prepare() {
+   default
+
+   # Drop a --prefix hack in the upstream build system
+   # We don't want the line at all, so let's just drop it rather than
+   # trying to put in the right libdir value.
+   # bug #696106
+   sed -e '/\$ADD_PREFIX\/lib/d' \
+   -i configure.ac || die
+
+   sed -e "s: 

[gentoo-commits] repo/gentoo:master commit in: app-arch/zstd/files/, app-arch/zstd/

2021-12-21 Thread Sam James
commit: c8f63df394e7d5094bffa55d66a89501f8cb43b1
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 02:23:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 02:23:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8f63df3

app-arch/zstd: add 1.5.1

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

 app-arch/zstd/Manifest |  1 +
 .../zstd/files/zstd-1.5.1-respect-CFLAGS.patch | 11 
 app-arch/zstd/zstd-1.5.1.ebuild| 69 ++
 3 files changed, 81 insertions(+)

diff --git a/app-arch/zstd/Manifest b/app-arch/zstd/Manifest
index 7950f8b80cac..3699570af10c 100644
--- a/app-arch/zstd/Manifest
+++ b/app-arch/zstd/Manifest
@@ -1,2 +1,3 @@
 DIST zstd-1.4.9.tar.gz 1834843 BLAKE2B 
907f492bd023db9459bdc292a0bc4d1b6336d92dd7041eb2b36668589c20fcb98c411b85d78f92cd16d9b4a000d9c4125b5f966a5ca777034ae78210e639315b
 SHA512 
f529db9c094f9ae26428bf1fdfcc91c6d783d400980e0f0d802d2cf13c2be2931465ef568907e03841ff76a369a1447e7371f8799d8526edb9a513ba5c6db133
 DIST zstd-1.5.0.tar.gz 1867111 BLAKE2B 
e503d17478b94128eb3ec578178f9d7023e941434dcc07790e12fd6c9933518f34fba5d7795ab7b145e4e499597644a6edd2830106649c5a749c962d5afe2f31
 SHA512 
25b657529a698eec891f92ff4a085d1fd95d2ff938ce52c8a4ff6163eb0b668ec642dd09e0db190652638cd92371006afa01d8e437437762c4097ad301675c33
+DIST zstd-1.5.1.tar.gz 1948539 BLAKE2B 
2f82fb7872c49c41c8ccae17e343825dabceae3070266e49468c2019a1324758b825d7fc1bc3b62602b4d726538260258dc9134fa81d3c5e5085a8a1b531a8c5
 SHA512 
ed8ea0143b7bbd85afdcc8f95d44589a0903cff8375059836ebe577cc4b3ea49c0c756db6a3649655e478377f48b3120ef87dc768fd449bd4bfac786209bfd31

diff --git a/app-arch/zstd/files/zstd-1.5.1-respect-CFLAGS.patch 
b/app-arch/zstd/files/zstd-1.5.1-respect-CFLAGS.patch
new file mode 100644
index ..63f0f47459d9
--- /dev/null
+++ b/app-arch/zstd/files/zstd-1.5.1-respect-CFLAGS.patch
@@ -0,0 +1,11 @@
+--- a/lib/libzstd.mk
 b/lib/libzstd.mk
+@@ -78,8 +78,6 @@ else
+ endif
+   CFLAGS += -fno-stack-protector -fomit-frame-pointer -fno-ident \
+ -DDYNAMIC_BMI2=0 -DNDEBUG
+-else
+-  CFLAGS += -O3
+ endif
+ 
+ DEBUGLEVEL ?= 0

diff --git a/app-arch/zstd/zstd-1.5.1.ebuild b/app-arch/zstd/zstd-1.5.1.ebuild
new file mode 100644
index ..ee5d6e6b7871
--- /dev/null
+++ b/app-arch/zstd/zstd-1.5.1.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multilib-minimal toolchain-funcs
+
+DESCRIPTION="zstd fast compression library"
+HOMEPAGE="https://facebook.github.io/zstd/;
+SRC_URI="https://github.com/facebook/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="|| ( BSD GPL-2 )"
+SLOT="0/1"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="lz4 static-libs +threads"
+
+RDEPEND="app-arch/xz-utils
+   lz4? ( app-arch/lz4 )"
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.5.1-respect-CFLAGS.patch
+)
+
+src_prepare() {
+   default
+   multilib_copy_sources
+}
+
+mymake() {
+   emake \
+   CC="$(tc-getCC)" \
+   CXX="$(tc-getCXX)" \
+   AR="$(tc-getAR)" \
+   PREFIX="${EPREFIX}/usr" \
+   LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
+   V=1 \
+   "${@}"
+}
+
+multilib_src_compile() {
+   local libzstd_targets=( libzstd{,.a}$(usex threads '-mt' '') )
+
+   mymake -C lib ${libzstd_targets[@]} libzstd.pc
+
+   if multilib_is_native_abi ; then
+   mymake HAVE_LZ4="$(usex lz4 1 0)" zstd
+
+   mymake -C contrib/pzstd
+   fi
+}
+
+multilib_src_install() {
+   mymake -C lib DESTDIR="${D}" install
+
+   if multilib_is_native_abi ; then
+   mymake -C programs DESTDIR="${D}" install
+
+   mymake -C contrib/pzstd DESTDIR="${D}" install
+   fi
+}
+
+multilib_src_install_all() {
+   einstalldocs
+
+   if ! use static-libs; then
+   find "${ED}" -name "*.a" -delete || die
+   fi
+}



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

2021-12-21 Thread Sam James
commit: ced6c96a08740d7ae2066b6637301f6f3c5ffd0e
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 02:42:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 02:43:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ced6c96a

media-sound/timidity++: fix automagic libXaw3d dependency

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

 .../{timidity++-2.15.0-r1.ebuild => timidity++-2.15.0-r2.ebuild} | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/media-sound/timidity++/timidity++-2.15.0-r1.ebuild 
b/media-sound/timidity++/timidity++-2.15.0-r2.ebuild
similarity index 96%
rename from media-sound/timidity++/timidity++-2.15.0-r1.ebuild
rename to media-sound/timidity++/timidity++-2.15.0-r2.ebuild
index 786cb1c609b4..df3d0aa774b9 100644
--- a/media-sound/timidity++/timidity++-2.15.0-r1.ebuild
+++ b/media-sound/timidity++/timidity++-2.15.0-r2.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv sparc x86"
-IUSE="alsa ao emacs flac gtk jack motif nas ncurses oss selinux slang speex tk 
vorbis X"
+IUSE="alsa ao emacs flac gtk jack motif nas ncurses oss selinux slang speex tk 
vorbis X Xaw3d"
 
 REQUIRED_USE="tk? ( X )"
 
@@ -36,8 +36,9 @@ DEPEND="
vorbis? ( media-libs/libvorbis )
X? (
media-libs/libpng:0=
-   x11-libs/libXaw
x11-libs/libXext
+   Xaw3d? ( x11-libs/libXaw3d )
+   !Xaw3d? ( x11-libs/libXaw )
)
 "
 
@@ -74,6 +75,9 @@ src_configure() {
export EXTRACFLAGS="${CFLAGS}" #385817
 
local audios
+   # List by preference
+   local xaw_provider=$(usex Xaw3d 'xaw3d' 'xaw')
+
local myeconfargs=(
--localstatedir=/var/state/${PN}
--with-module-dir="${EPREFIX}/usr/share/timidity"
@@ -95,6 +99,7 @@ src_configure() {
$(use_enable gtk)
$(use_enable tk tcltk)
$(use_enable motif)
+   $(use_with Xaw3d xawlib ${xaw_provider})
)
 
use flac && audios+=",flac"



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

2021-12-21 Thread Sam James
commit: f28067fefa26757726ab2d8d6f7883c65b1d8406
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 03:02:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 03:02:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f28067fe

sci-libs/gdal: drop versions

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

 sci-libs/gdal/Manifest |   6 -
 sci-libs/gdal/gdal-3.2.1-r1.ebuild | 309 
 sci-libs/gdal/gdal-3.2.2.ebuild| 316 -
 sci-libs/gdal/gdal-3.2.3.ebuild| 316 -
 sci-libs/gdal/gdal-3.3.0.ebuild| 313 
 sci-libs/gdal/gdal-3.3.1.ebuild| 312 
 sci-libs/gdal/gdal-3.3.2-r1.ebuild | 315 
 7 files changed, 1887 deletions(-)

diff --git a/sci-libs/gdal/Manifest b/sci-libs/gdal/Manifest
index 784a66ee2c9e..339b258265c8 100644
--- a/sci-libs/gdal/Manifest
+++ b/sci-libs/gdal/Manifest
@@ -1,7 +1 @@
-DIST gdal-3.2.1.tar.gz 18953600 BLAKE2B 
b47994849bcf6bc2b2f53daabb85ef99cdc9ce2a06134bc591652bf7e5304d503701d2b07cae520ca71ad6238dd0b073d2034743e59b072fc5eb50c13bc143e6
 SHA512 
152dd97464a8242ea1da7a3a215b1d3326bab5aa4b0884fcab6880da460577c80075f87ea7b9513d796e899e98b40701c0b6a63f1e5275607905480ec547e688
-DIST gdal-3.2.2.tar.gz 18959415 BLAKE2B 
001347ee12c72fe4d9cfa27adb427624f80e5b16eeca01510166e3d74c36eb00da72c27d8582ccda124151143561c29b8e59dc3dd800c474b77991417b33acd1
 SHA512 
d7ff8773d3f1cb894fce89f56a3d4355769f1113eefb1367a3a543ced750e2c42618a4a1deef3a338ddd4d33b7332ae962b2d793f8c0b97e31ed4b84cb2df2d5
-DIST gdal-3.2.3.tar.gz 18970990 BLAKE2B 
9f2ac15b7e9d2df0393d15734030ec4777579aa01fcf2700958228b24fd50d574f3bd438c03e767549614a699c362b31f38cbb0f32ceb8056c9b55fab11ecfec
 SHA512 
985a058a53f676f7d49a96d1a48d4f93c5da8548012bf81345afde03d8044022b210484290bca70c3d7a1ef3b0087d9e17c636b5badd1e0816c1f59b1bf21ee8
-DIST gdal-3.3.0.tar.gz 19572446 BLAKE2B 
afc7ce3c2191fb7607fdf3a01e7ed3e83c601fa063019015f666e0c550e4e42129b8782568f20f97422308f95b4e5c3dbd2311d562b7ec0830635e47e7c931b4
 SHA512 
39505c07aaf4dac587a189a979462101a7acba41e8732031540ebad02e089820658943ebb48c20f4ea56548363033b2db2f03f41c8a91ff5c5997a19b5eb999e
-DIST gdal-3.3.1.tar.gz 19582883 BLAKE2B 
328ba9f3c6a2ecca8583648e5f22469d3fbabf8d8676262a15c6debe718be8329ad3899cbe5397dff2896bc9c2500b60834c6a44cd0f5b670828d86838611f0d
 SHA512 
0eb89502f1cebd5dd899fb8f20571952462c45aba6cee1d62ccc820b2fed5202f6c7e7096bd4ca6c0cfcc2de623f00295097a7e33da6ffa5624dcb8a7a0dc682
-DIST gdal-3.3.2.tar.gz 19593819 BLAKE2B 
ab0919468482d080be9317f7d766ac8b7bd7a534a490a93ee29cab9ea5c68bef3827a256a6d13455d5ee8f4e6cf71a8a42fb173d1543282b04dea59c9378cf22
 SHA512 
ceacd101f770fecad12fec7fea5ba63c2a6d96413bdaa7f460798704fce1ff7a4f20b0b4a0785c195131aa8ee25990239a9e2da6844010b8f0c575f584d9b4a8
 DIST gdal-3.3.3.tar.gz 19600111 BLAKE2B 
2d4558062b35016372d6964884296878fdcef0afa83fb03b10cd902ce101ec52f551d48014d95b391d19b8db13d7ca1d639575b39e9421780f4212bef02dd51f
 SHA512 
c49e4555e598e4182e6419758c31df08d46b8b061480f08be09d61e840057529bd88eaa8c1ecfe1c6a0cc8cd6a073bf15fa6cdae003e4475485cf3851145

diff --git a/sci-libs/gdal/gdal-3.2.1-r1.ebuild 
b/sci-libs/gdal/gdal-3.2.1-r1.ebuild
deleted file mode 100644
index 7bed137263c6..
--- a/sci-libs/gdal/gdal-3.2.1-r1.ebuild
+++ /dev/null
@@ -1,309 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-GENTOO_DEPEND_ON_PERL="no"
-PYTHON_COMPAT=( python3_{7,8,9} )
-DISTUTILS_OPTIONAL=1
-inherit autotools bash-completion-r1 distutils-r1 flag-o-matic java-pkg-opt-2 
perl-module toolchain-funcs
-
-DESCRIPTION="Translator library for raster geospatial data formats (includes 
OGR support)"
-HOMEPAGE="https://gdal.org/;
-SRC_URI="https://download.osgeo.org/${PN}/${PV}/${P}.tar.gz;
-
-SLOT="0/3.2"
-LICENSE="BSD Info-ZIP MIT"
-KEYWORDS="amd64 ~arm arm64 ~ia64 ppc ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos"
-IUSE="armadillo +aux-xml curl debug doc fits geos gif gml hdf5 java jpeg 
jpeg2k lzma mdb mysql netcdf odbc ogdi opencl oracle pdf perl png postgres 
python spatialite sqlite threads webp xls zstd"
-
-REQUIRED_USE="
-   mdb? ( java )
-   python? ( ${PYTHON_REQUIRED_USE} )
-   spatialite? ( sqlite )
-"
-
-BDEPEND="
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )
-   java? (
-   dev-java/ant-core
-   dev-lang/swig:0
-   >=virtual/jdk-1.7:*
-   )
-   perl? ( dev-lang/swig:0 )
-   python? (
-   dev-lang/swig:0
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   )
-"
-DEPEND="
-   dev-libs/expat
-   dev-libs/json-c:=
-   dev-libs/libpcre
-   dev-libs/libxml2:2
-   dev-libs/openssl:=
-   media-libs/tiff
-   >=sci-libs/libgeotiff-1.5.1-r1:=
-   >=sci-libs/proj-6.0.0:=
- 

[gentoo-commits] repo/gentoo:master commit in: media-sound/timidity++/, media-sound/timidity++/files/

2021-12-21 Thread Sam James
commit: a6f0728398f6fe33bfcab8ff6d79a1bbf6b13a10
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 02:46:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 02:46:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6f07283

media-sound/timidity++: add LTO workaround patch

Closes: https://bugs.gentoo.org/763612
Thanks-to: Alexander Miller  gmx.de>
Signed-off-by: Sam James  gentoo.org>

 .../timidity++/files/timidity++-2.15.0-lto-workaround.patch| 10 ++
 media-sound/timidity++/timidity++-2.15.0-r2.ebuild |  1 +
 2 files changed, 11 insertions(+)

diff --git 
a/media-sound/timidity++/files/timidity++-2.15.0-lto-workaround.patch 
b/media-sound/timidity++/files/timidity++-2.15.0-lto-workaround.patch
new file mode 100644
index ..2a9c9e8282e4
--- /dev/null
+++ b/media-sound/timidity++/files/timidity++-2.15.0-lto-workaround.patch
@@ -0,0 +1,10 @@
+https://bugs.gentoo.org/763612
+--- a/timidity/Makefile.am
 b/timidity/Makefile.am
+@@ -480,3 +480,6 @@ $(top_builddir)/utils/libutils.a:
+ 
+ objs: $(timidity_OBJECTS) $(timidity_DEPENDENCIES)
+   @:
++
++# Prevent .symver mixup with buggy alsa headers (global asm vs. LTO 
partitions)
++alsa_a.$(OBJEXT): CFLAGS += -fno-lto

diff --git a/media-sound/timidity++/timidity++-2.15.0-r2.ebuild 
b/media-sound/timidity++/timidity++-2.15.0-r2.ebuild
index df3d0aa774b9..b776c4681ac2 100644
--- a/media-sound/timidity++/timidity++-2.15.0-r2.ebuild
+++ b/media-sound/timidity++/timidity++-2.15.0-r2.ebuild
@@ -64,6 +64,7 @@ PATCHES=(
"${FILESDIR}"/${PN}-2.14.0-configure-flags.patch
"${FILESDIR}"/${PN}-2.15.0-pkg-config.patch
"${FILESDIR}"/${PN}-2.14.0-CVE-2017-1154{6,7}.patch
+   "${FILESDIR}"/${PN}-2.15.0-lto-workaround.patch
 )
 
 src_prepare() {



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

2021-12-21 Thread Sam James
commit: 43161b5fcf0be912493a63bb49b33048ae828f7e
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 03:56:27 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 03:56:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43161b5f

sci-geosciences/qgis: add 3.22.2

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

 sci-geosciences/qgis/Manifest   |   1 +
 sci-geosciences/qgis/qgis-3.22.2.ebuild | 205 
 2 files changed, 206 insertions(+)

diff --git a/sci-geosciences/qgis/Manifest b/sci-geosciences/qgis/Manifest
index 1f703bc557ef..8853bd11ead4 100644
--- a/sci-geosciences/qgis/Manifest
+++ b/sci-geosciences/qgis/Manifest
@@ -1,4 +1,5 @@
 DIST qgis-3.20.3.tar.bz2 133775542 BLAKE2B 
f92273d208d7948bcd1642c994d7dac6b3a1115aaee5738e1974ff0ac38e42432abb18a64e982d46be10dd2dcb9da809b9065bb66c3f353e587a5b7f5544ec91
 SHA512 
abad3eb9774bbe2eaa86d554256a46eb179016f2df849d0c27c96db1bad6b73116c4456b81b176107a459bbf52714ccaf11a79bb9b39641192cd46f188420df0
 DIST qgis-3.22.0.tar.bz2 135469417 BLAKE2B 
54fdd8517e37931dcdc81ef1006859d58d9e60a994a60588109a8337ade68e48710f0f50fe41e6e73c0e095187f00f15209258eb940ea3c80bba4f249d081cd5
 SHA512 
dc214d90c465cc7b8a82196d666b94971d60e64a28e38742aba5cdd86058e27fdf7cc3564bca3b330cf1820c7594d9226576145461db399c458a26ee569e299b
 DIST qgis-3.22.1.tar.bz2 136772144 BLAKE2B 
ba3a5d9db2a487ff10800da0ab12de4b6d3c1dab72e286d0cafef1804429f59e6c80fd05d662e8abadb7216811f3cbe36bb50d54b077a5c4db7cabcb1002a826
 SHA512 
b49fdab97c707a3bd29c2ad288733373d406fe024e07873e6ba28653a9a8882f58115ae346523b2f07011be312e18bf2643c8f0b7979d4ba8ed07dce4579cba9
+DIST qgis-3.22.2.tar.bz2 136903329 BLAKE2B 
b1991944c05a9035dc91ea3fcc252a43da435199cb37c8a03647666f15dfd2367f2990bdddb2a124559993405ff61b4a110e6fa31da10d33411e24b756b9eb30
 SHA512 
6d893217d54483018ab5de06cc11da5da3faf24fb863da57a608429a75f3e1c4647dd809ae1bc0a7034e28296a116c8ebcb528b4886b2714e75654415b2f4c74
 DIST qgis_sample_data-2.8.14.tar.gz 22119181 BLAKE2B 
2d0565e91ec8119382bc9ab8e262dc04227fe8289146794891759ff5a32012245270614ba1119a6329fc45cf56852830c2079589309aa3467873f71f5c608eac
 SHA512 
6b2653d5b57ffc2c2317639dac212429840984ac917ca3e452b39aabb99ea106d1a77c1c1dd967244ef16ede9deae751b170affdf08b72239eafed5b8977da3d

diff --git a/sci-geosciences/qgis/qgis-3.22.2.ebuild 
b/sci-geosciences/qgis/qgis-3.22.2.ebuild
new file mode 100644
index ..af65e82db8df
--- /dev/null
+++ b/sci-geosciences/qgis/qgis-3.22.2.ebuild
@@ -0,0 +1,205 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8,9,10} )
+PYTHON_REQ_USE="sqlite"
+
+if [[ ${PV} = ** ]]; then
+   EGIT_REPO_URI="https://github.com/${PN}/${PN^^}.git;
+   inherit git-r3
+else
+   SRC_URI="https://qgis.org/downloads/${P}.tar.bz2
+   examples? ( 
https://qgis.org/downloads/data/qgis_sample_data.tar.gz -> 
qgis_sample_data-2.8.14.tar.gz )"
+   KEYWORDS="~amd64 ~x86"
+fi
+inherit cmake python-single-r1 xdg
+
+DESCRIPTION="User friendly Geographic Information System"
+HOMEPAGE="https://www.qgis.org/;
+
+LICENSE="GPL-2+ GPL-3+"
+SLOT="0"
+IUSE="3d examples georeferencer grass hdf5 mapserver netcdf opencl oracle 
polar postgres python qml serial"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE} mapserver? ( python )"
+
+# Disabling test suite because upstream disallow running from install path
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/qca:2[qt5(+),ssl]
+   >=dev-db/spatialite-4.2.0
+   dev-db/sqlite:3
+   dev-libs/expat
+   dev-libs/libzip:=
+   dev-libs/protobuf:=
+   dev-libs/qtkeychain[qt5(+)]
+   dev-qt/designer:5
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtpositioning:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtsvg:5
+   dev-qt/qtsql:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtxml:5
+   media-gfx/exiv2:=
+   >=sci-libs/gdal-3.0.4:=[geos]
+   sci-libs/geos
+   sci-libs/libspatialindex:=
+   sys-libs/zlib
+   >=sci-libs/proj-4.9.3:=
+   >=x11-libs/qscintilla-2.10.1:=[qt5(+)]
+   >=x11-libs/qwt-6.1.2:6=[qt5(+),svg]
+   3d? ( dev-qt/qt3d:5 )
+   georeferencer? ( sci-libs/gsl:= )
+   grass? ( =sci-geosciences/grass-7*:= )
+   hdf5? ( sci-libs/hdf5:= )
+   mapserver? ( dev-libs/fcgi )
+   netcdf? ( sci-libs/netcdf:= )
+   opencl? ( virtual/opencl )
+   oracle? (
+   dev-db/oracle-instantclient:=
+   sci-libs/gdal:=[oracle]
+   )
+   polar? ( >=x11-libs/qwtpolar-1.1.1-r1[qt5(+)] )
+   postgres? ( dev-db/postgresql:= )
+   python? (
+   ${PYTHON_DEPS}
+   $(python_gen_cond_dep '
+   dev-python/future[${PYTHON_USEDEP}]
+   dev-python/httplib2[${PYTHON_USEDEP}]
+   

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

2021-12-21 Thread Sam James
commit: b48871811b67831bb9657d653af8b338239adbda
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 03:00:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 03:00:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4887181

media-sound/timidity++: add configure workarounds

- Rename configure.in -> configure.ac
- Avoid dodgy configure tests (written for old autoconf, fragile)

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

 media-sound/timidity++/timidity++-2.15.0-r2.ebuild | 17 -
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/media-sound/timidity++/timidity++-2.15.0-r2.ebuild 
b/media-sound/timidity++/timidity++-2.15.0-r2.ebuild
index b776c4681ac2..f0377e343868 100644
--- a/media-sound/timidity++/timidity++-2.15.0-r2.ebuild
+++ b/media-sound/timidity++/timidity++-2.15.0-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit autotools desktop elisp-common systemd toolchain-funcs xdg
+inherit autotools desktop elisp-common flag-o-matic systemd toolchain-funcs xdg
 
 MY_PV="${PV/_/-}"
 MY_P="TiMidity++-${MY_PV}"
@@ -69,6 +69,9 @@ PATCHES=(
 
 src_prepare() {
default
+
+   mv configure.{in,ac} || die
+
eautoreconf
 }
 
@@ -79,6 +82,18 @@ src_configure() {
# List by preference
local xaw_provider=$(usex Xaw3d 'xaw3d' 'xaw')
 
+   # configure workarounds: configure.in here is written for an old version
+   # of autoconf and upstream seems quite dead.
+   #
+   # 1. Avoid janky configure test breaking
+   # ```checking for sys/wait.h that is POSIX.1 compatible... yes
+   # ./configure: 7995: test: =: unexpected operator```
+   export ac_cv_header_sys_time_h=yes
+   #
+   # 2. And yes, we expect standard header locations (this configure test 
is flaky for us too)
+   # This avoids a bunch of implicit decl. errors which only happen with 
USE=-Xaw3d(?!)
+   append-cppflags -DSTDC_HEADERS
+
local myeconfargs=(
--localstatedir=/var/state/${PN}
--with-module-dir="${EPREFIX}/usr/share/timidity"



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

2021-12-21 Thread Sam James
commit: 0be162f3c68e5d5abc00b4f0a6d131934bc96283
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 02:30:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 02:30:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0be162f3

sys-firmware/sof-firmware: add alsa-lib RDEPEND

Only seems to be needed for 1.9.3 at a quick glance.

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

 .../{sof-firmware-1.9.3.ebuild => sof-firmware-1.9.3-r1.ebuild} | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys-firmware/sof-firmware/sof-firmware-1.9.3.ebuild 
b/sys-firmware/sof-firmware/sof-firmware-1.9.3-r1.ebuild
similarity index 95%
rename from sys-firmware/sof-firmware/sof-firmware-1.9.3.ebuild
rename to sys-firmware/sof-firmware/sof-firmware-1.9.3-r1.ebuild
index 48bb1e61a889..d5f3b2775947 100644
--- a/sys-firmware/sof-firmware/sof-firmware-1.9.3.ebuild
+++ b/sys-firmware/sof-firmware/sof-firmware-1.9.3-r1.ebuild
@@ -12,6 +12,8 @@ LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64"
 
+RDEPEND="media-libs/alsa-lib"
+
 QA_PREBUILT="usr/bin/sof-logger usr/bin/sof-ctl usr/bin/sof-probes"
 
 src_install() {



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

2021-12-21 Thread Sam James
commit: 5fa40cb12b5f387d8b35cbb7c4a2d0877e6293de
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 02:19:52 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 02:19:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fa40cb1

app-arch/zstd: enable verbose build

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

 app-arch/zstd/zstd-1.5.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-arch/zstd/zstd-1.5.0.ebuild b/app-arch/zstd/zstd-1.5.0.ebuild
index f46edb314bdb..8e810dcf9fc1 100644
--- a/app-arch/zstd/zstd-1.5.0.ebuild
+++ b/app-arch/zstd/zstd-1.5.0.ebuild
@@ -30,6 +30,7 @@ mymake() {
AR="$(tc-getAR)" \
PREFIX="${EPREFIX}/usr" \
LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
+   V=1 \
"${@}"
 }
 



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

2021-12-21 Thread Sam James
commit: 465fabf7cf23dbd486ff9592e403b62221c43035
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 02:13:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 02:13:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=465fabf7

dev-python/sphinx-jinja: fix namespace collision

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

 .../{sphinx-jinja-1.2.1.ebuild => sphinx-jinja-1.2.1-r1.ebuild} | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-python/sphinx-jinja/sphinx-jinja-1.2.1.ebuild 
b/dev-python/sphinx-jinja/sphinx-jinja-1.2.1-r1.ebuild
similarity index 79%
rename from dev-python/sphinx-jinja/sphinx-jinja-1.2.1.ebuild
rename to dev-python/sphinx-jinja/sphinx-jinja-1.2.1-r1.ebuild
index c3d3744c15b0..95004b796bcd 100644
--- a/dev-python/sphinx-jinja/sphinx-jinja-1.2.1.ebuild
+++ b/dev-python/sphinx-jinja/sphinx-jinja-1.2.1-r1.ebuild
@@ -21,3 +21,9 @@ KEYWORDS="~amd64"
 RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]"
 
 distutils_enable_tests pytest
+
+python_install() {
+   # Avoid namespace collision: bug #829747
+   rm "${BUILD_DIR}"/lib/sphinxcontrib/__init__.py || die
+   distutils-r1_python_install
+}



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

2021-12-21 Thread Sam James
commit: fd83bb68e51ce29e19bd2ec5e62b4dec5ca21b19
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 00:48:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:48:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd83bb68

app-editors/vim: Stabilize 8.2.3741 sparc, #829396

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

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

diff --git a/app-editors/vim/vim-8.2.3741.ebuild 
b/app-editors/vim/vim-8.2.3741.ebuild
index 11dfc046d203..f24458bbda25 100644
--- a/app-editors/vim/vim-8.2.3741.ebuild
+++ b/app-editors/vim/vim-8.2.3741.ebuild
@@ -19,7 +19,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://dev.gentoo.org/~zlogene/distfiles/app-editors/vim/vim-8.2.0360-gentoo-patches.tar.xz;
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



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

2021-12-21 Thread Sam James
commit: 9f79b8fae51f960e6f49b91e8cffe55edd1a4717
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 00:48:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:48:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f79b8fa

net-libs/mbedtls: Stabilize 2.28.0-r1 sparc, #829713

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

 net-libs/mbedtls/mbedtls-2.28.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/mbedtls/mbedtls-2.28.0-r1.ebuild 
b/net-libs/mbedtls/mbedtls-2.28.0-r1.ebuild
index cd5811a46697..ba87ea3b4a02 100644
--- a/net-libs/mbedtls/mbedtls-2.28.0-r1.ebuild
+++ b/net-libs/mbedtls/mbedtls-2.28.0-r1.ebuild
@@ -12,7 +12,7 @@ S=${WORKDIR}/${PN}-${P}
 
 LICENSE="Apache-2.0"
 SLOT="0/7.14.1" # ffmpeg subslot naming: SONAME tuple of 
{libmbedcrypto.so,libmbedtls.so,libmbedx509.so}
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86"
 IUSE="cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib"
 RESTRICT="!test? ( test )"
 



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

2021-12-21 Thread Sam James
commit: 9bbdd9fdb49dcce5b80500c9867796688db2f978
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 00:48:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:48:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bbdd9fd

app-editors/vim-core: Stabilize 8.2.3741 sparc, #829396

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

 app-editors/vim-core/vim-core-8.2.3741.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-8.2.3741.ebuild 
b/app-editors/vim-core/vim-core-8.2.3741.ebuild
index f550b403c8db..1cb320266849 100644
--- a/app-editors/vim-core/vim-core-8.2.3741.ebuild
+++ b/app-editors/vim-core/vim-core-8.2.3741.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://dev.gentoo.org/~zlogene/distfiles/app-editors/vim/vim-8.2.0360-gentoo-patches.tar.xz;
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 S="${WORKDIR}"/vim-${PV}
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/gvim/

2021-12-21 Thread Sam James
commit: 1c1632fc7c64e29bc312df3461037c1469f7eb47
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 00:48:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:48:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c1632fc

app-editors/gvim: Stabilize 8.2.3741 sparc, #829396

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

 app-editors/gvim/gvim-8.2.3741.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/gvim/gvim-8.2.3741.ebuild 
b/app-editors/gvim/gvim-8.2.3741.ebuild
index 36ddf113d8d2..3d582f441ac2 100644
--- a/app-editors/gvim/gvim-8.2.3741.ebuild
+++ b/app-editors/gvim/gvim-8.2.3741.ebuild
@@ -20,7 +20,7 @@ if [[ ${PV} == * ]]; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://dev.gentoo.org/~zlogene/distfiles/app-editors/vim/vim-8.2.0360-gentoo-patches.tar.xz;
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
 fi
 S="${WORKDIR}"/vim-${PV}
 



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

2021-12-21 Thread Sam James
commit: 7d57662c9028e122ef24f9d21b883ad7cbb2b408
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 00:48:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:48:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d57662c

net-libs/mbedtls: Stabilize 2.16.12 sparc, #829713

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

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

diff --git a/net-libs/mbedtls/mbedtls-2.16.12.ebuild 
b/net-libs/mbedtls/mbedtls-2.16.12.ebuild
index e0d82b9c0b37..7db86d91cc8a 100644
--- a/net-libs/mbedtls/mbedtls-2.16.12.ebuild
+++ b/net-libs/mbedtls/mbedtls-2.16.12.ebuild
@@ -12,7 +12,7 @@ S=${WORKDIR}/${PN}-${P}
 
 LICENSE="Apache-2.0"
 SLOT="0/3.12.0" # ffmpeg subslot naming: SONAME tuple of 
{libmbedcrypto.so,libmbedtls.so,libmbedx509.so}
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc 
~x86"
 IUSE="cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-apache/modsecurity-crs/

2021-12-21 Thread Sam James
commit: 4df79ee759e5b0b0271bb85ea1f3cd3fecbb3407
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 00:45:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:45:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4df79ee7

www-apache/modsecurity-crs: Stabilize 3.3.2 x86, #829741

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

 www-apache/modsecurity-crs/modsecurity-crs-3.3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apache/modsecurity-crs/modsecurity-crs-3.3.2.ebuild 
b/www-apache/modsecurity-crs/modsecurity-crs-3.3.2.ebuild
index 34defae8ee12..a16ae9fa633f 100644
--- a/www-apache/modsecurity-crs/modsecurity-crs-3.3.2.ebuild
+++ b/www-apache/modsecurity-crs/modsecurity-crs-3.3.2.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/coreruleset/coreruleset/archive/v${PV}.tar.gz -> ${P
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND=">=www-apache/mod_security-2.9.1"
 



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

2021-12-21 Thread Sam James
commit: 4b87b10e9ec7f9417674efa42b39d4f94351d7a2
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 00:45:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:45:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b87b10e

dev-python/identify: Stabilize 2.4.0 x86, #829647

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

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

diff --git a/dev-python/identify/identify-2.4.0.ebuild 
b/dev-python/identify/identify-2.4.0.ebuild
index 8c098d2d5998..b891668a58d6 100644
--- a/dev-python/identify/identify-2.4.0.ebuild
+++ b/dev-python/identify/identify-2.4.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/pre-commit/${PN}/archive/refs/tags/v${PV}.tar.gz ->
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~riscv x86"
 
 RDEPEND="
dev-python/ukkonen[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: net-mail/mu/

2021-12-21 Thread Sam James
commit: d8269c643c980a1eb39721fda52aa9541724892e
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 00:45:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:45:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8269c64

net-mail/mu: Stabilize 1.6.10 x86, #829781

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

 net-mail/mu/mu-1.6.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/mu/mu-1.6.10.ebuild b/net-mail/mu/mu-1.6.10.ebuild
index 5e48dc984dd4..f0d641e2507e 100644
--- a/net-mail/mu/mu-1.6.10.ebuild
+++ b/net-mail/mu/mu-1.6.10.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/djcb/mu/releases/download/${PV}/mu-${PV}.tar.xz;
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~x86 ~x64-macos"
+KEYWORDS="amd64 ~arm ~arm64 x86 ~x64-macos"
 IUSE="emacs guile readline"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-apache/mod_security/

2021-12-21 Thread Sam James
commit: 08981e8a04e4601931df4d3d035d7d11559bc7f4
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 00:45:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:45:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08981e8a

www-apache/mod_security: Stabilize 2.9.5 x86, #829741

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

 www-apache/mod_security/mod_security-2.9.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apache/mod_security/mod_security-2.9.5.ebuild 
b/www-apache/mod_security/mod_security-2.9.5.ebuild
index fd9e46406b5a..03b2d414b760 100644
--- a/www-apache/mod_security/mod_security-2.9.5.ebuild
+++ b/www-apache/mod_security/mod_security-2.9.5.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/SpiderLabs/ModSecurity/releases/download/v${PV}/${MY
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="doc fuzzyhash geoip jit json lua mlogc"
 
 REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )"



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

2021-12-21 Thread Sam James
commit: 481b5dd1a2e9deafaf1e0125e42b4b4638b0738d
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 00:45:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:45:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=481b5dd1

dev-python/ukkonen: Stabilize 1.0.1 x86, #829647

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

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

diff --git a/dev-python/ukkonen/ukkonen-1.0.1.ebuild 
b/dev-python/ukkonen/ukkonen-1.0.1.ebuild
index b4dd88dcdc60..1fbfd7a8edd0 100644
--- a/dev-python/ukkonen/ukkonen-1.0.1.ebuild
+++ b/dev-python/ukkonen/ukkonen-1.0.1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~riscv x86"
 
 RDEPEND="
$(python_gen_cond_dep '



[gentoo-commits] repo/gentoo:master commit in: www-apache/modsecurity-crs/

2021-12-21 Thread Sam James
commit: 3b653b6a5664c4097e5e3d5a504872a83dbfb711
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 00:44:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:44:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b653b6a

www-apache/modsecurity-crs: Stabilize 3.3.2 amd64, #829741

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

 www-apache/modsecurity-crs/modsecurity-crs-3.3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apache/modsecurity-crs/modsecurity-crs-3.3.2.ebuild 
b/www-apache/modsecurity-crs/modsecurity-crs-3.3.2.ebuild
index 474da42098e7..34defae8ee12 100644
--- a/www-apache/modsecurity-crs/modsecurity-crs-3.3.2.ebuild
+++ b/www-apache/modsecurity-crs/modsecurity-crs-3.3.2.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/coreruleset/coreruleset/archive/v${PV}.tar.gz -> ${P
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND=">=www-apache/mod_security-2.9.1"
 



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

2021-12-21 Thread Sam James
commit: 2c6a881c69165461d3f97f4e45f10cbbe9fa705d
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 00:44:07 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:44:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c6a881c

dev-python/ukkonen: Stabilize 1.0.1 amd64, #829647

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

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

diff --git a/dev-python/ukkonen/ukkonen-1.0.1.ebuild 
b/dev-python/ukkonen/ukkonen-1.0.1.ebuild
index bd7bbdbacc80..b4dd88dcdc60 100644
--- a/dev-python/ukkonen/ukkonen-1.0.1.ebuild
+++ b/dev-python/ukkonen/ukkonen-1.0.1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
 
 RDEPEND="
$(python_gen_cond_dep '



[gentoo-commits] repo/gentoo:master commit in: www-apache/mod_security/

2021-12-21 Thread Sam James
commit: 8301691c6158cda46edf277b8aa8662934a7d4db
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 00:44:03 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:44:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8301691c

www-apache/mod_security: Stabilize 2.9.5 amd64, #829741

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

 www-apache/mod_security/mod_security-2.9.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apache/mod_security/mod_security-2.9.5.ebuild 
b/www-apache/mod_security/mod_security-2.9.5.ebuild
index 945d55701340..fd9e46406b5a 100644
--- a/www-apache/mod_security/mod_security-2.9.5.ebuild
+++ b/www-apache/mod_security/mod_security-2.9.5.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/SpiderLabs/ModSecurity/releases/download/v${PV}/${MY
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="doc fuzzyhash geoip jit json lua mlogc"
 
 REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )"



[gentoo-commits] repo/gentoo:master commit in: net-mail/mu/

2021-12-21 Thread Sam James
commit: c1dfc29338cde507643a3143dc999c8be1f8d5de
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 00:44:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:44:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1dfc293

net-mail/mu: Stabilize 1.6.10 amd64, #829781

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

 net-mail/mu/mu-1.6.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/mu/mu-1.6.10.ebuild b/net-mail/mu/mu-1.6.10.ebuild
index 10dba93b30d6..5e48dc984dd4 100644
--- a/net-mail/mu/mu-1.6.10.ebuild
+++ b/net-mail/mu/mu-1.6.10.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/djcb/mu/releases/download/${PV}/mu-${PV}.tar.xz;
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~x64-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~x86 ~x64-macos"
 IUSE="emacs guile readline"
 
 DEPEND="



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

2021-12-21 Thread Sam James
commit: 9bc3ebc4e86a8118bbc7216a1944cd8925aaa333
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 22 00:44:08 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:44:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bc3ebc4

dev-python/identify: Stabilize 2.4.0 amd64, #829647

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

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

diff --git a/dev-python/identify/identify-2.4.0.ebuild 
b/dev-python/identify/identify-2.4.0.ebuild
index 0fe03247231d..8c098d2d5998 100644
--- a/dev-python/identify/identify-2.4.0.ebuild
+++ b/dev-python/identify/identify-2.4.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/pre-commit/${PN}/archive/refs/tags/v${PV}.tar.gz ->
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
 
 RDEPEND="
dev-python/ukkonen[${PYTHON_USEDEP}]"



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

2021-12-21 Thread Sam James
commit: fbeaf2f7aac7a8bcb358d0c732f164eb126c3809
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Dec 21 08:43:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:41:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbeaf2f7

dev-libs/jsoncpp: stable 1.9.5 for hppa, bug #829554

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-libs/jsoncpp/jsoncpp-1.9.5.ebuild 
b/dev-libs/jsoncpp/jsoncpp-1.9.5.ebuild
index 0ab0dd80b65b..f00d5b8f1921 100644
--- a/dev-libs/jsoncpp/jsoncpp-1.9.5.ebuild
+++ b/dev-libs/jsoncpp/jsoncpp-1.9.5.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="|| ( public-domain MIT )"
 SLOT="0/25"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="doc test"
 RESTRICT="!test? ( test )"
 



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

2021-12-21 Thread Sam James
commit: 26e7382699eb84b82b8a258e7e6b8990bdaaac17
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Dec 21 08:44:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:41:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26e73826

dev-libs/gmp: stable 6.2.1-r2 for hppa, bug #829387

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 dev-libs/gmp/gmp-6.2.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/gmp/gmp-6.2.1-r2.ebuild b/dev-libs/gmp/gmp-6.2.1-r2.ebuild
index c7ef5a043399..9911396d0077 100644
--- a/dev-libs/gmp/gmp-6.2.1-r2.ebuild
+++ b/dev-libs/gmp/gmp-6.2.1-r2.ebuild
@@ -21,7 +21,7 @@ SRC_URI+=" 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-arm64-da
 LICENSE="|| ( LGPL-3+ GPL-2+ )"
 # The subslot reflects the C & C++ SONAMEs.
 SLOT="0/10.4"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="+asm doc +cxx pic static-libs"
 
 BDEPEND="sys-devel/m4



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

2021-12-21 Thread Sam James
commit: 4029c97bc51e19c21191b0b61ec481d36908a9e8
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Dec 21 08:45:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:41:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4029c97b

dev-util/shadowman: stable 3 for hppa, bug #829557

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-util/shadowman/shadowman-3.ebuild 
b/dev-util/shadowman/shadowman-3.ebuild
index 3a15ee351035..a82abe5d8b80 100644
--- a/dev-util/shadowman/shadowman-3.ebuild
+++ b/dev-util/shadowman/shadowman-3.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/mgorny/shadowman/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
 IUSE=""
 
 RDEPEND="app-admin/eselect"



[gentoo-commits] repo/gentoo:master commit in: app-editors/nano/

2021-12-21 Thread Sam James
commit: 7551db112f3d2aedd6c97acdb3098e92d8d7bd9c
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Dec 21 08:44:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 22 00:41:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7551db11

app-editors/nano: stable 5.9 for hppa, bug #829567

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 app-editors/nano/nano-5.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/nano/nano-5.9.ebuild b/app-editors/nano/nano-5.9.ebuild
index 5869422dd150..92f76e20465c 100644
--- a/app-editors/nano/nano-5.9.ebuild
+++ b/app-editors/nano/nano-5.9.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == "" ]] ; then
 else
MY_P="${PN}-${PV/_}"
SRC_URI="https://www.nano-editor.org/dist/v${PV:0:1}/${MY_P}.tar.gz;
-   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"
 fi
 
 DESCRIPTION="GNU GPL'd Pico clone with more functionality"



[gentoo-commits] repo/gentoo:master commit in: app-emulation/qemu/files/, app-emulation/qemu/

2021-12-21 Thread John Helmert III
commit: 0ad99be8a35aff4afc249dd3b596b2eed6b5c884
Author: John Helmert III  gentoo  org>
AuthorDate: Tue Dec 21 23:29:36 2021 +
Commit: John Helmert III  gentoo  org>
CommitDate: Tue Dec 21 23:42:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ad99be8

app-emulation/qemu: fix unix socket path copy

This adds a patch of upstream commit
118d527f2e4baec5fe8060b22a6212468b8e4d3f. It is included in 6.2.0, but
fixes a 6.1.0 regression, so committing straight to stable.

Signed-off-by: John Helmert III  gentoo.org>

 .../files/qemu-6.1.0-fix-unix-socket-copy.patch| 76 ++
 .../{qemu-6.1.0-r2.ebuild => qemu-6.1.0-r3.ebuild} |  1 +
 2 files changed, 77 insertions(+)

diff --git a/app-emulation/qemu/files/qemu-6.1.0-fix-unix-socket-copy.patch 
b/app-emulation/qemu/files/qemu-6.1.0-fix-unix-socket-copy.patch
new file mode 100644
index ..7701b26b4f9a
--- /dev/null
+++ b/app-emulation/qemu/files/qemu-6.1.0-fix-unix-socket-copy.patch
@@ -0,0 +1,76 @@
+commit 118d527f2e4baec5fe8060b22a6212468b8e4d3f
+Author: Michael Tokarev 
+Date:   Wed Sep 1 16:16:24 2021 +0300
+
+qemu-sockets: fix unix socket path copy (again)
+
+Commit 4cfd970ec188558daa6214f26203fe553fb1e01f added an
+assert which ensures the path within an address of a unix
+socket returned from the kernel is at least one byte and
+does not exceed sun_path buffer. Both of this constraints
+are wrong:
+
+A unix socket can be unnamed, in this case the path is
+completely empty (not even \0)
+
+And some implementations (notable linux) can add extra
+trailing byte (\0) _after_ the sun_path buffer if we
+passed buffer larger than it (and we do).
+
+So remove the assertion (since it causes real-life breakage)
+but at the same time fix the usage of sun_path. Namely,
+we should not access sun_path[0] if kernel did not return
+it at all (this is the case for unnamed sockets),
+and use the returned salen when copyig actual path as an
+upper constraint for the amount of bytes to copy - this
+will ensure we wont exceed the information provided by
+the kernel, regardless whenever there is a trailing \0
+or not. This also helps with unnamed sockets.
+
+Note the case of abstract socket, the sun_path is actually
+a blob and can contain \0 characters, - it should not be
+passed to g_strndup and the like, it should be accessed by
+memcpy-like functions.
+
+Fixes: 4cfd970ec188558daa6214f26203fe553fb1e01f
+Fixes: http://bugs.debian.org/993145
+Signed-off-by: Michael Tokarev 
+Reviewed-by: Daniel P. Berrangé 
+Reviewed-by: Marc-André Lureau 
+CC: qemu-sta...@nongnu.org
+
+diff --git a/util/qemu-sockets.c b/util/qemu-sockets.c
+index f2f3676d1f..c5043999e9 100644
+--- a/util/qemu-sockets.c
 b/util/qemu-sockets.c
+@@ -1345,25 +1345,22 @@ socket_sockaddr_to_address_unix(struct 
sockaddr_storage *sa,
+ SocketAddress *addr;
+ struct sockaddr_un *su = (struct sockaddr_un *)sa;
+ 
+-assert(salen >= sizeof(su->sun_family) + 1 &&
+-   salen <= sizeof(struct sockaddr_un));
+-
+ addr = g_new0(SocketAddress, 1);
+ addr->type = SOCKET_ADDRESS_TYPE_UNIX;
++salen -= offsetof(struct sockaddr_un, sun_path);
+ #ifdef CONFIG_LINUX
+-if (!su->sun_path[0]) {
++if (salen > 0 && !su->sun_path[0]) {
+ /* Linux abstract socket */
+-addr->u.q_unix.path = g_strndup(su->sun_path + 1,
+-salen - sizeof(su->sun_family) - 1);
++addr->u.q_unix.path = g_strndup(su->sun_path + 1, salen - 1);
+ addr->u.q_unix.has_abstract = true;
+ addr->u.q_unix.abstract = true;
+ addr->u.q_unix.has_tight = true;
+-addr->u.q_unix.tight = salen < sizeof(*su);
++addr->u.q_unix.tight = salen < sizeof(su->sun_path);
+ return addr;
+ }
+ #endif
+ 
+-addr->u.q_unix.path = g_strndup(su->sun_path, sizeof(su->sun_path));
++addr->u.q_unix.path = g_strndup(su->sun_path, salen);
+ return addr;
+ }
+ #endif /* WIN32 */

diff --git a/app-emulation/qemu/qemu-6.1.0-r2.ebuild 
b/app-emulation/qemu/qemu-6.1.0-r3.ebuild
similarity index 99%
rename from app-emulation/qemu/qemu-6.1.0-r2.ebuild
rename to app-emulation/qemu/qemu-6.1.0-r3.ebuild
index b91f85e5d967..8d2ca068f00d 100644
--- a/app-emulation/qemu/qemu-6.1.0-r2.ebuild
+++ b/app-emulation/qemu/qemu-6.1.0-r3.ebuild
@@ -277,6 +277,7 @@ PATCHES=(
"${FILESDIR}"/${PN}-5.2.0-disable-keymap.patch
"${FILESDIR}"/${PN}-6.0.0-make.patch
"${FILESDIR}"/${PN}-6.1.0-strings.patch
+   "${FILESDIR}"/${P}-fix-unix-socket-copy.patch
"${FILESDIR}"/${P}-automagic-libbpf.patch
"${FILESDIR}"/${P}-data-corruption.patch
 )



[gentoo-commits] repo/proj/guru:dev commit in: games-util/legendary/

2021-12-21 Thread Ronny Gutbrod
commit: c9814033f0a511c30427e9c6829073a377bfdb8e
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Tue Dec 21 23:40:18 2021 +
Commit: Ronny Gutbrod  tastytea  de>
CommitDate: Tue Dec 21 23:40:18 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c9814033

games-util/legendary: Remove old ebuilds

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

 games-util/legendary/Manifest |  2 --
 games-util/legendary/legendary-0.20.17.ebuild | 30 ---
 games-util/legendary/legendary-0.20.21.ebuild | 30 ---
 3 files changed, 62 deletions(-)

diff --git a/games-util/legendary/Manifest b/games-util/legendary/Manifest
index cd0e4479d..5aee2d02a 100644
--- a/games-util/legendary/Manifest
+++ b/games-util/legendary/Manifest
@@ -1,4 +1,2 @@
-DIST legendary-0.20.17.tar.gz 105244 BLAKE2B 
5313a6ffa732d159debb4e9bbaa7d4d60a3ce1ada694133224ed9fe12cf885f38f4fc078fc518f364a44e26c3e804952c1ab671c63cab669f3341c0507f3b845
 SHA512 
7fe89f1d286d7bf2a3dc1948758020b9c298d549164812a09ef7ff1e683672ea2d3311b215f7862a060ba74537a12b8178a2f71e1f6899cebbc3b6afbe6a7b5d
 DIST legendary-0.20.18.tar.gz 105531 BLAKE2B 
f321ae20c2d4207df5027ab95a31d7aab3673f38037c2a4a6ea07af999f5471bce1e790836d551f4109a600f6eba9b223db768046c937a05250c9a020b55d2e7
 SHA512 
25720fc5eee42c180f084a5cc2543c344608a0831bcf4d987d288544ea8164adc48d3c964ffe12fab4967d25a2a3285f3743233c6bf3e94c8934b167756dca15
-DIST legendary-0.20.21.tar.gz 111863 BLAKE2B 
fabfbf88d3fffb8077306b99a98718c771e2a96c12599138354bbb7b75a00e9fe2d25ea1984308c77c8a1238d8d74d23f900b4735f1e2c9441bc4d6c31e6ca1c
 SHA512 
ce25c69f8c5bb5281a6cc0ccb89d3866179778a5305e12061c02711322ad72bc2b25ba8960dc78a8280a3ff738c97ad9f55e6ae041bcd79876a12d76df758be9
 DIST legendary-0.20.22.tar.gz 111877 BLAKE2B 
c8e13b18a0c56f115de9518e85aed5ae14bbbf8437485de3f8d935dd343dd984c5f59a0cb45ff574c4c59d762a17226bc9d0c85c9e291a1886560bf8daf123b4
 SHA512 
23c523a14316b416cfdc035044740a94eab8f05e610638a2d0500f1218b2ce9f0b02163593f2f5b6e97b0fb91d1cf97bc56b275e30502af3b0cc2bc6eee6a175

diff --git a/games-util/legendary/legendary-0.20.17.ebuild 
b/games-util/legendary/legendary-0.20.17.ebuild
deleted file mode 100644
index 42ccdcc71..0
--- a/games-util/legendary/legendary-0.20.17.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9,10} )
-DISTUTILS_SINGLE_IMPL=1
-DISTUTILS_USE_SETUPTOOLS="bdepend"
-
-inherit distutils-r1
-
-DESCRIPTION="A free and open-source replacement for the Epic Games Launcher"
-HOMEPAGE="https://github.com/derrod/legendary;
-SRC_URI="https://github.com/derrod/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="webview"
-
-# NOTE: dev-python/pywebview[qt5] is not much tested and does not function
-# correctly in some cases, according to release notes for 0.20.16.
-RDEPEND="
-   $(python_gen_cond_dep '
-   https://github.com/derrod/legendary;
-SRC_URI="https://github.com/derrod/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="webview"
-
-# NOTE: dev-python/pywebview[qt5] is not much tested and does not function
-# correctly in some cases, according to release notes for 0.20.16.
-RDEPEND="
-   $(python_gen_cond_dep '
-   

[gentoo-commits] repo/proj/guru:dev commit in: games-util/legendary/

2021-12-21 Thread Ronny Gutbrod
commit: fcedeceeb92fd7819719b1ec5d90df44622e2dc5
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Tue Dec 21 23:38:59 2021 +
Commit: Ronny Gutbrod  tastytea  de>
CommitDate: Tue Dec 21 23:38:59 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fcedecee

games-util/legendary: Version bump 0.20.22

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

 games-util/legendary/Manifest |  1 +
 games-util/legendary/legendary-0.20.22.ebuild | 30 +++
 2 files changed, 31 insertions(+)

diff --git a/games-util/legendary/Manifest b/games-util/legendary/Manifest
index 1735a17c5..cd0e4479d 100644
--- a/games-util/legendary/Manifest
+++ b/games-util/legendary/Manifest
@@ -1,3 +1,4 @@
 DIST legendary-0.20.17.tar.gz 105244 BLAKE2B 
5313a6ffa732d159debb4e9bbaa7d4d60a3ce1ada694133224ed9fe12cf885f38f4fc078fc518f364a44e26c3e804952c1ab671c63cab669f3341c0507f3b845
 SHA512 
7fe89f1d286d7bf2a3dc1948758020b9c298d549164812a09ef7ff1e683672ea2d3311b215f7862a060ba74537a12b8178a2f71e1f6899cebbc3b6afbe6a7b5d
 DIST legendary-0.20.18.tar.gz 105531 BLAKE2B 
f321ae20c2d4207df5027ab95a31d7aab3673f38037c2a4a6ea07af999f5471bce1e790836d551f4109a600f6eba9b223db768046c937a05250c9a020b55d2e7
 SHA512 
25720fc5eee42c180f084a5cc2543c344608a0831bcf4d987d288544ea8164adc48d3c964ffe12fab4967d25a2a3285f3743233c6bf3e94c8934b167756dca15
 DIST legendary-0.20.21.tar.gz 111863 BLAKE2B 
fabfbf88d3fffb8077306b99a98718c771e2a96c12599138354bbb7b75a00e9fe2d25ea1984308c77c8a1238d8d74d23f900b4735f1e2c9441bc4d6c31e6ca1c
 SHA512 
ce25c69f8c5bb5281a6cc0ccb89d3866179778a5305e12061c02711322ad72bc2b25ba8960dc78a8280a3ff738c97ad9f55e6ae041bcd79876a12d76df758be9
+DIST legendary-0.20.22.tar.gz 111877 BLAKE2B 
c8e13b18a0c56f115de9518e85aed5ae14bbbf8437485de3f8d935dd343dd984c5f59a0cb45ff574c4c59d762a17226bc9d0c85c9e291a1886560bf8daf123b4
 SHA512 
23c523a14316b416cfdc035044740a94eab8f05e610638a2d0500f1218b2ce9f0b02163593f2f5b6e97b0fb91d1cf97bc56b275e30502af3b0cc2bc6eee6a175

diff --git a/games-util/legendary/legendary-0.20.22.ebuild 
b/games-util/legendary/legendary-0.20.22.ebuild
new file mode 100644
index 0..42ccdcc71
--- /dev/null
+++ b/games-util/legendary/legendary-0.20.22.ebuild
@@ -0,0 +1,30 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9,10} )
+DISTUTILS_SINGLE_IMPL=1
+DISTUTILS_USE_SETUPTOOLS="bdepend"
+
+inherit distutils-r1
+
+DESCRIPTION="A free and open-source replacement for the Epic Games Launcher"
+HOMEPAGE="https://github.com/derrod/legendary;
+SRC_URI="https://github.com/derrod/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="webview"
+
+# NOTE: dev-python/pywebview[qt5] is not much tested and does not function
+# correctly in some cases, according to release notes for 0.20.16.
+RDEPEND="
+   $(python_gen_cond_dep '
+   

[gentoo-commits] repo/gentoo:master commit in: dev-ada/gprbuild/files/, dev-ada/gprbuild/

2021-12-21 Thread Alfredo Tupone
commit: f62537c112bcf92c8e243e06a4b0a109b5c631d1
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Tue Dec 21 21:50:00 2021 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Tue Dec 21 21:50:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f62537c1

dev-ada/gprbuild: use ${CHOST}-nm

Closes: https://bugs.gentoo.org/829656
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-ada/gprbuild/files/gprbuild-2021-nm.patch  | 11 
 dev-ada/gprbuild/files/gprbuild-22.0.0-nm.patch| 11 
 ...build-22.0.0.ebuild => gprbuild-2021-r2.ebuild} | 33 ++
 ...ild-22.0.0.ebuild => gprbuild-22.0.0-r1.ebuild} |  5 +++-
 4 files changed, 41 insertions(+), 19 deletions(-)

diff --git a/dev-ada/gprbuild/files/gprbuild-2021-nm.patch 
b/dev-ada/gprbuild/files/gprbuild-2021-nm.patch
new file mode 100644
index ..2bf41a8e1b07
--- /dev/null
+++ b/dev-ada/gprbuild/files/gprbuild-2021-nm.patch
@@ -0,0 +1,11 @@
+--- a/share/gprconfig/linker.xml   2021-12-21 21:36:45.306813518 +0100
 b/share/gprconfig/linker.xml   2021-12-21 22:20:21.642668870 +0100
+@@ -128,7 +128,7 @@
+   
+ 
+ 
+-   for Object_Lister use ("nm", "-g");
++   for Object_Lister use ("${HOST(Ada)}-nm", "-g");
+for Object_Lister_Matcher use " [TDRB] (.*)";
+ 
+LDFLAGS := External_As_List ("LDFLAGS", " ");

diff --git a/dev-ada/gprbuild/files/gprbuild-22.0.0-nm.patch 
b/dev-ada/gprbuild/files/gprbuild-22.0.0-nm.patch
new file mode 100644
index ..4455e8befffa
--- /dev/null
+++ b/dev-ada/gprbuild/files/gprbuild-22.0.0-nm.patch
@@ -0,0 +1,11 @@
+--- a/share/gprconfig/linker.xml   2021-12-21 22:36:01.054738486 +0100
 b/share/gprconfig/linker.xml   2021-12-21 22:36:59.973738600 +0100
+@@ -128,7 +128,7 @@
+   
+ 
+ 
+-   for Object_Lister use ("nm", "-g");
++   for Object_Lister use ("${HOST(Ada)}-nm", "-g");
+for Object_Lister_Matcher use " [TDRB] (.*)";
+ 
+package Linker is

diff --git a/dev-ada/gprbuild/gprbuild-22.0.0.ebuild 
b/dev-ada/gprbuild/gprbuild-2021-r2.ebuild
similarity index 71%
copy from dev-ada/gprbuild/gprbuild-22.0.0.ebuild
copy to dev-ada/gprbuild/gprbuild-2021-r2.ebuild
index 6de6ca467e32..40a16cb9b2d4 100644
--- a/dev-ada/gprbuild/gprbuild-22.0.0.ebuild
+++ b/dev-ada/gprbuild/gprbuild-2021-r2.ebuild
@@ -3,22 +3,21 @@
 
 EAPI=7
 
-ADA_COMPAT=( gnat_2021 )
+ADA_COMPAT=( gnat_202{0..1} )
 
 inherit ada multiprocessing
 
-XMLADA=xmlada-${PV}
-GPRCONFIG_KB=gprconfig_kb-${PV}
+MYP=${P}-${PV}0519-19A34-src
+ID=23a77a37247ff811609e23a0a271f445c299fc8f
+XMLADA=xmlada-${PV}-${PV}0518-19D50-src
+XMLADAID=6a2cf72f308cc787926b12ddc20993fcf2b8ea79
+ADAMIRROR=https://community.download.adacore.com/v1
 
 DESCRIPTION="Multi-Language Management"
 HOMEPAGE="http://libre.adacore.com/;
 SRC_URI="
-   https://github.com/AdaCore/${PN}/archive/refs/tags/v${PV}.tar.gz
-   -> ${P}.tar.gz
-   https://github.com/AdaCore/xmlada/archive/refs/tags/v${PV}.tar.gz
-   -> ${XMLADA}.tar.gz
-   https://github.com/AdaCore/gprconfig_kb/archive/refs/tags/v${PV}.tar.gz
-   -> ${GPRCONFIG_KB}.tar.gz"
+   ${ADAMIRROR}/${ID}?filename=${MYP}.tar.gz -> ${MYP}.tar.gz
+   ${ADAMIRROR}/${XMLADAID}?filename=${XMLADA}.tar.gz -> ${XMLADA}.tar.gz"
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
@@ -27,16 +26,15 @@ IUSE=""
 DEPEND="${ADA_DEPS}"
 RDEPEND="${DEPEND}"
 
+S="${WORKDIR}"/${MYP}
+
 REQUIRED_USE="${ADA_REQUIRED_USE}"
-PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
+PATCHES=(
+   "${FILESDIR}"/${P}-gentoo.patch
+   "${FILESDIR}"/${P}-nm.patch
+)
 
 src_prepare() {
-   kb_src=../${GPRCONFIG_KB}
-
-   # Install the gprconfig knowledge base
-   rm -rf share/gprconfig
-   cp -r "$kb_src"/db share/gprconfig || die
-
default
sed -i \
-e "s:@VER@:${GCC_PV}:g" \
@@ -75,8 +73,7 @@ src_install() {
exeinto /usr/libexec/gprbuild
doexe ${lib_progs}
insinto /usr/share/gprconfig
-   doins share/gprconfig/*.xml
-   doins share/gprconfig/*.ent
+   doins share/gprconfig/*
insinto /usr/share/gpr
doins share/_default.gpr
einstalldocs

diff --git a/dev-ada/gprbuild/gprbuild-22.0.0.ebuild 
b/dev-ada/gprbuild/gprbuild-22.0.0-r1.ebuild
similarity index 96%
rename from dev-ada/gprbuild/gprbuild-22.0.0.ebuild
rename to dev-ada/gprbuild/gprbuild-22.0.0-r1.ebuild
index 6de6ca467e32..2a07d5e4d71d 100644
--- a/dev-ada/gprbuild/gprbuild-22.0.0.ebuild
+++ b/dev-ada/gprbuild/gprbuild-22.0.0-r1.ebuild
@@ -28,7 +28,10 @@ DEPEND="${ADA_DEPS}"
 RDEPEND="${DEPEND}"
 
 REQUIRED_USE="${ADA_REQUIRED_USE}"
-PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
+PATCHES=(
+   "${FILESDIR}"/${P}-gentoo.patch
+   "${FILESDIR}"/${P}-nm.patch
+)
 
 src_prepare() {
kb_src=../${GPRCONFIG_KB}



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

2021-12-21 Thread Agostino Sarubbo
commit: b88c2049f3b25a45295654dcb2bc0a94dabaa005
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Dec 21 21:47:01 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Dec 21 21:47:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b88c2049

app-admin/exo: version bump to 1.49.2

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-admin/exo/Manifest  |  1 +
 app-admin/exo/exo-1.49.2.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/app-admin/exo/Manifest b/app-admin/exo/Manifest
index 9232d09acf9d..90a074b01aac 100644
--- a/app-admin/exo/Manifest
+++ b/app-admin/exo/Manifest
@@ -1 +1,2 @@
 DIST exo-1.49.1.tar.gz 5560772 BLAKE2B 
79856f48cada0edb0b36ce95993ed1abfb193efd0bf484fd2ea538bc0b9da84406564d4f7b7896a1f6d1ee09606a0baa2efc1fa417b7935ff4762c536229bd7c
 SHA512 
f52e39c51d97cf4026f0788aa8d15f19251a41fa210c6728bc79d022c9fe64346fd4bae35c8c7fbde2227285fc1abf949d785c7cef451f975d3dd61e5830f854
+DIST exo-1.49.2.tar.gz 5560650 BLAKE2B 
1fe332c26f39c792aa1c49f324ebd898d8481edc846356968adfeba6ccf807e5d4d169be6ed68f990adbb8f9f833fc68dae8236a8b0ea2c75ca7750517ba5530
 SHA512 
57a4c0f6b077526ee165cf0b8a7d38a0dbede3a10d5b78ec938c8e3fdd60623fda5ba4d795def5ef81d7d917910ab21999c8c8d4c9ef49a07508375d50eb6d4f

diff --git a/app-admin/exo/exo-1.49.2.ebuild b/app-admin/exo/exo-1.49.2.ebuild
new file mode 100644
index ..49b1772f318b
--- /dev/null
+++ b/app-admin/exo/exo-1.49.2.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Command-line tool for everything at Exoscale: compute, storage, 
dns."
+HOMEPAGE="https://github.com/exoscale/cli;
+SRC_URI="https://github.com/exoscale/cli/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE=""
+DEPEND="dev-lang/go:="
+RESTRICT="strip"
+QA_FLAGS_IGNORED=".*"
+
+S="${WORKDIR}/cli-${PV}"
+
+src_compile() {
+   go build -mod vendor -o ${PN} || die "build failed"
+}
+
+src_test() {
+   # run at least 'exo version' for test
+   ./exo version > /dev/null 2>&1
+   if [[ $? -ne 0 ]]
+   then
+   die "Test failed"
+   fi
+}
+
+src_install() {
+   dobin ${PN}
+}



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

2021-12-21 Thread Agostino Sarubbo
commit: 4c0a3e395bb9948312f5c483ee2d00359f1532e4
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Dec 21 21:47:04 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Dec 21 21:47:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c0a3e39

app-admin/exo: remove old

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-admin/exo/Manifest  |  1 -
 app-admin/exo/exo-1.49.1.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/app-admin/exo/Manifest b/app-admin/exo/Manifest
index 90a074b01aac..c1d034ebbb4c 100644
--- a/app-admin/exo/Manifest
+++ b/app-admin/exo/Manifest
@@ -1,2 +1 @@
-DIST exo-1.49.1.tar.gz 5560772 BLAKE2B 
79856f48cada0edb0b36ce95993ed1abfb193efd0bf484fd2ea538bc0b9da84406564d4f7b7896a1f6d1ee09606a0baa2efc1fa417b7935ff4762c536229bd7c
 SHA512 
f52e39c51d97cf4026f0788aa8d15f19251a41fa210c6728bc79d022c9fe64346fd4bae35c8c7fbde2227285fc1abf949d785c7cef451f975d3dd61e5830f854
 DIST exo-1.49.2.tar.gz 5560650 BLAKE2B 
1fe332c26f39c792aa1c49f324ebd898d8481edc846356968adfeba6ccf807e5d4d169be6ed68f990adbb8f9f833fc68dae8236a8b0ea2c75ca7750517ba5530
 SHA512 
57a4c0f6b077526ee165cf0b8a7d38a0dbede3a10d5b78ec938c8e3fdd60623fda5ba4d795def5ef81d7d917910ab21999c8c8d4c9ef49a07508375d50eb6d4f

diff --git a/app-admin/exo/exo-1.49.1.ebuild b/app-admin/exo/exo-1.49.1.ebuild
deleted file mode 100644
index 49b1772f318b..
--- a/app-admin/exo/exo-1.49.1.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
-
-DESCRIPTION="Command-line tool for everything at Exoscale: compute, storage, 
dns."
-HOMEPAGE="https://github.com/exoscale/cli;
-SRC_URI="https://github.com/exoscale/cli/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-IUSE=""
-DEPEND="dev-lang/go:="
-RESTRICT="strip"
-QA_FLAGS_IGNORED=".*"
-
-S="${WORKDIR}/cli-${PV}"
-
-src_compile() {
-   go build -mod vendor -o ${PN} || die "build failed"
-}
-
-src_test() {
-   # run at least 'exo version' for test
-   ./exo version > /dev/null 2>&1
-   if [[ $? -ne 0 ]]
-   then
-   die "Test failed"
-   fi
-}
-
-src_install() {
-   dobin ${PN}
-}



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

2021-12-21 Thread Arthur Zamarin
commit: 3f67f644fc2b6b0e8a499042f5902e5ca686e7e6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 21:06:06 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 21:06:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f67f644

dev-python/httpx: Keyword 0.21.1 ppc64, #829728

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

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

diff --git a/dev-python/httpx/httpx-0.21.1.ebuild 
b/dev-python/httpx/httpx-0.21.1.ebuild
index c5145f01b079..af0102450248 100644
--- a/dev-python/httpx/httpx-0.21.1.ebuild
+++ b/dev-python/httpx/httpx-0.21.1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="https://github.com/encode/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
 IUSE="cli"
 
 RDEPEND="



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

2021-12-21 Thread Arthur Zamarin
commit: 649d9e7ace9c69518ad0c2c757c320707e5d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 21:06:06 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 21:06:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=649d9e7a

dev-python/rich: Keyword 10.16.1 ppc64, #829728

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

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

diff --git a/dev-python/rich/rich-10.16.1.ebuild 
b/dev-python/rich/rich-10.16.1.ebuild
index 489690198c65..484adc09e515 100644
--- a/dev-python/rich/rich-10.16.1.ebuild
+++ b/dev-python/rich/rich-10.16.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/willmcgugan/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
 RDEPEND="
dev-python/colorama[${PYTHON_USEDEP}]



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

2021-12-21 Thread Arthur Zamarin
commit: 97a2c1075e1a8fbe0c804781948e54b925ee14e6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 21:06:02 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 21:06:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97a2c107

dev-python/rich: Keyword 10.16.1 ppc, #829728

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

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

diff --git a/dev-python/rich/rich-10.16.1.ebuild 
b/dev-python/rich/rich-10.16.1.ebuild
index 26bca5205921..489690198c65 100644
--- a/dev-python/rich/rich-10.16.1.ebuild
+++ b/dev-python/rich/rich-10.16.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/willmcgugan/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv ~sparc ~x86"
 
 RDEPEND="
dev-python/colorama[${PYTHON_USEDEP}]



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

2021-12-21 Thread Arthur Zamarin
commit: 5d22b268ec5a80d7debfc5cf1d696e17e2c0a1b4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 21:06:03 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 21:06:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d22b268

dev-python/httpx: Keyword 0.21.1 ppc, #829728

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

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

diff --git a/dev-python/httpx/httpx-0.21.1.ebuild 
b/dev-python/httpx/httpx-0.21.1.ebuild
index fe1d9192c2b1..c5145f01b079 100644
--- a/dev-python/httpx/httpx-0.21.1.ebuild
+++ b/dev-python/httpx/httpx-0.21.1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="https://github.com/encode/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv ~sparc ~x86"
 IUSE="cli"
 
 RDEPEND="



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

2021-12-21 Thread Arthur Zamarin
commit: c3207f4ee9183eac2c303173111c6953ca800a85
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 20:56:33 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 20:56:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3207f4e

app-shells/fish: Stabilize 3.3.1-r1 ppc64, #818256

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

 app-shells/fish/fish-3.3.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/fish/fish-3.3.1-r1.ebuild 
b/app-shells/fish/fish-3.3.1-r1.ebuild
index 34b057c4f906..599d3057b4c3 100644
--- a/app-shells/fish/fish-3.3.1-r1.ebuild
+++ b/app-shells/fish/fish-3.3.1-r1.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "" ]]; then
EGIT_REPO_URI="https://github.com/${PN}-shell/${PN}-shell.git;
 else

SRC_URI="https://github.com/${PN}-shell/${PN}-shell/releases/download/${MY_PV}/${MY_P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2021-12-21 Thread Arthur Zamarin
commit: 9375039d546682c79daee37f90f75edda9b5a0c3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 20:56:30 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 20:56:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9375039d

app-shells/fish: Stabilize 3.3.1-r1 ppc, #818256

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

 app-shells/fish/fish-3.3.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/fish/fish-3.3.1-r1.ebuild 
b/app-shells/fish/fish-3.3.1-r1.ebuild
index 908682438f20..34b057c4f906 100644
--- a/app-shells/fish/fish-3.3.1-r1.ebuild
+++ b/app-shells/fish/fish-3.3.1-r1.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "" ]]; then
EGIT_REPO_URI="https://github.com/${PN}-shell/${PN}-shell.git;
 else

SRC_URI="https://github.com/${PN}-shell/${PN}-shell/releases/download/${MY_PV}/${MY_P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2021-12-21 Thread Arthur Zamarin
commit: 4e2bbfc919cc4e128895c4b5bd07354712710600
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 20:45:58 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 20:45:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e2bbfc9

dev-python/cachetools: add 5.0.0

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

 dev-python/cachetools/Manifest|  1 +
 dev-python/cachetools/cachetools-5.0.0.ebuild | 17 +
 2 files changed, 18 insertions(+)

diff --git a/dev-python/cachetools/Manifest b/dev-python/cachetools/Manifest
index 02463d0aadea..8ed1ed7ddc61 100644
--- a/dev-python/cachetools/Manifest
+++ b/dev-python/cachetools/Manifest
@@ -1 +1,2 @@
 DIST cachetools-4.2.4.tar.gz 25487 BLAKE2B 
91979f72b8719f4fbc57421ded6edcca38106814997abd2a17c1147af55a1b64e11b347c8ef790cd8cdafbd83b8492d377540b872430d285584aa3d3228f6435
 SHA512 
29a6bb3a064e5603cd3e3882d8e5a6a6ef95ba3029716692c9a82d7186a0befcfb8ed4a0ee3ecb591fdff93a46836d5b25acca7ba5eab1ba837e86404aea8fcf
+DIST cachetools-5.0.0.tar.gz 26119 BLAKE2B 
29d3c9d9859c4848d807dcf8d84614b23a125bdabd4188191e7ccb1536da249226ed4b21798b49c2eb764bfea4ba16b557440438a827b1bfd8d4c5b0984695e4
 SHA512 
3d311969a4fcc180767f4546f384e16d47bbeb5c1d97884006872317514ea2739560346d62d0afed1916def249d92f9ff14e4d964e9521de09132d3a83463a76

diff --git a/dev-python/cachetools/cachetools-5.0.0.ebuild 
b/dev-python/cachetools/cachetools-5.0.0.ebuild
new file mode 100644
index ..a18634292857
--- /dev/null
+++ b/dev-python/cachetools/cachetools-5.0.0.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Extensible memoizing collections and decorators"
+HOMEPAGE="https://pypi.org/project/cachetools/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+distutils_enable_tests pytest



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

2021-12-21 Thread Arthur Zamarin
commit: 4ce3ea969337b1dc152e62cc59ee13b053f24823
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 20:43:43 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 20:43:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ce3ea96

net-libs/mbedtls: Stabilize 2.28.0-r1 arm, #829713

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

 net-libs/mbedtls/mbedtls-2.28.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/mbedtls/mbedtls-2.28.0-r1.ebuild 
b/net-libs/mbedtls/mbedtls-2.28.0-r1.ebuild
index 38e6cfbb3f01..cd5811a46697 100644
--- a/net-libs/mbedtls/mbedtls-2.28.0-r1.ebuild
+++ b/net-libs/mbedtls/mbedtls-2.28.0-r1.ebuild
@@ -12,7 +12,7 @@ S=${WORKDIR}/${PN}-${P}
 
 LICENSE="Apache-2.0"
 SLOT="0/7.14.1" # ffmpeg subslot naming: SONAME tuple of 
{libmbedcrypto.so,libmbedtls.so,libmbedx509.so}
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
 IUSE="cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib"
 RESTRICT="!test? ( test )"
 



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

2021-12-21 Thread Arthur Zamarin
commit: 49a4ddd0522c27be61e20a49ea7151f615cc30ba
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 20:37:03 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 20:43:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49a4ddd0

dev-python/mypy: add 0.921

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

 dev-python/mypy/Manifest  |  1 +
 dev-python/mypy/mypy-0.921.ebuild | 61 +++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/mypy/Manifest b/dev-python/mypy/Manifest
index 473e5edba958..b90016e39a4e 100644
--- a/dev-python/mypy/Manifest
+++ b/dev-python/mypy/Manifest
@@ -1 +1,2 @@
 DIST mypy-0.910.tar.gz 2551057 BLAKE2B 
a3c6939c8f0e2ea19a3a3f91031330df2fb25a93cc3f9239535f15c17eedcca5716cc75c5412a1d345d8572d396c3d7128e38989fd694833cb6aec8366ac4afe
 SHA512 
49060c13da8bf17385b6b1db6efa9ac5771f2bac92d26760c4087cf128de22846b8a062f38e83ecff524e7893f8c9cd0647a2ef89e10387138544436a2840459
+DIST mypy-0.921.tar.gz 2730985 BLAKE2B 
cfb7b54165b961758891fcf225f1a7d6bd9c6a7b14e6bb6d8adb990ed047bc4983b5e82de6709d3b8db85a3914e1bae2be4fd36e878d37db7387ebe6e81daac1
 SHA512 
f592d440b45a1bbcab973aeb717ffc805164168f1369793067a46bd2884fedcb9f981bfadd3447c6801120042553a7a7110d8cfc4e1649241d3b8685dffef653

diff --git a/dev-python/mypy/mypy-0.921.ebuild 
b/dev-python/mypy/mypy-0.921.ebuild
new file mode 100644
index ..5b0169a2ae37
--- /dev/null
+++ b/dev-python/mypy/mypy-0.921.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1 multiprocessing
+
+DESCRIPTION="Optional static typing for Python"
+HOMEPAGE="http://www.mypy-lang.org/;
+SRC_URI="https://github.com/python/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+# stubgen collides with this package: https://bugs.gentoo.org/585594
+RDEPEND="
+   !dev-util/stubgen
+   >=dev-python/psutil-4[${PYTHON_USEDEP}]
+   >=dev-python/typed-ast-1.4.0[${PYTHON_USEDEP}]
+   =dev-python/typing-extensions-3.7.4[${PYTHON_USEDEP}]
+   >=dev-python/mypy_extensions-0.4.3[${PYTHON_USEDEP}]
+   https://github.com/python/mypy/issues/11019
+   mypy/test/teststubtest.py
+   )
+
+   [[ "${EPYTHON}" == "python3.10" ]] && EPYTEST_DESELECT+=(
+   # https://github.com/python/mypy/issues/11018
+   mypyc/test/test_commandline.py::TestCommandLine::testErrorOutput
+   )
+
+   # Some mypy/test/testcmdline.py::PythonCmdlineSuite tests
+   # fail with high COLUMNS values
+   local -x COLUMNS=80
+   epytest -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")"
+}



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

2021-12-21 Thread Arthur Zamarin
commit: dcf2416777698fa5188a33d29fe634616b599815
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 20:42:20 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 20:43:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcf24167

dev-python/pymssql: add 2.2.3

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

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

diff --git a/dev-python/pymssql/Manifest b/dev-python/pymssql/Manifest
index 3e2a7bacc5fd..ecb02c8ac9aa 100644
--- a/dev-python/pymssql/Manifest
+++ b/dev-python/pymssql/Manifest
@@ -1 +1,2 @@
 DIST pymssql-2.2.1.tar.gz 170421 BLAKE2B 
0bd57ffef97f6a557bf78056ed0f184c3b5de09fa031f80f1b7420486bb137ba1750c2ac63e89c0476a3b1808e08beb037b2d9c3fce89bce98a266626222b5c7
 SHA512 
d44fbe506d7daf3b5fc1dfa20b99814aa3ed025cf8e4e14097f53014bc21918e0969e15149fa93c39367a06567502be08bb673e30ebdf87d6fc2c30b01216b7c
+DIST pymssql-2.2.3.tar.gz 170134 BLAKE2B 
ed7d6d289b67c5ed76d737d4aec3a6731a94a2cc6bed445e526d62c4f7e9e26fe0e443846727895dd9fc396678d3ee99f021b2b365df14680817b8b8c130e5fa
 SHA512 
10b9b976c7bfaa4c8433e08d256a580354181d41b08b1ced2648f8b4f864d1c83ee46a2d240f394d2c87cd4b494ccd51c0adf923e88de41c4cab30f2a0bae2d9

diff --git a/dev-python/pymssql/pymssql-2.2.3.ebuild 
b/dev-python/pymssql/pymssql-2.2.3.ebuild
new file mode 100644
index ..bcf4f031cbda
--- /dev/null
+++ b/dev-python/pymssql/pymssql-2.2.3.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Simple MSSQL python extension module"
+HOMEPAGE="https://www.pymssql.org/ https://pypi.org/project/pymssql/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+
+# tests need a running instance of freetds
+RESTRICT="test"
+
+RDEPEND=">=dev-db/freetds-0.63[mssql]"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   dev-python/cython[${PYTHON_USEDEP}]
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? (
+   dev-python/sqlalchemy[${PYTHON_USEDEP}]
+   )"
+
+PATCHES=(
+   # https://github.com/pymssql/pymssql/pull/708
+   "${FILESDIR}"/${PN}-2.2.1-clock_gettime.patch
+)
+
+distutils_enable_tests pytest
+
+src_configure() {
+   export LINK_FREETDS_STATICALLY=no
+}



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

2021-12-21 Thread Arthur Zamarin
commit: 8a03e984d8840559cffb6da59553cd3d6ce2afcf
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 20:43:43 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 20:43:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a03e984

net-libs/mbedtls: Stabilize 2.16.12 arm, #829713

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

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

diff --git a/net-libs/mbedtls/mbedtls-2.16.12.ebuild 
b/net-libs/mbedtls/mbedtls-2.16.12.ebuild
index ad616547ac5e..e0d82b9c0b37 100644
--- a/net-libs/mbedtls/mbedtls-2.16.12.ebuild
+++ b/net-libs/mbedtls/mbedtls-2.16.12.ebuild
@@ -12,7 +12,7 @@ S=${WORKDIR}/${PN}-${P}
 
 LICENSE="Apache-2.0"
 SLOT="0/3.12.0" # ffmpeg subslot naming: SONAME tuple of 
{libmbedcrypto.so,libmbedtls.so,libmbedx509.so}
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc ~x86"
 IUSE="cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib"
 RESTRICT="!test? ( test )"
 



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

2021-12-21 Thread Arthur Zamarin
commit: 7b857094eda1a049b3edb540f4f2eaf1f921e3d8
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 20:37:49 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 20:43:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b857094

dev-python/pyamg: add 4.2.0

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

 dev-python/pyamg/Manifest   |  1 +
 dev-python/pyamg/pyamg-4.2.0.ebuild | 34 ++
 2 files changed, 35 insertions(+)

diff --git a/dev-python/pyamg/Manifest b/dev-python/pyamg/Manifest
index 22582d7589e1..d4fd0a1ff161 100644
--- a/dev-python/pyamg/Manifest
+++ b/dev-python/pyamg/Manifest
@@ -1 +1,2 @@
 DIST pyamg-4.1.0.tar.gz 749906 BLAKE2B 
31c05d64317b32cbdbd616e982557f0a94bc17b2fce3d982fe93e629d56ad526516603032b3cba9785bf5ebed038481ae641f55a5a1ad621442dde08791981cb
 SHA512 
311642cbbe8dca621cb58bebb1bb05b7dc7b2364713886df96937ba56575137bcb4fb7006a232d2c14380cd41f4337f6f09a8a9794e279a155f27287497d2b08
+DIST pyamg-4.2.0.gh.tar.gz 3900381 BLAKE2B 
df556553f74ebbc3b83d5a9479af25a54a4fd999edeadaeb0951893612abdb7c2aa79909f6eb4196322752ae87c5636e23c8c9b7dcdbb1f8d515651526e8aff4
 SHA512 
71e8e1937437888fec275e8522a30f9eb35cb79cc07d6da8032b653ed58e086285701ebb40dbe3b9fe82b53dc6e112e18cf62d42b18233326639417cf808b7c1

diff --git a/dev-python/pyamg/pyamg-4.2.0.ebuild 
b/dev-python/pyamg/pyamg-4.2.0.ebuild
new file mode 100644
index ..25ff16c10f4f
--- /dev/null
+++ b/dev-python/pyamg/pyamg-4.2.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Algebraic multigrid solvers in Python"
+HOMEPAGE="https://pyamg.org;
+SRC_URI="
+   https://github.com/pyamg/pyamg/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]"
+# cannot be enabled by "distutils_enable_tests pytest"
+BDEPEND="
+   dev-python/pybind11[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   test? (
+   dev-python/matplotlib[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests setup.py
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



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

2021-12-21 Thread Arthur Zamarin
commit: 8551b9ddfdfbbeda6ca56782dc2e92fac72ffddd
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 20:43:40 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 20:43:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8551b9dd

app-shells/fish: Stabilize 3.3.1-r1 arm, #818256

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

 app-shells/fish/fish-3.3.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/fish/fish-3.3.1-r1.ebuild 
b/app-shells/fish/fish-3.3.1-r1.ebuild
index 2000d084e94e..908682438f20 100644
--- a/app-shells/fish/fish-3.3.1-r1.ebuild
+++ b/app-shells/fish/fish-3.3.1-r1.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "" ]]; then
EGIT_REPO_URI="https://github.com/${PN}-shell/${PN}-shell.git;
 else

SRC_URI="https://github.com/${PN}-shell/${PN}-shell/releases/download/${MY_PV}/${MY_P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2021-12-21 Thread Michał Górny
commit: 8346c6be827c9eddeaf0f67cc47efdfeaf45f9d2
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Dec 21 19:54:09 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Dec 21 20:35:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8346c6be

dev-python/nuitka: Bump to 0.6.18.5

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

 dev-python/nuitka/Manifest   |  1 +
 dev-python/nuitka/nuitka-0.6.18.5.ebuild | 48 
 2 files changed, 49 insertions(+)

diff --git a/dev-python/nuitka/Manifest b/dev-python/nuitka/Manifest
index ace30bc29ca7..4d87693a2589 100644
--- a/dev-python/nuitka/Manifest
+++ b/dev-python/nuitka/Manifest
@@ -4,4 +4,5 @@ DIST Nuitka-0.6.18.1.tar.gz 3688411 BLAKE2B 
4ddc98cfb34ff825c628200a72c8cb671a10
 DIST Nuitka-0.6.18.2.tar.gz 3690219 BLAKE2B 
416e23500ce7739858e6393eef9783a385229509666c8fd814ce9b4110e77d69d2e7167e89d7db262ee98f60b48f43a07ffec76185154dbc50460623ac84e125
 SHA512 
7fa6cf48843d45b1d7a1cad11934b5cca2288939e07c12e6916b9c4a37e65d785599ada9e0001faa4117c50e4161fb54253fda27f186f5a660f59810b7254658
 DIST Nuitka-0.6.18.3.tar.gz 3690647 BLAKE2B 
7ab4fd2b788a63819b3cbd146e8508d781beb14eec3f0fc724fb4eb0e4805fb17917ab685ab2e28ea50d06c4235be1aa05a694b19e1a2cafd8542d8133aa3496
 SHA512 
b2aa249dff42c17e0f1c6a33e57cb5e40e17f4043c54467af68071e674ccbe01fd446bfce1e4f0488fd0094561c51ed9f1322e73b049ef19c3f2a9d4f0a6fc44
 DIST Nuitka-0.6.18.4.tar.gz 3690751 BLAKE2B 
209a7b0d981f9ba777c53b80708e7f5b09e65565246e9d06b7a0ad6155d3cb5b57e2191406e304be585b326a917f8787c4635c326b5e8ad9254d5ade40cf1ec6
 SHA512 
9cf404e985dcdc11416218e30340c5d52b6a835d1d1a94d9b5cedfcea774abc7ed848a5c4bd5783a9a1898f469e519148ed195945d3d8e7b9043da00ea38c7f0
+DIST Nuitka-0.6.18.5.tar.gz 3692319 BLAKE2B 
f60d1516cad1f82c75d63164d93072e6841f092e71bdfadfc713ef4d10838d33c786094f8e326c413bd63cdd561ac6af7a265344cafa9ab45eece630e4e0ce24
 SHA512 
4dcccf492b0858482b62736478aec0566f11fc8c548ca478b6055b12d694ca1736f495e11c6e4240281fbb11685f043393a1db839dae590dee821a98b4712c87
 DIST Nuitka-0.6.18.tar.gz 3687825 BLAKE2B 
f2c5655c610083065cc205c0a92ff9c57edfc87a479592f435c3dd194e2d6d71ff0ee9866bc97f222b3936190a4420e7d69cf9413b5b2a5e9439448dda82004f
 SHA512 
df4c81d890ce9c5dc24e648f65137d4bb91dcb92917859976a3400ace6c297f985cee4932b50cb3c2aedb2eaa806be7529a98a75a32fe3f59ec718ed3281003b

diff --git a/dev-python/nuitka/nuitka-0.6.18.5.ebuild 
b/dev-python/nuitka/nuitka-0.6.18.5.ebuild
new file mode 100644
index ..d42d1b9e532c
--- /dev/null
+++ b/dev-python/nuitka/nuitka-0.6.18.5.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..9} )
+inherit distutils-r1 flag-o-matic optfeature
+
+DESCRIPTION="Python to native compiler"
+HOMEPAGE="https://www.nuitka.net;
+SRC_URI="https://nuitka.net/releases/${P^}.tar.gz;
+S="${WORKDIR}/${P^}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-util/scons[${PYTHON_USEDEP}]"
+BDEPEND="
+   ${RDEPEND}
+   test? ( dev-util/ccache )
+"
+
+DOCS=( Changelog.pdf Developer_Manual.pdf README.pdf )
+
+distutils-r1_src_prepare() {
+   # remove vendored version of SCons that is Python2 only
+   # this should be removed when upstream removes support for Python2
+   rm -vR "${S}/${PN}/build/inline_copy/lib/scons-2.3.2/SCons"  || die
+   eapply_user
+}
+
+python_install() {
+   distutils-r1_python_install
+   python_optimize
+   doman doc/nuitka3.1 doc/nuitka3-run.1
+}
+
+python_test() {
+   append-ldflags -Wl,--no-warn-search-mismatch
+   ./tests/basics/run_all.py search || die
+}
+
+pkg_postinst() {
+   optfeature "support for stand-alone executables" app-admin/chrpath
+}



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

2021-12-21 Thread Arthur Zamarin
commit: 8b043b814bf99adc1a8ca3352b70824cc2c1cdc1
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 20:31:32 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 20:32:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b043b81

dev-python/httpx: Keyword 0.21.1 arm64, #829728

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

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

diff --git a/dev-python/httpx/httpx-0.21.1.ebuild 
b/dev-python/httpx/httpx-0.21.1.ebuild
index 248dee5ebbe1..f8d340c45a31 100644
--- a/dev-python/httpx/httpx-0.21.1.ebuild
+++ b/dev-python/httpx/httpx-0.21.1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="https://github.com/encode/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm64 ~riscv ~sparc ~x86"
 IUSE="cli"
 
 RDEPEND="



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

2021-12-21 Thread Arthur Zamarin
commit: 0f6c809b697ee9986af7d8e9b4c0087c9ae6f467
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 20:31:41 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 20:32:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f6c809b

dev-python/rich: Keyword 10.16.1 arm, #829728

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

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

diff --git a/dev-python/rich/rich-10.16.1.ebuild 
b/dev-python/rich/rich-10.16.1.ebuild
index b37a66cb9637..26bca5205921 100644
--- a/dev-python/rich/rich-10.16.1.ebuild
+++ b/dev-python/rich/rich-10.16.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/willmcgugan/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~sparc ~x86"
 
 RDEPEND="
dev-python/colorama[${PYTHON_USEDEP}]



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

2021-12-21 Thread Arthur Zamarin
commit: 6c5eb3fbabae838945340a2baad30a443917ebc3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 20:31:41 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 20:32:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c5eb3fb

dev-python/httpx: Keyword 0.21.1 arm, #829728

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

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

diff --git a/dev-python/httpx/httpx-0.21.1.ebuild 
b/dev-python/httpx/httpx-0.21.1.ebuild
index f8d340c45a31..fe1d9192c2b1 100644
--- a/dev-python/httpx/httpx-0.21.1.ebuild
+++ b/dev-python/httpx/httpx-0.21.1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="https://github.com/encode/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~sparc ~x86"
 IUSE="cli"
 
 RDEPEND="



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

2021-12-21 Thread Arthur Zamarin
commit: 896f85fa40cdb931d86d94976e9d73cfb2886f44
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 20:31:31 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 20:32:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=896f85fa

dev-python/rich: Keyword 10.16.1 arm64, #829728

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

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

diff --git a/dev-python/rich/rich-10.16.1.ebuild 
b/dev-python/rich/rich-10.16.1.ebuild
index 378ebc34f51b..b37a66cb9637 100644
--- a/dev-python/rich/rich-10.16.1.ebuild
+++ b/dev-python/rich/rich-10.16.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/willmcgugan/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm64 ~riscv ~sparc ~x86"
 
 RDEPEND="
dev-python/colorama[${PYTHON_USEDEP}]



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

2021-12-21 Thread Arthur Zamarin
commit: af8f78f947d06a6b108d41ff15cc524282143fc9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 20:31:46 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 20:32:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af8f78f9

sys-process/audit: Stabilize 3.0.6 arm, #829735

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

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

diff --git a/sys-process/audit/audit-3.0.6.ebuild 
b/sys-process/audit/audit-3.0.6.ebuild
index 12724f518e13..031ddd264fdc 100644
--- a/sys-process/audit/audit-3.0.6.ebuild
+++ b/sys-process/audit/audit-3.0.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://people.redhat.com/sgrubb/audit/${P}.tar.gz;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
 IUSE="gssapi ldap python static-libs test"
 
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"



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

2021-12-21 Thread Arthur Zamarin
commit: f86d7051d18b7c785972d9cb71d4073be2353054
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 20:16:36 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 20:32:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f86d7051

dev-python/stripe: add 2.64.0

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

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

diff --git a/dev-python/stripe/Manifest b/dev-python/stripe/Manifest
index 1f8602b96967..1757da7efd80 100644
--- a/dev-python/stripe/Manifest
+++ b/dev-python/stripe/Manifest
@@ -1 +1,2 @@
 DIST stripe-2.63.0.tar.gz 233693 BLAKE2B 
18de5e0a74b241759a7c84203e675159958a77e3ee225ebdfd5ed2d2d633a3b91f5165ac14a164b09e4df81176aafe1727685c4156b5055dc4ea2a44b0af9134
 SHA512 
fedef25d95e1fe3f9b4fdab37fb4ababc3c0243218da590076942491884b284b07e6bb15e9c85a6871dabffc34c260ec9d9fb80634ab0a368cf312c2324c2bdd
+DIST stripe-2.64.0.tar.gz 234442 BLAKE2B 
504e32c19f1a65a39ee709d3abc7211d648c7aaf8493edb4130d49d3fbbebea4ec7d2c116b9b715e9e0d5d383578c477ae0e2cbace51f5b8574d540e9b9238d8
 SHA512 
5055b5a712c0891f3660d00fe7bb27452cce33aa4a9c70fbd7391dd989d31aeb8d8288c3cdd22747b6fd4c480be17f7ab9428c31ea7d2c674e175e77f4f6a0b7

diff --git a/dev-python/stripe/stripe-2.64.0.ebuild 
b/dev-python/stripe/stripe-2.64.0.ebuild
new file mode 100644
index ..763c4b00fd68
--- /dev/null
+++ b/dev-python/stripe/stripe-2.64.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+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.115.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: app-shells/fish/

2021-12-21 Thread Arthur Zamarin
commit: 5a9e2bf450284e2f13a900feb44632485672f1f3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 20:31:36 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 20:32:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a9e2bf4

app-shells/fish: Stabilize 3.3.1-r1 arm64, #818256

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

 app-shells/fish/fish-3.3.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/fish/fish-3.3.1-r1.ebuild 
b/app-shells/fish/fish-3.3.1-r1.ebuild
index 0b5e029e2e55..2000d084e94e 100644
--- a/app-shells/fish/fish-3.3.1-r1.ebuild
+++ b/app-shells/fish/fish-3.3.1-r1.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "" ]]; then
EGIT_REPO_URI="https://github.com/${PN}-shell/${PN}-shell.git;
 else

SRC_URI="https://github.com/${PN}-shell/${PN}-shell/releases/download/${MY_PV}/${MY_P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2021-12-21 Thread Arthur Zamarin
commit: f1779e1924dfd706970f517267a061206e8d5856
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 20:31:28 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 20:32:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1779e19

app-portage/iwdevtools: Stabilize 0.8.1 arm64, #829738

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

 app-portage/iwdevtools/iwdevtools-0.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/iwdevtools/iwdevtools-0.8.1.ebuild 
b/app-portage/iwdevtools/iwdevtools-0.8.1.ebuild
index 5ba7ebcfe602..1d98d6de0beb 100644
--- a/app-portage/iwdevtools/iwdevtools-0.8.1.ebuild
+++ b/app-portage/iwdevtools/iwdevtools-0.8.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/ionenwks/iwdevtools/archive/refs/tags/v${PV}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv sparc x86"
+KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv sparc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-12-21 Thread Bernard Cafarelli
commit: 684a591dae642315069968bcba4e5326648817e8
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Dec 21 19:20:30 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Dec 21 20:11:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=684a591d

media-gfx/geeqie: drop USE=gtk3 in live ebuild

Bug: https://bugs.gentoo.org/769101
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/geeqie/geeqie-.ebuild | 12 +---
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/media-gfx/geeqie/geeqie-.ebuild 
b/media-gfx/geeqie/geeqie-.ebuild
index b9db7c038a20..e97db26b4d23 100644
--- a/media-gfx/geeqie/geeqie-.ebuild
+++ b/media-gfx/geeqie/geeqie-.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 LUA_COMPAT=( lua5-{1..3} )
 
 inherit autotools git-r3 lua-single xdg
@@ -15,15 +15,14 @@ 
EGIT_REPO_URI="https://github.com/BestImageViewer/geeqie.git;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS=""
-IUSE="debug doc exif ffmpegthumbnailer gpu-accel +gtk3 jpeg lcms lirc lua map 
nls pdf tiff xmp"
+IUSE="debug doc exif ffmpegthumbnailer gpu-accel jpeg lcms lirc lua map nls 
pdf tiff xmp"
 
 RDEPEND="
virtual/libintl
+   x11-libs/gtk+:3
doc? ( app-text/gnome-doc-utils )
ffmpegthumbnailer? ( media-video/ffmpegthumbnailer )
gpu-accel? ( media-libs/clutter-gtk )
-   gtk3? ( x11-libs/gtk+:3 )
-   !gtk3? ( x11-libs/gtk+:2 )
jpeg? ( virtual/jpeg:0 )
lcms? ( media-libs/lcms:2 )
lirc? ( app-misc/lirc )
@@ -41,7 +40,6 @@ BDEPEND="
nls? ( sys-devel/gettext )"
 
 REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )
-   gpu-accel? ( gtk3 )
map? ( gpu-accel )"
 
 src_prepare() {
@@ -56,10 +54,10 @@ src_prepare() {
 src_configure() {
local myeconfargs=(
--with-readmedir="${EPREFIX}"/usr/share/doc/${PF}
+   --enable-gtk3
$(use_enable debug debug-log)
$(use_enable ffmpegthumbnailer)
$(use_enable gpu-accel)
-   $(use_enable gtk3)
$(use_enable jpeg)
$(use_enable lcms)
$(use_enable lua)



[gentoo-commits] proj/linux-patches:5.10 commit in: /

2021-12-21 Thread Mike Pagano
commit: 5b73bbee19e8b9b38023f7b2c6a0178498e62b93
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Dec 21 19:37:22 2021 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Dec 21 19:37:22 2021 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=5b73bbee

Move X86 and ARM only config settings to their respective sections

Thanks to gyakovlev

Signed-off-by: Mike Pagano  gentoo.org>

 4567_distro-Gentoo-Kconfig.patch | 12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/4567_distro-Gentoo-Kconfig.patch b/4567_distro-Gentoo-Kconfig.patch
index 95a64aa2..91c92074 100644
--- a/4567_distro-Gentoo-Kconfig.patch
+++ b/4567_distro-Gentoo-Kconfig.patch
@@ -6,9 +6,9 @@
  source "Documentation/Kconfig"
 +
 +source "distro/Kconfig"
 /dev/null  2021-08-24 15:34:24.700702871 -0400
-+++ b/distro/Kconfig   2021-08-24 15:49:16.965525424 -0400
-@@ -0,0 +1,281 @@
+--- /dev/null  2021-12-21 08:57:43.779324794 -0500
 b/distro/Kconfig   2021-12-21 14:33:33.759225728 -0500
+@@ -0,0 +1,283 @@
 +menu "Gentoo Linux"
 +
 +config GENTOO_LINUX
@@ -211,7 +211,6 @@
 +  select PAGE_POISONING_ZERO
 +  select INIT_ON_ALLOC_DEFAULT_ON
 +  select INIT_ON_FREE_DEFAULT_ON
-+  select VMAP_STACK
 +  select REFCOUNT_FULL
 +  select FORTIFY_SOURCE
 +  select SECURITY_DMESG_RESTRICT
@@ -219,7 +218,6 @@
 +  select GCC_PLUGIN_LATENT_ENTROPY
 +  select GCC_PLUGIN_STRUCTLEAK
 +  select GCC_PLUGIN_STRUCTLEAK_BYREF_ALL
-+  select GCC_PLUGIN_STACKLEAK
 +  select GCC_PLUGIN_RANDSTRUCT
 +  select GCC_PLUGIN_RANDSTRUCT_PERFORMANCE
 +
@@ -239,6 +237,8 @@
 +  select RELOCATABLE
 +  select LEGACY_VSYSCALL_NONE
 +  select PAGE_TABLE_ISOLATION
++  select GCC_PLUGIN_STACKLEAK
++  select VMAP_STACK
 +
 +
 +config GENTOO_KERNEL_SELF_PROTECTION_ARM64
@@ -251,6 +251,8 @@
 +  select RELOCATABLE
 +  select ARM64_SW_TTBR0_PAN
 +  select CONFIG_UNMAP_KERNEL_AT_EL0
++  select GCC_PLUGIN_STACKLEAK
++  select VMAP_STACK
 +
 +config GENTOO_KERNEL_SELF_PROTECTION_X86_32
 +  bool "X86_32 KSPP Settings"



[gentoo-commits] proj/linux-patches:5.15 commit in: /

2021-12-21 Thread Mike Pagano
commit: a18ebe0b4c855d0e335d61f2e2c8291cee39341b
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Dec 21 19:26:40 2021 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Dec 21 19:30:13 2021 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=a18ebe0b

Move X86 and ARM only config settings to their respective sections

Thanks to gyakovlev

Signed-off-by: Mike Pagano  gentoo.org>

 4567_distro-Gentoo-Kconfig.patch | 12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/4567_distro-Gentoo-Kconfig.patch b/4567_distro-Gentoo-Kconfig.patch
index 95a64aa2..84b1828a 100644
--- a/4567_distro-Gentoo-Kconfig.patch
+++ b/4567_distro-Gentoo-Kconfig.patch
@@ -6,9 +6,9 @@
  source "Documentation/Kconfig"
 +
 +source "distro/Kconfig"
 /dev/null  2021-08-24 15:34:24.700702871 -0400
-+++ b/distro/Kconfig   2021-08-24 15:49:16.965525424 -0400
-@@ -0,0 +1,281 @@
+--- /dev/null  2021-12-21 08:57:43.779324794 -0500
 b/distro/Kconfig   2021-12-21 14:12:07.964572417 -0500
+@@ -0,0 +1,283 @@
 +menu "Gentoo Linux"
 +
 +config GENTOO_LINUX
@@ -211,7 +211,6 @@
 +  select PAGE_POISONING_ZERO
 +  select INIT_ON_ALLOC_DEFAULT_ON
 +  select INIT_ON_FREE_DEFAULT_ON
-+  select VMAP_STACK
 +  select REFCOUNT_FULL
 +  select FORTIFY_SOURCE
 +  select SECURITY_DMESG_RESTRICT
@@ -219,7 +218,6 @@
 +  select GCC_PLUGIN_LATENT_ENTROPY
 +  select GCC_PLUGIN_STRUCTLEAK
 +  select GCC_PLUGIN_STRUCTLEAK_BYREF_ALL
-+  select GCC_PLUGIN_STACKLEAK
 +  select GCC_PLUGIN_RANDSTRUCT
 +  select GCC_PLUGIN_RANDSTRUCT_PERFORMANCE
 +
@@ -239,6 +237,8 @@
 +  select RELOCATABLE
 +  select LEGACY_VSYSCALL_NONE
 +  select PAGE_TABLE_ISOLATION
++  select GCC_PLUGIN_STACKLEAK
++  select VMAP_STACK
 +
 +
 +config GENTOO_KERNEL_SELF_PROTECTION_ARM64
@@ -251,6 +251,8 @@
 +  select RELOCATABLE
 +  select ARM64_SW_TTBR0_PAN
 +  select CONFIG_UNMAP_KERNEL_AT_EL0
++  select GCC_PLUGIN_STACKLEAK
++  select VMAP_STACK
 +
 +config GENTOO_KERNEL_SELF_PROTECTION_X86_32
 +  bool "X86_32 KSPP Settings"



[gentoo-commits] proj/linux-patches:master commit in: /

2021-12-21 Thread Mike Pagano
commit: 55d7d734586eb916f800314b6a5eec438cb1fdb2
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Dec 21 19:26:40 2021 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Dec 21 19:26:40 2021 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=55d7d734

Move X86 and ARM only config settings to their respective sections

Thanks to gyakovlev

Signed-off-by: Mike Pagano  gentoo.org>

 4567_distro-Gentoo-Kconfig.patch | 12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/4567_distro-Gentoo-Kconfig.patch b/4567_distro-Gentoo-Kconfig.patch
index 05570254..24b75095 100644
--- a/4567_distro-Gentoo-Kconfig.patch
+++ b/4567_distro-Gentoo-Kconfig.patch
@@ -6,9 +6,9 @@
  source "Documentation/Kconfig"
 +
 +source "distro/Kconfig"
 /dev/null  2021-08-24 15:34:24.700702871 -0400
-+++ b/distro/Kconfig   2021-08-24 15:49:16.965525424 -0400
-@@ -0,0 +1,281 @@
+--- /dev/null  2021-12-21 08:57:43.779324794 -0500
 b/distro/Kconfig   2021-12-21 14:12:07.964572417 -0500
+@@ -0,0 +1,283 @@
 +menu "Gentoo Linux"
 +
 +config GENTOO_LINUX
@@ -211,7 +211,6 @@
 +  select PAGE_POISONING_ZERO
 +  select INIT_ON_ALLOC_DEFAULT_ON
 +  select INIT_ON_FREE_DEFAULT_ON
-+  select VMAP_STACK
 +  select REFCOUNT_FULL
 +  select FORTIFY_SOURCE
 +  select SECURITY_DMESG_RESTRICT
@@ -219,7 +218,6 @@
 +  select GCC_PLUGIN_LATENT_ENTROPY
 +  select GCC_PLUGIN_STRUCTLEAK
 +  select GCC_PLUGIN_STRUCTLEAK_BYREF_ALL
-+  select GCC_PLUGIN_STACKLEAK
 +  select GCC_PLUGIN_RANDSTRUCT
 +  select GCC_PLUGIN_RANDSTRUCT_PERFORMANCE
 +
@@ -239,6 +237,8 @@
 +  select RELOCATABLE
 +  select LEGACY_VSYSCALL_NONE
 +  select PAGE_TABLE_ISOLATION
++  select GCC_PLUGIN_STACKLEAK
++  select VMAP_STACK
 +
 +
 +config GENTOO_KERNEL_SELF_PROTECTION_ARM64
@@ -251,6 +251,8 @@
 +  select RELOCATABLE
 +  select ARM64_SW_TTBR0_PAN
 +  select CONFIG_UNMAP_KERNEL_AT_EL0
++  select GCC_PLUGIN_STACKLEAK
++  select VMAP_STACK
 +
 +config GENTOO_KERNEL_SELF_PROTECTION_X86_32
 +  bool "X86_32 KSPP Settings"



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

2021-12-21 Thread Pacho Ramos
commit: 1dba32c6c3436924b55e2352d16b04430110c2f8
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Dec 21 18:51:59 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Dec 21 18:54:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dba32c6

sys-power/bbswitch: Bump to new snapshot

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

 sys-power/bbswitch/Manifest  |  1 +
 sys-power/bbswitch/bbswitch-0.8_p20211129.ebuild | 55 
 2 files changed, 56 insertions(+)

diff --git a/sys-power/bbswitch/Manifest b/sys-power/bbswitch/Manifest
index 2a7fb6d487ff..97f834f76331 100644
--- a/sys-power/bbswitch/Manifest
+++ b/sys-power/bbswitch/Manifest
@@ -1 +1,2 @@
 DIST bbswitch-0.8_p20200526.tar.gz 15869 BLAKE2B 
cdeaf539a0996f53d3add215fca1127321b7183526a248340177f4320171b92a5ce531eeedfb1da2f0d9f07c6b61e8cfb635a457406e477640f2e7090b29b655
 SHA512 
487bcd845d1f462e77b5b9e3f304cd28d0ddfd391ecc36de530a3d18d9d4932bc895ed29972e27006b6f3eeb50c37b523ef786a26b6ee75c19fa55288a496d4a
+DIST bbswitch-0.8_p20211129.tar.gz 15889 BLAKE2B 
f81343529957603734bc29453ae9513eb5e19a87425adb8975c621357c7caa0f353e06367cc186230adb28f75ae48330a58ba904854415bc118c8573f71566a0
 SHA512 
e7873ae34aed13e8f4d5709fede763552c28528e853ad02ee4a4377c043f1ce2ae5f7fc3e831ea1dc65f5a1c0a5ddded93b451258b539ed72b0e1c196676a677

diff --git a/sys-power/bbswitch/bbswitch-0.8_p20211129.ebuild 
b/sys-power/bbswitch/bbswitch-0.8_p20211129.ebuild
new file mode 100644
index ..409b02bf015a
--- /dev/null
+++ b/sys-power/bbswitch/bbswitch-0.8_p20211129.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-mod toolchain-funcs
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/Bumblebee-Project/${PN}.git;
+   EGIT_BRANCH="develop"
+else
+   COMMIT="23891174a80ea79c7720bcc7048a5c2bfcde5cd9"
+   
SRC_URI="https://github.com/Bumblebee-Project/bbswitch/archive/${COMMIT}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+   S="${WORKDIR}/bbswitch-${COMMIT}"
+fi
+
+DESCRIPTION="Toggle discrete NVIDIA Optimus graphics card"
+HOMEPAGE="https://github.com/Bumblebee-Project/bbswitch;
+
+SLOT="0"
+LICENSE="GPL-3+"
+IUSE=""
+
+DEPEND="
+   virtual/linux-sources
+   sys-kernel/linux-headers
+"
+RDEPEND=""
+
+MODULE_NAMES="bbswitch(acpi)"
+
+pkg_setup() {
+   linux-mod_pkg_setup
+
+   BUILD_TARGETS="default"
+   BUILD_PARAMS="KVERSION=${KV_FULL} CC=$(tc-getCC)"
+}
+
+src_prepare() {
+   # Fix build failure, bug #513542 and bug #761370
+   sed "s%^KDIR :=.*%KDIR := ${KV_OUT_DIR:-$KERNEL_DIR}%g" -i Makefile || 
die
+
+   default
+}
+
+src_install() {
+   einstalldocs
+
+   insinto /etc/modprobe.d
+   newins "${FILESDIR}"/bbswitch.modprobe bbswitch.conf
+
+   linux-mod_src_install
+}



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

2021-12-21 Thread Pacho Ramos
commit: a18aaefa0eea4f047981632455a62d6358fd47cb
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Dec 21 18:33:16 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Dec 21 18:54:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a18aaefa

dev-python/pyclipper: Version bump

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

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

diff --git a/dev-python/pyclipper/Manifest b/dev-python/pyclipper/Manifest
index 6c0a5687884b..b610642b41d5 100644
--- a/dev-python/pyclipper/Manifest
+++ b/dev-python/pyclipper/Manifest
@@ -1 +1,2 @@
 DIST pyclipper-1.3.0.tar.gz 51405 BLAKE2B 
a7a3e81452c8178d907528b7595fb92521dfb039a6ea116d7f189639ea2975d8058ac1f685a211c98be921c41a694d89f7f431264dfe366e3acc842b25d670f4
 SHA512 
bee6c5f835e84baa65cbca1d812219bd94272010bbeed365b3835ef3d191042129fdcccdd85ce7841f60f46cbfd52edd270d108ff81d64b0ca712c1369394d40
+DIST pyclipper-1.3.0_p2.tar.gz 51079 BLAKE2B 
e5af84c15a19bf2ac7f0df78d588d34451c6f0a0bc40fa6a28dd8ef5f697e1d62eb4e14ac184e325ce4d6ad1aab23254d6e91857e3a44636a1652f86aa1778e9
 SHA512 
08b7f8443b0e98ddf7230824a451b0b0023402c4cecb44c1a264e08d204a3da455aef742b2ffcc0acf44a4ec3b864302af0d7a7ec34bb6a2080340b2320797dd

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



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/

2021-12-21 Thread Pacho Ramos
commit: f7acbec7c896f6da1567b64774e65e1af5c3ef38
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Dec 21 18:40:24 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Dec 21 18:54:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7acbec7

gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen: Bump to 
new snapshot

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

 .../Manifest   |  1 +
 ...trol-blur-effect-on-lock-screen-20211209.ebuild | 55 ++
 2 files changed, 56 insertions(+)

diff --git 
a/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/Manifest 
b/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/Manifest
index cb852c3c8d0f..f76c19873e68 100644
--- 
a/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/Manifest
+++ 
b/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/Manifest
@@ -1,3 +1,4 @@
 DIST gnome-shell-extension-control-blur-effect-on-lock-screen-20210614.tar.gz 
14863 BLAKE2B 
11133a5bf6ea06acd2fce6f215fcc6a37a658857161b9babab51246d6d7d382773e92f395796410fafa903ace656aa664c749a501bcbd4d05ebbd81ea9fd5018
 SHA512 
06f6329a6a2b2e03cacd305e1dad81768b81d6193782739caeadc51f141da9238d2bff563276235673e492ad7f13977fe7f1eaba73ca940a410b94defbeae5b0
 DIST gnome-shell-extension-control-blur-effect-on-lock-screen-20210721.tar.gz 
2592 BLAKE2B 
205309c4057094301e3469471b0f2da06a6cdf6f36b430b636f5341acde98ae999a537ca3a815a257fd9e3abde8f30bffb9a78f38926224eea3ec29d92548f2b
 SHA512 
d314227588dac2f51b1d6946bac29501607b3e4fa6c3394b4bf56576453d6e6aa5a76fb2b576e216d5e62dabd8994418f11838d95bd90f134d261223fab04dd8
 DIST gnome-shell-extension-control-blur-effect-on-lock-screen-2021.tar.gz 
2595 BLAKE2B 
c15c74cd534e571585b1129216fe644d7c8c2b78cf360d26ac48cf1773e3b69e97c3889e13f39355c24b2066168f9cdd2a6e49f830c20f1f6f853aecba6b0ebe
 SHA512 
b3dfa72863972af9ada7803aeff409139708840b795842c32ce6b07cea21e472c06c4ec86eb141b0fd89a31912971d3b97fd96ee4e3d8bc63928f551bf7c9836
+DIST gnome-shell-extension-control-blur-effect-on-lock-screen-20211209.tar.gz 
2609 BLAKE2B 
17b75fab4c2c01635ef578444ab2d17ef19abad4fe9ef92ac46ea00e6ee7fa5138364e950e75b7ed581249c650e745fb7cb6adfa18a85a42cbba2d9a7d62555e
 SHA512 
ceaf49c034d90d30534b36a0bd47b18e492a052724820887e284f4e5fe7b7faac24baa19581d113f176ce13082ec080de5562555dc2b65481b187543a60da9cc

diff --git 
a/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/gnome-shell-extension-control-blur-effect-on-lock-screen-20211209.ebuild
 
b/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/gnome-shell-extension-control-blur-effect-on-lock-screen-20211209.ebuild
new file mode 100644
index ..12902d135edb
--- /dev/null
+++ 
b/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/gnome-shell-extension-control-blur-effect-on-lock-screen-20211209.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit gnome2-utils
+
+DESCRIPTION="Control the blur effect on gnome-shell lock screen"
+HOMEPAGE="https://github.com/PRATAP-KUMAR/Control_Blur_Effect_On_Lock_Screen;
+COMMIT="0223e85a5045e9589cb8186376d9258e845789bd"
+SRC_URI="https://github.com/PRATAP-KUMAR/Control_Blur_Effect_On_Lock_Screen/archive/${COMMIT}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+# glib for glib-compile-schemas at build time, needed at runtime anyways
+COMMON_DEPEND="
+   dev-libs/glib:2
+"
+RDEPEND="${COMMON_DEPEND}
+   app-eselect/eselect-gnome-shell-extensions
+   >=gnome-base/gnome-shell-40
+"
+DEPEND="${COMMON_DEPEND}"
+BDEPEND=""
+
+extension_uuid="controlblureffectonlockscr...@pratap.fastmail.fm"
+S="${WORKDIR}/${PN/gnome-shell-extension-/}-${COMMIT}"
+
+src_compile() { :; }
+
+src_install() {
+   einstalldocs
+   insinto /usr/share/glib-2.0/schemas
+   doins schemas/*.xml
+   rm -rf LICENSE README.md schemas
+   insinto /usr/share/gnome-shell/extensions/"${extension_uuid}"
+   doins -r *
+}
+
+pkg_preinst() {
+   gnome2_schemas_savelist
+}
+
+pkg_postinst() {
+   gnome2_schemas_update
+   ebegin "Updating list of installed extensions"
+   eselect gnome-shell-extensions update
+   eend $?
+}
+
+pkg_postrm() {
+   gnome2_schemas_update
+}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-shell-extension-desktop-icons-ng/

2021-12-21 Thread Pacho Ramos
commit: c5311231701adec0e5455285d0ef8968e8b750cc
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Dec 21 18:45:04 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Dec 21 18:54:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5311231

gnome-extra/gnome-shell-extension-desktop-icons-ng: Bump to v33

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

 .../Manifest   |  1 +
 ...me-shell-extension-desktop-icons-ng-33.0.ebuild | 45 ++
 2 files changed, 46 insertions(+)

diff --git a/gnome-extra/gnome-shell-extension-desktop-icons-ng/Manifest 
b/gnome-extra/gnome-shell-extension-desktop-icons-ng/Manifest
index cc1f4ed72208..91974186ff31 100644
--- a/gnome-extra/gnome-shell-extension-desktop-icons-ng/Manifest
+++ b/gnome-extra/gnome-shell-extension-desktop-icons-ng/Manifest
@@ -1,2 +1,3 @@
 DIST ding-0.20.0.tar.xz 82000 BLAKE2B 
56bdd067985281daa836b34b2969a487314e056f0eb2d60014122f4a3ee8eff159948c4b6cce20b327e7189d88a3cc0311720171f7b407b6b82928b4c1a03cfc
 SHA512 
71cef5993c177f393c77889676b5e593de9beec936f42dbc4d5cac0f415706517598f73fc6aee0a0786eb77f3140852b791cac9a2dd5d01545ba8955a02f4a9c
 DIST ding-0.24.0.tar.xz 101020 BLAKE2B 
a0f6b276cf41113dbee92ee6e34da3ffbf8f614765874b1185c226ddd350a2b63f369bdb40f71677444694a4083b34765f63eda09761bd3690355d5df6f97173
 SHA512 
0d066abb3e25cc2dacf593a1f05b14937394a89254bc541311c32f5206782e1d80be82cd1eee567809aee9bc0e3e80206eeae81119e72d444b965a2daf341493
+DIST ding-33.0.tar.xz 106484 BLAKE2B 
ca1126eb61bc41bbe50938c17ffa8611886aa4656902969270e00fd1e783497bc47f16215d641f74f96cb21763dff134508304e13063bf8cbaea2e3ae584a1c0
 SHA512 
27bccb7fbea8044fadd9c9732a0f557424af30a3b8d88aa3fe5354ce507f2ae4219fce785ff31dd5f102db1cdd9ced25f733a5a0c5cb39b453e9fcede6815734

diff --git 
a/gnome-extra/gnome-shell-extension-desktop-icons-ng/gnome-shell-extension-desktop-icons-ng-33.0.ebuild
 
b/gnome-extra/gnome-shell-extension-desktop-icons-ng/gnome-shell-extension-desktop-icons-ng-33.0.ebuild
new file mode 100644
index ..210bf6fcb7b5
--- /dev/null
+++ 
b/gnome-extra/gnome-shell-extension-desktop-icons-ng/gnome-shell-extension-desktop-icons-ng-33.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit gnome2-utils meson
+
+MY_PN="ding"
+MY_P="${MY_PN}-${PV}"
+COMMIT="af3dc1568f069d145722920017474829"
+
+DESCRIPTION="Fork from the desktop-icons project, with several enhancements 
like Drag'n'Drop"
+HOMEPAGE="https://gitlab.com/rastersoft/desktop-icons-ng;
+SRC_URI="https://gitlab.com/rastersoft/desktop-icons-ng/uploads/${COMMIT}/${MY_P}.tar.xz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+COMMON_DEPEND="dev-libs/glib:2"
+RDEPEND="${COMMON_DEPEND}
+   app-eselect/eselect-gnome-shell-extensions
+   >=gnome-base/gnome-shell-3.38
+   >=gnome-base/nautilus-3.38
+"
+DEPEND="${COMMON_DEPEND}"
+BDEPEND=""
+
+S="${WORKDIR}/${MY_P}"
+extension_uuid="d...@rastersoft.com"
+
+pkg_preinst() {
+   gnome2_schemas_savelist
+}
+
+pkg_postinst() {
+   gnome2_schemas_update
+   ebegin "Updating list of installed extensions"
+   eselect gnome-shell-extensions update
+   eend $?
+}
+
+pkg_postrm() {
+   gnome2_schemas_update
+}



[gentoo-commits] repo/gentoo:master commit in: sys-auth/nss-pam-ldapd/

2021-12-21 Thread Matthew Thode
commit: 996436e62884b0a4c563391e3137f0c180859f26
Author: Matthew Thode  gentoo  org>
AuthorDate: Tue Dec 21 18:52:18 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Tue Dec 21 18:52:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=996436e6

sys-auth/nss-pam-ldapd: 0.9.12 stable amd64/x86

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

 sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.12.ebuild 
b/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.12.ebuild
index 945fc4c4e681..d6abaedaf53b 100644
--- a/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.12.ebuild
+++ b/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.12.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://arthurdejong.org/${PN}/${P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="debug kerberos +pam pynslcd sasl test +utils"
 RESTRICT="!test? ( test )"
 



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

2021-12-21 Thread Pacho Ramos
commit: dd8cb817ad5974e28ff5b62b4084177a31e2a70f
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Dec 21 18:10:29 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Dec 21 18:25:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd8cb817

dev-libs/satyr: Bump to 0.39

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

 dev-libs/satyr/Manifest  |   1 +
 dev-libs/satyr/satyr-0.39.ebuild | 101 +++
 2 files changed, 102 insertions(+)

diff --git a/dev-libs/satyr/Manifest b/dev-libs/satyr/Manifest
index 12fe8b7800d4..9969e66ff3ef 100644
--- a/dev-libs/satyr/Manifest
+++ b/dev-libs/satyr/Manifest
@@ -1 +1,2 @@
 DIST satyr-0.38.tar.gz 433626 BLAKE2B 
682d28a932758353e986d2906baf294183756d60a063ce03ba79506b58c92e4fc039c2246c0d43910f6d27d62dd674ffd3b772eeb6e8de46d8080735754b3d3a
 SHA512 
09168050ca7bae00fb3d39f23f8c1e0adcf9cc4d3e491aa002bf9a0a7a265df980d12e430ea7f3eaa9010e0432821b106db5ce3b1e8d935d78b1e56d37110051
+DIST satyr-0.39.tar.gz 434581 BLAKE2B 
7b4e11d8027877aa3b9e8144f8917f03b489b157c1112794a3c2bea9998a4367a7ec06cdec6c144fd96ecdabc83a85c5fb2644df02d59086ea3a113b1402fabe
 SHA512 
f6d24ae054867ccdbb2dabdd63c6b351f7eec9ffe5426bdeffa86d585a52d13b07dd31e26b7d14e4850a1fdca748b0d5e23bb51fbc2843af79bf306f09d3145f

diff --git a/dev-libs/satyr/satyr-0.39.ebuild b/dev-libs/satyr/satyr-0.39.ebuild
new file mode 100644
index ..754906da9469
--- /dev/null
+++ b/dev-libs/satyr/satyr-0.39.ebuild
@@ -0,0 +1,101 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{7..10} )
+
+inherit autotools multiprocessing python-r1
+
+DESCRIPTION="Satyr is a collection of low-level algorithms for program failure 
processing"
+HOMEPAGE="https://github.com/abrt/satyr;
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}/${P}.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0/4"
+
+IUSE="python"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   python? ( ${PYTHON_DEPS} )
+   >=dev-libs/elfutils-0.158
+   dev-libs/glib:2
+   dev-libs/json-c:=
+   dev-libs/nettle:=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+   dev-util/gperf
+"
+
+src_prepare() {
+   default
+   ./gen-version || die # Needs to be run before full autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   use python && python_setup
+
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-rpm
+   $(usex python "--with-python3" "--without-python3")
+   )
+
+   if use python; then
+   python_configure() {
+   econf "${myargs[@]}"
+   }
+   python_foreach_impl run_in_build_dir python_configure
+   else
+   econf "${myargs[@]}"
+   fi
+}
+
+src_compile() {
+   if use python; then
+   python_foreach_impl run_in_build_dir default
+   else
+   default
+   fi
+
+}
+
+src_test() {
+   local extra_args
+
+   # In order to pass --jobs to the test runner
+   run_tests() {
+   cd tests || die
+   emake testsuite
+   ./testsuite --jobs=$(makeopts_jobs) ${extra_args[@]} $@
+
+   # Only run the python bindings tests for other python impls
+   extra_args=('-k' 'python3_bindings.*')
+   }
+
+   if use python; then
+   python_foreach_impl run_in_build_dir run_tests
+   else
+   run_tests SKIP_PYTHON3=yes
+   fi
+}
+
+src_install() {
+   if use python; then
+   python_install() {
+   default
+   python_optimize
+   }
+   python_foreach_impl run_in_build_dir python_install
+   else
+   default
+   fi
+
+   find "${D}" -name '*.la' -type f -delete || die
+}



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

2021-12-21 Thread Pacho Ramos
commit: ad8911fe8312afbba19b4f0c6e9cfb3d044f670a
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Dec 21 18:24:54 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Dec 21 18:25:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad8911fe

x11-misc/virtualgl: Bump to 3.0

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

 x11-misc/virtualgl/Manifest |   1 +
 x11-misc/virtualgl/virtualgl-3.0.ebuild | 100 
 2 files changed, 101 insertions(+)

diff --git a/x11-misc/virtualgl/Manifest b/x11-misc/virtualgl/Manifest
index a868d4cd7b87..87e3548f1331 100644
--- a/x11-misc/virtualgl/Manifest
+++ b/x11-misc/virtualgl/Manifest
@@ -1 +1,2 @@
 DIST VirtualGL-2.6.5.tar.gz 1201656 BLAKE2B 
4dc38a144e197ea7578dd29eea5eb69fb3e96a75c2729605f6678fbc96f3cf039c2e1780aa69ca8836771f72731cd8cdd795237d69d4b591e330124496aecc1c
 SHA512 
0ab9e744e400d323bc16f6e2cf310905361745ea4da9e9e9a41cbeb45b1d661eebd38a0fad8ae5df4664d02b341de44c5730af8437e6ef49c7351b4afb953532
+DIST VirtualGL-3.0.tar.gz 1244024 BLAKE2B 
f540a90cd84efa0bee5ad124cb2ded8c1b863be8b719581c5daf67afcec7ef5ef2c78720962a4d3159de91e9cba068cea18a278a3c4f7eb65c98b4f13792044c
 SHA512 
9d2f56d44dba936f653ecf0350c581298c4c51d6deb114570df32c044991a61313d59fb140517864e760bc6f7fd93bd27ffd35e2ff8a024243472a822d5cfd98

diff --git a/x11-misc/virtualgl/virtualgl-3.0.ebuild 
b/x11-misc/virtualgl/virtualgl-3.0.ebuild
new file mode 100644
index ..284d9b318933
--- /dev/null
+++ b/x11-misc/virtualgl/virtualgl-3.0.ebuild
@@ -0,0 +1,100 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+CMAKE_ECLASS=cmake
+
+inherit cmake-multilib flag-o-matic systemd
+
+if [[ ${PV} == * ]] ; then
+   EGIT_REPO_URI="https://github.com/VirtualGL/${PN}.git;
+   inherit git-r3
+else
+   MY_PN="VirtualGL"
+   MY_P="${MY_PN}-${PV}"
+   S="${WORKDIR}/${MY_P}"
+   SRC_URI="mirror://sourceforge/project/${PN}/${PV}/${MY_P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Run OpenGL applications remotely with full 3D hardware 
acceleration"
+HOMEPAGE="https://www.virtualgl.org/;
+
+SLOT="0"
+LICENSE="LGPL-2.1 wxWinLL-3.1 FLTK"
+IUSE="ssl"
+
+RDEPEND="
+   ssl? (
+   dev-libs/openssl:0=[${MULTILIB_USEDEP}]
+   )
+   media-libs/libjpeg-turbo[${MULTILIB_USEDEP}]
+   x11-libs/libX11[${MULTILIB_USEDEP}]
+   x11-libs/libXext[${MULTILIB_USEDEP}]
+   x11-libs/libXtst[${MULTILIB_USEDEP}]
+   x11-libs/libXv[${MULTILIB_USEDEP}]
+   x11-libs/xcb-util-keysyms[${MULTILIB_USEDEP}]
+   virtual/glu[${MULTILIB_USEDEP}]
+   virtual/opencl[${MULTILIB_USEDEP}]
+   virtual/opengl[${MULTILIB_USEDEP}]
+   amd64? ( abi_x86_32? (
+   >=media-libs/libjpeg-turbo-1.3.0-r3[abi_x86_32]
+   >=x11-libs/libX11-1.6.2[abi_x86_32]
+   >=x11-libs/libXext-1.3.2[abi_x86_32]
+   >=x11-libs/libXtst-1.2.3[abi_x86_32]
+   >=x11-libs/libXv-1.0.10[abi_x86_32]
+   x11-libs/xcb-util-keysyms[abi_x86_32]
+   >=virtual/glu-9.0-r1[abi_x86_32]
+   virtual/opencl[abi_x86_32]
+   >=virtual/opengl-7.0-r1[abi_x86_32]
+   ) )
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   # Use /var/lib, bug #428122
+   sed -e "s#/etc/opt#/var/lib#g" -i doc/unixconfig.txt doc/index.html 
doc/advancedopengl.txt \
+   server/vglrun.in server/vglgenkey server/vglserver_config || die
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # Completely breaks steam/wine for discrete graphics otherwise
+   # see https://github.com/VirtualGL/virtualgl/issues/16
+   append-ldflags "-Wl,--no-as-needed"
+
+   abi_configure() {
+   local mycmakeargs=(
+   -DVGL_USESSL="$(usex ssl)"
+   -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/"${PF}"
+   -DTJPEG_INCLUDE_DIR=/usr/include
+   -DCMAKE_INSTALL_LIBDIR=/usr/$(get_libdir)/VirtualGL
+   -DTJPEG_LIBRARY=/usr/$(get_libdir)/libturbojpeg.so
+   -DCMAKE_LIBRARY_PATH=/usr/$(get_libdir)
+   )
+   cmake_src_configure
+   }
+   multilib_parallel_foreach_abi abi_configure
+}
+
+src_install() {
+   cmake-multilib_src_install
+
+   # Make config dir
+   keepdir /var/lib/VirtualGL
+   fowners root:video /var/lib/VirtualGL
+   fperms 0750 /var/lib/VirtualGL
+   newinitd "${FILESDIR}/vgl.initd-r4" vgl
+   newconfd "${FILESDIR}/vgl.confd-r2" vgl
+
+   exeinto /usr/libexec
+   doexe "${FILESDIR}/vgl-helper.sh"
+   systemd_dounit "${FILESDIR}/vgl.service"
+
+   # Rename glxinfo to vglxinfo to avoid conflict with x11-apps/mesa-progs
+   mv "${D}"/usr/bin/{,v}glxinfo || die
+
+   # Remove license files, bug 536284
+ 

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

2021-12-21 Thread Pacho Ramos
commit: f4e331e4ddb42607fa69dee932fb3c94d9e30277
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Dec 21 18:15:37 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Dec 21 18:25:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4e331e4

x11-misc/meteo: Skip tests

One is useless, the other relies on network

Closes: https://bugs.gentoo.org/828052
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Pacho Ramos  gentoo.org>

 x11-misc/meteo/meteo-0.9.9.1.ebuild | 4 
 1 file changed, 4 insertions(+)

diff --git a/x11-misc/meteo/meteo-0.9.9.1.ebuild 
b/x11-misc/meteo/meteo-0.9.9.1.ebuild
index 13bc758b8d46..c59cd6c5c713 100644
--- a/x11-misc/meteo/meteo-0.9.9.1.ebuild
+++ b/x11-misc/meteo/meteo-0.9.9.1.ebuild
@@ -30,6 +30,10 @@ BDEPEND="
virtual/pkgconfig
 "
 
+# One test needs network (#828052), the other simply checks desktop file
+# validation, that we also test with our QA tests
+RESTRICT="test"
+
 src_prepare() {
default
vala_src_prepare



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

2021-12-21 Thread Pacho Ramos
commit: 84309462b3bd6ae888484d63a4fb313676093997
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Dec 21 18:17:15 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Dec 21 18:25:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84309462

x11-misc/meteo: fix builds with -native-symlinks

Closes: https://bugs.gentoo.org/828053
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Pacho Ramos  gentoo.org>

 x11-misc/meteo/meteo-0.9.9.1.ebuild | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/x11-misc/meteo/meteo-0.9.9.1.ebuild 
b/x11-misc/meteo/meteo-0.9.9.1.ebuild
index c59cd6c5c713..6f69fd93946c 100644
--- a/x11-misc/meteo/meteo-0.9.9.1.ebuild
+++ b/x11-misc/meteo/meteo-0.9.9.1.ebuild
@@ -2,7 +2,9 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-inherit gnome2-utils meson vala xdg
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit gnome2-utils meson python-any-r1 vala xdg
 
 DESCRIPTION="Forecast application using OpenWeatherMap API"
 HOMEPAGE="https://gitlab.com/bitseater/meteo;
@@ -24,7 +26,7 @@ RDEPEND="${DEPEND}
gnome-base/gsettings-desktop-schemas
x11-themes/hicolor-icon-theme
 "
-BDEPEND="
+BDEPEND="${PYTHON_DEPS}
dev-libs/appstream-glib
dev-util/intltool
virtual/pkgconfig



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

2021-12-21 Thread Zac Medico
commit: dedbff4d0855dab490e33e6ec55cac99222ab413
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Dec 21 17:34:43 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Dec 21 17:34:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dedbff4d

dev-python/sqlalchemy-rqlite: bump to version 1.1.1

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

 dev-python/sqlalchemy-rqlite/Manifest  |  1 +
 .../sqlalchemy-rqlite-1.1.1.ebuild | 29 ++
 2 files changed, 30 insertions(+)

diff --git a/dev-python/sqlalchemy-rqlite/Manifest 
b/dev-python/sqlalchemy-rqlite/Manifest
index 418e1b79317d..f690fe2925a7 100644
--- a/dev-python/sqlalchemy-rqlite/Manifest
+++ b/dev-python/sqlalchemy-rqlite/Manifest
@@ -1 +1,2 @@
+DIST sqlalchemy-rqlite-1.1.1.tar.gz 4285 BLAKE2B 
e644238621bb0115338e31030895b4da2d250ddc6cdc7dd8bd093862debf5b59d6aa01c10d8ee19387db03420cdef9edb95e1c445e465ac838f43f80b4a23f5d
 SHA512 
5cc37f09eb1e5c7baa370498ba1d07b0255bf18abbcb1b5213eb0acfd83990024f5f5030ed20cac1a2b240c26b799c00f2400fffd79455d14d122b75406614bb
 DIST sqlalchemy-rqlite-1.1.tar.gz 4281 BLAKE2B 
09cee627790d15715c0124a1065f5cc2c72820a652a99e4c2088de21c980071f27c451e438e84d4c9d19b651b0e239fac8280c2bbb33c55e76c9b77868b7
 SHA512 
da11cadd2b6dd0f3501bdf717ad7dd7552edfcf7f32a57ce09b6dadc7eb7fb31fd92e7143151a3e3b2d5f75793f6e5096d13dbe446cb71cfa901d6ff8d4c6e12

diff --git a/dev-python/sqlalchemy-rqlite/sqlalchemy-rqlite-1.1.1.ebuild 
b/dev-python/sqlalchemy-rqlite/sqlalchemy-rqlite-1.1.1.ebuild
new file mode 100644
index ..d0115a2f70cc
--- /dev/null
+++ b/dev-python/sqlalchemy-rqlite/sqlalchemy-rqlite-1.1.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+DISTUTILS_USE_SETUPTOOLS=bdepend
+
+inherit distutils-r1
+
+DESCRIPTION="A SQLAlchemy dialect for rqlite"
+EGIT_REPO_URI="https://github.com/rqlite/sqlalchemy-rqlite.git;
+HOMEPAGE="https://github.com/rqlite/sqlalchemy-rqlite;
+SRC_URI="https://github.com/rqlite/sqlalchemy-rqlite/archive//v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   dev-python/pyrqlite[${PYTHON_USEDEP}]
+   dev-python/sqlalchemy[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   sed -e "s:^__version__ = .*:__version__ = '${PV}':" -i 
src/sqlalchemy_rqlite/constants.py || die
+   distutils-r1_src_prepare
+}



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

2021-12-21 Thread Zac Medico
commit: 784d4a32c7412a2a5999cf2ec83a68b3c4cd1869
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Dec 21 17:28:47 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Dec 21 17:29:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=784d4a32

dev-db/rqlite: Bump to version 6.8.2

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

 dev-db/rqlite/Manifest|   1 +
 dev-db/rqlite/rqlite-6.8.2.ebuild | 230 ++
 2 files changed, 231 insertions(+)

diff --git a/dev-db/rqlite/Manifest b/dev-db/rqlite/Manifest
index 76f61df70af1..3623a38d7096 100644
--- a/dev-db/rqlite/Manifest
+++ b/dev-db/rqlite/Manifest
@@ -437,5 +437,6 @@ DIST rqlite-6.1.0.tar.gz 380849 BLAKE2B 
87f7d0531e3abe4a574672e17921f4a7bec76dee
 DIST rqlite-6.7.0.tar.gz 405614 BLAKE2B 
9845acc7310d0c5611b3922215db473f04f0828d7267c6f84607ca7cae744ff8fe0eccd3f4d4d0617e89b0490e00a0136e1959a2ec70a608c05d4af79b05d5e1
 SHA512 
c0df563216062fae9b2751d9417133fdd5c02834d3b388e3132902a921ed04b9fa43a41d750bd763882bbd0369ba51f454282f071f893a03b02e2f60c6d9494e
 DIST rqlite-6.8.0.tar.gz 405944 BLAKE2B 
74b7feae8c26e2cbd3537df1a5de995ed63c403b54d9ceba46f914bb62ae7c486ee0b7b0e8d6ca05518b26d4ce25170c6e6760eade6cecd965ebe91ef2a02f12
 SHA512 
26648b411ca8a8af436400dfd0d2316fa8a0ac86de1427b4e810d05fa809c3457b7e31f321e8e28840dd671530216b9a2a3e611785d7863f6212ee2bd2b028cb
 DIST rqlite-6.8.1.tar.gz 406206 BLAKE2B 
edf0450e443c7da683b02bc3eb87e82ee900519a030e1b579e8849b417de006b219df0d322c6efc26ec2f7cb70ecf617d4b1bbe174d42a52d3bb3f7e4cd8356e
 SHA512 
c2015637ee1f2ac1611e2b0ebf1adc44ef7bdc136b0253f99a89e33877851d688b15bda1c5e5d2b4906b8bd987522d5cc91e7b56efb85aeb4215ea3afd6e35ea
+DIST rqlite-6.8.2.tar.gz 407332 BLAKE2B 
5fd86cfbdf4332c1845ba7566acfdd642d759fc67020eee6f969265c4c411bda52404482cee653c111444b79ede2325a3e0d388c211e3ad6133c1ab97ba6805f
 SHA512 
34685761ba750182e19b91afb5fcbbf9cca92f0322c36eafcc331603ac6a1b5f23a718c5d1f645caea8a85823c33790cd7de41e6686cee1ed99f7c0f2a3f54f9
 DIST xorm.io%2Fbuilder%2F@v%2Fv0.3.6.mod 146 BLAKE2B 
2db3e352ea5e2e318fe56cfa165d5345f4d85f0523ef6cc495c7f4596bedfb4dc3730c1842a62b75e532cb50505db10162dce1dee8ce5860a3e7b17c83a37910
 SHA512 
05161f20c13095943f26bbddf4e8ecf60a79121edef21567e51366fe13f5ac24ed8a5ff836484a23d27ccc5b5345a780973097218e2fbf43847cdc94d45ab7ec
 DIST xorm.io%2Fcore%2F@v%2Fv0.7.2-0.20190928055935-90aeac8d08eb.mod 193 
BLAKE2B 
ee37149b40933dc6446d105468e577643ff324821320be45bb82bcedc13882e5e1236dd89eaec2d883db33ccc60584dd9a4c5309b60822b778a393897478bb22
 SHA512 
5af3eed4c6cfb8f258f0fd2e8fc924aa15e16431298e1d79ffc9701fb37b8393dfa4dcf922d8ce704df7dbf6b36684540eb0972da3f13ddc4c5f3bdb07dc7090

diff --git a/dev-db/rqlite/rqlite-6.8.2.ebuild 
b/dev-db/rqlite/rqlite-6.8.2.ebuild
new file mode 100644
index ..793a36819e75
--- /dev/null
+++ b/dev-db/rqlite/rqlite-6.8.2.ebuild
@@ -0,0 +1,230 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit go-module
+EGIT_COMMIT=879b004dea0b1dda549b57e1a2531daa6d55d897
+
+DESCRIPTION="Replicated SQLite using the Raft consensus protocol"
+HOMEPAGE="https://github.com/rqlite/rqlite 
https://www.philipotoole.com/tag/rqlite/;
+
+EGO_SUM=(
+"github.com/Bowery/prompt v0.0.0-20190916142128-fa8279994f75"
+"github.com/Bowery/prompt v0.0.0-20190916142128-fa8279994f75/go.mod"
+"github.com/DataDog/datadog-go v2.2.0+incompatible/go.mod"
+"github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod"
+"github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod"
+"github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod"
+"github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod"
+"github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod"
+"github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878/go.mod"
+"github.com/armon/go-metrics v0.3.9"
+"github.com/armon/go-metrics v0.3.9/go.mod"
+"github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod"
+"github.com/beorn7/perks v1.0.0/go.mod"
+"github.com/beorn7/perks v1.0.1/go.mod"
+"github.com/boltdb/bolt v1.3.1"
+"github.com/boltdb/bolt v1.3.1/go.mod"
+"github.com/cespare/xxhash/v2 v2.1.1/go.mod"
+"github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod"
+"github.com/circonus-labs/circonusllhist v0.1.3/go.mod"
+"github.com/davecgh/go-spew v1.1.0/go.mod"
+"github.com/davecgh/go-spew v1.1.1"
+"github.com/davecgh/go-spew v1.1.1/go.mod"
+"github.com/fatih/color v1.7.0/go.mod"
+"github.com/fatih/color v1.12.0"
+"github.com/fatih/color v1.12.0/go.mod"
+"github.com/go-kit/kit v0.8.0/go.mod"
+"github.com/go-kit/kit v0.9.0/go.mod"
+"github.com/go-logfmt/logfmt v0.3.0/go.mod"
+"github.com/go-logfmt/logfmt v0.4.0/go.mod"
+"github.com/go-stack/stack v1.8.0/go.mod"
+"github.com/gogo/protobuf v1.1.1/go.mod"
+"github.com/golang/protobuf v1.2.0/go.mod"
+"github.com/golang/protobuf 

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

2021-12-21 Thread Stephan Hartmann
commit: 46be07fc80b9de6035f53e4acc6de24aefe955c9
Author: Stephan Hartmann  gentoo  org>
AuthorDate: Tue Dec 21 17:27:23 2021 +
Commit: Stephan Hartmann  gentoo  org>
CommitDate: Tue Dec 21 17:27:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46be07fc

www-client/chromium: raise minimum harfbuzz version

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Stephan Hartmann  gentoo.org>

 www-client/chromium/chromium-96.0.4664.110.ebuild   | 2 +-
 www-client/chromium/chromium-97.0.4692.56-r1.ebuild | 2 +-
 www-client/chromium/chromium-98.0.4758.9.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-client/chromium/chromium-96.0.4664.110.ebuild 
b/www-client/chromium/chromium-96.0.4664.110.ebuild
index 9acfaae12a4c..c46e097f6912 100644
--- a/www-client/chromium/chromium-96.0.4664.110.ebuild
+++ b/www-client/chromium/chromium-96.0.4664.110.ebuild
@@ -57,7 +57,7 @@ COMMON_DEPEND="
>=media-libs/alsa-lib-1.0.19:=
media-libs/fontconfig:=
>=media-libs/freetype-2.11.0-r1:=
-   system-harfbuzz? ( >=media-libs/harfbuzz-2.9.0:0=[icu(-)] )
+   system-harfbuzz? ( >=media-libs/harfbuzz-3:0=[icu(-)] )
media-libs/libjpeg-turbo:=
system-png? ( media-libs/libpng:=[-apng] )
pulseaudio? ( media-sound/pulseaudio:= )

diff --git a/www-client/chromium/chromium-97.0.4692.56-r1.ebuild 
b/www-client/chromium/chromium-97.0.4692.56-r1.ebuild
index 933da6984230..9f7bc657a268 100644
--- a/www-client/chromium/chromium-97.0.4692.56-r1.ebuild
+++ b/www-client/chromium/chromium-97.0.4692.56-r1.ebuild
@@ -55,7 +55,7 @@ COMMON_DEPEND="
>=media-libs/alsa-lib-1.0.19:=
media-libs/fontconfig:=
>=media-libs/freetype-2.11.0-r1:=
-   system-harfbuzz? ( >=media-libs/harfbuzz-2.9.0:0=[icu(-)] )
+   system-harfbuzz? ( >=media-libs/harfbuzz-3:0=[icu(-)] )
media-libs/libjpeg-turbo:=
system-png? ( media-libs/libpng:=[-apng] )
pulseaudio? ( media-sound/pulseaudio:= )

diff --git a/www-client/chromium/chromium-98.0.4758.9.ebuild 
b/www-client/chromium/chromium-98.0.4758.9.ebuild
index 7d384748c62d..b5052733a30c 100644
--- a/www-client/chromium/chromium-98.0.4758.9.ebuild
+++ b/www-client/chromium/chromium-98.0.4758.9.ebuild
@@ -55,7 +55,7 @@ COMMON_DEPEND="
>=media-libs/alsa-lib-1.0.19:=
media-libs/fontconfig:=
>=media-libs/freetype-2.11.0-r1:=
-   system-harfbuzz? ( >=media-libs/harfbuzz-2.9.0:0=[icu(-)] )
+   system-harfbuzz? ( >=media-libs/harfbuzz-3:0=[icu(-)] )
media-libs/libjpeg-turbo:=
system-png? ( media-libs/libpng:=[-apng] )
pulseaudio? ( media-sound/pulseaudio:= )



  1   2   >