[gentoo-commits] repo/gentoo:master commit in: dev-cpp/range-v3/files/, dev-cpp/range-v3/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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/
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 )"