[gentoo-commits] repo/gentoo:master commit in: dev-cpp/range-v3/files/, dev-cpp/range-v3/

2020-11-23 Thread Georgy Yakovlev
commit: 519e132ee06a9ce07d4eea867332e855b3be1738
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Nov 24 07:39:12 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Nov 24 07:47:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=519e132e

dev-cpp/range-v3: add gcc10 patch

Closes: https://bugs.gentoo.org/756289
Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-cpp/range-v3/files/0.11.0-gcc10.patch | 133 ++
 dev-cpp/range-v3/range-v3-0.11.0.ebuild   |   5 +-
 2 files changed, 137 insertions(+), 1 deletion(-)

diff --git a/dev-cpp/range-v3/files/0.11.0-gcc10.patch 
b/dev-cpp/range-v3/files/0.11.0-gcc10.patch
new file mode 100644
index 000..caebf0a6316
--- /dev/null
+++ b/dev-cpp/range-v3/files/0.11.0-gcc10.patch
@@ -0,0 +1,133 @@
+From a91f0e1be27a31c446452a753001d4518ef83a6b Mon Sep 17 00:00:00 2001
+From: Eric Niebler 
+Date: Mon, 17 Aug 2020 17:48:09 -0700
+Subject: [PATCH] work around premature instantiation problem on gcc; fixes
+ #1545
+
+---
+ include/range/v3/view/chunk.hpp |  6 +++---
+ include/range/v3/view/split.hpp | 26 +-
+ 2 files changed, 16 insertions(+), 16 deletions(-)
+
+diff --git a/include/range/v3/view/chunk.hpp b/include/range/v3/view/chunk.hpp
+index 0c03cf1eb..b8df13303 100644
+--- a/include/range/v3/view/chunk.hpp
 b/include/range/v3/view/chunk.hpp
+@@ -313,8 +313,8 @@ namespace ranges
+ 
+ public:
+ inner_view() = default;
+-constexpr explicit inner_view(chunk_view_ & view) noexcept
+-  : rng_{}
++constexpr explicit inner_view(chunk_view_ * view) noexcept
++  : rng_{view}
+ {}
+ CPP_auto_member
+ constexpr auto CPP_fun(size)()(
+@@ -338,7 +338,7 @@ namespace ranges
+ constexpr inner_view read() const
+ {
+ RANGES_EXPECT(!done());
+-return inner_view{*rng_};
++return inner_view{rng_};
+ }
+ constexpr bool done() const
+ {
+diff --git a/include/range/v3/view/split.hpp b/include/range/v3/view/split.hpp
+index facf1b37f..496220e4a 100644
+--- a/include/range/v3/view/split.hpp
 b/include/range/v3/view/split.hpp
+@@ -389,19 +389,19 @@ namespace ranges
+ split_outer_iterator() = default;
+ 
+ CPP_member
+-constexpr explicit CPP_ctor(split_outer_iterator)(Parent & 
parent)(
++constexpr explicit CPP_ctor(split_outer_iterator)(Parent * 
parent)(
+ /// \pre
+ requires (!forward_range))
+-  : parent_()
++  : parent_(parent)
+ {}
+ 
+ CPP_member
+-constexpr CPP_ctor(split_outer_iterator)(Parent & parent,
++constexpr CPP_ctor(split_outer_iterator)(Parent * parent,
+  iterator_t 
current)(
+ /// \pre
+ requires forward_range)
+   : Current{std::move(current)}
+-  , parent_()
++  , parent_(parent)
+ {}
+ 
+ template(bool Other)(
+@@ -519,7 +519,7 @@ namespace ranges
+   ranges::equal_to> &&
+ (forward_range || detail::tiny_range)
+ #endif
+-struct RANGES_EMPTY_BASES split_view
++struct RANGES_EMPTY_BASES split_view
+   : view_interface, is_finite::value ? finite : 
unknown>
+   , private detail::split_view_base>
+ {
+@@ -537,17 +537,17 @@ namespace ranges
+ #if RANGES_CXX_IF_CONSTEXPR < RANGES_CXX_IF_CONSTEXPR_17
+ outer_iterator()> begin_(std::true_type)
+ {
+-return outer_iterator()>{*this, 
ranges::begin(base_)};
++return outer_iterator()>{this, 
ranges::begin(base_)};
+ }
+ outer_iterator begin_(std::false_type)
+ {
+ this->curr_ = ranges::begin(base_);
+-return outer_iterator{*this};
++return outer_iterator{this};
+ }
+ 
+ outer_iterator()> end_(std::true_type) const
+ {
+-return outer_iterator{*this, ranges::end(base_)};
++return outer_iterator{this, ranges::end(base_)};
+ }
+ default_sentinel_t end_(std::false_type) const
+ {
+@@ -580,11 +580,11 @@ namespace ranges
+ {
+ #if RANGES_CXX_IF_CONSTEXPR >= RANGES_CXX_IF_CONSTEXPR_17
+ if constexpr(forward_range)
+-return outer_iterator()>{*this, 
ranges::begin(base_)};
++return outer_iterator()>{this, 
ranges::begin(base_)};
+ else
+ {
+ this->curr_ = ranges::begin(base_);
+-return outer_iterator{*this};
++return outer_iterator{this};
+ }
+ #else
+ 

[gentoo-commits] repo/gentoo:master commit in: dev-lua/luafilesystem/

2020-11-23 Thread Agostino Sarubbo
commit: b87e0210d0e321505eee29fb942c7396d0309fe8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:45:38 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:45:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b87e0210

dev-lua/luafilesystem: x86 stable wrt bug #756133

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

 dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild 
b/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild
index bec61740e5f..0366ccae895 100644
--- a/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild
+++ b/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ppc64 sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ppc64 sparc x86"
 IUSE="luajit test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luaexpat/

2020-11-23 Thread Agostino Sarubbo
commit: c6d68442efa94bdf341392c69114ac4ca1b73954
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:45:32 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:45:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6d68442

dev-lua/luaexpat: x86 stable wrt bug #756130

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

 dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild 
b/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild
index bb2ef53bdb6..37600917577 100644
--- a/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild
+++ b/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://matthewwild.co.uk/projects/${PN}/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ppc64 sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ppc64 sparc x86"
 
 RDEPEND=">=dev-lang/lua-5.1.5-r2:0[${MULTILIB_USEDEP}]
>=dev-libs/expat-2.1.0-r3[${MULTILIB_USEDEP}]"



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

2020-11-23 Thread Agostino Sarubbo
commit: 8de24916b0309b41b7fa1ce47cf335039aaf222c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:45:20 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:45:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8de24916

app-shells/tcsh: x86 stable wrt bug #756097

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

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

diff --git a/app-shells/tcsh/tcsh-6.22.02.ebuild 
b/app-shells/tcsh/tcsh-6.22.02.ebuild
index 958e2b043d6..fa187740653 100644
--- a/app-shells/tcsh/tcsh-6.22.02.ebuild
+++ b/app-shells/tcsh/tcsh-6.22.02.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls doc"
 RESTRICT="test"
 



[gentoo-commits] repo/gentoo:master commit in: dev-lua/lua-bit32/

2020-11-23 Thread Agostino Sarubbo
commit: 90e37566b8f6c7f405acae41dae885bdd9a9cd2c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:45:26 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:45:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90e37566

dev-lua/lua-bit32: x86 stable wrt bug #756127

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

 dev-lua/lua-bit32/lua-bit32-5.3.5-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/lua-bit32/lua-bit32-5.3.5-r2.ebuild 
b/dev-lua/lua-bit32/lua-bit32-5.3.5-r2.ebuild
index 4b09e47c5c1..63a13ff6ed8 100644
--- a/dev-lua/lua-bit32/lua-bit32-5.3.5-r2.ebuild
+++ b/dev-lua/lua-bit32/lua-bit32-5.3.5-r2.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${LUA_COMPAT_PN}-${LUA_COMPAT_PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RESTRICT="!test? ( test )"



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

2020-11-23 Thread Agostino Sarubbo
commit: a0710b1b84e177d929d84b6792cadd4b527cf2e0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:45:07 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:45:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0710b1b

dev-libs/concurrencykit: x86 stable wrt bug #721454

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

 dev-libs/concurrencykit/concurrencykit-0.7.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/concurrencykit/concurrencykit-0.7.0-r1.ebuild 
b/dev-libs/concurrencykit/concurrencykit-0.7.0-r1.ebuild
index 3a87fe43a08..5d89ca45945 100644
--- a/dev-libs/concurrencykit/concurrencykit-0.7.0-r1.ebuild
+++ b/dev-libs/concurrencykit/concurrencykit-0.7.0-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="Apache-2.0 BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 # The 'libck.so' has a name collision.
 # See #616762 for more information.



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

2020-11-23 Thread Agostino Sarubbo
commit: d2961db9b1f324d95452d23571ddec46ce025f7e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:45:13 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:45:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2961db9

dev-python/aodhclient: x86 stable wrt bug #754423

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

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

diff --git a/dev-python/aodhclient/aodhclient-2.1.1.ebuild 
b/dev-python/aodhclient/aodhclient-2.1.1.ebuild
index 4b3bbb311a9..9e11098c644 100644
--- a/dev-python/aodhclient/aodhclient-2.1.1.ebuild
+++ b/dev-python/aodhclient/aodhclient-2.1.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 
 DEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
 RDEPEND="



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

2020-11-23 Thread Agostino Sarubbo
commit: 8a2ef71ff937c675662e4e8fafd0f59e31ede5f9
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:44:06 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:44:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a2ef71f

media-libs/libdvdnav: sparc stable wrt bug #755713

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/media-libs/libdvdnav/libdvdnav-6.1.0.ebuild 
b/media-libs/libdvdnav/libdvdnav-6.1.0.ebuild
index d08e9c9f9a1..24b463f1a4b 100644
--- a/media-libs/libdvdnav/libdvdnav-6.1.0.ebuild
+++ b/media-libs/libdvdnav/libdvdnav-6.1.0.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} =  ]]; then
EGIT_REPO_URI="https://code.videolan.org/videolan/libdvdnav.git;
 else

SRC_URI="https://downloads.videolan.org/pub/videolan/libdvdnav/${PV}/${P}.tar.bz2;
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2020-11-23 Thread Agostino Sarubbo
commit: c9592e6205a48cba952a391f7ec41186d972fad9
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:44:12 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:44:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9592e62

app-shells/tcsh: sparc stable wrt bug #756097

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/app-shells/tcsh/tcsh-6.22.02.ebuild 
b/app-shells/tcsh/tcsh-6.22.02.ebuild
index 67aa13f2c16..958e2b043d6 100644
--- a/app-shells/tcsh/tcsh-6.22.02.ebuild
+++ b/app-shells/tcsh/tcsh-6.22.02.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls doc"
 RESTRICT="test"
 



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luafilesystem/

2020-11-23 Thread Agostino Sarubbo
commit: 1bc977c3a20242083f2882b65d0a41ab828af884
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:44:29 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:44:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bc977c3

dev-lua/luafilesystem: sparc stable wrt bug #756133

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild 
b/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild
index 3d39e9345ca..bec61740e5f 100644
--- a/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild
+++ b/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ppc64 ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ppc64 sparc ~x86"
 IUSE="luajit test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luaexpat/

2020-11-23 Thread Agostino Sarubbo
commit: 1d66b01db53024e7d029700edecef422fe1a737d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:44:24 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:44:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d66b01d

dev-lua/luaexpat: sparc stable wrt bug #756130

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild 
b/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild
index 5100598fa03..bb2ef53bdb6 100644
--- a/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild
+++ b/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://matthewwild.co.uk/projects/${PN}/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ppc64 ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ppc64 sparc ~x86"
 
 RDEPEND=">=dev-lang/lua-5.1.5-r2:0[${MULTILIB_USEDEP}]
>=dev-libs/expat-2.1.0-r3[${MULTILIB_USEDEP}]"



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

2020-11-23 Thread Agostino Sarubbo
commit: 8819cad203880de4504a853c19e9b7d18e34d2e8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:44:18 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:44:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8819cad2

dev-libs/protobuf: sparc stable wrt bug #756118

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-libs/protobuf/protobuf-3.13.0.ebuild 
b/dev-libs/protobuf/protobuf-3.13.0.ebuild
index ad893449678..574a6378267 100644
--- a/dev-libs/protobuf/protobuf-3.13.0.ebuild
+++ b/dev-libs/protobuf/protobuf-3.13.0.ebuild
@@ -22,7 +22,7 @@ fi
 
 LICENSE="BSD"
 SLOT="0/24"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="emacs examples static-libs test zlib"
 RESTRICT="!test? ( test )"
 



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

2020-11-23 Thread Agostino Sarubbo
commit: fd8340e565a8ca2d1f7775143c0142f9b90e3dda
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:43:20 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:43:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd8340e5

dev-libs/libuv: s390 stable wrt bug #756100

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-libs/libuv/libuv-1.40.0.ebuild 
b/dev-libs/libuv/libuv-1.40.0.ebuild
index 639dc33b7b0..e28c69df1e8 100644
--- a/dev-libs/libuv/libuv-1.40.0.ebuild
+++ b/dev-libs/libuv/libuv-1.40.0.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/libuv/libuv/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="BSD BSD-2 ISC MIT"
 SLOT="0/1"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 RESTRICT="test"
 



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

2020-11-23 Thread Agostino Sarubbo
commit: c9937681e2154d668964ae7872d0e261a79f0253
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:42:52 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:43:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9937681

dev-python/gevent: s390 stable wrt bug #751130

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/gevent/gevent-20.9.0.ebuild 
b/dev-python/gevent/gevent-20.9.0.ebuild
index 0dbde5af266..02832ebf0ba 100644
--- a/dev-python/gevent/gevent-20.9.0.ebuild
+++ b/dev-python/gevent/gevent-20.9.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~mips ppc ppc64 s390 ~sparc x86 ~amd64-linux 
~x86-linux"
 IUSE="doc examples test"
 RESTRICT="!test? ( test )"
 



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

2020-11-23 Thread Agostino Sarubbo
commit: 916685a5f2a60927464c1a11c37a076e3d5bf3dc
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:42:57 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:43:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=916685a5

net-dns/c-ares: s390 stable wrt bug #754939

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-dns/c-ares/c-ares-1.17.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/c-ares/c-ares-1.17.1.ebuild 
b/net-dns/c-ares/c-ares-1.17.1.ebuild
index 53b0bfac10b..b631620709e 100644
--- a/net-dns/c-ares/c-ares-1.17.1.ebuild
+++ b/net-dns/c-ares/c-ares-1.17.1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://c-ares.haxx.se/;
 SRC_URI="https://${PN}.haxx.se/download/${P}.tar.gz;
 
 LICENSE="MIT"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris"
 IUSE="static-libs"
 
 # Subslot = SONAME of libcares.so.2



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

2020-11-23 Thread Agostino Sarubbo
commit: 901acb79a52cf123eb455c756746c59524ad433b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:43:10 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:43:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=901acb79

sys-libs/libseccomp: s390 stable wrt bug #755494

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/sys-libs/libseccomp/libseccomp-2.4.4.ebuild 
b/sys-libs/libseccomp/libseccomp-2.4.4.ebuild
index a459332f72a..fb7d1492bd8 100644
--- a/sys-libs/libseccomp/libseccomp-2.4.4.ebuild
+++ b/sys-libs/libseccomp/libseccomp-2.4.4.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/seccomp/libseccomp/releases/download/v${PV}/${P}.tar
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="-* amd64 arm arm64 hppa ~mips ppc ppc64 ~s390 x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="-* amd64 arm arm64 hppa ~mips ppc ppc64 s390 x86 ~amd64-linux 
~x86-linux"
 IUSE="static-libs"
 
 # We need newer kernel headers; we don't keep strict control of the exact



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

2020-11-23 Thread Agostino Sarubbo
commit: cf31892fad9a7afe69591ddbede6932a5e34fb62
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:43:15 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:43:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf31892f

app-shells/tcsh: s390 stable wrt bug #756097

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/app-shells/tcsh/tcsh-6.22.02.ebuild 
b/app-shells/tcsh/tcsh-6.22.02.ebuild
index 23ee8b2ee1f..67aa13f2c16 100644
--- a/app-shells/tcsh/tcsh-6.22.02.ebuild
+++ b/app-shells/tcsh/tcsh-6.22.02.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls doc"
 RESTRICT="test"
 



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

2020-11-23 Thread Agostino Sarubbo
commit: 963ce850be48f842369179c770085b342aec1e6a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:43:05 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:43:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=963ce850

app-text/poppler-data: s390 stable wrt bug #755107

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-text/poppler-data/poppler-data-0.4.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/poppler-data/poppler-data-0.4.10.ebuild 
b/app-text/poppler-data/poppler-data-0.4.10.ebuild
index 07edf057c2e..6a1cff86560 100644
--- a/app-text/poppler-data/poppler-data-0.4.10.ebuild
+++ b/app-text/poppler-data/poppler-data-0.4.10.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://poppler.freedesktop.org/;
 SRC_URI="https://poppler.freedesktop.org/${P}.tar.gz;
 
 LICENSE="BSD GPL-2 MIT"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE=""
 



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

2020-11-23 Thread Agostino Sarubbo
commit: 66ad8fb0e9d16e0cc820e3516d607731c1be68c0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:43:03 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:43:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66ad8fb0

app-text/poppler: s390 stable wrt bug #755107

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/app-text/poppler/poppler-20.11.0.ebuild 
b/app-text/poppler/poppler-20.11.0.ebuild
index 9ed52709cf6..b29d228c5b7 100644
--- a/app-text/poppler/poppler-20.11.0.ebuild
+++ b/app-text/poppler/poppler-20.11.0.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == ** ]] ; then
SLOT="0/"
 else
SRC_URI="https://poppler.freedesktop.org/${P}.tar.xz;
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
SLOT="0/104"   # CHECK THIS WHEN BUMPING!!! SUBSLOT IS libpoppler.so 
SOVERSION
 fi
 



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

2020-11-23 Thread Agostino Sarubbo
commit: b3a9accd9e881776b4dbbea8dfc8cc2ab2a4f71e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:42:47 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:43:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3a9accd

sys-devel/automake: s390 stable wrt bug #725354

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-devel/automake/automake-1.16.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/automake/automake-1.16.2-r1.ebuild 
b/sys-devel/automake/automake-1.16.2-r1.ebuild
index c2434906c6c..a40192308de 100644
--- a/sys-devel/automake/automake-1.16.2-r1.ebuild
+++ b/sys-devel/automake/automake-1.16.2-r1.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} ==  ]] ; then
 
inherit git-r3
 else
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
if [[ ${PV/_beta} == ${PV} ]]; then
MY_P="${P}"
SRC_URI="mirror://gnu/${PN}/${P}.tar.xz



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

2020-11-23 Thread Michał Górny
commit: 3f08821d36f1e85733b310a9a67db830058eb9fe
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Nov 23 23:34:39 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 24 07:42:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f08821d

dev-python/pyfakefs: Bump to 4.3.1

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

 dev-python/pyfakefs/Manifest  |  1 +
 dev-python/pyfakefs/pyfakefs-4.3.1.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-python/pyfakefs/Manifest b/dev-python/pyfakefs/Manifest
index ea9f49beb8c..d213b45263f 100644
--- a/dev-python/pyfakefs/Manifest
+++ b/dev-python/pyfakefs/Manifest
@@ -2,3 +2,4 @@ DIST pyfakefs-4.1.0.tar.gz 185920 BLAKE2B 
ee61e5ecda697150374bef035054038aed29e2
 DIST pyfakefs-4.2.0.tar.gz 192826 BLAKE2B 
b1b337f5845075d8c9f32565dc1169ec2fde7e49a0bcf2f446d09f090c8c46c69690259bfc1d8e76b754477303de049790a69a209c0ed11af465bd5ca2b2ddcd
 SHA512 
d70266bac134eca45af3d2838f9f276217305add719aa1ed3606406b33b2d2f8bda20fbcdd4653e2a5e08baf717dd0f20005aa6f66ea519e52247c88fa8d72b2
 DIST pyfakefs-4.2.1.tar.gz 192910 BLAKE2B 
dd1826b8fbddb9c9f272cd6fe0a286a41dbcf1bba625cfaef22ea1f17089f6acf346c3a84e56e6ad41f501329c06539bcda72cad670481a3ad770d014ad1e93d
 SHA512 
99ee0ece46ed457dcf98c4c59ee905e58bbfe66e4fadcc3d3d9d725c2ce7b4fae25bc3cf847c85045a828beab52f315ec2ee78e6fea4b23cfe9aaddfd49f1829
 DIST pyfakefs-4.3.0.tar.gz 194821 BLAKE2B 
f7deca18ad019dba12ac35bac44be339fc1eef0ef609f33b2fa8974f3bd65a25fba043f0afef0e332f9a71f501eb7c6e890acbfcfc9c8acb780dc88140a6
 SHA512 
42c6e9da0f098eeb948fbe3f1f26e8fddfb35d3156543ccc2297cc0fb971a87911a94ca925d2fd12531999fd9314b615f49688a3e9a4aef19522cd08bdabe72a
+DIST pyfakefs-4.3.1.tar.gz 194638 BLAKE2B 
752fb2ec88d7468ca439e7124e26b9f111f3b3971a47062b598a0d66c9fc5d8d317716ad73648de727ad6072546fd7b02f7f3a65da45998a20d5f5f3e5999bf1
 SHA512 
9e1521b7c051ef984329ebe9e2003f72a6f54497dcde46b3fe1b14f282ba436dc17ebd6b8e570714eb1ed8de9f484e6bc94ece0a39985a47f7668f350b5a797f

diff --git a/dev-python/pyfakefs/pyfakefs-4.3.1.ebuild 
b/dev-python/pyfakefs/pyfakefs-4.3.1.ebuild
new file mode 100644
index 000..a437b0e387d
--- /dev/null
+++ b/dev-python/pyfakefs/pyfakefs-4.3.1.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} pypy3 )
+DISTUTILS_IN_SOURCE_BUILD=1
+
+inherit distutils-r1
+
+DESCRIPTION="a fake file system that mocks the Python file system modules"
+HOMEPAGE="https://github.com/jmcgeheeiv/pyfakefs/ 
https://pypi.org/project/pyfakefs/;
+SRC_URI="https://github.com/jmcgeheeiv/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+distutils_enable_tests pytest
+
+python_test() {
+   "${EPYTHON}" -m pyfakefs.tests.all_tests -v || die "tests failed under 
${EPYTHON}"
+}



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

2020-11-23 Thread Michał Górny
commit: cc2dea922d791ace1c069f8380e2a84be4e04302
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Nov 23 23:35:47 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 24 07:42:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc2dea92

dev-python/jsonpatch: Bump to 1.27

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

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

diff --git a/dev-python/jsonpatch/Manifest b/dev-python/jsonpatch/Manifest
index 2bb42a4ccf6..5c277f2b291 100644
--- a/dev-python/jsonpatch/Manifest
+++ b/dev-python/jsonpatch/Manifest
@@ -1 +1,2 @@
 DIST jsonpatch-1.26.tar.gz 24440 BLAKE2B 
345831bd9a9fc1902d0959685ed2dbbc0bf04d191bbc78567d27283e9ae52f7e22f50e9f400461300d1c3388712afa51d4d6a2ddd0a06dbc0a1b576b02bfe807
 SHA512 
1ab25c8e091cd0b772062a8c448fee4772081d8bd715489b2f7a76e4c0bdff8b26dd38b26c3037cf9bdf8780b97e62a20b6a5bdc43f43af16fdae51d1291bf52
+DIST jsonpatch-1.27.tar.gz 26599 BLAKE2B 
b3481b4dd01d4fc6c2ad129141fb2b72d53d04744da54c1e4c989b2869113c15862d1ec5c84390758ad495ac36a9156f0e7b730ad091f96f6cb42fe96dde7fcd
 SHA512 
297ca02d114e6b199bd516f69dca147fbe309f0a1b031046859271720645322607236f97b489c242575f7e1ad3cab0c68b1b7f11894c5af82be24013e376c0a4

diff --git a/dev-python/jsonpatch/jsonpatch-1.27.ebuild 
b/dev-python/jsonpatch/jsonpatch-1.27.ebuild
new file mode 100644
index 000..7b86861b301
--- /dev/null
+++ b/dev-python/jsonpatch/jsonpatch-1.27.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Apply JSON-Patches like 
http://tools.ietf.org/html/draft-pbryan-json-patch-04;
+HOMEPAGE="https://github.com/stefankoegl/python-json-patch;
+SRC_URI="https://github.com/stefankoegl/python-json-patch/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
+S="${WORKDIR}/python-json-patch-${PV}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND=">=dev-python/jsonpointer-1.9[${PYTHON_USEDEP}]"
+BDEPEND="
+   test? ( ${RDEPEND} )
+"
+
+python_test() {
+   "${EPYTHON}" tests.py || die "Tests of tests.py fail with ${EPYTHON}"
+   "${EPYTHON}" ext_tests.py || die "Tests of ext_tests.py fail with 
${EPYTHON}"
+}



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

2020-11-23 Thread Michał Górny
commit: 74496fd14ca6c985f9bfc206f7da06ed6a7cc3f0
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Nov 23 23:38:15 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 24 07:42:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74496fd1

dev-python/qtconsole: Bump to 5.0.0

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

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

diff --git a/dev-python/qtconsole/Manifest b/dev-python/qtconsole/Manifest
index 8aa5e420262..3e5e0e7756b 100644
--- a/dev-python/qtconsole/Manifest
+++ b/dev-python/qtconsole/Manifest
@@ -1,2 +1,3 @@
 DIST qtconsole-4.7.6.tar.gz 424919 BLAKE2B 
d973b3b94dfad1b38603695e22927bcdcb8a4f2db9f4a638d5fe6a83c24061153dbaa36c26e632708953af32a015af1d40ecbf175dd5314a3b954b15a6625cc0
 SHA512 
e4e12eb90533e922786b5b6517fba5d9c4dfedf00547f1403c8cd65fb464f5c1a13517df69924e4428e9a8a811dfc359a7768fbaa90adbe02d79cba9a5aa852e
 DIST qtconsole-4.7.7.tar.gz 425068 BLAKE2B 
61fa3bede2d531e294e8a272287885ffeff095bca8b998b2a28fd3f4d912b20aa30807fe7d4caf15f8594e7820e037b3c9955ad76e9dd5eb1da2cbe00ca9a941
 SHA512 
1f04d54138f37b32c112db2cbbc8f79dc16b13bf5dffcc3dd872d43d48ef9ed5454d660e4fab08ccd71344153de391d91558edd0f71a2b626da47779f0f0bb53
+DIST qtconsole-5.0.0.tar.gz 424609 BLAKE2B 
0aacc5e274a8a77da6e6891d823fe2a7710a7022f4633ef7a2edd843da5ea314884713356e92016a0dbb58b38ec90bda72fa63f11699c719e1bfa1e64ca61978
 SHA512 
4fa6a45c7171af57f893eff8bf2cbf5466c7235c2134c8be071e47253f3ad84b951e4c52a1e996fb1fb0233a57400972c524569baf31874f6f84896a6c443823

diff --git a/dev-python/qtconsole/qtconsole-5.0.0.ebuild 
b/dev-python/qtconsole/qtconsole-5.0.0.ebuild
new file mode 100644
index 000..83816f80946
--- /dev/null
+++ b/dev-python/qtconsole/qtconsole-5.0.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Qt-based console for Jupyter with support for rich media output"
+HOMEPAGE="https://jupyter.org;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+   dev-python/ipykernel[${PYTHON_USEDEP}]
+   dev-python/ipython_genutils[${PYTHON_USEDEP}]
+   dev-python/jupyter_core[${PYTHON_USEDEP}]
+   >=dev-python/jupyter_client-4.1.1[${PYTHON_USEDEP}]
+   dev-python/pygments[${PYTHON_USEDEP}]
+   dev-python/traitlets[${PYTHON_USEDEP}]
+   dev-python/QtPy[${PYTHON_USEDEP},gui,printsupport,svg]
+"
+BDEPEND="
+   test? (
+   dev-python/QtPy[${PYTHON_USEDEP},svg,testlib]
+   )
+"
+# required by the tests that are removed:
+#  dev-python/flaky[${PYTHON_USEDEP}]
+#  dev-python/pytest-qt[${PYTHON_USEDEP}]
+
+PDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"
+
+distutils_enable_sphinx docs/source
+distutils_enable_tests pytest
+
+src_prepare() {
+   # TODO: these tests require virtx; however, running under virtx
+   # causes pytest to segv on exit (even though tests pass)
+   rm qtconsole/tests/test_00_console_widget.py || die
+   distutils-r1_src_prepare
+}



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

2020-11-23 Thread Michał Górny
commit: 8629368008e429daef86c9cbcb5bc131c976922b
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Nov 23 23:33:03 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 24 07:42:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86293680

dev-python/boto3: Bump to 1.16.24

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

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

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index b77e066f967..c2b1649a9cb 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -4,4 +4,5 @@ DIST boto3-1.16.20.tar.gz 339432 BLAKE2B 
fefe33be5baca95880a52856a6d6fb166895951
 DIST boto3-1.16.21.tar.gz 339637 BLAKE2B 
122025941b38dd94ccea22a5561ccac29f3033320da4e3f332a1200c84215bef1a320dc36ce59733265816d867c409449a32830df4f20fa08f943ca754fb9257
 SHA512 
b811e153b9c356e9e414e8a82076000d885e29778273d9e839d73e2b35405d23ae8236bb57c657c0f2ee6def48636bf024548cdc0f6e5e642c7b97d97b76307a
 DIST boto3-1.16.22.tar.gz 339781 BLAKE2B 
d6703055d57f9d3486218efc3014439a1ca1335d28281793ddcf2c37dd42c1557e85503841e0d7306168d0eb546dbfc16fabeb53a7a00ee32b3b10e74cbfff94
 SHA512 
dd0df65efea8dc2138b1bfa3a1eb4e40c8e3408f34a36b38cd51346debb01a3e5179b841adbef6cf6fe1535adee9f09d19ff40ae284cfd3c2fabb42a4113f5a6
 DIST boto3-1.16.23.tar.gz 339889 BLAKE2B 
0a41c084beba187a89ddf8a743c6dc4f3663aebae035468a76967e4b732abdad496bb2f0a516b5af76affa18f99d4c1a3405d0e152fb41fb1fae22a6728542e6
 SHA512 
942b0a540cdd6ed744bc1b4285ca8d9e3121193a59717fa247431d232f25cf042625abf82709cecef20611feb68735415be2e3187ebd4e6a1efd7488c0db14ff
+DIST boto3-1.16.24.tar.gz 340133 BLAKE2B 
c1d195d5c6859686b2cbc9cfd772e43b6a052b138d792b896f0fea1b25eb1667d26f09369f6fcb2bfddaaaf8f994f14d2a6e6456aa098af5dbb6ddd8df503118
 SHA512 
55582c76ffd1d6f3d021c7ab89b6a93ea3bf3597312957497de4c8a226657414271385224e2808aecaa90b0e48f21b7fb8a62462df1cf26f142a7ecd5064f55c
 DIST boto3-1.16.9.tar.gz 337905 BLAKE2B 
ed01e28fd7e62e5e5028307c93f92004bfbecffa77bc2ba1d6574b92ec2c515d910eb5107ac5ee03e0aca909f97f379aa65b5f839c8067634fa69266c58de33f
 SHA512 
7343b8432788ef981819f91fe2ba27c4ec3947d01ff55914f7c89607250ecf60db2da8d25c8a2c7001ef546a9abed4cb744c5937ca09497aa1a983049648bd5e

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



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

2020-11-23 Thread Michał Górny
commit: 1098bd2ffc7eed8b18eec40a5732fd047a1c0e3e
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Nov 23 23:34:04 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 24 07:42:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1098bd2f

dev-python/pony: Bump to 0.7.14

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

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

diff --git a/dev-python/pony/Manifest b/dev-python/pony/Manifest
index dec2b328858..0dc616107dc 100644
--- a/dev-python/pony/Manifest
+++ b/dev-python/pony/Manifest
@@ -1 +1,2 @@
 DIST pony-0.7.13.gh.tar.gz 302541 BLAKE2B 
a1e6f82c6eb72f8626238cbfcc0bc01d1ad3498a75a5ce4c3b8a4511e6d1fbfdd39a239f0462458ae1d64dc9446b338bbaea33d6bbdd861c8d0738e50d58a717
 SHA512 
431d19e3297ba1cdae5313948123d8b8cd71ee8ad5868b8cc2f5447eb435875fdbcdc3768834b9afe22ce8e4c1abaabeb597f3e6974b00aab33aa61e497d6390
+DIST pony-0.7.14.gh.tar.gz 305795 BLAKE2B 
a0e056d722a205a00567a230628be6ef8a7fe86f594f91ec0e8bbfc6d6eec17ec1d4cf3f57ad10984b8beb0a90da3010d9a32f2f08dca434af39e20fc6e9126c
 SHA512 
ed27fd697dd14948c282dab6b75e41c9309d0ef4c4cccb0f91e4214e81de52a2de3910e413dfc5495ffcea190a5b50255c45b2beecead84eecb601ba2463d998

diff --git a/dev-python/pony/pony-0.7.14.ebuild 
b/dev-python/pony/pony-0.7.14.ebuild
new file mode 100644
index 000..6de64d60c25
--- /dev/null
+++ b/dev-python/pony/pony-0.7.14.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+inherit distutils-r1
+
+DESCRIPTION="Python ORM with beautiful query syntax"
+HOMEPAGE="
+   https://ponyorm.org/
+   https://github.com/ponyorm/pony/;
+SRC_URI="
+   https://github.com/ponyorm/pony/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   test? ( $(python_gen_impl_dep sqlite) )"
+
+distutils_enable_tests unittest



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

2020-11-23 Thread Michał Górny
commit: 78cb63acd34007aeff293b9710db60e3a1cffb9a
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Nov 23 23:32:52 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 24 07:42:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78cb63ac

dev-python/botocore: Bump to 1.19.24

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

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

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 7963321d420..651e9f4bee4 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -4,4 +4,5 @@ DIST botocore-1.19.20.tar.gz 7055105 BLAKE2B 
f25a6aff2073d8fa8de0c787b34239ee434
 DIST botocore-1.19.21.tar.gz 7060392 BLAKE2B 
2539996a3aed89d9e76143c4e899cc09b278ef5fb23ea3b8cacc4af4a3b5287043f193e40ab07937147db70085aef688c8fe432124a0c0fe89f1ae7e2f003bec
 SHA512 
43a656c29944dc3b0c84f321d251b3d135634ac8cd639a9c13a1f04a0e0e1421bd0c2ed8200f7e032faab6b45d7ea64f03991a90e5db837542501ae9f1843d6e
 DIST botocore-1.19.22.tar.gz 7073938 BLAKE2B 
41ec38e7abdff5e6fd4530dd39522a13d10c7048564002f5c4c99f9c13cf25b3b4a108ca651bee44f1e00d0b8b560e7c364021793a7fd50e3501ef54c153960e
 SHA512 
69efd9f01cb9cb83d4234be6ad46d2f2584bfd274a96c27279c96d717de4ea83e8bb1b92baa29b06aacf21e0af9e40ab216e5ac7ffe004cc4a53bfcf6c32f59e
 DIST botocore-1.19.23.tar.gz 7090433 BLAKE2B 
c5b6801e169b7c0325b33b005be0e4096442d5f9e09e7223d6668cdbd7a68b977284b4e660be5dfbf30ae661202691866dff2b3b1639d7467b3ff21ed6c90702
 SHA512 
9e984c48109f17126e380b0194e998c65ef02cba83ce3be6b3398a5913a41e23607779c82b90814d8193abdeb3a6cecedb443a6fc5d8d6b7ccb68ed0a0e0bc37
+DIST botocore-1.19.24.tar.gz 727 BLAKE2B 
61f368b4e8dad8d3a03d2a73cef68f7971bbe3a2173c55689eeacc166a983c8986039f6884176f05df13002e31868ca498664f46452362f289bd44d8df2c
 SHA512 
42ca145f9e47b61715c816add725758dcf617c663dcd0beee29e66a28047d3bd7908ce10b7614afe9111a539e74f436286b876c107bc3591f5689619939a4551
 DIST botocore-1.19.9.tar.gz 6972834 BLAKE2B 
3407c056c7995cc1ccb1b5b4c5b3a6254e38672b52e7889a7a022520283416e4dfcabd05c8ca0ed78e4624c7a20c9f43bfde87a76d7a72660b4c95256e4f9ca4
 SHA512 
8433f22ae7652e524a82da8d2ccda48da9eef44788333898b7526335d57a7757b80754f0d5c6a2c84ec3bde2ec9fc7da5cf872cbda7286f620b4f4878fe9a583

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



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luafilesystem/

2020-11-23 Thread Agostino Sarubbo
commit: 8eccf7647f66f3974a405a2ec605f34497f5cc59
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:42:14 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:42:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eccf764

dev-lua/luafilesystem: ppc64 stable wrt bug #756133

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

 dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild 
b/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild
index ca4a9752874..3d39e9345ca 100644
--- a/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild
+++ b/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ppc64 ~sparc ~x86"
 IUSE="luajit test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luaexpat/

2020-11-23 Thread Agostino Sarubbo
commit: bbd647277e87fb33738169049d30d20808c44828
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:42:08 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:42:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbd64727

dev-lua/luaexpat: ppc64 stable wrt bug #756130

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

 dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild 
b/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild
index a64edc34938..5100598fa03 100644
--- a/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild
+++ b/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://matthewwild.co.uk/projects/${PN}/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ppc64 ~sparc ~x86"
 
 RDEPEND=">=dev-lang/lua-5.1.5-r2:0[${MULTILIB_USEDEP}]
>=dev-libs/expat-2.1.0-r3[${MULTILIB_USEDEP}]"



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

2020-11-23 Thread Agostino Sarubbo
commit: f79c70ce0a03b615b151d69a0aef5e941635ab69
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:41:57 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:41:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f79c70ce

dev-libs/protobuf: ppc64 stable wrt bug #756118

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

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

diff --git a/dev-libs/protobuf/protobuf-3.13.0.ebuild 
b/dev-libs/protobuf/protobuf-3.13.0.ebuild
index ff839ead093..ad893449678 100644
--- a/dev-libs/protobuf/protobuf-3.13.0.ebuild
+++ b/dev-libs/protobuf/protobuf-3.13.0.ebuild
@@ -22,7 +22,7 @@ fi
 
 LICENSE="BSD"
 SLOT="0/24"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="emacs examples static-libs test zlib"
 RESTRICT="!test? ( test )"
 



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

2020-11-23 Thread Agostino Sarubbo
commit: a507ae70d98fa6685ec4dc3e801371cb9f3fc462
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:42:01 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:42:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a507ae70

dev-python/protobuf-python: ppc64 stable wrt bug #756118

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

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

diff --git a/dev-python/protobuf-python/protobuf-python-3.13.0-r1.ebuild 
b/dev-python/protobuf-python/protobuf-python-3.13.0-r1.ebuild
index 6add9b6ab4f..42e114a77d7 100644
--- a/dev-python/protobuf-python/protobuf-python-3.13.0-r1.ebuild
+++ b/dev-python/protobuf-python/protobuf-python-3.13.0-r1.ebuild
@@ -24,7 +24,7 @@ fi
 
 LICENSE="BSD"
 SLOT="0/24"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE=""
 
 BDEPEND="${PYTHON_DEPS}



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

2020-11-23 Thread Agostino Sarubbo
commit: 6279f5375f0521c008169e0411d37784c5f8454c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:41:44 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:41:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6279f537

app-shells/tcsh: ppc64 stable wrt bug #756097

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

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

diff --git a/app-shells/tcsh/tcsh-6.22.02.ebuild 
b/app-shells/tcsh/tcsh-6.22.02.ebuild
index 0a711cb47ed..23ee8b2ee1f 100644
--- a/app-shells/tcsh/tcsh-6.22.02.ebuild
+++ b/app-shells/tcsh/tcsh-6.22.02.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls doc"
 RESTRICT="test"
 



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

2020-11-23 Thread Agostino Sarubbo
commit: 319fc66c520d824a265099d2044c6671ec59b5cc
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:41:54 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:41:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=319fc66c

dev-java/protobuf-java: ppc64 stable wrt bug #756118

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

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

diff --git a/dev-java/protobuf-java/protobuf-java-3.13.0.ebuild 
b/dev-java/protobuf-java/protobuf-java-3.13.0.ebuild
index 9f6b38797fe..8cca8e54e39 100644
--- a/dev-java/protobuf-java/protobuf-java-3.13.0.ebuild
+++ b/dev-java/protobuf-java/protobuf-java-3.13.0.ebuild
@@ -23,7 +23,7 @@ fi
 
 LICENSE="BSD"
 SLOT="0/24"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos"
+KEYWORDS="amd64 ~arm ~arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos"
 IUSE=""
 
 BDEPEND="~dev-libs/protobuf-${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luaexpat/

2020-11-23 Thread Agostino Sarubbo
commit: 2be3019a1c33168aa4a66d68f2db1c1136739e5b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:41:05 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:41:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2be3019a

dev-lua/luaexpat: ppc stable wrt bug #756130

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

 dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild 
b/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild
index c7d040cdd9c..a64edc34938 100644
--- a/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild
+++ b/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://matthewwild.co.uk/projects/${PN}/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ~ppc64 ~sparc ~x86"
 
 RDEPEND=">=dev-lang/lua-5.1.5-r2:0[${MULTILIB_USEDEP}]
>=dev-libs/expat-2.1.0-r3[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luafilesystem/

2020-11-23 Thread Agostino Sarubbo
commit: ccb9af4e6ee25df867cc11d147354094b9fb2876
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:41:11 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:41:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccb9af4e

dev-lua/luafilesystem: ppc stable wrt bug #756133

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

 dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild 
b/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild
index 35eaff22cee..ca4a9752874 100644
--- a/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild
+++ b/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ~ppc64 ~sparc ~x86"
 IUSE="luajit test"
 RESTRICT="!test? ( test )"
 



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

2020-11-23 Thread Agostino Sarubbo
commit: fb1fe31d3f23cb8daff1e4f7f3fc0a0ea3524945
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:40:58 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:40:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb1fe31d

dev-python/protobuf-python: ppc stable wrt bug #756118

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

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

diff --git a/dev-python/protobuf-python/protobuf-python-3.13.0-r1.ebuild 
b/dev-python/protobuf-python/protobuf-python-3.13.0-r1.ebuild
index bb2b74222cd..6add9b6ab4f 100644
--- a/dev-python/protobuf-python/protobuf-python-3.13.0-r1.ebuild
+++ b/dev-python/protobuf-python/protobuf-python-3.13.0-r1.ebuild
@@ -24,7 +24,7 @@ fi
 
 LICENSE="BSD"
 SLOT="0/24"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE=""
 
 BDEPEND="${PYTHON_DEPS}



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

2020-11-23 Thread Agostino Sarubbo
commit: c4952c6c518095871d8cb2e42c4b7fc6a113594c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:40:53 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:40:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4952c6c

dev-libs/protobuf: ppc stable wrt bug #756118

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

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

diff --git a/dev-libs/protobuf/protobuf-3.13.0.ebuild 
b/dev-libs/protobuf/protobuf-3.13.0.ebuild
index 87c46cb84fa..ff839ead093 100644
--- a/dev-libs/protobuf/protobuf-3.13.0.ebuild
+++ b/dev-libs/protobuf/protobuf-3.13.0.ebuild
@@ -22,7 +22,7 @@ fi
 
 LICENSE="BSD"
 SLOT="0/24"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="emacs examples static-libs test zlib"
 RESTRICT="!test? ( test )"
 



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

2020-11-23 Thread Agostino Sarubbo
commit: aaeca4ede08ba85b2254ba65ca254655254fbea4
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:40:45 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:40:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaeca4ed

app-shells/tcsh: ppc stable wrt bug #756097

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

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

diff --git a/app-shells/tcsh/tcsh-6.22.02.ebuild 
b/app-shells/tcsh/tcsh-6.22.02.ebuild
index dd30ff8afeb..0a711cb47ed 100644
--- a/app-shells/tcsh/tcsh-6.22.02.ebuild
+++ b/app-shells/tcsh/tcsh-6.22.02.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls doc"
 RESTRICT="test"
 



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

2020-11-23 Thread Agostino Sarubbo
commit: d04b9e019f93d15931369b507f61869db51bf586
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:20:30 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:20:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d04b9e01

media-libs/libdvdnav: amd64 stable wrt bug #755713

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

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

diff --git a/media-libs/libdvdnav/libdvdnav-6.1.0.ebuild 
b/media-libs/libdvdnav/libdvdnav-6.1.0.ebuild
index 7becebd2ee1..d08e9c9f9a1 100644
--- a/media-libs/libdvdnav/libdvdnav-6.1.0.ebuild
+++ b/media-libs/libdvdnav/libdvdnav-6.1.0.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} =  ]]; then
EGIT_REPO_URI="https://code.videolan.org/videolan/libdvdnav.git;
 else

SRC_URI="https://downloads.videolan.org/pub/videolan/libdvdnav/${PV}/${P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2020-11-23 Thread Agostino Sarubbo
commit: 3d9dcc932d1e026ea79edf673c04dbd911cbd71a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:20:23 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:20:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d9dcc93

app-portage/euses: amd64 stable wrt bug #74

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

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

diff --git a/app-portage/euses/euses-2.6.0.ebuild 
b/app-portage/euses/euses-2.6.0.ebuild
index 0b52614bfc5..fd81cc6ae03 100644
--- a/app-portage/euses/euses-2.6.0.ebuild
+++ b/app-portage/euses/euses-2.6.0.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://www.xs4all.nl/~rooversj/gentoo/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ppc ppc64 sparc x86"
 
 S=${WORKDIR}
 



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

2020-11-23 Thread Agostino Sarubbo
commit: e05ecfa00e7b8cd2ab4eb54e9fdd3c33fa5f6f16
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:20:17 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:20:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e05ecfa0

dev-python/python-openstackclient: amd64/x86 stable (ALLARCHES policy) wrt bug 
#754630

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

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

diff --git 
a/dev-python/python-openstackclient/python-openstackclient-5.4.0.ebuild 
b/dev-python/python-openstackclient/python-openstackclient-5.4.0.ebuild
index f7070f8add6..404c942055e 100644
--- a/dev-python/python-openstackclient/python-openstackclient-5.4.0.ebuild
+++ b/dev-python/python-openstackclient/python-openstackclient-5.4.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



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

2020-11-23 Thread Agostino Sarubbo
commit: 53d496b2d9a7237984d81f5ea2bda5fd7829be7c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:19:36 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:19:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53d496b2

dev-python/python-swiftclient: amd64/x86 stable (ALLARCHES policy) wrt bug 
#754552

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

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

diff --git a/dev-python/python-swiftclient/python-swiftclient-3.10.1.ebuild 
b/dev-python/python-swiftclient/python-swiftclient-3.10.1.ebuild
index 9e9fed2e016..4fad5be59f5 100644
--- a/dev-python/python-swiftclient/python-swiftclient-3.10.1.ebuild
+++ b/dev-python/python-swiftclient/python-swiftclient-3.10.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-11-23 Thread Agostino Sarubbo
commit: 080ec5b1ad8d4ecf1ef13770b5bf8dc032661842
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:20:38 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:20:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=080ec5b1

dev-ruby/gettext-setup: amd64 stable wrt bug #755902

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

 dev-ruby/gettext-setup/gettext-setup-0.34-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/gettext-setup/gettext-setup-0.34-r2.ebuild 
b/dev-ruby/gettext-setup/gettext-setup-0.34-r2.ebuild
index 3c24ac24f1f..da99c7d8967 100644
--- a/dev-ruby/gettext-setup/gettext-setup-0.34-r2.ebuild
+++ b/dev-ruby/gettext-setup/gettext-setup-0.34-r2.ebuild
@@ -19,7 +19,7 @@ RUBY_S="${PN}-gem-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86"
 IUSE=""
 
 RDEPEND+=" dev-vcs/git"



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

2020-11-23 Thread Agostino Sarubbo
commit: 5506bcbcd46240684818cfb059f4d54a9869a197
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:19:24 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:19:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5506bcbc

dev-python/aodhclient: amd64 stable wrt bug #754423

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

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

diff --git a/dev-python/aodhclient/aodhclient-2.1.1.ebuild 
b/dev-python/aodhclient/aodhclient-2.1.1.ebuild
index 63a2c4ebe16..4b3bbb311a9 100644
--- a/dev-python/aodhclient/aodhclient-2.1.1.ebuild
+++ b/dev-python/aodhclient/aodhclient-2.1.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
 
 DEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
 RDEPEND="



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

2020-11-23 Thread Agostino Sarubbo
commit: 5470abbc5ef5694b312eeb4d065ac028d3a9a24f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:19:52 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:19:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5470abbc

dev-python/python-neutronclient: amd64/x86 stable (ALLARCHES policy) wrt bug 
#754561

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

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

diff --git a/dev-python/python-neutronclient/python-neutronclient-7.2.1.ebuild 
b/dev-python/python-neutronclient/python-neutronclient-7.2.1.ebuild
index 98e899dd037..a93fbf4fb3e 100644
--- a/dev-python/python-neutronclient/python-neutronclient-7.2.1.ebuild
+++ b/dev-python/python-neutronclient/python-neutronclient-7.2.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
!~dev-python/pbr-2.1.0"



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

2020-11-23 Thread Agostino Sarubbo
commit: 742736e0083d9afa61017c38ab0733e0cac76e76
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:20:04 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:20:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=742736e0

dev-python/python-manilaclient: amd64/x86 stable (ALLARCHES policy) wrt bug 
#754576

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

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

diff --git a/dev-python/python-manilaclient/python-manilaclient-2.3.0.ebuild 
b/dev-python/python-manilaclient/python-manilaclient-2.3.0.ebuild
index 6c86eecee18..9716e5765a9 100644
--- a/dev-python/python-manilaclient/python-manilaclient-2.3.0.ebuild
+++ b/dev-python/python-manilaclient/python-manilaclient-2.3.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 
 DEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-lua/lua-bit32/

2020-11-23 Thread Agostino Sarubbo
commit: 03947fe9562a5cb1d51dd628fafda5865ef66f1e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:19:00 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:19:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03947fe9

dev-lua/lua-bit32: amd64 stable wrt bug #756127

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

 dev-lua/lua-bit32/lua-bit32-5.3.5-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/lua-bit32/lua-bit32-5.3.5-r2.ebuild 
b/dev-lua/lua-bit32/lua-bit32-5.3.5-r2.ebuild
index 26c0ee108ff..4b09e47c5c1 100644
--- a/dev-lua/lua-bit32/lua-bit32-5.3.5-r2.ebuild
+++ b/dev-lua/lua-bit32/lua-bit32-5.3.5-r2.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${LUA_COMPAT_PN}-${LUA_COMPAT_PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RESTRICT="!test? ( test )"



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

2020-11-23 Thread Agostino Sarubbo
commit: 79ee565889d1b4dcd7f17d2c9352939cfd8123fe
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:18:45 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:18:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79ee5658

dev-python/pytest-xvfb: amd64 stable wrt bug #754231

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

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

diff --git a/dev-python/pytest-xvfb/pytest-xvfb-2.0.0.ebuild 
b/dev-python/pytest-xvfb/pytest-xvfb-2.0.0.ebuild
index 77155cc67be..e6d752d53f8 100644
--- a/dev-python/pytest-xvfb/pytest-xvfb-2.0.0.ebuild
+++ b/dev-python/pytest-xvfb/pytest-xvfb-2.0.0.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/The-Compiler/pytest-xvfb/archive/v${PV}.tar.gz -> ${
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 
 DEPEND="
>=dev-python/pytest-2.8.1[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luafilesystem/

2020-11-23 Thread Agostino Sarubbo
commit: a6958fab268030d4684e4f6bfaf5c8747f321915
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:19:13 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:19:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6958fab

dev-lua/luafilesystem: amd64 stable wrt bug #756133

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

 dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild 
b/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild
index a45fe4f18ee..35eaff22cee 100644
--- a/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild
+++ b/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="luajit test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luaexpat/

2020-11-23 Thread Agostino Sarubbo
commit: 0ce7a086a76ae85595431569b4bc3c7aca57e0f0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:19:07 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:19:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ce7a086

dev-lua/luaexpat: amd64 stable wrt bug #756130

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

 dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild 
b/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild
index e02ba36ef4c..c7d040cdd9c 100644
--- a/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild
+++ b/dev-lua/luaexpat/luaexpat-1.3.0-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://matthewwild.co.uk/projects/${PN}/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
 
 RDEPEND=">=dev-lang/lua-5.1.5-r2:0[${MULTILIB_USEDEP}]
>=dev-libs/expat-2.1.0-r3[${MULTILIB_USEDEP}]"



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

2020-11-23 Thread Agostino Sarubbo
commit: a7a451e5316fb9f464a8d96b16265f36800d7493
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 24 07:18:53 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 24 07:18:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7a451e5

app-shells/tcsh: amd64 stable wrt bug #756097

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

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

diff --git a/app-shells/tcsh/tcsh-6.22.02.ebuild 
b/app-shells/tcsh/tcsh-6.22.02.ebuild
index 33aa34b663d..dd30ff8afeb 100644
--- a/app-shells/tcsh/tcsh-6.22.02.ebuild
+++ b/app-shells/tcsh/tcsh-6.22.02.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls doc"
 RESTRICT="test"
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/range-v3/files/, dev-cpp/range-v3/

2020-11-23 Thread Georgy Yakovlev
commit: 2424d84ad2adf6adbdd3b02ebcddfee4d6e1931e
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Nov 24 07:00:48 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Nov 24 07:06:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2424d84a

dev-cpp/range-v3: minor QA

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-cpp/range-v3/files/0.11.0-no-werror.patch | 39 +++
 dev-cpp/range-v3/range-v3-0.11.0.ebuild   | 19 -
 2 files changed, 52 insertions(+), 6 deletions(-)

diff --git a/dev-cpp/range-v3/files/0.11.0-no-werror.patch 
b/dev-cpp/range-v3/files/0.11.0-no-werror.patch
new file mode 100644
index 000..1894fcc93b6
--- /dev/null
+++ b/dev-cpp/range-v3/files/0.11.0-no-werror.patch
@@ -0,0 +1,39 @@
+From 66e847d4e14be3a369b7e26a03a172b20e62c003 Mon Sep 17 00:00:00 2001
+From: eksi 
+Date: Wed, 4 Nov 2020 20:37:01 +0300
+Subject: [PATCH] Add an option to disable -Werror. Fixes #1528
+
+---
+ cmake/ranges_flags.cmake   | 4 +++-
+ cmake/ranges_options.cmake | 3 +++
+ 2 files changed, 6 insertions(+), 1 deletion(-)
+
+diff --git a/cmake/ranges_flags.cmake b/cmake/ranges_flags.cmake
+index 76d893043..9b09ddcb8 100644
+--- a/cmake/ranges_flags.cmake
 b/cmake/ranges_flags.cmake
+@@ -88,7 +88,9 @@ else()
+   # Enable "normal" warnings and make them errors:
+   ranges_append_flag(RANGES_HAS_WALL -Wall)
+   ranges_append_flag(RANGES_HAS_WEXTRA -Wextra)
+-  ranges_append_flag(RANGES_HAS_WERROR -Werror)
++  if (RANGES_ENABLE_WERROR)
++ranges_append_flag(RANGES_HAS_WERROR -Werror)
++  endif()
+ endif()
+ 
+ if (RANGES_ENV_LINUX AND RANGES_CXX_COMPILER_CLANG)
+diff --git a/cmake/ranges_options.cmake b/cmake/ranges_options.cmake
+index 4ec39c7f0..8455af306 100644
+--- a/cmake/ranges_options.cmake
 b/cmake/ranges_options.cmake
+@@ -16,6 +16,9 @@ option(RANGES_MODULES "Enables use of Clang modules 
(experimental)." OFF)
+ option(RANGES_NATIVE "Enables -march/-mtune=native." ON)
+ option(RANGES_VERBOSE_BUILD "Enables debug output from CMake." OFF)
+ option(RANGES_LLVM_POLLY "Enables LLVM Polly." OFF)
++option(RANGES_ENABLE_WERROR
++  "Enables -Werror. Only effective if compiler is not clang-cl or MSVC. ON by 
default"
++  ON)
+ option(RANGES_PREFER_REAL_CONCEPTS
+   "Use real concepts instead of emulation if the compiler supports it"
+   ON)

diff --git a/dev-cpp/range-v3/range-v3-0.11.0.ebuild 
b/dev-cpp/range-v3/range-v3-0.11.0.ebuild
index 036a9535363..a4019f9f11f 100644
--- a/dev-cpp/range-v3/range-v3-0.11.0.ebuild
+++ b/dev-cpp/range-v3/range-v3-0.11.0.ebuild
@@ -15,21 +15,28 @@ KEYWORDS="~amd64 ~ppc64"
 IUSE="test"
 RESTRICT="!test? ( test )"
 
+PATCHES=( "${FILESDIR}/0.11.0-no-werror.patch" )
+
 src_prepare() {
-   sed -i -e '/Werror/d' -e '/Wextra/d' -e '/Wall/d' 
cmake/ranges_flags.cmake || die
-   sed -i -e "s@lib/cmake@"$(get_libdir)"/cmake@g" CMakeLists.txt || die
+   # header-only libraries go to arch-independent dirs
+   sed -i -e 's@lib/cmake@share/cmake@g' CMakeLists.txt || die
rm include/module.modulemap || die # https://bugs.gentoo.org/755740
cmake_src_prepare
 }
 
 src_configure() {
mycmakeargs=(
-   -DRANGE_V3_EXAMPLES=OFF
-   -DRANGE_V3_HEADER_CHECKS=OFF
-   -DRANGE_V3_PERF=OFF
-   -DRANGE_V3_TESTS=$(usex test)
-DRANGES_BUILD_CALENDAR_EXAMPLE=OFF
-DRANGES_NATIVE=OFF
+   -DRANGES_DEBUG_INFO=OFF
+   -DRANGES_NATIVE=OFF
+   -DRANGES_ENABLE_WERROR=OFF
+   -DRANGES_VERBOSE_BUILD=ON
+   -DRANGE_V3_EXAMPLES=OFF
+   -DRANGE_V3_PERF=OFF
+   -DRANGE_V3_DOCS=OFF
+   -DRANGE_V3_HEADER_CHECKS="$(usex test ON OFF)"
+   -DRANGE_V3_TESTS=$(usex test ON OFF)
#TODO: clang support + -DRANGES_MODULES=yes
)
cmake_src_configure



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

2020-11-23 Thread Georgy Yakovlev
commit: 02a8d503a0561d992bc7a3b6d4c99ee782e358f6
Author: Alexey Sokolov  google  com>
AuthorDate: Sat Nov 21 22:37:46 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Nov 24 07:06:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02a8d503

dev-cpp/range-v3: v0.11.0, enable tests

Closes: https://bugs.gentoo.org/755740
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Alexey Sokolov  asokolov.org>
Closes: https://github.com/gentoo/gentoo/pull/18353
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-cpp/range-v3/Manifest   |  1 +
 dev-cpp/range-v3/range-v3-0.11.0.ebuild | 36 +
 2 files changed, 37 insertions(+)

diff --git a/dev-cpp/range-v3/Manifest b/dev-cpp/range-v3/Manifest
index f090fc7442e..6fafedbb109 100644
--- a/dev-cpp/range-v3/Manifest
+++ b/dev-cpp/range-v3/Manifest
@@ -1 +1,2 @@
 DIST range-v3-0.10.0.tar.gz 525765 BLAKE2B 
7dd3aed9b35920e058fe43bccd364831a52ad8d50179d1057ab7a37cdef82df021bb09a9913018ae78982fe136c855ba4101e31d35cfc21747af994d0103b95e
 SHA512 
4db089dcbf638eb30fa20dcf6785dd460c5a074a8912984a484592753cfee9f5b9a0e2c56b5bc5921d1b6120877aa2c83ac0a6fe428088ef2854033a635e9723
+DIST range-v3-0.11.0.tar.gz 533136 BLAKE2B 
d325b14a9d812cb7a600a947126bcecf9384bec987edbad42eec38560415d075815ab92e3f92dad291029fc3e1b1afa1ceaf54443b4a536078047fd32d344394
 SHA512 
9d6cdcbc1e50104206ba731c3bdc9aab3acfcf69cd83f0e0b4de18b88df2a9e73d64e55638421768d4433c542b6619f6e5af6b17cccd3090cf8b4d4efe9863e4

diff --git a/dev-cpp/range-v3/range-v3-0.11.0.ebuild 
b/dev-cpp/range-v3/range-v3-0.11.0.ebuild
new file mode 100644
index 000..036a9535363
--- /dev/null
+++ b/dev-cpp/range-v3/range-v3-0.11.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Range library for C++14/17/20, basis for C++20's std::ranges"
+HOMEPAGE="https://github.com/ericniebler/range-v3;
+SRC_URI="https://github.com/ericniebler/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Boost-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+src_prepare() {
+   sed -i -e '/Werror/d' -e '/Wextra/d' -e '/Wall/d' 
cmake/ranges_flags.cmake || die
+   sed -i -e "s@lib/cmake@"$(get_libdir)"/cmake@g" CMakeLists.txt || die
+   rm include/module.modulemap || die # https://bugs.gentoo.org/755740
+   cmake_src_prepare
+}
+
+src_configure() {
+   mycmakeargs=(
+   -DRANGE_V3_EXAMPLES=OFF
+   -DRANGE_V3_HEADER_CHECKS=OFF
+   -DRANGE_V3_PERF=OFF
+   -DRANGE_V3_TESTS=$(usex test)
+   -DRANGES_BUILD_CALENDAR_EXAMPLE=OFF
+   -DRANGES_NATIVE=OFF
+   #TODO: clang support + -DRANGES_MODULES=yes
+   )
+   cmake_src_configure
+}



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

2020-11-23 Thread Joonas Niilola
commit: ff7d44ac0a3a6ed19ff2e67a7dd2d659bc9f7dbb
Author: John Helmert III  posteo  net>
AuthorDate: Wed Nov 18 01:25:33 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Nov 24 06:34:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff7d44ac

x11-wm/i3-gaps: drop old

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: John Helmert III  posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/18311
Signed-off-by: Joonas Niilola  gentoo.org>

 x11-wm/i3-gaps/Manifest  |   2 -
 x11-wm/i3-gaps/files/i3-gaps-4.16-musl.patch |  86 ---
 x11-wm/i3-gaps/i3-gaps-4.16.1-r2.ebuild  |  87 ---
 x11-wm/i3-gaps/i3-gaps-4.18.3.ebuild | 101 ---
 4 files changed, 276 deletions(-)

diff --git a/x11-wm/i3-gaps/Manifest b/x11-wm/i3-gaps/Manifest
index 11f4fb73c41..654e5e79c89 100644
--- a/x11-wm/i3-gaps/Manifest
+++ b/x11-wm/i3-gaps/Manifest
@@ -1,4 +1,2 @@
-DIST i3-gaps-4.16.1.tar.gz 3983420 BLAKE2B 
f0d5a85b06ce33e1cc177af6da29f9cdf42ed754bb767aa9eaa5ab52f3b9f4f688d251f2a16fb222fc8cf5052e79859891c4185b1325b2ef6c1a813aa220468c
 SHA512 
904c2f63c6a35573f13fd216625c1349ac71de70ae8f0440667c9d76048cdaf30a398ab358f2366d5f46502d87e801713b625cb509a05f39dbca1371d2b8d0e9
 DIST i3-gaps-4.18.2.tar.gz 3999555 BLAKE2B 
d825bb4acb76a7909569aa10c6cab517ff08ee4d4d29175c9a84686c83f225a8a090c26ad4bf4ef03e2062bf4d48c7e2e2bf70b49f7a67ecad386597fc1602bd
 SHA512 
86c76340d1df40bbd7e804515ae9dda350458d22651bee508f9f141acd3f4ea4025c8f40ddf0cdfe1fc3c6b26cbf5c3900204545468776721857bb104200ee34
-DIST i3-gaps-4.18.3.tar.gz 3998976 BLAKE2B 
2512f4e0c8ce05874a63bc498d48a14dc5e3fc2f0d68da0d88fcee7deeed68994f07cd3c2f3f55e5c564d40507546358f93c139bece86090137142ec2d2ba9a6
 SHA512 
e562ea1d75300cb69005d6f5ee8e3d05c8c7cfe1046154b9798f554fa81946f9ff6f8967d5acae2e2e4cbd4e2bce865119edba5e8c1e12febb6122e9c7f63534
 DIST i3-gaps-4.19.tar.gz 4192134 BLAKE2B 
cc70e36fd01e777e1e4357d1799777eb42c21f1666759d8730c548773c87e4c2806ae5376703956761a8fc036c5e847a4734cddd695067f684038c1cc9a8905e
 SHA512 
db09203256172cc4807189bbf16d793c9203c908d2e75cbb7d973d1f0338f6e3734afe68ffe1c43ef3e43e5b2c6dba1ab9135625e4d42d10a9ea6f44f673d384

diff --git a/x11-wm/i3-gaps/files/i3-gaps-4.16-musl.patch 
b/x11-wm/i3-gaps/files/i3-gaps-4.16-musl.patch
deleted file mode 100644
index 1e67ec2a3c4..000
--- a/x11-wm/i3-gaps/files/i3-gaps-4.16-musl.patch
+++ /dev/null
@@ -1,86 +0,0 @@
-From: Natanael Copa 
-Patch-Source: 
https://git.alpinelinux.org/cgit/aports/tree/community/i3wm/musl.patch
-Project-Bug-URL: https://github.com/i3/i3/issues/1859
-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=609306
-
-Musl doesn't implement GLOB_TILDE, which is used by i3 when expanding paths.
-
-This patch replaces usage of GLOB_TILDE in glob() by replacing tilde
-with the content of $HOME - if set - manually.
-
-As mentioned in the i3 bugtracker this is an issue that should be solved by 
musl.
-
-A patch has been sent to musl upstream, but it hasn't been merged yet:
-http://www.openwall.com/lists/musl/2017/01/17/1

 a/i3bar/src/main.c
-+++ b/i3bar/src/main.c
-@@ -48,14 +48,20 @@ void debuglog(char *fmt, ...) {
-  *
-  */
- static char *expand_path(char *path) {
--static glob_t globbuf;
--if (glob(path, GLOB_NOCHECK | GLOB_TILDE, NULL, ) < 0) {
--ELOG("glob() failed\n");
--exit(EXIT_FAILURE);
-+char *home, *expanded;
-+
-+if (strncmp(path, "~/", 2) == 0) {
-+home = getenv("HOME");
-+if (home != NULL) {
-+/* new length: sum - 1 (omit '~') + 1 (for '\0') */
-+expanded = scalloc(strlen(home)+strlen(path), 1);
-+strcpy(expanded, home);
-+strcat(expanded, path+1);
-+return expanded;
-+}
- }
--char *result = sstrdup(globbuf.gl_pathc > 0 ? globbuf.gl_pathv[0] : path);
--globfree();
--return result;
-+
-+return sstrdup(path);
- }
-
- void print_usage(char *elf_name) {
 a/libi3/resolve_tilde.c
-+++ b/libi3/resolve_tilde.c
-@@ -19,28 +19,18 @@
-  *
-  */
- char *resolve_tilde(const char *path) {
--static glob_t globbuf;
--char *head, *tail, *result;
-+char *home, *expanded;
-
--tail = strchr(path, '/');
--head = sstrndup(path, tail ? (size_t)(tail - path) : strlen(path));
--
--int res = glob(head, GLOB_TILDE, NULL, );
--free(head);
--/* no match, or many wildcard matches are bad */
--if (res == GLOB_NOMATCH || globbuf.gl_pathc != 1)
--result = sstrdup(path);
--else if (res != 0) {
--err(EXIT_FAILURE, "glob() failed");
--} else {
--head = globbuf.gl_pathv[0];
--result = scalloc(strlen(head) + (tail ? strlen(tail) : 0) + 1, 1);
--strcpy(result, head);
--if (tail) {
--strcat(result, tail);
-+if (strncmp(path, "~/", 2) == 0) {
-+home = getenv("HOME");
-+if (home != NULL) {
-+

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

2020-11-23 Thread Joonas Niilola
commit: 5f5d596563c6940c2e5e0e6e3aa608988d16a76a
Author: John Helmert III  posteo  net>
AuthorDate: Wed Nov 18 01:23:45 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Nov 24 06:34:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f5d5965

x11-wm/i3-gaps: add 4.19

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: John Helmert III  posteo.net>
Signed-off-by: Joonas Niilola  gentoo.org>

 x11-wm/i3-gaps/Manifest|  1 +
 x11-wm/i3-gaps/files/i3-gaps-4.19-fix-docdir.patch | 22 ++
 x11-wm/i3-gaps/i3-gaps-4.19.ebuild | 91 ++
 3 files changed, 114 insertions(+)

diff --git a/x11-wm/i3-gaps/Manifest b/x11-wm/i3-gaps/Manifest
index aade67d8a3a..11f4fb73c41 100644
--- a/x11-wm/i3-gaps/Manifest
+++ b/x11-wm/i3-gaps/Manifest
@@ -1,3 +1,4 @@
 DIST i3-gaps-4.16.1.tar.gz 3983420 BLAKE2B 
f0d5a85b06ce33e1cc177af6da29f9cdf42ed754bb767aa9eaa5ab52f3b9f4f688d251f2a16fb222fc8cf5052e79859891c4185b1325b2ef6c1a813aa220468c
 SHA512 
904c2f63c6a35573f13fd216625c1349ac71de70ae8f0440667c9d76048cdaf30a398ab358f2366d5f46502d87e801713b625cb509a05f39dbca1371d2b8d0e9
 DIST i3-gaps-4.18.2.tar.gz 3999555 BLAKE2B 
d825bb4acb76a7909569aa10c6cab517ff08ee4d4d29175c9a84686c83f225a8a090c26ad4bf4ef03e2062bf4d48c7e2e2bf70b49f7a67ecad386597fc1602bd
 SHA512 
86c76340d1df40bbd7e804515ae9dda350458d22651bee508f9f141acd3f4ea4025c8f40ddf0cdfe1fc3c6b26cbf5c3900204545468776721857bb104200ee34
 DIST i3-gaps-4.18.3.tar.gz 3998976 BLAKE2B 
2512f4e0c8ce05874a63bc498d48a14dc5e3fc2f0d68da0d88fcee7deeed68994f07cd3c2f3f55e5c564d40507546358f93c139bece86090137142ec2d2ba9a6
 SHA512 
e562ea1d75300cb69005d6f5ee8e3d05c8c7cfe1046154b9798f554fa81946f9ff6f8967d5acae2e2e4cbd4e2bce865119edba5e8c1e12febb6122e9c7f63534
+DIST i3-gaps-4.19.tar.gz 4192134 BLAKE2B 
cc70e36fd01e777e1e4357d1799777eb42c21f1666759d8730c548773c87e4c2806ae5376703956761a8fc036c5e847a4734cddd695067f684038c1cc9a8905e
 SHA512 
db09203256172cc4807189bbf16d793c9203c908d2e75cbb7d973d1f0338f6e3734afe68ffe1c43ef3e43e5b2c6dba1ab9135625e4d42d10a9ea6f44f673d384

diff --git a/x11-wm/i3-gaps/files/i3-gaps-4.19-fix-docdir.patch 
b/x11-wm/i3-gaps/files/i3-gaps-4.19-fix-docdir.patch
new file mode 100644
index 000..6917aa091df
--- /dev/null
+++ b/x11-wm/i3-gaps/files/i3-gaps-4.19-fix-docdir.patch
@@ -0,0 +1,22 @@
+diff --git a/meson.build b/meson.build
+index 11541e21..a6f8974e 100644
+--- a/meson.build
 b/meson.build
+@@ -642,7 +642,7 @@ if get_option('docs')
+   '@OUTPUT@',
+ ],
+ install: true,
+-install_dir: join_paths(get_option('datadir'), 'doc', 'i3'),
++install_dir: docdir,
+   )
+ 
+   custom_target(
+@@ -655,7 +655,7 @@ if get_option('docs')
+   '@OUTPUT@',
+ ],
+ install: true,
+-install_dir: join_paths(get_option('datadir'), 'doc', 'i3'),
++install_dir: docdir,
+   )
+ endif
+ 

diff --git a/x11-wm/i3-gaps/i3-gaps-4.19.ebuild 
b/x11-wm/i3-gaps/i3-gaps-4.19.ebuild
new file mode 100644
index 000..be6619cfd96
--- /dev/null
+++ b/x11-wm/i3-gaps/i3-gaps-4.19.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson optfeature
+
+DESCRIPTION="i3 fork with gaps and some more features"
+HOMEPAGE="https://github.com/Airblader/i3;
+SRC_URI="https://github.com/Airblader/i3/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE="doc test"
+RESTRICT="!test? ( test )"
+
+COMMON_DEPEND="dev-libs/glib:2
+   dev-libs/libev
+   dev-libs/libpcre
+   dev-libs/yajl
+   x11-libs/cairo[X,xcb(+)]
+   x11-libs/libxcb[xkb]
+   x11-libs/libxkbcommon[X]
+   x11-libs/pango[X]
+   x11-libs/startup-notification
+   x11-libs/xcb-util
+   x11-libs/xcb-util-cursor
+   x11-libs/xcb-util-keysyms
+   x11-libs/xcb-util-wm
+   x11-libs/xcb-util-xrm
+"
+DEPEND="${COMMON_DEPEND}
+   test? (
+   dev-perl/ExtUtils-PkgConfig
+   dev-perl/IPC-Run
+   dev-perl/Inline
+   dev-perl/Inline-C
+   dev-perl/X11-XCB
+   dev-perl/XS-Object-Magic
+   x11-apps/xhost
+   x11-base/xorg-server[xephyr,xvfb]
+   x11-misc/xvfb-run
+   )
+"
+BDEPEND="app-text/asciidoc
+   app-text/xmlto
+   dev-lang/perl
+   virtual/pkgconfig
+"
+RDEPEND="${COMMON_DEPEND}
+   dev-lang/perl
+   dev-perl/AnyEvent-I3
+   dev-perl/JSON-XS
+   !x11-wm/i3
+"
+
+S="${WORKDIR}/i3-${PV}"
+
+DOCS=( RELEASE-NOTES-$(ver_cut 1-3) )
+
+PATCHES=(
+   "${FILESDIR}/${PN}-4.18-musl.patch"
+   "${FILESDIR}/${PN}-4.19-fix-docdir.patch"
+)
+
+src_configure() {
+   local emesonargs=(
+   -Ddocdir="/usr/share/doc/${PF}"
+   -Ddocs=$(usex doc true false)
+   -Dmans=true
+   )
+
+   meson_src_configure
+}
+
+src_install() {
+  

[gentoo-commits] repo/gentoo:master commit in: x11-terms/alacritty/

2020-11-23 Thread Georgy Yakovlev
commit: 4317d6604f227234f569f06b81dfab90e115fdd0
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Nov 24 06:14:29 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Nov 24 06:14:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4317d660

x11-terms/alacritty: bump to 0.6.0_rc3

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Georgy Yakovlev  gentoo.org>

 x11-terms/alacritty/Manifest| 2 +-
 .../{alacritty-0.6.0_rc2.ebuild => alacritty-0.6.0_rc3.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/alacritty/Manifest b/x11-terms/alacritty/Manifest
index 94752c9fe86..34af85fcbda 100644
--- a/x11-terms/alacritty/Manifest
+++ b/x11-terms/alacritty/Manifest
@@ -8,7 +8,7 @@ DIST aho-corasick-0.7.13.crate 111381 BLAKE2B 
08efdd762a12cbafabfb6c1c6f8b87465b
 DIST aho-corasick-0.7.14.crate 113042 BLAKE2B 
6ba517169dd0bfafe7dd7755e2f664d831a17c6a367f29cb54d22b8b61eb04c75b67dead9a7855bdeaa1afd8aa5049b7580617bebf0cdac61c0712eb3525db4e
 SHA512 
0a11e7bd2d3b6868fb6f64b61f3feead4ea57ab3c5d75c6586b68765425219e631bf875e43f73e79888e71079b3d7e10af36af6f96b72515105df79f5922f296
 DIST alacritty-0.4.3.tar.gz 1488401 BLAKE2B 
0c4b622ec2dfbd45d4e3e99f6c83b0c0cc798cdac1b72d828e14f06242cdc796c29d78317c11e41126cad0e81677e1be8c7ae0ef911cfd3afe99445b4a1c73ce
 SHA512 
1c1a50098fe7c2dfa5fc75e5fd2632de0c60d8ceba5316de15910a9ece7d5385ead765075b87c5154171a908e5d7c78f519d3a2991eccb313aae766208007402
 DIST alacritty-0.5.0.tar.gz 1500418 BLAKE2B 
c6f727c1d13ab6e831b0b434ad821045c6045f791ff35cbdc93f629dae945adeaba58485d8dc4f6655a7bea6de3cd8b6ed6002827dfe6a8825bd5f255ddb21dc
 SHA512 
53ecda7996473890eea90b01b3f71c32d07abc38072dbc40ef3ccbc500a747af866e5b5aeea0ae0b85dc17e0b3c16fc9c5e3bae1a0d0f9a88c5ac264f51af62e
-DIST alacritty-0.6.0_rc2.tar.gz 1404361 BLAKE2B 
08371e93cbc28946a6b434e3bffab06f710bff31fda001244bc41ca47b7bcdec1205d574628f94ebb1f8329728a6e10f764e2b53be45c39ca21142d1b70e573e
 SHA512 
9198e3f47eb879c646b2761a0c387efdf0f65e49590824472e820bd7fc66e99a024dbe426195d973cb956d742516bf29472a81003dfb523e6ca1d0d12cfeef90
+DIST alacritty-0.6.0_rc3.tar.gz 1404080 BLAKE2B 
b76323655d2579e0604798558df88e4d3f0868ea799ab8cf48e1bca45f7d83c57ccaaaf1086e147c5c75064d5c9ef02ccf3aae53a1332a9bdeaf20b56e783732
 SHA512 
fec1fdacf0b56153f161653f2df8e81a92f5ecb20f49dade59bb07595791fb5fcfdd3c37ab118e1ba0500782a200783af80bafc59a5a101f485b27891df06b61
 DIST andrew-0.2.1.crate 9595 BLAKE2B 
d2cf73285889aaf702fb994fd1d5a1011e0f78011a612937ad9f06f506ef75c86fb82ee1069a8f520b926325a4363d83863234e1fd2a2fcd08ead5ff66b638c5
 SHA512 
06ba5a756e0d84953dcb1cd1714d1639e67e836dcdd92f5f77c2b35a2afdf0b0babcdf598e2c5cf2dc8661c8326bc27b1ac3c9963a5fcbc2e0c753da6ac730ea
 DIST andrew-0.3.1.crate 14030 BLAKE2B 
5224eb5a5ad5ba7dd07259a98b8dc04f92154dcc7b5a53c89b4f7fd3c1a12d834093350ce9f7cd69a935d70cff50c0fbc68305eea9f918b334ec1a6e9e979ae2
 SHA512 
c4fc8903d4c2542c91e7f099d5d9d2b9179ade3f4c3e83ccd8027b06cb582ef700777cf440a07c2478311c1b7c2f7ca64d53fb390f9f5753dcb32491003db8d3
 DIST android_glue-0.2.3.crate 1572 BLAKE2B 
8404cc69af7d1c9e851e67a69b5b18195388b50924b6a8afc7203bc5101babe9ae007724e552a929947fa9c639eb8ae13cdae0aedbc2d54b0b8d48373f15b7a3
 SHA512 
16ff1f0e1f50cd120dfbe57d45ebac1725fa75447c964a5b05a1a0565b13b0bc3b6c153edb4a50083ef5d802a889c9f9007e2e21a58dc408f9fb12e9437bd01b

diff --git a/x11-terms/alacritty/alacritty-0.6.0_rc2.ebuild 
b/x11-terms/alacritty/alacritty-0.6.0_rc3.ebuild
similarity index 100%
rename from x11-terms/alacritty/alacritty-0.6.0_rc2.ebuild
rename to x11-terms/alacritty/alacritty-0.6.0_rc3.ebuild



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

2020-11-23 Thread Georgy Yakovlev
commit: 167bb006187cced8a4e7b7156fd1ae54146bd7de
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Nov 24 06:03:52 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Nov 24 06:03:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=167bb006

dev-util/bats: add arm64 keyword

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Georgy Yakovlev  gentoo.org>

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

diff --git a/dev-util/bats/bats-1.2.1.ebuild b/dev-util/bats/bats-1.2.1.ebuild
index 797890f4d2e..82cdfda1600 100644
--- a/dev-util/bats/bats-1.2.1.ebuild
+++ b/dev-util/bats/bats-1.2.1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
 
 DEPEND="app-shells/bash:*"
 RDEPEND="${DEPEND}"



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

2020-11-23 Thread Georgy Yakovlev
commit: caeddb104673d21644d2824840bb85c5a5491f51
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Nov 24 06:04:32 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Nov 24 06:04:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caeddb10

sys-apps/etckeeper: bump to 1.18.15, add ~arm64 keyword

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-apps/etckeeper/Manifest |  1 +
 sys-apps/etckeeper/etckeeper-1.18.15.ebuild | 78 +
 2 files changed, 79 insertions(+)

diff --git a/sys-apps/etckeeper/Manifest b/sys-apps/etckeeper/Manifest
index e00ca069370..4717b6a9bdc 100644
--- a/sys-apps/etckeeper/Manifest
+++ b/sys-apps/etckeeper/Manifest
@@ -1 +1,2 @@
 DIST etckeeper-1.18.14.tar.gz 93528 BLAKE2B 
b36316b4a92ae7f885a1c0c0974fa69a3c1cee06ab9eb0bbee8c025f76b1dffcd19ac2f92fed49372873f54234ec1e8da023cab98097562d3eecd862ca4d98c7
 SHA512 
1bc01845d47ce3af1ef56474745843e8be6e005da90a21bed302fe73476fbf1f64b84fae7dac73139c394ca698bd146e1609fa34ebbc6737ba73a6f61e670948
+DIST etckeeper-1.18.15.tar.gz 92574 BLAKE2B 
1498d01394c9c5607eb081aa579f06c696b5df20af2899cb3deb2ac75ddf2b1f6ca7e64741b7e24819db2f8c751f3dd49da70cccad35fbfad255b328e208e973
 SHA512 
7b2cca6c346a7c2b97ffd9b418169712ec46d947a3c8685490ce95eb9f5b6fa389e7b3ae6ad2c1ad6774bed88212b05c5ffe202ad055dea19fdde2509a349a85

diff --git a/sys-apps/etckeeper/etckeeper-1.18.15.ebuild 
b/sys-apps/etckeeper/etckeeper-1.18.15.ebuild
new file mode 100644
index 000..3765429cc70
--- /dev/null
+++ b/sys-apps/etckeeper/etckeeper-1.18.15.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit bash-completion-r1 prefix systemd tmpfiles
+
+DESCRIPTION="A collection of tools to let /etc be stored in a repository"
+HOMEPAGE="https://etckeeper.branchable.com/;
+SRC_URI="https://git.joeyh.name/index.cgi/etckeeper.git/snapshot/${P}.tar.gz;
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+SLOT="0"
+IUSE="cron test"
+
+BDEPEND="test? (
+   dev-util/bats
+   dev-vcs/git
+)"
+
+RDEPEND="app-portage/portage-utils
+   cron? ( virtual/cron )
+   || (
+   dev-vcs/git
+   dev-vcs/mercurial
+   dev-vcs/darcs
+   )
+"
+
+RESTRICT="!test? ( test )"
+
+PATCHES=( "${FILESDIR}"/${PN}-1.18.14-gentoo.patch )
+
+src_prepare() {
+   default
+   hprefixify *.d/* etckeeper
+   sed -i \
+   -e s'@zsh/vendor-completions@zsh/site-functions@' \
+   -e s"@/lib/systemd/system@"$(systemd_get_systemunitdir)"@" \
+   Makefile || die
+   rm -v init.d/60darcs-deleted-symlinks || die
+}
+
+src_compile() {
+   :
+}
+
+src_install() {
+   emake DESTDIR="${ED}" install
+
+   doenvd "$(prefixify_ro "${FILESDIR}"/99${PN})"
+
+   newbashcomp bash_completion ${PN}
+   dodoc doc/README.mdwn
+   newdoc "${FILESDIR}"/bashrc-r1 bashrc.example
+
+   rm -rv "${ED}/var/cache" || die
+   newtmpfiles "${FILESDIR}/${PN}".tmpfilesd "${PN}".conf
+
+   if use cron ; then
+   exeinto /etc/cron.daily
+   newexe debian/cron.daily etckeeper
+   fi
+}
+
+pkg_postinst() {
+   tmpfiles_process "${PN}.conf"
+
+   elog "${PN} supports git, mercurial and darcs"
+   elog "This ebuild just ensures at least one is installed!"
+   elog
+   elog "You may want to adjust your /etc/portage/bashrc"
+   elog "see the example file in /usr/share/doc/${PF}"
+   elog
+   elog "To initialise your etc-dir as a repository run:"
+   elog "${PN} init -d /etc"
+}



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

2020-11-23 Thread Georgy Yakovlev
commit: 2658014f512c0c931c80a95f40828a8af8fb67af
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Nov 24 05:39:26 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Nov 24 05:53:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2658014f

net-im/telegram-desktop: bump to 2.4.11, make wayland optional

Thanks-to:  Esteve Varela Colominas  gmail.com>
Bug: https://bugs.gentoo.org/733234
Bug: https://bugs.gentoo.org/753737
Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Georgy Yakovlev  gentoo.org>

 net-im/telegram-desktop/Manifest   | 2 +-
 ...elegram-desktop-2.4.9.ebuild => telegram-desktop-2.4.11.ebuild} | 7 ---
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/net-im/telegram-desktop/Manifest b/net-im/telegram-desktop/Manifest
index 3dec1e11d27..a4e9ec30a02 100644
--- a/net-im/telegram-desktop/Manifest
+++ b/net-im/telegram-desktop/Manifest
@@ -1,2 +1,2 @@
+DIST tdesktop-2.4.11-full.tar.gz 36405312 BLAKE2B 
7c4239d4a2193c910aeb918f40d4c196702bffb4236f7702a5573840b8d4a1a9183e3c91fd97c5d9e4ab5950d96e99b427746ffb18ed5bbef16b240dfc873e2e
 SHA512 
b6452c39ea1b1b794c61ec2fc700356c9ee314250d73b895d297ad66602a93676d3cf74d695ac53965719ddb54da9e290f4f638bbf2e0fb21fec8995b6788a1c
 DIST tdesktop-2.4.7-full.tar.gz 36355613 BLAKE2B 
5b60bddd81d5472aaa303817be280604d5dcb4a5f7260c6b6fbd7ca075a46972adb4439e58e2f5b7877c10b3cb6420a7bc95ffe36ab0b3cf531a46758046f7c1
 SHA512 
712ab6896f89f7df0c7ac297039ee3b3532c159e17f66e4539b701a35d04d4709b558755d592d3cd91df541a2d2ca9f0485cf073c32f0b69a18848ab2ccd1993
-DIST tdesktop-2.4.9-full.tar.gz 36357016 BLAKE2B 
3c74d712cec6488c85fc075b7e250fb3c97b5cdfed4621eac9ca14c40857906fc96ee5e1a3ad95fcfb48bd40c66f39a41b51d1d1ad757038448324ec07e02e5f
 SHA512 
532858e98e1ec5a000fd63e336862b3e4b853cd47b299ad7239e65f5311bc578f0ffe18a47d7c2502b3e83fb799f88d00cf6f3d87d586a969b078c298bd47c25

diff --git a/net-im/telegram-desktop/telegram-desktop-2.4.9.ebuild 
b/net-im/telegram-desktop/telegram-desktop-2.4.11.ebuild
similarity index 96%
rename from net-im/telegram-desktop/telegram-desktop-2.4.9.ebuild
rename to net-im/telegram-desktop/telegram-desktop-2.4.11.ebuild
index 24e0dfc2bbb..7f66f02025a 100644
--- a/net-im/telegram-desktop/telegram-desktop-2.4.9.ebuild
+++ b/net-im/telegram-desktop/telegram-desktop-2.4.11.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/telegramdesktop/tdesktop/releases/download/v${PV}/${
 LICENSE="BSD GPL-3-with-openssl-exception LGPL-2+"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc64"
-IUSE="+dbus enchant +gtk +hunspell libressl lto pulseaudio +spell +webrtc +X"
+IUSE="+dbus enchant +gtk +hunspell libressl lto pulseaudio +spell wayland 
+webrtc +X"
 
 RDEPEND="
!net-im/telegram-desktop-bin
@@ -26,7 +26,7 @@ RDEPEND="
libressl? ( dev-libs/libressl:0= )
dev-libs/xxhash
dev-qt/qtcore:5
-   dev-qt/qtgui:5[dbus?,jpeg,png,wayland,X(-)?]
+   dev-qt/qtgui:5[dbus?,jpeg,png,wayland?,X(-)?]
dev-qt/qtimageformats:5
dev-qt/qtnetwork:5
dev-qt/qtsvg:5
@@ -57,7 +57,7 @@ RDEPEND="
pulseaudio? ( media-sound/pulseaudio )
webrtc? (
media-libs/libjpeg-turbo:=
-   ~media-libs/tg_owt-0_pre20201105[pulseaudio=]
+   ~media-libs/tg_owt-0_pre20201112[pulseaudio=]
)
 "
 
@@ -128,6 +128,7 @@ src_configure() {
-DTDESKTOP_LAUNCHER_BASENAME="${PN}"
-DDESKTOP_APP_DISABLE_DBUS_INTEGRATION="$(usex dbus OFF ON)"
-DDESKTOP_APP_DISABLE_SPELLCHECK="$(usex spell OFF ON)" # 
enables hunspell (recommended)
+   -DDESKTOP_APP_DISABLE_WAYLAND_INTEGRATION="$(usex wayland OFF 
ON)"
-DDESKTOP_APP_DISABLE_WEBRTC_INTEGRATION="$(usex webrtc OFF ON)"
-DDESKTOP_APP_USE_ENCHANT="$(usex enchant ON OFF)" # enables 
enchant and disables hunspell
$(usex lto "-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON" '')



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

2020-11-23 Thread Georgy Yakovlev
commit: b50d960b3ecec030e387df687877c78bf9519ed6
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Nov 24 05:36:39 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Nov 24 05:53:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b50d960b

media-libs/tg_owt: bump to new snapshot

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Georgy Yakovlev  gentoo.org>

 media-libs/tg_owt/Manifest|  1 +
 media-libs/tg_owt/tg_owt-0_pre20201112.ebuild | 52 +++
 2 files changed, 53 insertions(+)

diff --git a/media-libs/tg_owt/Manifest b/media-libs/tg_owt/Manifest
index 4db6a7faa52..bc40b05702a 100644
--- a/media-libs/tg_owt/Manifest
+++ b/media-libs/tg_owt/Manifest
@@ -1 +1,2 @@
 DIST tg_owt-0_pre20201105.tar.gz 18390526 BLAKE2B 
115e93eb9dfd158779d2a521de9bca8cf0e0a38cff7d7a470b59d2941212a79cc7c33abf330c348ad70321486cd80d44644ceea61f9a86bbaee3ef6463a9e23d
 SHA512 
de9d4490c3e68f17dd75e523596683395e67e91b51c5c7af61c0a51517779129cc965bc97d63b5054bdddb76d385ab33d6995d72b08316941fa2a72a93d1c3fa
+DIST tg_owt-0_pre20201112.tar.gz 18391959 BLAKE2B 
85ad2880e9067daad94389708c0cb3638c090fa8281b8bf55d990dcdbf8eb898a70a930a0c0e904b0a682b9ebdb021134e18270ab760191b12cccba12dae95d5
 SHA512 
10f6ca1a6a82e9bd9af9e815b4d849fdace39332df61d32a9b706bffc3e8647b20f58e63a2fcc4e714e1480768ddd8f7ad21588f1e9762b3c056b205abfd5806

diff --git a/media-libs/tg_owt/tg_owt-0_pre20201112.ebuild 
b/media-libs/tg_owt/tg_owt-0_pre20201112.ebuild
new file mode 100644
index 000..d962696ed69
--- /dev/null
+++ b/media-libs/tg_owt/tg_owt-0_pre20201112.ebuild
@@ -0,0 +1,52 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake flag-o-matic
+
+TG_OWT_COMMIT="10b988aa9111fd25358443ac34d0d422b5108029"
+
+DESCRIPTION="WebRTC build for Telegram"
+HOMEPAGE="https://github.com/desktop-app/tg_owt;
+SRC_URI="https://github.com/desktop-app/tg_owt/archive/${TG_OWT_COMMIT}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64"
+IUSE="pulseaudio"
+
+# some things from this list are bundled
+# work on unbundling in progress
+DEPEND="
+   dev-libs/openssl:=
+   dev-libs/protobuf:=
+   media-libs/alsa-lib
+   media-libs/libjpeg-turbo:=
+   media-libs/libvpx:=
+   media-libs/openh264:=
+   media-libs/opus
+   media-video/ffmpeg:=
+   !pulseaudio? ( media-sound/apulse[sdk] )
+   pulseaudio? ( media-sound/pulseaudio )
+"
+
+RDEPEND="${DEPEND}"
+
+BDEPEND="
+   virtual/pkgconfig
+   amd64? ( dev-lang/yasm )
+"
+
+S="${WORKDIR}/${PN}-${TG_OWT_COMMIT}"
+
+src_configure() {
+   # lacks nop, can't restore toc
+   append-flags '-fPIC'
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=TRUE
+   -DTG_OWT_PACKAGED_BUILD=TRUE
+   -DTG_OWT_USE_PROTOBUF=TRUE
+   )
+   cmake_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: profiles/features/prefix/standalone/kernel-2.6.16+/

2020-11-23 Thread Benda XU
commit: f7ae36c9547d429f58be24e0416848cd25e8d8bb
Author: Benda Xu  gentoo  org>
AuthorDate: Tue Nov 24 05:50:11 2020 +
Commit: Benda XU  gentoo  org>
CommitDate: Tue Nov 24 05:51:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7ae36c9

profiles/f/p/s/kernel-2.6.16+/p.bashrc: libuv compatibility.

libuv is a dependency of cmake.

Switch off CLOEXEC related functions that are not introduced until
linux-2.6.27.

Signed-off-by: Benda Xu  gentoo.org>

 profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc 
b/profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc
index ed5226a858d..6370f687cad 100644
--- a/profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc
+++ b/profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc
@@ -3,6 +3,10 @@
 if [[ ${CATEGORY}/${PN} == dev-util/cmake && ${EBUILD_PHASE} == configure ]]; 
then
 einfo "Removing utimensat outputs..."
 sed -e '/UTIMENSAT=/d' -i "${S}"/Source/kwsys/CMakeLists.txt || die
+elif [[ ${CATEGORY}/${PN} == dev-libs/libuv && ${EBUILD_PHASE} == prepare ]]; 
then
+einfo "Removing CLOEXEC related functions..."
+sed -e 's/defined(__FreeBSD__) || defined(__linux__)/0/' \
+-i "${S}"/src/unix/process.c || die
 elif [[ ${CATEGORY}/${PN} == dev-qt/qtcore && ${EBUILD_PHASE} == configure ]]; 
then
 einfo "Removing pipe2 definitions..."
 sed -e '/define.*HAVE_PIPE2/d' -i "${S}"/src/3rdparty/forkfd/forkfd.c || 
die
@@ -19,7 +23,7 @@ elif [[ ${CATEGORY}/${PN} == sys-apps/util-linux && 
${EBUILD_PHASE} == configure
 sed -r -e 's/inotify_init1\(.*\)/inotify_init\(\)/' \
-e '/open\(/s/\| *O_CLOEXEC//' \
-e 's/epoll_create1\(EPOLL_CLOEXEC/epoll_create\(1/' \
-   -i "${S}"/libmount/src/monitor.c
+   -i "${S}"/libmount/src/monitor.c || die
 fi
 
 # Local Variables:



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

2020-11-23 Thread Georgy Yakovlev
commit: a624e29ee0b8c985a12e39f26e7aa1610a0f6a03
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Nov 24 03:33:55 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Nov 24 05:20:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a624e29e

dev-lang/rust: update doc symlink

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-lang/rust/rust-1.48.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/rust/rust-1.48.0.ebuild b/dev-lang/rust/rust-1.48.0.ebuild
index e1a7dea6391..16a3d1da232 100644
--- a/dev-lang/rust/rust-1.48.0.ebuild
+++ b/dev-lang/rust/rust-1.48.0.ebuild
@@ -530,7 +530,7 @@ src_install() {
dosym "${PV}/lib" "/usr/lib/${PN}/lib-${PV}"
dosym "${PV}/share/man" "/usr/lib/${PN}/man-${PV}"
dosym "rust/${PV}/lib/rustlib" "/usr/lib/rustlib-${PV}"
-   dosym "../../lib/${PN}/${PV}/share/doc" "/usr/share/doc/${P}"
+   dosym "../../lib/${PN}/${PV}/share/doc/rust" "/usr/share/doc/${P}"
 
newenvd - "50${P}" <<-_EOF_
LDPATH="${EPREFIX}/usr/lib/rust/lib"



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

2020-11-23 Thread Georgy Yakovlev
commit: e53170891f48233ccd21ce20c2ac1931aaa0fd4c
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Nov 24 03:29:22 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Nov 24 05:20:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5317089

profiles/base/package.use.mask: update rust masks once again

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

 profiles/base/package.use.mask | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 649d09e7da9..35fc0f3ad50 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -20,7 +20,7 @@ media-gfx/darktable system-lua
 #
 # USE=miri seems to be not working on 1.48.0
 =dev-lang/rust-1.47.0-r1 doc
-=dev-lang/rust-1.48.0 miri
+=dev-lang/rust-1.48.0 doc miri
 
 # Michał Górny  (2020-09-27)
 # The respective dependencies are masked for removal.



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

2020-11-23 Thread Thomas Deutschmann
commit: 105fd97a6c3d2a87e6318a750ad5ba742931140a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Nov 24 04:10:01 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Nov 24 04:10:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=105fd97a

sys-kernel/vanilla-sources: restore v5.9.8

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-kernel/vanilla-sources/Manifest |  1 +
 sys-kernel/vanilla-sources/vanilla-sources-5.9.8.ebuild | 16 
 2 files changed, 17 insertions(+)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 2a14afdedd0..f8d59e109aa 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -10,3 +10,4 @@ DIST patch-4.4.245.xz 3395688 BLAKE2B 
fe64d7e839cc5e2113322b2084d289f3f1ff64833e
 DIST patch-4.9.245.xz 3774032 BLAKE2B 
c7af52cf4d794d3ae11aad18940a095b20f651240e84de22f6cb29b06e4756d85abb10f31b7a39ba42552732e6eb4fe28ddd2deec9099a36bd4fb92526975bae
 SHA512 
97408adb7b31fa102388787b4ac3d684416c1f32e2be2e4408fc4a35cba438044181b98663887bec27925921b5c1367c90cd7aaf1fde8823376d80f5d838890f
 DIST patch-5.4.79.xz 2352228 BLAKE2B 
1e442d430d49aa23e9831894e6587445478f1520bdba696dbd2ad1ecc89e2db110d9269a8bb0dd1bdb02fb3ec10510d2b736f49ab828f1714d88041f8cbda85f
 SHA512 
a7c208eae1952b4ccde1e62dc06c6146afdd0e3b834aeb7139605ae82a89e099edbd003ce427db08e52872d3b7e4f5796ecb1878fee022fc3d1f3006e4aad6ec
 DIST patch-5.9.10.xz 511000 BLAKE2B 
7b75934a08c1f0bbe8cae785b26d55f3bfb8096d94e4f8a7600fe38caefbef3feb23aca20b6b830c983f43b0ed2cce3fb3e2fddcc89e952ec9ffb50f7762902f
 SHA512 
03502af73fe1e171238fa767dedb09db2e22ba1a781065d2cbd4ec55d0a2dcbf1677dad5cde45f203b48a85401a9b46531d87f3de5136a562072a08bc5fc17c9
+DIST patch-5.9.8.xz 435220 BLAKE2B 
652cf78bad2ca06c8e6a27a384382e89189469feaadf24a25f28d3d65cdcce165c099ac304547fb9e0168048875b486ef25b0802162693c43a07820554fd5c6b
 SHA512 
53dee96e9d3cf4f720c03687c8a4bea53423f76d16fa685a18e188c0a418d1d5ce3eb308c061138d8c0fd6af0062db0a622429f71d5698ac9092acf13a982f10

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-5.9.8.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-5.9.8.ebuild
new file mode 100644
index 000..4ffca0e91d5
--- /dev/null
+++ b/sys-kernel/vanilla-sources/vanilla-sources-5.9.8.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_SECURITY_UNSUPPORTED="1"
+ETYPE="sources"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="Full sources for the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"



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

2020-11-23 Thread Thomas Deutschmann
commit: 171c31d573873b8d07bbef47bd43592719523745
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Nov 24 04:11:33 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Nov 24 04:11:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=171c31d5

sys-kernel/vanilla-sources: restore v4.19.157

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-kernel/vanilla-sources/Manifest  |  1 +
 .../vanilla-sources/vanilla-sources-4.19.157.ebuild  | 16 
 2 files changed, 17 insertions(+)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 42cc1856743..f136cb0e5d8 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -5,6 +5,7 @@ DIST linux-4.9.tar.xz 93192404 BLAKE2B 
83ae310b17d47f1f18d6d28537c31e10f3e60458c
 DIST linux-5.4.tar.xz 109441440 BLAKE2B 
193bc4a3147e147d5529956164ec4912fad5d5c6fb07f909ff1056e57235834173194afc686993ccd785c1ff15804de0961b625f3008cca0e27493efc8f27b13
 SHA512 
9f60f77e8ab972b9438ac648bed17551c8491d6585a5e85f694b2eaa4c623fbc61eb18419b2656b6795eac5deec0edaa04547fc6723fbda52256bd7f3486898f
 DIST linux-5.9.tar.xz 115507140 BLAKE2B 
e8d11472d63a9f8409ca12a2e8c97c6963a3d4516b5a398b627d6ece565584526f9b5a1377a2fa4bd184c09c7db94c987428bc5d52df0c788464a67e9e8d6dcb
 SHA512 
d3d92ce4246bad74c9a784212f160d98449b1e8793970c2c308276568d852b8effe0528686bdb87d55d691f09a826abf7938d69bdd4759ce65ddd5c05ffe4eca
 DIST patch-4.14.208.xz 4023796 BLAKE2B 
d5da7d584dd0cd0eba3550dd82ec25605dff638e7eb2f77035586bfc68c5100a6b71c662f02e0f3e2f907961a9e96fc750b8fd285a518ed8a807df585789e128
 SHA512 
a48d8e4a53bf75b55f8e58e02bb8a7c037f9a402407010d7b122de8736a2cf575705b517c3f9220ad4806a92829985aab2d5865a32cd044da22eee5f0ff3e495
+DIST patch-4.19.157.xz 3601120 BLAKE2B 
60cef4a4e72a27278818341ab73e460d7f7340ba7c0e49034484fd196abea0e201e2fad1c08ba7ae9a9629b24c71f95d870322edc3e0f8eac404257eb97e9208
 SHA512 
d25a416316c7e39fa41213bb47d0d28ede99b6814b02b7ea3fd6872db4386129567c1e5bffc4e20454656e48cd3416d9582f7351c38208f4bd3a31c7c6883907
 DIST patch-4.19.159.xz 3625472 BLAKE2B 
6eee55d8297e3093743557dedc742baa216c174e72fd26d101bf308069f0a0396e0fd25c7e7d9579f8f5f5015a8fbf5bc97ac8106be6b0f464405bf73fbac222
 SHA512 
9978de25ec7bfc1a7f18987ec8141adb72667871d7dfbd9e7eecd31a934c406afd31302c7d4897bf35197ea6014a8c0374eada420f1422eca422126af3ce9fb1
 DIST patch-4.4.245.xz 3395688 BLAKE2B 
fe64d7e839cc5e2113322b2084d289f3f1ff64833e05e7053285817b056c7303445939952299ebdb27a7b7c1c8417f474cca5201b75134fb90da1ab55d808a77
 SHA512 
85bc54f20b59cca9bb8549e00a58c065f9f990ea2ab0ebc78f10c5c3accc37473aa26cf69239aee282e9c8e84df4d6d13888ae8b228e81a32cb2227a49f984ef
 DIST patch-4.9.245.xz 3774032 BLAKE2B 
c7af52cf4d794d3ae11aad18940a095b20f651240e84de22f6cb29b06e4756d85abb10f31b7a39ba42552732e6eb4fe28ddd2deec9099a36bd4fb92526975bae
 SHA512 
97408adb7b31fa102388787b4ac3d684416c1f32e2be2e4408fc4a35cba438044181b98663887bec27925921b5c1367c90cd7aaf1fde8823376d80f5d838890f

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.19.157.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.19.157.ebuild
new file mode 100644
index 000..4ffca0e91d5
--- /dev/null
+++ b/sys-kernel/vanilla-sources/vanilla-sources-4.19.157.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_SECURITY_UNSUPPORTED="1"
+ETYPE="sources"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="Full sources for the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"



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

2020-11-23 Thread Thomas Deutschmann
commit: f45dbfd03e694603075feb4ae1e77541627ad5b0
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Nov 24 04:12:57 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Nov 24 04:12:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f45dbfd0

sys-kernel/vanilla-sources: restore v4.9.243

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-kernel/vanilla-sources/Manifest  |  1 +
 .../vanilla-sources/vanilla-sources-4.9.243.ebuild   | 16 
 2 files changed, 17 insertions(+)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 3a54fccdb48..d174568f71e 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -9,6 +9,7 @@ DIST patch-4.14.208.xz 4023796 BLAKE2B 
d5da7d584dd0cd0eba3550dd82ec25605dff638e7
 DIST patch-4.19.157.xz 3601120 BLAKE2B 
60cef4a4e72a27278818341ab73e460d7f7340ba7c0e49034484fd196abea0e201e2fad1c08ba7ae9a9629b24c71f95d870322edc3e0f8eac404257eb97e9208
 SHA512 
d25a416316c7e39fa41213bb47d0d28ede99b6814b02b7ea3fd6872db4386129567c1e5bffc4e20454656e48cd3416d9582f7351c38208f4bd3a31c7c6883907
 DIST patch-4.19.159.xz 3625472 BLAKE2B 
6eee55d8297e3093743557dedc742baa216c174e72fd26d101bf308069f0a0396e0fd25c7e7d9579f8f5f5015a8fbf5bc97ac8106be6b0f464405bf73fbac222
 SHA512 
9978de25ec7bfc1a7f18987ec8141adb72667871d7dfbd9e7eecd31a934c406afd31302c7d4897bf35197ea6014a8c0374eada420f1422eca422126af3ce9fb1
 DIST patch-4.4.245.xz 3395688 BLAKE2B 
fe64d7e839cc5e2113322b2084d289f3f1ff64833e05e7053285817b056c7303445939952299ebdb27a7b7c1c8417f474cca5201b75134fb90da1ab55d808a77
 SHA512 
85bc54f20b59cca9bb8549e00a58c065f9f990ea2ab0ebc78f10c5c3accc37473aa26cf69239aee282e9c8e84df4d6d13888ae8b228e81a32cb2227a49f984ef
+DIST patch-4.9.243.xz 3748124 BLAKE2B 
4a3b4f0ed98f949996ca9b1d9b98ff60e165ef475e4152442ce4ca8196e120f4109994c07caf84ff0621f8c963461c6f8ee3fdac54e4ad2019cb755af7d80542
 SHA512 
1d997ced0bd42b55b7db74d2f1a71b7bcd3f9d4d0c74ba5b790cfe3bbf22b72b4d026fb2eee7c62efc4a5ffc710d48b0fcc6a3c57e0c6bd3df9edcb29c476d98
 DIST patch-4.9.245.xz 3774032 BLAKE2B 
c7af52cf4d794d3ae11aad18940a095b20f651240e84de22f6cb29b06e4756d85abb10f31b7a39ba42552732e6eb4fe28ddd2deec9099a36bd4fb92526975bae
 SHA512 
97408adb7b31fa102388787b4ac3d684416c1f32e2be2e4408fc4a35cba438044181b98663887bec27925921b5c1367c90cd7aaf1fde8823376d80f5d838890f
 DIST patch-5.4.77.xz 2312664 BLAKE2B 
c90792768d1b8f0c8c191aa27f424664c3fcbcd25ef9898d6f82d8e3bb4c4d768182da5f57dd5ca67a1652afb4912656a5345598d4cc1a3386cdb7060ee94cbb
 SHA512 
8e75b73b9f7b0dad4e767119fe55820784d5a73cce947860273e3bbf69ab9ee6ea9b71cb0cd5734ac3657d8d927063ef4ab4f75202010f625e9d26c9bf491510
 DIST patch-5.4.79.xz 2352228 BLAKE2B 
1e442d430d49aa23e9831894e6587445478f1520bdba696dbd2ad1ecc89e2db110d9269a8bb0dd1bdb02fb3ec10510d2b736f49ab828f1714d88041f8cbda85f
 SHA512 
a7c208eae1952b4ccde1e62dc06c6146afdd0e3b834aeb7139605ae82a89e099edbd003ce427db08e52872d3b7e4f5796ecb1878fee022fc3d1f3006e4aad6ec

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.9.243.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.9.243.ebuild
new file mode 100644
index 000..4ffca0e91d5
--- /dev/null
+++ b/sys-kernel/vanilla-sources/vanilla-sources-4.9.243.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_SECURITY_UNSUPPORTED="1"
+ETYPE="sources"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="Full sources for the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"



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

2020-11-23 Thread Thomas Deutschmann
commit: cabb00079b7d0d78ea9e54d3ec0e5fa575a3984b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Nov 24 04:12:20 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Nov 24 04:12:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cabb0007

sys-kernel/vanilla-sources: restore v4.14.206

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-kernel/vanilla-sources/Manifest  |  1 +
 .../vanilla-sources/vanilla-sources-4.14.206.ebuild  | 16 
 2 files changed, 17 insertions(+)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index f136cb0e5d8..3a54fccdb48 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -4,6 +4,7 @@ DIST linux-4.4.tar.xz 87295988 BLAKE2B 
f260f1858994f5d481fd078c86e51bddbc958f7c5
 DIST linux-4.9.tar.xz 93192404 BLAKE2B 
83ae310b17d47f1f18d6d28537c31e10f3e60458c5954c4611158ca99e71cc0da2e051272eabf27d5887df4a7cb4a5dd66ff993077c11d2221e92d300a0b48d7
 SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a
 DIST linux-5.4.tar.xz 109441440 BLAKE2B 
193bc4a3147e147d5529956164ec4912fad5d5c6fb07f909ff1056e57235834173194afc686993ccd785c1ff15804de0961b625f3008cca0e27493efc8f27b13
 SHA512 
9f60f77e8ab972b9438ac648bed17551c8491d6585a5e85f694b2eaa4c623fbc61eb18419b2656b6795eac5deec0edaa04547fc6723fbda52256bd7f3486898f
 DIST linux-5.9.tar.xz 115507140 BLAKE2B 
e8d11472d63a9f8409ca12a2e8c97c6963a3d4516b5a398b627d6ece565584526f9b5a1377a2fa4bd184c09c7db94c987428bc5d52df0c788464a67e9e8d6dcb
 SHA512 
d3d92ce4246bad74c9a784212f160d98449b1e8793970c2c308276568d852b8effe0528686bdb87d55d691f09a826abf7938d69bdd4759ce65ddd5c05ffe4eca
+DIST patch-4.14.206.xz 3995304 BLAKE2B 
28b9577ee7bb1f0e935482023ea660f788f0aabbe0e3be743075cdfa4fe263c1d1c50e99a7f7a27fd670820756c5a8c60667a1687666a4b29df790dc37360481
 SHA512 
5382e138db14e9c6e053ac76ae3d3ce6114ebaf4d0b0588a297bcd358be8c60df35535cf97ac0ae62e9f58673a3ad3fd07de5c2ffb6f0a638624f05cea209bc6
 DIST patch-4.14.208.xz 4023796 BLAKE2B 
d5da7d584dd0cd0eba3550dd82ec25605dff638e7eb2f77035586bfc68c5100a6b71c662f02e0f3e2f907961a9e96fc750b8fd285a518ed8a807df585789e128
 SHA512 
a48d8e4a53bf75b55f8e58e02bb8a7c037f9a402407010d7b122de8736a2cf575705b517c3f9220ad4806a92829985aab2d5865a32cd044da22eee5f0ff3e495
 DIST patch-4.19.157.xz 3601120 BLAKE2B 
60cef4a4e72a27278818341ab73e460d7f7340ba7c0e49034484fd196abea0e201e2fad1c08ba7ae9a9629b24c71f95d870322edc3e0f8eac404257eb97e9208
 SHA512 
d25a416316c7e39fa41213bb47d0d28ede99b6814b02b7ea3fd6872db4386129567c1e5bffc4e20454656e48cd3416d9582f7351c38208f4bd3a31c7c6883907
 DIST patch-4.19.159.xz 3625472 BLAKE2B 
6eee55d8297e3093743557dedc742baa216c174e72fd26d101bf308069f0a0396e0fd25c7e7d9579f8f5f5015a8fbf5bc97ac8106be6b0f464405bf73fbac222
 SHA512 
9978de25ec7bfc1a7f18987ec8141adb72667871d7dfbd9e7eecd31a934c406afd31302c7d4897bf35197ea6014a8c0374eada420f1422eca422126af3ce9fb1

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.14.206.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.14.206.ebuild
new file mode 100644
index 000..4ffca0e91d5
--- /dev/null
+++ b/sys-kernel/vanilla-sources/vanilla-sources-4.14.206.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_SECURITY_UNSUPPORTED="1"
+ETYPE="sources"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="Full sources for the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"



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

2020-11-23 Thread Thomas Deutschmann
commit: 8975e31d21bb49f15f1f0b05bfe698135e944498
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Nov 24 04:10:45 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Nov 24 04:10:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8975e31d

sys-kernel/vanilla-sources: restore v5.4.77

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-kernel/vanilla-sources/Manifest  |  1 +
 sys-kernel/vanilla-sources/vanilla-sources-5.4.77.ebuild | 16 
 2 files changed, 17 insertions(+)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index f8d59e109aa..42cc1856743 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -8,6 +8,7 @@ DIST patch-4.14.208.xz 4023796 BLAKE2B 
d5da7d584dd0cd0eba3550dd82ec25605dff638e7
 DIST patch-4.19.159.xz 3625472 BLAKE2B 
6eee55d8297e3093743557dedc742baa216c174e72fd26d101bf308069f0a0396e0fd25c7e7d9579f8f5f5015a8fbf5bc97ac8106be6b0f464405bf73fbac222
 SHA512 
9978de25ec7bfc1a7f18987ec8141adb72667871d7dfbd9e7eecd31a934c406afd31302c7d4897bf35197ea6014a8c0374eada420f1422eca422126af3ce9fb1
 DIST patch-4.4.245.xz 3395688 BLAKE2B 
fe64d7e839cc5e2113322b2084d289f3f1ff64833e05e7053285817b056c7303445939952299ebdb27a7b7c1c8417f474cca5201b75134fb90da1ab55d808a77
 SHA512 
85bc54f20b59cca9bb8549e00a58c065f9f990ea2ab0ebc78f10c5c3accc37473aa26cf69239aee282e9c8e84df4d6d13888ae8b228e81a32cb2227a49f984ef
 DIST patch-4.9.245.xz 3774032 BLAKE2B 
c7af52cf4d794d3ae11aad18940a095b20f651240e84de22f6cb29b06e4756d85abb10f31b7a39ba42552732e6eb4fe28ddd2deec9099a36bd4fb92526975bae
 SHA512 
97408adb7b31fa102388787b4ac3d684416c1f32e2be2e4408fc4a35cba438044181b98663887bec27925921b5c1367c90cd7aaf1fde8823376d80f5d838890f
+DIST patch-5.4.77.xz 2312664 BLAKE2B 
c90792768d1b8f0c8c191aa27f424664c3fcbcd25ef9898d6f82d8e3bb4c4d768182da5f57dd5ca67a1652afb4912656a5345598d4cc1a3386cdb7060ee94cbb
 SHA512 
8e75b73b9f7b0dad4e767119fe55820784d5a73cce947860273e3bbf69ab9ee6ea9b71cb0cd5734ac3657d8d927063ef4ab4f75202010f625e9d26c9bf491510
 DIST patch-5.4.79.xz 2352228 BLAKE2B 
1e442d430d49aa23e9831894e6587445478f1520bdba696dbd2ad1ecc89e2db110d9269a8bb0dd1bdb02fb3ec10510d2b736f49ab828f1714d88041f8cbda85f
 SHA512 
a7c208eae1952b4ccde1e62dc06c6146afdd0e3b834aeb7139605ae82a89e099edbd003ce427db08e52872d3b7e4f5796ecb1878fee022fc3d1f3006e4aad6ec
 DIST patch-5.9.10.xz 511000 BLAKE2B 
7b75934a08c1f0bbe8cae785b26d55f3bfb8096d94e4f8a7600fe38caefbef3feb23aca20b6b830c983f43b0ed2cce3fb3e2fddcc89e952ec9ffb50f7762902f
 SHA512 
03502af73fe1e171238fa767dedb09db2e22ba1a781065d2cbd4ec55d0a2dcbf1677dad5cde45f203b48a85401a9b46531d87f3de5136a562072a08bc5fc17c9
 DIST patch-5.9.8.xz 435220 BLAKE2B 
652cf78bad2ca06c8e6a27a384382e89189469feaadf24a25f28d3d65cdcce165c099ac304547fb9e0168048875b486ef25b0802162693c43a07820554fd5c6b
 SHA512 
53dee96e9d3cf4f720c03687c8a4bea53423f76d16fa685a18e188c0a418d1d5ce3eb308c061138d8c0fd6af0062db0a622429f71d5698ac9092acf13a982f10

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-5.4.77.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-5.4.77.ebuild
new file mode 100644
index 000..4ffca0e91d5
--- /dev/null
+++ b/sys-kernel/vanilla-sources/vanilla-sources-5.4.77.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_SECURITY_UNSUPPORTED="1"
+ETYPE="sources"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="Full sources for the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"



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

2020-11-23 Thread Thomas Deutschmann
commit: dec8c67341bccc2583dbf9edbbeb327c6b8cd29a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Nov 24 04:04:05 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Nov 24 04:04:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dec8c673

package.mask: Add affected sys-kernel/vanilla-kernel versions to mask

Link: 
https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=607d476fbcc571f5bc92e8aa2e2f00d2fbbe171c
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index b71cf8ac140..9de5de51779 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -55,6 +55,10 @@
 =sys-kernel/vanilla-sources-4.14.207
 =sys-kernel/vanilla-sources-4.9.245
 =sys-kernel/vanilla-sources-4.9.244
+=sys-kernel/vanilla-kernel-5.9.10
+=sys-kernel/vanilla-kernel-5.9.9
+=sys-kernel/vanilla-kernel-5.4.79
+=sys-kernel/vanilla-kernel-5.4.78
 =sys-kernel/gentoo-kernel-5.9.10
 =sys-kernel/gentoo-kernel-5.9.9
 =sys-kernel/gentoo-kernel-5.4.79



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

2020-11-23 Thread Thomas Deutschmann
commit: 607d476fbcc571f5bc92e8aa2e2f00d2fbbe171c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Nov 24 03:50:22 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Nov 24 03:52:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=607d476f

package.mask: Mask recent kernel versions due to serious XFS data corruption bug

Link: https://www.spinics.net/lists/linux-xfs/msg47006.html
Link: https://www.spinics.net/lists/linux-xfs/msg46998.html
Link: 
https://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git/commit/?id=eb8409071a1d47e3593cfe077107ac46853182ab
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 05215eb7b29..b71cf8ac140 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,42 @@
 
 #--- END OF EXAMPLES ---
 
+# Thomas Deutschmann  (2020-11-24)
+# Serious data corruption bug when using XFS, see 
https://www.spinics.net/lists/linux-xfs/msg47004.html
+# Feel free to manually unmask when not using XFS.
+=sys-kernel/gentoo-sources-5.9.10
+=sys-kernel/gentoo-sources-5.9.9
+=sys-kernel/gentoo-sources-5.4.79
+=sys-kernel/gentoo-sources-5.4.78
+=sys-kernel/gentoo-sources-4.19.159
+=sys-kernel/gentoo-sources-4.19.158
+=sys-kernel/gentoo-sources-4.14.208
+=sys-kernel/gentoo-sources-4.14.207
+=sys-kernel/gentoo-sources-4.9.245
+=sys-kernel/gentoo-sources-4.9.244
+=sys-kernel/vanilla-sources-5.9.10
+=sys-kernel/vanilla-sources-5.9.9
+=sys-kernel/vanilla-sources-5.4.79
+=sys-kernel/vanilla-sources-5.4.78
+=sys-kernel/vanilla-sources-4.19.159
+=sys-kernel/vanilla-sources-4.19.158
+=sys-kernel/vanilla-sources-4.14.208
+=sys-kernel/vanilla-sources-4.14.207
+=sys-kernel/vanilla-sources-4.9.245
+=sys-kernel/vanilla-sources-4.9.244
+=sys-kernel/gentoo-kernel-5.9.10
+=sys-kernel/gentoo-kernel-5.9.9
+=sys-kernel/gentoo-kernel-5.4.79
+=sys-kernel/gentoo-kernel-5.4.78
+=sys-kernel/gentoo-kernel-bin-5.9.10-r1
+=sys-kernel/gentoo-kernel-bin-5.9.10
+=sys-kernel/gentoo-kernel-bin-5.9.9-r1
+=sys-kernel/gentoo-kernel-bin-5.9.9
+=sys-kernel/gentoo-kernel-bin-5.4.79-r1
+=sys-kernel/gentoo-kernel-bin-5.4.79
+=sys-kernel/gentoo-kernel-bin-5.4.78-r1
+=sys-kernel/gentoo-kernel-bin-5.4.78
+
 # Fabian Groffen  (2020-11-23)
 # No longer used, not really functional either, noone should be using
 # this, removal in 30 days.



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

2020-11-23 Thread Sam James
commit: 8c3ac02e46ac320c8206e46d2144cb43718ca175
Author: David Roman  gmail  com>
AuthorDate: Mon Nov 23 16:33:06 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 03:47:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c3ac02e

dev-libs/poco: verbump to 1.10.1

Closes: https://bugs.gentoo.org/665880
Closes: https://bugs.gentoo.org/707106
Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: David Roman  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18378
Signed-off-by: Sam James  gentoo.org>

 dev-libs/poco/Manifest |   1 +
 dev-libs/poco/files/poco-1.10.1-iodbc-incdir.patch |  13 ++
 dev-libs/poco/metadata.xml |   9 +-
 dev-libs/poco/poco-1.10.1.ebuild   | 138 +
 4 files changed, 160 insertions(+), 1 deletion(-)

diff --git a/dev-libs/poco/Manifest b/dev-libs/poco/Manifest
index 2fdbe4b3bef..0dc485b0a31 100644
--- a/dev-libs/poco/Manifest
+++ b/dev-libs/poco/Manifest
@@ -1 +1,2 @@
+DIST poco-1.10.1.tar.gz 10224204 BLAKE2B 
644bb2134c571e10b63937ca15b3f5d7255767bcc99dd6b6107a13d64ed7ac83d499d74f04084c666bbf5ef6f033d57d2fb1de0b8b8487844e3aaf8cefe6fba8
 SHA512 
40aa8049c68651f461280937c1c733e13d1cedbec12bc44a7f3a6c131d31229c5445067052441427071f6102fd1965d238bc0689279dd156b4e261ac9e73
 DIST poco-1.9.0.tar.gz 10012966 BLAKE2B 
98848e87008c71dc5131dbd1c2b17afc414074a3e26237918baf231b4e56ce3d69347cf7a3017715895f4ee56a428672fcb804fb3c732daccc9790b0081d
 SHA512 
de2346d62b2e89ba04abe62a83f6ede7a496e80bcbe53a880a1aa8e87a8ebd9a430dd70fdc6aada836bb1021c6df21375fd0cbcf62dbb6e29a2f65d6d90cf2b9

diff --git a/dev-libs/poco/files/poco-1.10.1-iodbc-incdir.patch 
b/dev-libs/poco/files/poco-1.10.1-iodbc-incdir.patch
new file mode 100644
index 000..afac9bc7922
--- /dev/null
+++ b/dev-libs/poco/files/poco-1.10.1-iodbc-incdir.patch
@@ -0,0 +1,13 @@
+diff --git a/cmake/FindODBC.cmake b/cmake/FindODBC.cmake
+index 55318b520..fb7efbffe 100644
+--- a/cmake/FindODBC.cmake
 b/cmake/FindODBC.cmake
+@@ -34,7 +34,7 @@ find_path(ODBC_INCLUDE_DIR
+   ${ODBC_ROOT_INCLUDE_DIRS}
+   PATHS
+   ${PC_ODBC_INCLUDE_DIRS}
+-  /usr/include
++  /usr/include/iodbc
+   /usr/local/include
+   /usr/local/odbc/include
+   /usr/local/iodbc/include

diff --git a/dev-libs/poco/metadata.xml b/dev-libs/poco/metadata.xml
index 6c90e505339..efd7d2d6116 100644
--- a/dev-libs/poco/metadata.xml
+++ b/dev-libs/poco/metadata.xml
@@ -1,7 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   davidroma...@gmail.com
+   David Roman
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

 POCO, the C++ Portable Components, is a collection of open source
 C++ class libraries that simplify and accelerate the development of

diff --git a/dev-libs/poco/poco-1.10.1.ebuild b/dev-libs/poco/poco-1.10.1.ebuild
new file mode 100644
index 000..1c464f71967
--- /dev/null
+++ b/dev-libs/poco/poco-1.10.1.ebuild
@@ -0,0 +1,138 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="C++ libraries for building network-based applications"
+HOMEPAGE="https://pocoproject.org/;
+SRC_URI="https://github.com/pocoproject/${PN}/archive/${P}-release.tar.gz -> 
${P}.tar.gz"
+LICENSE="Boost-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+
+IUSE="7z cppparser +crypto +data examples +file2pagecompiler iodbc +json 
libressl mariadb +mongodb mysql +net odbc +pagecompiler pdf pocodoc sqlite +ssl 
test +util +xml +zip"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="
+   7z? ( xml )
+   file2pagecompiler? ( pagecompiler )
+   iodbc? ( odbc )
+   mongodb? ( data )
+   mysql? ( data )
+   odbc? ( data )
+   pagecompiler? ( json net util xml )
+   pocodoc? ( cppparser util xml )
+   sqlite? ( data )
+   ssl? ( util )
+   test? ( data? ( sqlite ) json util xml )
+"
+
+BDEPEND="
+   virtual/pkgconfig
+"
+RDEPEND="
+   >=dev-libs/libpcre-8.42
+   mysql? ( !mariadb? ( dev-db/mysql-connector-c:0= )
+mariadb? ( dev-db/mariadb-connector-c:0= ) )
+   odbc? ( iodbc? ( dev-db/libiodbc )
+   !iodbc? ( dev-db/unixODBC ) )
+   sqlite? ( dev-db/sqlite:3 )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )
+   xml? ( dev-libs/expat )
+   zip? ( sys-libs/zlib )
+"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${PN}-${P}-release"
+
+PATCHES=( "${FILESDIR}/${PN}-1.10.1-iodbc-incdir.patch" )
+
+src_prepare() {
+   cmake_src_prepare
+
+   if use test ; then
+   # ignore missing tests on experimental library
+   # and tests requiring running DB-servers, internet 

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

2020-11-23 Thread Sam James
commit: 9658fa23c87df4003f62f576cc3444888fdaf663
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 03:47:33 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 03:47:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9658fa23

dev-libs/poco: post-merge fixups

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 dev-libs/poco/poco-1.10.1.ebuild | 12 +---
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/dev-libs/poco/poco-1.10.1.ebuild b/dev-libs/poco/poco-1.10.1.ebuild
index 1c464f71967..dcdec18fa2e 100644
--- a/dev-libs/poco/poco-1.10.1.ebuild
+++ b/dev-libs/poco/poco-1.10.1.ebuild
@@ -8,10 +8,11 @@ inherit cmake
 DESCRIPTION="C++ libraries for building network-based applications"
 HOMEPAGE="https://pocoproject.org/;
 SRC_URI="https://github.com/pocoproject/${PN}/archive/${P}-release.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/${PN}-${P}-release"
+
 LICENSE="Boost-1.0"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~x86"
-
 IUSE="7z cppparser +crypto +data examples +file2pagecompiler iodbc +json 
libressl mariadb +mongodb mysql +net odbc +pagecompiler pdf pocodoc sqlite +ssl 
test +util +xml +zip"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="
@@ -28,9 +29,7 @@ REQUIRED_USE="
test? ( data? ( sqlite ) json util xml )
 "
 
-BDEPEND="
-   virtual/pkgconfig
-"
+BDEPEND="virtual/pkgconfig"
 RDEPEND="
>=dev-libs/libpcre-8.42
mysql? ( !mariadb? ( dev-db/mysql-connector-c:0= )
@@ -47,8 +46,6 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}"
 
-S="${WORKDIR}/${PN}-${P}-release"
-
 PATCHES=( "${FILESDIR}/${PN}-1.10.1-iodbc-incdir.patch" )
 
 src_prepare() {
@@ -130,9 +127,10 @@ src_install() {
docinto examples/${sd%/samples}
dodoc -r ${sd}
done
+
find "${D}/usr/share/doc/${PF}/examples" \
-iname "*.sln" -or -iname "*.vcproj" -or \
-iname "*.vmsbuild" -or -iname "*.properties" \
-   | xargs rm
+   | xargs rm -v || die
fi
 }



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

2020-11-23 Thread Nick Sarnie
commit: feca0d431897f1433c47c522e4accdc3aff14723
Author: Nick Sarnie  gentoo  org>
AuthorDate: Tue Nov 24 03:23:00 2020 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Tue Nov 24 03:27:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feca0d43

app-emulation/wine-staging: Sync with ::wine

Add mingw USE

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/metadata.xml|  3 +-
 ...ing-.ebuild => wine-staging-5.22-r1.ebuild} | 38 +++---
 .../wine-staging/wine-staging-.ebuild  | 33 +--
 3 files changed, 67 insertions(+), 7 deletions(-)

diff --git a/app-emulation/wine-staging/metadata.xml 
b/app-emulation/wine-staging/metadata.xml
index 47f226562ce..453fea4e770 100644
--- a/app-emulation/wine-staging/metadata.xml
+++ b/app-emulation/wine-staging/metadata.xml
@@ -25,6 +25,7 @@ This variant of the Wine packaging includes the Wine-Staging 
patchset.
Add support for the Gecko engine when using 
iexplore
Use GSSAPI (Kerberos SSP support)
Use media-libs/gstreamer to 
provide DirectShow functionality;
+   Build PE files using a MinGW cross 
compiler
Add support for .NET using Wine's Mono 
add-on
Use libnetapi from net-fs/samba 
to support Windows networks in netapi32.dll
Enable OpenCL support
@@ -42,7 +43,7 @@ This variant of the Wine packaging includes the Wine-Staging 
patchset.
(these pages are not currently 
in the updated WineHQ Wiki).
Add support for gamepad detection using 
SDL
Apply Wine-Staging patches for advanced 
feature support that haven't made it into upstream Wine yet
-   Support GTK+:3 window theming through 
Wine-Staging
+   Support GTK+:3 window theming through 
Wine-Staging   
Use virtual/libudev to provide 
plug and play support
Use sys-libs/libunwind to unwind 
the stack
Use app-emulation/vkd3d to 
provide Direct3D 12 support

diff --git a/app-emulation/wine-staging/wine-staging-.ebuild 
b/app-emulation/wine-staging/wine-staging-5.22-r1.ebuild
similarity index 92%
copy from app-emulation/wine-staging/wine-staging-.ebuild
copy to app-emulation/wine-staging/wine-staging-5.22-r1.ebuild
index 11363b6b82b..cf0d7510808 100644
--- a/app-emulation/wine-staging/wine-staging-.ebuild
+++ b/app-emulation/wine-staging/wine-staging-5.22-r1.ebuild
@@ -44,7 +44,7 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gcrypt +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap +mono mp3 ncurses netapi nls odbc openal opencl 
+opengl osmesa oss +perl pcap pipelight +png prelink pulseaudio +realtime 
+run-exes samba scanner sdl selinux +ssl staging test themes +threads +truetype 
udev +udisks +unwind v4l vaapi vkd3d vulkan +X +xcomposite xinerama +xml"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gcrypt +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap mingw +mono mp3 ncurses netapi nls odbc openal opencl 
+opengl osmesa oss +perl pcap pipelight +png prelink pulseaudio +realtime 
+run-exes samba scanner sdl selinux +ssl staging test themes +threads +truetype 
udev +udisks +unwind v4l vaapi vkd3d vulkan +X +xcomposite xinerama +xml"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
@@ -297,6 +297,34 @@ pkg_pretend() {
die
fi
fi
+
+   if use mingw && use abi_x86_32 && ! has_version 
"cross-i686-w64-mingw32/gcc"; then
+   eerror
+   eerror "USE=\"mingw\" is currently experimental, and requires 
the"
+   eerror "'cross-i686-w64-mingw32' compiler and its runtime for 
32-bit builds."
+   eerror
+   eerror "These can be installed by using 'sys-devel/crossdev':"
+   eerror
+   eerror "crossdev --target i686-w64-mingw32"
+   eerror
+   eerror "For more information on setting up MinGW, see: 
https://wiki.gentoo.org/wiki/Mingw;
+   eerror
+   die "MinGW build was enabled, but no compiler to support it was 
found."
+   fi
+
+   if use mingw && use abi_x86_64 && ! has_version 
"cross-x86_64-w64-mingw32/gcc"; then
+   eerror
+   eerror "USE=\"mingw\" is currently experimental, and requires 
the"
+   eerror "'cross-x86_64-w64-mingw32' compiler and its runtime for 
64-bit builds."
+   eerror
+   eerror "These can be installed by using 'sys-devel/crossdev':"
+   eerror
+   eerror 

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

2020-11-23 Thread Nick Sarnie
commit: b7c29c30eb39c49fd66e5b41ed5a850e4d148cfe
Author: Nick Sarnie  gentoo  org>
AuthorDate: Tue Nov 24 03:21:17 2020 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Tue Nov 24 03:26:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7c29c30

app-emulation/wine-vanilla: Sync with ::wine

Add mingw USE

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/metadata.xml|  5 
 ...lla-.ebuild => wine-vanilla-5.22-r1.ebuild} | 33 --
 .../wine-vanilla/wine-vanilla-.ebuild  | 33 --
 3 files changed, 67 insertions(+), 4 deletions(-)

diff --git a/app-emulation/wine-vanilla/metadata.xml 
b/app-emulation/wine-vanilla/metadata.xml
index 497dd69c907..7467ea24def 100644
--- a/app-emulation/wine-vanilla/metadata.xml
+++ b/app-emulation/wine-vanilla/metadata.xml
@@ -4,6 +4,10 @@

w...@gentoo.org
Wine
+   
+   This package must be kept in sync with repo/proj/wine 
repository.
+   Any changes need to be run past the maintainer to 
ensure the two repositories are kept in sync.
+   


 Wine is an Open Source implementation of the Windows API on top of X and Unix.
@@ -20,6 +24,7 @@ This variant of the Wine packaging does not include external 
patchsets
Add support for the Gecko engine when using 
iexplore
Use GSSAPI (Kerberos SSP support)
Use media-libs/gstreamer to 
provide DirectShow functionality;
+   Build PE files using a MinGW cross 
compiler
Add support for .NET using Wine's Mono 
add-on
Use libnetapi from net-fs/samba 
to support Windows networks in netapi32.dll
Enable OpenCL support

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-5.22-r1.ebuild
similarity index 92%
copy from app-emulation/wine-vanilla/wine-vanilla-.ebuild
copy to app-emulation/wine-vanilla/wine-vanilla-5.22-r1.ebuild
index 226b93efb90..a422ff77cdc 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-5.22-r1.ebuild
@@ -35,7 +35,7 @@ SRC_URI="${SRC_URI}
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap +mono mp3 ncurses netapi nls odbc openal opencl 
+opengl osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba 
scanner sdl selinux +ssl test +threads +truetype udev +udisks +unwind v4l vkd3d 
vulkan +X +xcomposite xinerama +xml"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap mingw +mono mp3 ncurses netapi nls odbc openal opencl 
+opengl osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba 
scanner sdl selinux +ssl test +threads +truetype udev +udisks +unwind v4l vkd3d 
vulkan +X +xcomposite xinerama +xml"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
@@ -261,6 +261,34 @@ pkg_pretend() {
die
fi
fi
+
+   if use mingw && use abi_x86_32 && ! has_version 
"cross-i686-w64-mingw32/gcc"; then
+   eerror
+   eerror "USE=\"mingw\" is currently experimental, and requires 
the"
+   eerror "'cross-i686-w64-mingw32' compiler and its runtime for 
32-bit builds."
+   eerror
+   eerror "These can be installed by using 'sys-devel/crossdev':"
+   eerror
+   eerror "crossdev --target i686-w64-mingw32"
+   eerror
+   eerror "For more information on setting up MinGW, see: 
https://wiki.gentoo.org/wiki/Mingw;
+   eerror
+   die "MinGW build was enabled, but no compiler to support it was 
found."
+   fi
+
+   if use mingw && use abi_x86_64 && ! has_version 
"cross-x86_64-w64-mingw32/gcc"; then
+   eerror
+   eerror "USE=\"mingw\" is currently experimental, and requires 
the"
+   eerror "'cross-x86_64-w64-mingw32' compiler and its runtime for 
64-bit builds."
+   eerror
+   eerror "These can be installed by using 'sys-devel/crossdev':"
+   eerror
+   eerror "crossdev --target x86_64-w64-mingw32"
+   eerror
+   eerror "For more information on setting up MinGW, see: 
https://wiki.gentoo.org/wiki/Mingw;
+   eerror
+   die "MinGW build was enabled, but no compiler to support it was 
found."
+   fi
 }
 
 pkg_setup() {
@@ -388,7 +416,8 @@ multilib_src_configure() 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2020-11-23 Thread Jimi Huotari
commit: f4db3c824ac162b28dfdb3d57645fc120a856624
Author: Jimi Huotari  gentoo  org>
AuthorDate: Tue Nov 17 00:18:59 2020 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Tue Nov 24 03:16:43 2020 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=f4db3c82

app-emulation/wine-vanilla: add USE="mingw"

Using MinGW to build PE files has become more or less a requirement
for some applications to still run via Wine, so let's not
hard-disable it any longer.

Bug: https://bugs.gentoo.org/736657
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Jimi Huotari  gentoo.org>

 app-emulation/wine-vanilla/metadata.xml|  1 +
 ...lla-.ebuild => wine-vanilla-5.22-r1.ebuild} | 33 --
 .../wine-vanilla/wine-vanilla-.ebuild  | 33 --
 3 files changed, 63 insertions(+), 4 deletions(-)

diff --git a/app-emulation/wine-vanilla/metadata.xml 
b/app-emulation/wine-vanilla/metadata.xml
index 03b..7467ea2 100644
--- a/app-emulation/wine-vanilla/metadata.xml
+++ b/app-emulation/wine-vanilla/metadata.xml
@@ -24,6 +24,7 @@ This variant of the Wine packaging does not include external 
patchsets
Add support for the Gecko engine when using 
iexplore
Use GSSAPI (Kerberos SSP support)
Use media-libs/gstreamer to 
provide DirectShow functionality;
+   Build PE files using a MinGW cross 
compiler
Add support for .NET using Wine's Mono 
add-on
Use libnetapi from net-fs/samba 
to support Windows networks in netapi32.dll
Enable OpenCL support

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-5.22-r1.ebuild
similarity index 92%
copy from app-emulation/wine-vanilla/wine-vanilla-.ebuild
copy to app-emulation/wine-vanilla/wine-vanilla-5.22-r1.ebuild
index 226b93e..a422ff7 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-5.22-r1.ebuild
@@ -35,7 +35,7 @@ SRC_URI="${SRC_URI}
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap +mono mp3 ncurses netapi nls odbc openal opencl 
+opengl osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba 
scanner sdl selinux +ssl test +threads +truetype udev +udisks +unwind v4l vkd3d 
vulkan +X +xcomposite xinerama +xml"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap mingw +mono mp3 ncurses netapi nls odbc openal opencl 
+opengl osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba 
scanner sdl selinux +ssl test +threads +truetype udev +udisks +unwind v4l vkd3d 
vulkan +X +xcomposite xinerama +xml"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
@@ -261,6 +261,34 @@ pkg_pretend() {
die
fi
fi
+
+   if use mingw && use abi_x86_32 && ! has_version 
"cross-i686-w64-mingw32/gcc"; then
+   eerror
+   eerror "USE=\"mingw\" is currently experimental, and requires 
the"
+   eerror "'cross-i686-w64-mingw32' compiler and its runtime for 
32-bit builds."
+   eerror
+   eerror "These can be installed by using 'sys-devel/crossdev':"
+   eerror
+   eerror "crossdev --target i686-w64-mingw32"
+   eerror
+   eerror "For more information on setting up MinGW, see: 
https://wiki.gentoo.org/wiki/Mingw;
+   eerror
+   die "MinGW build was enabled, but no compiler to support it was 
found."
+   fi
+
+   if use mingw && use abi_x86_64 && ! has_version 
"cross-x86_64-w64-mingw32/gcc"; then
+   eerror
+   eerror "USE=\"mingw\" is currently experimental, and requires 
the"
+   eerror "'cross-x86_64-w64-mingw32' compiler and its runtime for 
64-bit builds."
+   eerror
+   eerror "These can be installed by using 'sys-devel/crossdev':"
+   eerror
+   eerror "crossdev --target x86_64-w64-mingw32"
+   eerror
+   eerror "For more information on setting up MinGW, see: 
https://wiki.gentoo.org/wiki/Mingw;
+   eerror
+   die "MinGW build was enabled, but no compiler to support it was 
found."
+   fi
 }
 
 pkg_setup() {
@@ -388,7 +416,8 @@ multilib_src_configure() {
$(use_with jpeg)
$(use_with kerberos krb5)
$(use_with ldap)
-   --without-mingw # linux LDFLAGS leak in mingw32: bug #685172
+   # TODO: Will bug 685172 still need special handling?
+  

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2020-11-23 Thread Jimi Huotari
commit: 0497bd02f32da6a89a4ee99a970c4b76147960e4
Author: Jimi Huotari  gentoo  org>
AuthorDate: Tue Nov 24 00:33:23 2020 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Tue Nov 24 03:17:00 2020 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=0497bd02

app-emulation/wine-staging: add USE="mingw"

Using MinGW to build PE files has become more or less a requirement
for some applications to still run via Wine, so let's not
hard-disable it any longer.

Bug: https://bugs.gentoo.org/736657
Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Jimi Huotari  gentoo.org>

 app-emulation/wine-staging/metadata.xml|  1 +
 ...ing-.ebuild => wine-staging-5.22-r1.ebuild} | 38 +++---
 .../wine-staging/wine-staging-.ebuild  | 33 +--
 3 files changed, 66 insertions(+), 6 deletions(-)

diff --git a/app-emulation/wine-staging/metadata.xml 
b/app-emulation/wine-staging/metadata.xml
index 7d7899b..d5dd13d 100644
--- a/app-emulation/wine-staging/metadata.xml
+++ b/app-emulation/wine-staging/metadata.xml
@@ -26,6 +26,7 @@ This variant of the Wine packaging includes the Wine-Staging 
patchset.
Add support for the Gecko engine when using 
iexplore
Use GSSAPI (Kerberos SSP support)
Use media-libs/gstreamer to 
provide DirectShow functionality;
+   Build PE files using a MinGW cross 
compiler
Add support for .NET using Wine's Mono 
add-on
Use libnetapi from net-fs/samba 
to support Windows networks in netapi32.dll
Enable OpenCL support

diff --git a/app-emulation/wine-staging/wine-staging-.ebuild 
b/app-emulation/wine-staging/wine-staging-5.22-r1.ebuild
similarity index 92%
copy from app-emulation/wine-staging/wine-staging-.ebuild
copy to app-emulation/wine-staging/wine-staging-5.22-r1.ebuild
index 11363b6..cf0d751 100644
--- a/app-emulation/wine-staging/wine-staging-.ebuild
+++ b/app-emulation/wine-staging/wine-staging-5.22-r1.ebuild
@@ -44,7 +44,7 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gcrypt +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap +mono mp3 ncurses netapi nls odbc openal opencl 
+opengl osmesa oss +perl pcap pipelight +png prelink pulseaudio +realtime 
+run-exes samba scanner sdl selinux +ssl staging test themes +threads +truetype 
udev +udisks +unwind v4l vaapi vkd3d vulkan +X +xcomposite xinerama +xml"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gcrypt +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap mingw +mono mp3 ncurses netapi nls odbc openal opencl 
+opengl osmesa oss +perl pcap pipelight +png prelink pulseaudio +realtime 
+run-exes samba scanner sdl selinux +ssl staging test themes +threads +truetype 
udev +udisks +unwind v4l vaapi vkd3d vulkan +X +xcomposite xinerama +xml"
 REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
X? ( truetype )
elibc_glibc? ( threads )
@@ -297,6 +297,34 @@ pkg_pretend() {
die
fi
fi
+
+   if use mingw && use abi_x86_32 && ! has_version 
"cross-i686-w64-mingw32/gcc"; then
+   eerror
+   eerror "USE=\"mingw\" is currently experimental, and requires 
the"
+   eerror "'cross-i686-w64-mingw32' compiler and its runtime for 
32-bit builds."
+   eerror
+   eerror "These can be installed by using 'sys-devel/crossdev':"
+   eerror
+   eerror "crossdev --target i686-w64-mingw32"
+   eerror
+   eerror "For more information on setting up MinGW, see: 
https://wiki.gentoo.org/wiki/Mingw;
+   eerror
+   die "MinGW build was enabled, but no compiler to support it was 
found."
+   fi
+
+   if use mingw && use abi_x86_64 && ! has_version 
"cross-x86_64-w64-mingw32/gcc"; then
+   eerror
+   eerror "USE=\"mingw\" is currently experimental, and requires 
the"
+   eerror "'cross-x86_64-w64-mingw32' compiler and its runtime for 
64-bit builds."
+   eerror
+   eerror "These can be installed by using 'sys-devel/crossdev':"
+   eerror
+   eerror "crossdev --target x86_64-w64-mingw32"
+   eerror
+   eerror "For more information on setting up MinGW, see: 
https://wiki.gentoo.org/wiki/Mingw;
+   eerror
+   die "MinGW build was enabled, but no compiler to support it was 
found."
+   fi
 }
 
 pkg_setup() {
@@ -455,7 +483,8 @@ multilib_src_configure() {
$(use_with jpeg)
$(use_with kerberos krb5)
$(use_with ldap)
-   --without-mingw # linux LDFLAGS leak in mingw32: bug #685172
+   

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

2020-11-23 Thread Sam James
commit: da166b78a2ac19f38a90c652447ae0904a886c42
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 03:16:31 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 03:16:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da166b78

net-analyzer/nmap: Stabilize 7.91 arm64, #756271

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

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

diff --git a/net-analyzer/nmap/nmap-7.91.ebuild 
b/net-analyzer/nmap/nmap-7.91.ebuild
index f7d07cf2a70..e54200e31b3 100644
--- a/net-analyzer/nmap/nmap-7.91.ebuild
+++ b/net-analyzer/nmap/nmap-7.91.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://nmap.org/dist/${P}.tar.bz2;
 
 LICENSE="NPSL"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="ipv6 libressl libssh2 ncat nping +nse ssl system-lua"
 REQUIRED_USE="system-lua? ( nse )"
 



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

2020-11-23 Thread Sam James
commit: 7d49637692d0145ef6660a54d98eb0d386b0f5dc
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 03:01:32 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 03:01:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d496376

net-misc/chrony: Stabilize 4.0 arm, #756268

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

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

diff --git a/net-misc/chrony/chrony-4.0.ebuild 
b/net-misc/chrony/chrony-4.0.ebuild
index 9bee3f3276d..07cde957849 100644
--- a/net-misc/chrony/chrony-4.0.ebuild
+++ b/net-misc/chrony/chrony-4.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]]; then
EGIT_REPO_URI="https://git.tuxfamily.org/chrony/chrony.git;
 else
SRC_URI="https://download.tuxfamily.org/${PN}/${P/_/-}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
 fi
 
 S="${WORKDIR}/${P/_/-}"



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

2020-11-23 Thread Sam James
commit: d20692d6f432fcb95698b5da2ca7e6afd92fb97e
Author: Petr Šabata  redhat  com>
AuthorDate: Tue Nov 24 02:23:55 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 03:00:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d20692d6

sys-apps/bat: Update to 0.17.0

This also adds zsh completions.

Closes: https://bugs.gentoo.org/756265
Signed-off-by: Petr Šabata  redhat.com>
Closes: https://github.com/gentoo/gentoo/pull/18382
Signed-off-by: Sam James  gentoo.org>

 sys-apps/bat/Manifest  |  73 +++
 sys-apps/bat/bat-0.17.0.ebuild | 202 +
 2 files changed, 275 insertions(+)

diff --git a/sys-apps/bat/Manifest b/sys-apps/bat/Manifest
index 2c0156aa970..3fc773a8611 100644
--- a/sys-apps/bat/Manifest
+++ b/sys-apps/bat/Manifest
@@ -1,5 +1,7 @@
+DIST adler-0.2.3.crate 12168 BLAKE2B 
c7743569d700d7ec3185e0459a18181148f8cd7579f4da1fab30eb2e3c3cabbe5a7467f7760f0cba4b2fdeb62f8d988ee1f24637685d76db7acb56f679cfc996
 SHA512 
565849eba122eb94d240a0cba875035537058cc168f137a8a3b99392d753815d56fa0e1a1e851062632700b0e3d12caf67f5f768b9f727956a2e5b599029e9dc
 DIST adler32-1.0.4.crate 5105 BLAKE2B 
344a5258e77328a24a545e32f9bc653fa25b7ea43803ed7861db261bce227aa1599520a42acea3de1f2acebb8fa9fad251e2688413b752eafe2401ca1a2ee34a
 SHA512 
5990e1e277a1c3aae5adef5e4601b807a756a40e88578bb91f1c70d70babfa97fb3f2c1b963482ec8e18c16d5e722bf90fb42f9646c8dd840373f28965a2d123
 DIST aho-corasick-0.7.10.crate 111039 BLAKE2B 
69f984dbe528ece5ce4345bc0f39c122507a88e781d7c2d5c9175d1788aeef8d21e0487c7c449e28fbbdaae8203fe68627d23ac0a58d30dc70befd26ac9af32f
 SHA512 
e8a1cb252015435009883662ca23408f1491d8f01461f3a81082feabeeff72ec61beb4f1f3271fc8a87f1379899ecfc38036ac208dca17889f70ddaca2406a9b
+DIST aho-corasick-0.7.13.crate 111381 BLAKE2B 
08efdd762a12cbafabfb6c1c6f8b87465b337ea006d48e612c5275f796e4d62aa0a595bcda783f7a58b1e2655b9b35333033806215518f097b6671888d152e0f
 SHA512 
9bd3c12559d6bdb1ce798a62c59a202771b48125afb6e1b5be76cad13d750d9bedd7acd77d69557e34a698b17ed7da6832a7813d48ee2627f4a2abd5e04263e6
 DIST ansi_colours-1.0.1.crate 9937 BLAKE2B 
04d86fb964138cadeab0cb708e99d198189efe6ad871b9cea43967f610922234f371befe7b25c8ef824f94daef5b6c52e47a5d86f7966b82ff100ae5a4e38281
 SHA512 
16d9470385c55eb28be0fd3ea0bf5d8832676282636edb71f670c629a77884f590bf4ea13f2bf1002031a5a014cf1bfb32bb7a09da27af3c1d85e4a0f524af23
 DIST ansi_term-0.11.0.crate 17087 BLAKE2B 
9bd35c045a01ce4c6c4a5db1b4f15e9412bb97426eec19d4421dffbec633de8d13452c13c1dc1b30998690b78d7ed38311aca700087f13a81f66bd1d5d7300c4
 SHA512 
a637466a380748f939b3af090b8c0333f35581925bc03f4dda9b3f95d338836403cf5487ae3af9ff68f8245a837f8ab061aabe57a126a6a2c20f2e972c77d1fa
 DIST ansi_term-0.12.1.crate 24838 BLAKE2B 
f636772c34e2d68cda7b8d3b2b86abda074585a62bd2654812ce92384244655a9197fa66e6939e19a674c0148ca605313d83de262bb18c2339a8a4eb4438a791
 SHA512 
b840e28b3e7700689a69a39659b1e066560078dd4a58326b91a028915819e7af883399ee53e920db68fd974c58d35bb1ddf8d427af5937d5f696f57c4376b671
@@ -9,24 +11,36 @@ DIST arrayvec-0.5.1.crate 26816 BLAKE2B 
172dab8f0129134dfc89c6032c5fc15e2f86a5cd
 DIST assert_cmd-1.0.1.crate 24575 BLAKE2B 
e204b79da44a27b9c70be8dbf53356714ac994b4e5daced1b4f570c9e6c4a422572e825a54387df25292bd27e9ae11fa57d803bcfe4643382a2f739859dd42fd
 SHA512 
969e1f6ba28edc0d4d25a10390f8e94578562602d303e9a9e402f29655cb9d67edc1040b283e1bc9fb4a88a5817814d88e85b77944204288aabcfb6da69bbdbf
 DIST atty-0.2.14.crate 5470 BLAKE2B 
2db856a9e898a430258f059aeaf7c844a153293e8856d90ac81f7d91a888c89198768ad5cb09303c23241fe85c560a55148fa56a303651a82b0edb895616bfab
 SHA512 
d7b6c4b9a0f898d91ddbc41a5ee45bbf45d1d269508c8cc87ee3e3990500e41e0ec387afb1f3bc7db55bedac396dd86c6509f4bf9e5148d809c3802edcc5e1d9
 DIST autocfg-1.0.0.crate 12870 BLAKE2B 
79e495d53298574afd3b292da7c9c363dcb3ea434fd44258efaf3628e95ebfc731f03083f8a1060272a2a3478a6452cdc41539e2dac08465cc6e6283844bf260
 SHA512 
451fc63148792ba1952b884170e3481359b01bacca5ec0456f43ca58f8e092b8f81c9764f8b00d4104059ff608089be5858220ee868127c064cc890c767ec3a3
+DIST autocfg-1.0.1.crate 12908 BLAKE2B 
40c53cab298e4f26634c3acff3ece6a3371188d91dbf377ed664eabedcde20536edaa93daf406618f37edde019f049a6e7b9a47f627344587dbd126bee2b5e3a
 SHA512 
630b348acb98b012e97804e6325d03c89abc22f2157762c59144c04e6c733daf550bdc7f0fe0b9f3b50e15dae8c1c3c4bdfce3d805b02f0fc987311f5332419b
 DIST base64-0.11.0.crate 48362 BLAKE2B 
90d2a64496e20c4bcca6f21c2546474ec88283679ccae95303ea7521133414eba021810e64e5916e3980b6878f90281f09295ebadcc12324fc9a9060ac41a707
 SHA512 
31b5f56d4907a5e4ae40e92ef1629a446126525186f5236afc2475829bf2e5e067554db200a18f7b3ab741d0cc9c01e20612e77cc0cbc1bc2a4a8d11c0fdbf33
 DIST base64-0.12.1.crate 56378 BLAKE2B 
90a948eebbae820ced325055b2d49feebdc3b178a271fa7508356d7e44d9f81f586822b6512169f3c1e9901da491b1728783182796c14e6b2c8c647e57202ed1
 SHA512 
06c73723c4364ac8bcf4204a943893080d1752dd925a13da800889f486b1ebf97bccae79b7b04cbe758afc95bb1d61464276365d4721689896fa641a8e55b660
+DIST 

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

2020-11-23 Thread Sam James
commit: 4accf37ff688fc89c60634404e54906673b3e143
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 03:00:45 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 03:00:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4accf37f

sys-apps/bat: minor post-merge tidyups

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 sys-apps/bat/bat-0.17.0.ebuild | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/sys-apps/bat/bat-0.17.0.ebuild b/sys-apps/bat/bat-0.17.0.ebuild
index 52b3c81c4e3..26a87b026b1 100644
--- a/sys-apps/bat/bat-0.17.0.ebuild
+++ b/sys-apps/bat/bat-0.17.0.ebuild
@@ -157,26 +157,24 @@ inherit cargo
 
 DESCRIPTION="cat(1) clone with syntax highlighting and Git integration"
 HOMEPAGE="https://github.com/sharkdp/bat;
-SRC_URI="https://github.com/sharkdp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
-   $(cargo_crate_uris ${CRATES})"
+SRC_URI="https://github.com/sharkdp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI+=" $(cargo_crate_uris ${CRATES})"
 
 LICENSE="Apache-2.0 Boost-1.0 BSD BSD-2 CC0-1.0 ISC LGPL-3+ MIT Apache-2.0 
Unlicense ZLIB"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 
+BDEPEND="virtual/pkgconfig"
 DEPEND="
>=dev-libs/libgit2-0.99:=
dev-libs/oniguruma:=
sys-libs/zlib:=
 "
-
 # >app-backup/bacula-9.2[qt5] has file collisions, #686118
 RDEPEND="${DEPEND}
!>app-backup/bacula-9.2[qt5]
 "
 
-BDEPEND="virtual/pkgconfig"
-
 DOCS=( README.md doc/alternatives.md )
 
 QA_FLAGS_IGNORED="/usr/bin/bat"



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

2020-11-23 Thread Patrick McLean
commit: 1f432c11fc653c2fa272171a5b9ab2896091bd72
Author: Patrick McLean  sony  com>
AuthorDate: Tue Nov 24 02:54:23 2020 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Nov 24 02:54:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f432c11

sys-cluster/ceph-14.2.15: Version bump

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Patrick McLean  gentoo.org>

 sys-cluster/ceph/Manifest | 2 +-
 sys-cluster/ceph/{ceph-14.2.14.ebuild => ceph-14.2.15.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/ceph/Manifest b/sys-cluster/ceph/Manifest
index 3dfdc5719b1..ae0df28d34b 100644
--- a/sys-cluster/ceph/Manifest
+++ b/sys-cluster/ceph/Manifest
@@ -1,5 +1,5 @@
 DIST ceph-14.2.11.tar.gz 129327263 BLAKE2B 
fb04f3fde6642905dd21836c7472cf3b6cb484f69367ecf01b7d427c757e0fd1db4bd483bf9b0e485e1f8924a8e9201e8d47713a1de9281d5d96e45939bd1078
 SHA512 
765e8982d457cfd900acddc8f82c23824b32dc6d925d45e7693cba48c06fab798b6d57991dc9ad18a9ace9aff6fb2b917bd97f2d6435a7caceb03c9733e9602a
 DIST ceph-14.2.13.tar.gz 129255298 BLAKE2B 
32d12ede10ff657e9341e2fc31412018041a327a4c62219105a4e9576fa46643c12b936c3eaa003a78677c4ef401ef6bd73fe150604e8031482f1d237d483ff1
 SHA512 
3d51b729ccf26aa9a40c1320f4051755ec405abc714ae5257ec5433a13549e34fed0945f3091525fd8118d00c36fe4ae793125728d9e17f4221cdd1ee7de5b12
-DIST ceph-14.2.14.tar.gz 129258764 BLAKE2B 
a25ad78f607de33f3d87c96bf41d614266a0737ca855dbdc7dd88354cddc90037de8bf98e09392fba858f9224f98eaddae0943814a3b23a8a7e00181e5b91607
 SHA512 
4d5c11108cf42dc3bcf810d119329ba6e4cda02506215202d3b173bad8a9638d1fb2dff7c440d935efe8cd008e7d6e7bb02f681d2da06fccfb6d1d47078287dc
+DIST ceph-14.2.15.tar.gz 129254705 BLAKE2B 
bb30f04ace31c2175c6678a9f252fc31951fd32f47362fb460ed9b8edec3a6535752d28214530e9b996c384a6e6a23eebce5caa89cb2746a2e258f5a1e1f8a3c
 SHA512 
20ac9244974cc1312b7c642acf00142f5b7f59b09ae338f73b6c8e1ee2054b4ebd62701b18653cc792ca575a77b98644903ebb11bee6a9f1ab3aec6b37a2ef1b
 DIST ceph-15.2.5.tar.gz 149219528 BLAKE2B 
8f2cea9a258b7c530bff72a46d45fabf5364cf919f098c7d77857afa0dfdbcd7c290aa5a0d88cce1d99923588cc303d27c0b85179378ff1c394d9ce0f135a1b1
 SHA512 
55de068886c48293e92ef95cf8343ae44825fd2bf9c3fa7d47cda92907a47bae79e0af730cd34d0155b0777901d0fd6f9d1f30537c66c54c95098df7368fca2e
 DIST ceph-15.2.6.tar.gz 148124143 BLAKE2B 
4132a2c50037839f712a796cf428190b0e450f0f8b6f157b3d983ca596d9e9e521f1f991c66e14455122c927ddaafada387ef780fd438b2506cfe56194177648
 SHA512 
0c532fb9f29437c094a86a1e58040f03b679e4d52ea9cc752ecf411c594c8ec37dc5e9f0ee47712d32b93b4e60b0f3fded280867d41c41b8db806b375e4e

diff --git a/sys-cluster/ceph/ceph-14.2.14.ebuild 
b/sys-cluster/ceph/ceph-14.2.15.ebuild
similarity index 100%
rename from sys-cluster/ceph/ceph-14.2.14.ebuild
rename to sys-cluster/ceph/ceph-14.2.15.ebuild



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

2020-11-23 Thread Sam James
commit: 791db19c463d746dfbef094965e79be0bc9adcd1
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 02:47:21 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 02:47:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=791db19c

net-misc/chrony: sync 4.0 with live template

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 net-misc/chrony/chrony-4.0.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/net-misc/chrony/chrony-4.0.ebuild 
b/net-misc/chrony/chrony-4.0.ebuild
index 11c78bf628d..9bee3f3276d 100644
--- a/net-misc/chrony/chrony-4.0.ebuild
+++ b/net-misc/chrony/chrony-4.0.ebuild
@@ -27,7 +27,9 @@ RESTRICT="test"
 BDEPEND="nettle? ( virtual/pkgconfig )"
 
 if [[ ${PV} == "" ]]; then
+   # Needed for doc generation in 
BDEPEND+=" virtual/w3m"
+   REQUIRED_USE+=" html"
 fi
 
 DEPEND="



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

2020-11-23 Thread Sam James
commit: d3b64204c86f73b1e677e873d33fe3f4588d4f74
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 02:46:27 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 02:46:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3b64204

net-misc/chrony: doc generation is required in 

For now, documentation generation is needed for the live ebuild.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 net-misc/chrony/chrony-.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/net-misc/chrony/chrony-.ebuild 
b/net-misc/chrony/chrony-.ebuild
index 11c78bf628d..9bee3f3276d 100644
--- a/net-misc/chrony/chrony-.ebuild
+++ b/net-misc/chrony/chrony-.ebuild
@@ -27,7 +27,9 @@ RESTRICT="test"
 BDEPEND="nettle? ( virtual/pkgconfig )"
 
 if [[ ${PV} == "" ]]; then
+   # Needed for doc generation in 
BDEPEND+=" virtual/w3m"
+   REQUIRED_USE+=" html"
 fi
 
 DEPEND="



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

2020-11-23 Thread Sam James
commit: 6a9ad0e5536ad9df769f29e0c7e40324fcde1437
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 02:21:21 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 02:22:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a9ad0e5

net-misc/chrony: tidy ebuild

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 net-misc/chrony/chrony-4.0.ebuild  | 46 ++
 net-misc/chrony/chrony-.ebuild | 46 ++
 2 files changed, 44 insertions(+), 48 deletions(-)

diff --git a/net-misc/chrony/chrony-4.0.ebuild 
b/net-misc/chrony/chrony-4.0.ebuild
index a13a14df678..11c78bf628d 100644
--- a/net-misc/chrony/chrony-4.0.ebuild
+++ b/net-misc/chrony/chrony-4.0.ebuild
@@ -2,57 +2,55 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+
 inherit systemd tmpfiles toolchain-funcs
 
 DESCRIPTION="NTP client and server programs"
 HOMEPAGE="https://chrony.tuxfamily.org/;
 
 if [[ ${PV} == "" ]]; then
-   EGIT_REPO_URI="https://git.tuxfamily.org/chrony/chrony.git;
-
inherit git-r3
+   EGIT_REPO_URI="https://git.tuxfamily.org/chrony/chrony.git;
 else
SRC_URI="https://download.tuxfamily.org/${PN}/${P/_/-}.tar.gz;
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
 fi
 
+S="${WORKDIR}/${P/_/-}"
+
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="
-   +caps +cmdmon html ipv6 libedit +nettle +ntp +phc pps +refclock
-   +rtc samba +seccomp +sechash selinux
-"
-REQUIRED_USE="
-   sechash? ( nettle )
-"
-RESTRICT=test
-CDEPEND="
-   caps? ( acct-group/ntp acct-user/ntp sys-libs/libcap )
+IUSE="+caps +cmdmon html ipv6 libedit +nettle +ntp +phc pps +refclock +rtc 
samba +seccomp +sechash selinux"
+REQUIRED_USE="sechash? ( nettle )"
+RESTRICT="test"
+
+BDEPEND="nettle? ( virtual/pkgconfig )"
+
+if [[ ${PV} == "" ]]; then
+   BDEPEND+=" virtual/w3m"
+fi
+
+DEPEND="
+   caps? (
+   acct-group/ntp
+   acct-user/ntp
+   sys-libs/libcap
+   )
libedit? ( dev-libs/libedit )
nettle? ( dev-libs/nettle:= )
seccomp? ( sys-libs/libseccomp )
-"
-DEPEND="
-   ${CDEPEND}
html? ( dev-ruby/asciidoctor )
pps? ( net-misc/pps-tools )
 "
 RDEPEND="
-   ${CDEPEND}
+   ${DEPEND}
selinux? ( sec-policy/selinux-chronyd )
 "
-BDEPEND="
-   nettle? ( virtual/pkgconfig )
-"
+
 PATCHES=(
"${FILESDIR}"/${PN}-3.5-pool-vendor-gentoo.patch
"${FILESDIR}"/${PN}-3.5-r3-systemd-gentoo.patch
 )
-S="${WORKDIR}/${P/_/-}"
-
-if [[ ${PV} == "" ]]; then
-   BDEPEND+=" virtual/w3m"
-fi
 
 src_prepare() {
default

diff --git a/net-misc/chrony/chrony-.ebuild 
b/net-misc/chrony/chrony-.ebuild
index a13a14df678..11c78bf628d 100644
--- a/net-misc/chrony/chrony-.ebuild
+++ b/net-misc/chrony/chrony-.ebuild
@@ -2,57 +2,55 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+
 inherit systemd tmpfiles toolchain-funcs
 
 DESCRIPTION="NTP client and server programs"
 HOMEPAGE="https://chrony.tuxfamily.org/;
 
 if [[ ${PV} == "" ]]; then
-   EGIT_REPO_URI="https://git.tuxfamily.org/chrony/chrony.git;
-
inherit git-r3
+   EGIT_REPO_URI="https://git.tuxfamily.org/chrony/chrony.git;
 else
SRC_URI="https://download.tuxfamily.org/${PN}/${P/_/-}.tar.gz;
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
 fi
 
+S="${WORKDIR}/${P/_/-}"
+
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="
-   +caps +cmdmon html ipv6 libedit +nettle +ntp +phc pps +refclock
-   +rtc samba +seccomp +sechash selinux
-"
-REQUIRED_USE="
-   sechash? ( nettle )
-"
-RESTRICT=test
-CDEPEND="
-   caps? ( acct-group/ntp acct-user/ntp sys-libs/libcap )
+IUSE="+caps +cmdmon html ipv6 libedit +nettle +ntp +phc pps +refclock +rtc 
samba +seccomp +sechash selinux"
+REQUIRED_USE="sechash? ( nettle )"
+RESTRICT="test"
+
+BDEPEND="nettle? ( virtual/pkgconfig )"
+
+if [[ ${PV} == "" ]]; then
+   BDEPEND+=" virtual/w3m"
+fi
+
+DEPEND="
+   caps? (
+   acct-group/ntp
+   acct-user/ntp
+   sys-libs/libcap
+   )
libedit? ( dev-libs/libedit )
nettle? ( dev-libs/nettle:= )
seccomp? ( sys-libs/libseccomp )
-"
-DEPEND="
-   ${CDEPEND}
html? ( dev-ruby/asciidoctor )
pps? ( net-misc/pps-tools )
 "
 RDEPEND="
-   ${CDEPEND}
+   ${DEPEND}
selinux? ( sec-policy/selinux-chronyd )
 "
-BDEPEND="
-   nettle? ( virtual/pkgconfig )
-"
+
 PATCHES=(
"${FILESDIR}"/${PN}-3.5-pool-vendor-gentoo.patch
"${FILESDIR}"/${PN}-3.5-r3-systemd-gentoo.patch
 )
-S="${WORKDIR}/${P/_/-}"
-
-if [[ ${PV} == "" ]]; then
-   BDEPEND+=" virtual/w3m"
-fi
 
 src_prepare() {
default



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

2020-11-23 Thread Sam James
commit: ffb9845bf9a6f4d3bafd8d2e72a591cc918c0943
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 02:08:02 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 02:08:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffb9845b

media-libs/bcg729: disable static-libs

They default to on!

Closes: https://bugs.gentoo.org/756274
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 media-libs/bcg729/bcg729-1.1.1.ebuild | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/media-libs/bcg729/bcg729-1.1.1.ebuild 
b/media-libs/bcg729/bcg729-1.1.1.ebuild
index ed8001bbde0..4ff2047c3db 100644
--- a/media-libs/bcg729/bcg729-1.1.1.ebuild
+++ b/media-libs/bcg729/bcg729-1.1.1.ebuild
@@ -17,6 +17,13 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 
~x86"
 
 RDEPEND="!media-plugins/mediastreamer-bcg729"
 
+src_configure() {
+   local mycmakeargs=(
+   -DENABLE_STATIC=no
+   )
+   cmake_src_configure
+}
+
 src_install() {
cmake_src_install
find "${ED}" -name '*.la' -delete || die



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

2020-11-23 Thread Georgy Yakovlev
commit: ee6175e80f202840de51bcaf86be5c1f3420dd53
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Nov 24 01:48:52 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Nov 24 02:01:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee6175e8

app-admin/sysstat: bump to 12.4.1, add dcron useflag

Closes: https://bugs.gentoo.org/531032
Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Georgy Yakovlev  gentoo.org>

 app-admin/sysstat/Manifest  |  1 +
 app-admin/sysstat/sysstat-12.4.1.ebuild | 86 +
 2 files changed, 87 insertions(+)

diff --git a/app-admin/sysstat/Manifest b/app-admin/sysstat/Manifest
index 09021e3affb..aae2e470d02 100644
--- a/app-admin/sysstat/Manifest
+++ b/app-admin/sysstat/Manifest
@@ -2,3 +2,4 @@ DIST sysstat-12.2.1.tar.gz 1227707 BLAKE2B 
566382d83a0230517d22e2630a9cb1aa631d7
 DIST sysstat-12.2.2.tar.gz 1227793 BLAKE2B 
7dcfe904aa60e9c61af516e718668a3f8fb9e4274c51a2c9d44b5e56dc6cf27ffb18d44641970f75abe1c1f8a2c5df8b7a7874da8745757f937ccc2ffbfa03d4
 SHA512 
82f4fb1e78a26275bdc6f6939dd2c75d7822e930992e74c1eaeda65c0e873d88e777a7f315c7b073aaacb6956281b2119448af2ca22ae6e7f1d20c370b01e3e4
 DIST sysstat-12.2.3.tar.gz 1227666 BLAKE2B 
e78cba586eb8e5f5a971f608ee0df39a20e3af9f02db1778c52bbb09eb4565e29ffb79d68ed00af0142ccbf1120b97825c638b323b53e0b210c96bf808db4aa1
 SHA512 
d837193b59840b1b1a87f927a4416ba4c688f3b470be00e9ab013b62b2f11e7b963ef4cf521bc42a0a041ea8923e176922ee5b6df56c0612b6646054b048f067
 DIST sysstat-12.4.0.tar.gz 1375207 BLAKE2B 
66a9c15bb4e3b349158c9f7ab37d00c77844f0fd654df1b613141d906d3c89477e581d7143c77ba6952dd2cc7296f0611bc99aeec8e55e8090a488d5a286ee8b
 SHA512 
156cb38bc4cedb68278d9054ce5b477cbdc84d2480ca302988c0fb5427b9f1f823f0939f2bc1c91fa7657b00b29d02d1f58aeafd342eef83b07d79c3f4141be4
+DIST sysstat-12.4.1.tar.gz 1377429 BLAKE2B 
878d20575f5397adf10f64ad935b1c08709f6149f875975377c0a9f9b741f9bf352d0dd92ae31c0e7544c2e59e2058fab9ec5be95bfe9d070048661a7ba3bbfa
 SHA512 
203e77095bddeb3797a65ed9e51cab90beaae7f579624c3f55d6903d45b9395d2134ea8e773a572710fd837fd26fb5437dccad63a913536b916f659207256d98

diff --git a/app-admin/sysstat/sysstat-12.4.1.ebuild 
b/app-admin/sysstat/sysstat-12.4.1.ebuild
new file mode 100644
index 000..82b41029b0a
--- /dev/null
+++ b/app-admin/sysstat/sysstat-12.4.1.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit eutils flag-o-matic systemd toolchain-funcs
+
+DESCRIPTION="System performance tools for Linux"
+HOMEPAGE="http://pagesperso-orange.fr/sebastien.godard/;
+SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+IUSE="dcron debug nls lm-sensors selinux static systemd"
+
+CDEPEND="
+   nls? ( virtual/libintl )
+   lm-sensors? ( sys-apps/lm-sensors:= )
+"
+DEPEND="
+   ${CDEPEND}
+   nls? ( sys-devel/gettext )
+"
+RDEPEND="
+   ${CDEPEND}
+   !dcron? ( !sys-process/dcron )
+   selinux? ( sec-policy/selinux-sysstat )
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-11.7.3-flags.patch
+)
+
+REQUIRED_USE="dcron? ( !systemd )"
+
+src_prepare() {
+   if use nls; then
+   strip-linguas -i nls/
+   local lingua pofile
+   for pofile in nls/*.po; do
+   lingua=${pofile/nls\/}
+   lingua=${lingua/.po}
+   if ! has ${lingua} ${LINGUAS}; then
+   rm "nls/${lingua}.po" || die
+   fi
+   done
+   fi
+
+   use dcron && { sed -i 's/@CRON_OWNER@ //g' cron/sysstat.crond.in || die 
; }
+   default
+}
+
+src_configure() {
+   tc-export AR
+   use static && append-ldflags -static
+
+   sa_lib_dir=/usr/lib/sa \
+   conf_dir=/etc \
+   econf \
+   $(use_enable !systemd use-crond) \
+   $(use_enable lm-sensors sensors) \
+   $(use_enable nls) \
+   $(usex debug --enable-debuginfo '') \
+   --disable-compress-manpg \
+   --enable-copy-only \
+   --enable-documentation \
+   --enable-install-cron \
+   --with-systemdsystemunitdir=$(systemd_get_systemunitdir)
+}
+
+src_install() {
+   keepdir /var/log/sa
+
+   emake \
+   CHOWN=true \
+   DESTDIR="${D}" \
+   DOC_DIR=/usr/share/doc/${PF} \
+   MANGRPARG='' \
+   install
+
+   dodoc -r contrib/
+
+   newinitd "${FILESDIR}"/${PN}.init.d ${PN}
+   systemd_dounit ${PN}.service
+
+   rm "${D}"/usr/share/doc/${PF}/COPYING || die
+}



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

2020-11-23 Thread Georgy Yakovlev
commit: 9de7b40a6aff8896cd87710783b63a97ee943ad2
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Nov 24 01:59:29 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Nov 24 02:01:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9de7b40a

app-admin/sysstat: drop live ebuild

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Georgy Yakovlev  gentoo.org>

 app-admin/sysstat/sysstat-99.ebuild | 81 -
 1 file changed, 81 deletions(-)

diff --git a/app-admin/sysstat/sysstat-99.ebuild 
b/app-admin/sysstat/sysstat-99.ebuild
deleted file mode 100644
index c59bf0c9f96..000
--- a/app-admin/sysstat/sysstat-99.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit eutils flag-o-matic git-r3 systemd toolchain-funcs
-
-DESCRIPTION="System performance tools for Linux"
-HOMEPAGE="http://pagesperso-orange.fr/sebastien.godard/;
-EGIT_REPO_URI="https://github.com/sysstat/sysstat;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE="debug nls lm-sensors selinux static"
-
-CDEPEND="
-   nls? ( virtual/libintl )
-   lm-sensors? ( sys-apps/lm-sensors:= )
-"
-DEPEND="
-   ${CDEPEND}
-   nls? ( sys-devel/gettext )
-"
-RDEPEND="
-   ${CDEPEND}
-   selinux? ( sec-policy/selinux-sysstat )
-"
-PATCHES=(
-   "${FILESDIR}"/${PN}-11.0.4-cron.patch
-   "${FILESDIR}"/${PN}-11.7.3-flags.patch
-)
-
-src_prepare() {
-   if use nls; then
-   strip-linguas -i nls/
-   local lingua pofile
-   for pofile in nls/*.po; do
-   lingua=${pofile/nls\/}
-   lingua=${lingua/.po}
-   if ! has ${lingua} ${LINGUAS}; then
-   rm "nls/${lingua}.po" || die
-   fi
-   done
-   fi
-
-   default
-}
-
-src_configure() {
-   tc-export AR
-   use static && append-ldflags -static
-
-   sa_lib_dir=/usr/lib/sa \
-   conf_dir=/etc \
-   econf \
-   $(use_enable lm-sensors sensors) \
-   $(use_enable nls) \
-   $(usex debug --enable-debuginfo '') \
-   --enable-copy-only \
-   --enable-documentation \
-   --enable-install-cron \
-   --with-systemdsystemunitdir=$(systemd_get_systemunitdir)
-}
-
-src_install() {
-   keepdir /var/log/sa
-
-   emake \
-   CHOWN=true \
-   DESTDIR="${D}" \
-   DOC_DIR=/usr/share/doc/${PF} \
-   MANGRPARG='' \
-   install
-
-   dodoc -r contrib/
-
-   newinitd "${FILESDIR}"/${PN}.init.d ${PN}
-   systemd_dounit ${PN}.service
-
-   rm "${D}"/usr/share/doc/${PF}/COPYING || die
-}



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

2020-11-23 Thread Georgy Yakovlev
commit: afc8357859078426ec00ea0bd21cb4cedd30330f
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Nov 24 02:00:43 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Nov 24 02:01:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afc83578

app-admin/sysstat: drop experimental ebuild

Bug: https://bugs.gentoo.org/531032
Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Georgy Yakovlev  gentoo.org>

 app-admin/sysstat/sysstat-12.4.0-r1.ebuild | 87 --
 1 file changed, 87 deletions(-)

diff --git a/app-admin/sysstat/sysstat-12.4.0-r1.ebuild 
b/app-admin/sysstat/sysstat-12.4.0-r1.ebuild
deleted file mode 100644
index c4551425943..000
--- a/app-admin/sysstat/sysstat-12.4.0-r1.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit eutils flag-o-matic systemd toolchain-funcs
-
-DESCRIPTION="System performance tools for Linux"
-HOMEPAGE="http://pagesperso-orange.fr/sebastien.godard/;
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE="dcron debug nls lm-sensors selinux static systemd"
-
-CDEPEND="
-   nls? ( virtual/libintl )
-   lm-sensors? ( sys-apps/lm-sensors:= )
-"
-DEPEND="
-   ${CDEPEND}
-   nls? ( sys-devel/gettext )
-"
-RDEPEND="
-   ${CDEPEND}
-   !dcron? ( !sys-process/dcron )
-   selinux? ( sec-policy/selinux-sysstat )
-"
-PATCHES=(
-   "${FILESDIR}"/${PN}-11.7.3-flags.patch
-)
-
-REQUIRED_USE="dcron? ( !systemd )"
-
-src_prepare() {
-   if use nls; then
-   strip-linguas -i nls/
-   local lingua pofile
-   for pofile in nls/*.po; do
-   lingua=${pofile/nls\/}
-   lingua=${lingua/.po}
-   if ! has ${lingua} ${LINGUAS}; then
-   rm "nls/${lingua}.po" || die
-   fi
-   done
-   fi
-
-   use dcron && { sed -i 's/@CRON_OWNER@ //g' cron/sysstat.crond.in || die 
; }
-   default
-}
-
-src_configure() {
-   tc-export AR
-   use static && append-ldflags -static
-
-   # --enable-compress-manpg <= Yes, that is inverted.
-   sa_lib_dir=/usr/lib/sa \
-   conf_dir=/etc \
-   econf \
-   $(use_enable !systemd use-crond) \
-   $(use_enable lm-sensors sensors) \
-   $(use_enable nls) \
-   $(usex debug --enable-debuginfo '') \
-   --enable-compress-manpg \
-   --enable-copy-only \
-   --enable-documentation \
-   --enable-install-cron \
-   --with-systemdsystemunitdir=$(systemd_get_systemunitdir)
-}
-
-src_install() {
-   keepdir /var/log/sa
-
-   emake \
-   CHOWN=true \
-   DESTDIR="${D}" \
-   DOC_DIR=/usr/share/doc/${PF} \
-   MANGRPARG='' \
-   install
-
-   dodoc -r contrib/
-
-   newinitd "${FILESDIR}"/${PN}.init.d ${PN}
-   systemd_dounit ${PN}.service
-
-   rm "${D}"/usr/share/doc/${PF}/COPYING || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-lua/penlight/

2020-11-23 Thread Sam James
commit: b4b2af0f4855f048a9430d7574dbb8406766af5d
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 01:50:44 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 01:50:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4b2af0f

dev-lua/penlight: Stabilize 1.7.0 arm, #756124

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

 dev-lua/penlight/penlight-1.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/penlight/penlight-1.7.0.ebuild 
b/dev-lua/penlight/penlight-1.7.0.ebuild
index bcee90c73cd..1d200880807 100644
--- a/dev-lua/penlight/penlight-1.7.0.ebuild
+++ b/dev-lua/penlight/penlight-1.7.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/Tieske/Penlight/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~x86"
 IUSE=""
 
 BDEPEND="virtual/pkgconfig"



[gentoo-commits] repo/gentoo:master commit in: dev-lua/lua_cliargs/

2020-11-23 Thread Sam James
commit: 1af29a7e6d8b5c1baf298a7f9d21bef19d896c1e
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 01:50:43 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 01:50:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1af29a7e

dev-lua/lua_cliargs: Stabilize 3.0_p2 arm, #756124

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

 dev-lua/lua_cliargs/lua_cliargs-3.0_p2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/lua_cliargs/lua_cliargs-3.0_p2.ebuild 
b/dev-lua/lua_cliargs/lua_cliargs-3.0_p2.ebuild
index bf387869f91..5a6ae71730f 100644
--- a/dev-lua/lua_cliargs/lua_cliargs-3.0_p2.ebuild
+++ b/dev-lua/lua_cliargs/lua_cliargs-3.0_p2.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/amireh/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~x86"
 IUSE="doc"
 
 BDEPEND="virtual/pkgconfig"



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luasystem/

2020-11-23 Thread Sam James
commit: f629a6abdb797c38ad0b304a3b107d3e4ce69db6
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 01:50:44 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 01:50:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f629a6ab

dev-lua/luasystem: Stabilize 0.2.1_p0 arm, #756124

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

 dev-lua/luasystem/luasystem-0.2.1_p0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/luasystem/luasystem-0.2.1_p0.ebuild 
b/dev-lua/luasystem/luasystem-0.2.1_p0.ebuild
index aba36542171..e69cf0dbf35 100644
--- a/dev-lua/luasystem/luasystem-0.2.1_p0.ebuild
+++ b/dev-lua/luasystem/luasystem-0.2.1_p0.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/LuaDist2/luasystem/archive/${MY_PV}.tar.gz ->
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~x86"
 IUSE="luajit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-lua/lua-term/

2020-11-23 Thread Sam James
commit: 8c4ff58d9aa8e7f149ec54cca9222474fdbeef9e
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 01:50:42 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 01:50:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c4ff58d

dev-lua/lua-term: Stabilize 0.7 arm, #756124

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

 dev-lua/lua-term/lua-term-0.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/lua-term/lua-term-0.7.ebuild 
b/dev-lua/lua-term/lua-term-0.7.ebuild
index dc2f8e98222..a1445ad0265 100644
--- a/dev-lua/lua-term/lua-term-0.7.ebuild
+++ b/dev-lua/lua-term/lua-term-0.7.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/hoelzro/lua-term/archive/${MY_PV}.tar.gz -> ${P}.tar
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~x86"
 IUSE=""
 
 BDEPEND="virtual/pkgconfig"



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luassert/

2020-11-23 Thread Sam James
commit: 98a82df5720a297a20e58465350b3e778af42457
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 01:50:43 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 01:50:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98a82df5

dev-lua/luassert: Stabilize 1.8.0 arm, #756124

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

 dev-lua/luassert/luassert-1.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/luassert/luassert-1.8.0.ebuild 
b/dev-lua/luassert/luassert-1.8.0.ebuild
index d36444dfa1c..fa73ba610b9 100644
--- a/dev-lua/luassert/luassert-1.8.0.ebuild
+++ b/dev-lua/luassert/luassert-1.8.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/Olivine-Labs/luassert/archive/v${PV}.tar.gz -> ${P}.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~x86"
 IUSE="luajit test"
 RESTRICT="test" # Requires same version to be installed or busted will fail.
 



[gentoo-commits] repo/gentoo:master commit in: dev-lua/busted/

2020-11-23 Thread Sam James
commit: fd0fca92cebf91b585c20c39c0ba380fd20b4908
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 01:50:42 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 01:50:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd0fca92

dev-lua/busted: Stabilize 2.0.0 arm, #756124

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

 dev-lua/busted/busted-2.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/busted/busted-2.0.0.ebuild 
b/dev-lua/busted/busted-2.0.0.ebuild
index 0d4382fec07..fe283799868 100644
--- a/dev-lua/busted/busted-2.0.0.ebuild
+++ b/dev-lua/busted/busted-2.0.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/Olivine-Labs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-11-23 Thread Sam James
commit: b59d26f68af175e9f5ccf52f577ef0b9071eec19
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 01:41:26 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 01:41:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b59d26f6

media-libs/bcg729: cleanup old

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 media-libs/bcg729/bcg729-1.0.4.ebuild | 32 
 1 file changed, 32 deletions(-)

diff --git a/media-libs/bcg729/bcg729-1.0.4.ebuild 
b/media-libs/bcg729/bcg729-1.0.4.ebuild
deleted file mode 100644
index 10929658ed0..000
--- a/media-libs/bcg729/bcg729-1.0.4.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools ltprune
-
-DESCRIPTION="encoder and decoder of the ITU G729 Annex A/B speech codec"
-HOMEPAGE="https://github.com/BelledonneCommunications/bcg729;
-SRC_URI="https://github.com/BelledonneCommunications/bcg729/archive/${PV}.tar.gz
 \
-   -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ia64 ppc64 x86"
-IUSE="static-libs"
-RDEPEND="
-   !media-plugins/mediastreamer-bcg729
-"
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   econf $(use_enable static-libs static)
-}
-
-src_install() {
-   default
-   prune_libtool_files
-}



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

2020-11-23 Thread Sam James
commit: 8915a41abcce15383892a470da2a7c55b718f790
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 01:40:36 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 01:40:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8915a41a

media-libs/bcg729: bump to 1.1.1

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 media-libs/bcg729/Manifest |  1 +
 media-libs/bcg729/bcg729-1.1.1.ebuild  | 23 +++
 media-libs/bcg729/bcg729-99.ebuild | 23 +++
 3 files changed, 31 insertions(+), 16 deletions(-)

diff --git a/media-libs/bcg729/Manifest b/media-libs/bcg729/Manifest
index 1beae9d37e7..c4e776d5f22 100644
--- a/media-libs/bcg729/Manifest
+++ b/media-libs/bcg729/Manifest
@@ -1 +1,2 @@
 DIST bcg729-1.0.4.tar.gz 115641 BLAKE2B 
5240fc10f8c4c32d9c9a6fc527a198fc896a8ff5ea12aa8a692808877582ac25b3fee122799cb7f6cea58db2f07cc07348da36d9f526e62f0bf62d61ef33bcfa
 SHA512 
fdbbd2c9a807ed832ac3976301843bae854368ab281d16f792550bbda921d226fc6003c0a499561529f22eae08bc0d78b8826c2d06c859ab706d999a96967ffb
+DIST bcg729-1.1.1.tar.gz 122475 BLAKE2B 
6774f6af439c9308db856be9d4bbb6db5c73e7a807b51dca6338d1506d896052a7830ade7767b45fd5a9ded0a6a0057e207bc1d5b0e33adbaed9dafb13a7bd3b
 SHA512 
e8cc4b7486a9a29fb729ab9fd9e3c4a2155573f38cec16f5a53db3b416fc1119ea5f5a61243a8d37cb0b64580c5df1b632ff165dc7ff47421fa567dafffaacd8

diff --git a/media-libs/bcg729/bcg729-1.1.1.ebuild 
b/media-libs/bcg729/bcg729-1.1.1.ebuild
new file mode 100644
index 000..ed8001bbde0
--- /dev/null
+++ b/media-libs/bcg729/bcg729-1.1.1.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="encoder and decoder of the ITU G729 Annex A/B speech codec"
+HOMEPAGE="https://github.com/BelledonneCommunications/bcg729;
+SRC_URI="https://github.com/BelledonneCommunications/bcg729/archive/${PV/_/-}.tar.gz
 \
+   -> ${P}.tar.gz"
+S="${WORKDIR}/${P/_/-}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+
+RDEPEND="!media-plugins/mediastreamer-bcg729"
+
+src_install() {
+   cmake_src_install
+   find "${ED}" -name '*.la' -delete || die
+}

diff --git a/media-libs/bcg729/bcg729-99.ebuild 
b/media-libs/bcg729/bcg729-99.ebuild
index 4155676ac3c..5263aff5d73 100644
--- a/media-libs/bcg729/bcg729-99.ebuild
+++ b/media-libs/bcg729/bcg729-99.ebuild
@@ -1,33 +1,24 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-inherit cmake-utils git-r3
+
+inherit cmake git-r3
 
 DESCRIPTION="encoder and decoder of the ITU G729 Annex A/B speech codec"
 HOMEPAGE="https://github.com/BelledonneCommunications/bcg729;
 EGIT_REPO_URI="https://github.com/BelledonneCommunications/bcg729;
+S="${WORKDIR}/${P/_/-}"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS=""
-IUSE="static-libs"
-RDEPEND="
-   !media-plugins/mediastreamer-bcg729
-"
-S=${WORKDIR}/${P/_/-}
+RDEPEND="!media-plugins/mediastreamer-bcg729"
+
 PATCHES=(
"${FILESDIR}"/${PN}-4.3.0_beta-cmake-build.patch
 )
 
-src_configure() {
-   mycmakeargs=(
-   -DENABLE_STATIC=$(usex static-libs)
-   )
-   cmake-utils_src_configure
-}
-
 src_install() {
-   cmake-utils_src_install
+   cmake_src_install
find "${ED}" -name '*.la' -delete || die
 }



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

2020-11-23 Thread Sam James
commit: 64c1a993bfdba12866dd71e505ad94a3a7f3ba90
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 01:32:26 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 01:32:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64c1a993

sys-process/parallel: bump to 20201122

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 sys-process/parallel/Manifest |  1 +
 sys-process/parallel/parallel-20201122.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/sys-process/parallel/Manifest b/sys-process/parallel/Manifest
index 7226f3db5d0..ed00f35eb72 100644
--- a/sys-process/parallel/Manifest
+++ b/sys-process/parallel/Manifest
@@ -1,2 +1,3 @@
 DIST parallel-20200922.tar.bz2 2101918 BLAKE2B 
51446bbe0ab34166db2b088dc96b18cfc26027312b16a8a98a6d68bf50ae247ba3b8654689760a53020bb5d8826ea8bd498bf4e6fbd9e26ab0e49dcc2214b68c
 SHA512 
150e067025ba46dcd3f5319524890c383a5ba662999a355a1c44357e2bc57e4d23f0a164684aff12c96798dd637b44c3c8582769f5858a86e30dc66c9c3fca88
 DIST parallel-20201022.tar.bz2 2103301 BLAKE2B 
fa4b9f02e5de8e876d42c1673ded472131cc45ee081fc774a1040f6b5c260dd783d6b4890d17047badca176dd7d6be1d6466eaad4c5c12bdf30a152c30b88c0f
 SHA512 
5c5131e8b65ca1a100b577347ecbe39b7ab32cbbf709d4eac7a3ef81b423a3b369772712b404d806dfb8b674dfabe91b9a4e94359d7532bee69cdd6203962f78
+DIST parallel-20201122.tar.bz2 2108900 BLAKE2B 
97c49d5a17732db25307bf6f2e74451e8364c19e5253e4bb03736234397126f89809447b3cb6b343b315b512c2d2b578e7d2bbe2d5aa3e39f7eaf2cf40df0372
 SHA512 
58d6d41294418522db2d143ddbbf4d8cc47a3ae8a66f9f36d77396c230098386de9952a3b4d7db9e14470e36834be7d1995c5dda219ae21a72ea959f27d84e64

diff --git a/sys-process/parallel/parallel-20201122.ebuild 
b/sys-process/parallel/parallel-20201122.ebuild
new file mode 100644
index 000..bb83ea03aad
--- /dev/null
+++ b/sys-process/parallel/parallel-20201122.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+DESCRIPTION="A shell tool for executing jobs in parallel locally or on remote 
machines"
+HOMEPAGE="https://www.gnu.org/software/parallel/ 
https://git.savannah.gnu.org/cgit/parallel.git;
+SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="dev-lang/perl:=
+   dev-perl/Devel-Size
+   virtual/perl-Data-Dumper
+   virtual/perl-File-Temp
+   virtual/perl-IO"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   econf --docdir="${EPREFIX}"/usr/share/doc/${PF}/html
+}



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

2020-11-23 Thread Sam James
commit: dd0dad1636160b30d87418919851aa27825bb66e
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 01:24:09 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 01:24:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd0dad16

app-shells/tcsh: Stabilize 6.22.02 arm, #756097

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

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

diff --git a/app-shells/tcsh/tcsh-6.22.02.ebuild 
b/app-shells/tcsh/tcsh-6.22.02.ebuild
index 1ff4694372f..33aa34b663d 100644
--- a/app-shells/tcsh/tcsh-6.22.02.ebuild
+++ b/app-shells/tcsh/tcsh-6.22.02.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls doc"
 RESTRICT="test"
 



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

2020-11-23 Thread Sam James
commit: 239e622b4450cecd7c81ed5cf731ad09b6fa3970
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 01:23:46 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 01:23:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=239e622b

media-libs/libdvdnav: Stabilize 6.1.0 arm, #755713

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

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

diff --git a/media-libs/libdvdnav/libdvdnav-6.1.0.ebuild 
b/media-libs/libdvdnav/libdvdnav-6.1.0.ebuild
index f0613c08db6..7becebd2ee1 100644
--- a/media-libs/libdvdnav/libdvdnav-6.1.0.ebuild
+++ b/media-libs/libdvdnav/libdvdnav-6.1.0.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} =  ]]; then
EGIT_REPO_URI="https://code.videolan.org/videolan/libdvdnav.git;
 else

SRC_URI="https://downloads.videolan.org/pub/videolan/libdvdnav/${PV}/${P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+   KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2020-11-23 Thread Sam James
commit: a2c26e9a40200a30ecb1aab44223b8dc8c766dc5
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 01:23:25 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 01:23:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2c26e9a

app-shells/tcsh: Stabilize 6.22.02 arm64, #756097

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

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

diff --git a/app-shells/tcsh/tcsh-6.22.02.ebuild 
b/app-shells/tcsh/tcsh-6.22.02.ebuild
index 53cc7bcc96e..1ff4694372f 100644
--- a/app-shells/tcsh/tcsh-6.22.02.ebuild
+++ b/app-shells/tcsh/tcsh-6.22.02.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls doc"
 RESTRICT="test"
 



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

2020-11-23 Thread Sam James
commit: 4f2e674d1f8943fe63196dfd2d462672e8dbeaaf
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 24 01:23:01 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 24 01:23:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f2e674d

dev-python/GitPython: Stabilize 3.1.11 ALLARCHES, #756259

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

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

diff --git a/dev-python/GitPython/GitPython-3.1.11.ebuild 
b/dev-python/GitPython/GitPython-3.1.11.ebuild
index 2dedec128a2..e7aa556f393 100644
--- a/dev-python/GitPython/GitPython-3.1.11.ebuild
+++ b/dev-python/GitPython/GitPython-3.1.11.ebuild
@@ -23,7 +23,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm64 x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
dev-vcs/git



  1   2   3   4   >