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

2020-12-13 Thread Sergei Trofimovich
commit: 0ff83f76b13e4c9cdaae706d1e44ffeb30e49315
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Dec 13 11:53:44 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Dec 13 11:53:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ff83f76

profiles/arch/ia64: unmask dev-util/gtk-doc[test]

Bug: https://bugs.gentoo.org/758698
Signed-off-by: Sergei Trofimovich  gentoo.org>

 profiles/arch/ia64/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/ia64/package.use.mask 
b/profiles/arch/ia64/package.use.mask
index 3fee38cd9cd..3ce88c284ed 100644
--- a/profiles/arch/ia64/package.use.mask
+++ b/profiles/arch/ia64/package.use.mask
@@ -1,10 +1,6 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-# Matt Turner  (2020-12-05)
-# dev-python/parameterized is not keyworded
-dev-util/gtk-doc test
-
 # Cédric Krier  (2020-11-10)
 # virtual/rust has no ia64 keyword
 dev-vcs/mercurial rust



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

2020-12-13 Thread Sergei Trofimovich
commit: cf274423cac2d869f44469c896d22213c537434c
Author: Ionen Wolkens  gmail  com>
AuthorDate: Sun Dec 13 03:18:16 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Dec 13 11:46:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf274423

app-emulation/qemu: build virtiofsd if USE=vhost-user-fs

With qemu-5.2.0 build system changes, virtiofsd would only be auto-enabled if
USE="caps seccomp", --enable-tools, and --enable-system. The last being
disabled for the tools build led to virtiofsd being missing for users.

Rather than work around, control using --enable-virtiofsd and USE=vhost-user-fs

Cannot be enabled together with --disable-tools, so added conf_tools()

Closes: https://bugs.gentoo.org/759673
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Ionen Wolkens  gmail.com>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-emulation/qemu/{qemu-5.2.0.ebuild => qemu-5.2.0-r1.ebuild} | 10 ++
 app-emulation/qemu/qemu-.ebuild| 10 ++
 2 files changed, 20 insertions(+)

diff --git a/app-emulation/qemu/qemu-5.2.0.ebuild 
b/app-emulation/qemu/qemu-5.2.0-r1.ebuild
similarity index 98%
rename from app-emulation/qemu/qemu-5.2.0.ebuild
rename to app-emulation/qemu/qemu-5.2.0-r1.ebuild
index fb697371ce5..7c4861c024b 100644
--- a/app-emulation/qemu/qemu-5.2.0.ebuild
+++ b/app-emulation/qemu/qemu-5.2.0-r1.ebuild
@@ -69,6 +69,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}
qemu_softmmu_targets_riscv64? ( fdt )
static? ( static-user !alsa !gtk !jack !opengl !pulseaudio !plugins 
!rbd !snappy )
static-user? ( !plugins )
+   vhost-user-fs? ( caps seccomp )
virtfs? ( caps xattr )
vte? ( gtk )
plugins? ( !static !static-user )
@@ -439,6 +440,14 @@ qemu_src_configure() {
echo "--disable-${2:-$1}"
fi
}
+   # Enable option only for tools build, but not 'user' or 'softmmu'
+   conf_tools() {
+   if [[ ${buildtype} == "tools" ]] ; then
+   use_enable "$@"
+   else
+   echo "--disable-${2:-$1}"
+   fi
+   }
conf_opts+=(
$(conf_notuser accessibility brlapi)
$(conf_notuser aio linux-aio)
@@ -480,6 +489,7 @@ qemu_src_configure() {
$(conf_notuser vde)
$(conf_notuser vhost-net)
$(conf_notuser vhost-user-fs)
+   $(conf_tools vhost-user-fs virtiofsd)
$(conf_notuser virgl virglrenderer)
$(conf_notuser virtfs)
$(conf_notuser vnc)

diff --git a/app-emulation/qemu/qemu-.ebuild 
b/app-emulation/qemu/qemu-.ebuild
index 381e677e530..ac31c2cc447 100644
--- a/app-emulation/qemu/qemu-.ebuild
+++ b/app-emulation/qemu/qemu-.ebuild
@@ -69,6 +69,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}
qemu_softmmu_targets_riscv64? ( fdt )
static? ( static-user !alsa !gtk !jack !opengl !pulseaudio !plugins 
!rbd !snappy )
static-user? ( !plugins )
+   vhost-user-fs? ( caps seccomp )
virtfs? ( caps xattr )
vte? ( gtk )
plugins? ( !static !static-user )
@@ -437,6 +438,14 @@ qemu_src_configure() {
echo "--disable-${2:-$1}"
fi
}
+   # Enable option only for tools build, but not 'user' or 'softmmu'
+   conf_tools() {
+   if [[ ${buildtype} == "tools" ]] ; then
+   use_enable "$@"
+   else
+   echo "--disable-${2:-$1}"
+   fi
+   }
conf_opts+=(
$(conf_notuser accessibility brlapi)
$(conf_notuser aio linux-aio)
@@ -478,6 +487,7 @@ qemu_src_configure() {
$(conf_notuser vde)
$(conf_notuser vhost-net)
$(conf_notuser vhost-user-fs)
+   $(conf_tools vhost-user-fs virtiofsd)
$(conf_notuser virgl virglrenderer)
$(conf_notuser virtfs)
$(conf_notuser vnc)



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

2020-12-13 Thread Sergei Trofimovich
commit: 4a4d99e92b4e3ab19fdf772146213ec8e082eb42
Author: Ionen Wolkens  gmail  com>
AuthorDate: Sun Dec 13 00:31:54 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Dec 13 11:37:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a4d99e9

app-emulation/qemu: add missing ipxe[qemu] USE dep

Closes: https://bugs.gentoo.org/759592
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Ionen Wolkens  gmail.com>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-emulation/qemu/qemu-5.1.0-r2.ebuild | 4 ++--
 app-emulation/qemu/qemu-5.1.0-r3.ebuild | 4 ++--
 app-emulation/qemu/qemu-5.2.0.ebuild| 4 ++--
 app-emulation/qemu/qemu-.ebuild | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/app-emulation/qemu/qemu-5.1.0-r2.ebuild 
b/app-emulation/qemu/qemu-5.1.0-r2.ebuild
index 65945dedff5..03c6f9d091e 100644
--- a/app-emulation/qemu/qemu-5.1.0-r2.ebuild
+++ b/app-emulation/qemu/qemu-5.1.0-r2.ebuild
@@ -170,13 +170,13 @@ SOFTMMU_TOOLS_DEPEND="
 X86_FIRMWARE_DEPEND="
pin-upstream-blobs? (
~sys-firmware/edk2-ovmf-201905[binary]
-   ~sys-firmware/ipxe-1.0.0_p20190728[binary]
+   ~sys-firmware/ipxe-1.0.0_p20190728[binary,qemu]
~sys-firmware/seabios-1.12.0[binary,seavgabios]
~sys-firmware/sgabios-0.1_pre8[binary]
)
!pin-upstream-blobs? (
sys-firmware/edk2-ovmf
-   sys-firmware/ipxe
+   sys-firmware/ipxe[qemu]
>=sys-firmware/seabios-1.10.2[seavgabios]
sys-firmware/sgabios
)"

diff --git a/app-emulation/qemu/qemu-5.1.0-r3.ebuild 
b/app-emulation/qemu/qemu-5.1.0-r3.ebuild
index c273d6d0b85..a0db186f983 100644
--- a/app-emulation/qemu/qemu-5.1.0-r3.ebuild
+++ b/app-emulation/qemu/qemu-5.1.0-r3.ebuild
@@ -170,13 +170,13 @@ SOFTMMU_TOOLS_DEPEND="
 X86_FIRMWARE_DEPEND="
pin-upstream-blobs? (
~sys-firmware/edk2-ovmf-201905[binary]
-   ~sys-firmware/ipxe-1.0.0_p20190728[binary]
+   ~sys-firmware/ipxe-1.0.0_p20190728[binary,qemu]
~sys-firmware/seabios-1.12.0[binary,seavgabios]
~sys-firmware/sgabios-0.1_pre8[binary]
)
!pin-upstream-blobs? (
sys-firmware/edk2-ovmf
-   sys-firmware/ipxe
+   sys-firmware/ipxe[qemu]
>=sys-firmware/seabios-1.10.2[seavgabios]
sys-firmware/sgabios
)"

diff --git a/app-emulation/qemu/qemu-5.2.0.ebuild 
b/app-emulation/qemu/qemu-5.2.0.ebuild
index 6401088ec2b..fb697371ce5 100644
--- a/app-emulation/qemu/qemu-5.2.0.ebuild
+++ b/app-emulation/qemu/qemu-5.2.0.ebuild
@@ -170,13 +170,13 @@ SOFTMMU_TOOLS_DEPEND="
 X86_FIRMWARE_DEPEND="
pin-upstream-blobs? (
~sys-firmware/edk2-ovmf-201905[binary]
-   ~sys-firmware/ipxe-1.0.0_p20190728[binary]
+   ~sys-firmware/ipxe-1.0.0_p20190728[binary,qemu]
~sys-firmware/seabios-1.12.0[binary,seavgabios]
~sys-firmware/sgabios-0.1_pre8[binary]
)
!pin-upstream-blobs? (
sys-firmware/edk2-ovmf
-   sys-firmware/ipxe
+   sys-firmware/ipxe[qemu]
>=sys-firmware/seabios-1.10.2[seavgabios]
sys-firmware/sgabios
)"

diff --git a/app-emulation/qemu/qemu-.ebuild 
b/app-emulation/qemu/qemu-.ebuild
index ad937601f52..381e677e530 100644
--- a/app-emulation/qemu/qemu-.ebuild
+++ b/app-emulation/qemu/qemu-.ebuild
@@ -170,13 +170,13 @@ SOFTMMU_TOOLS_DEPEND="
 X86_FIRMWARE_DEPEND="
pin-upstream-blobs? (
~sys-firmware/edk2-ovmf-201905[binary]
-   ~sys-firmware/ipxe-1.0.0_p20190728[binary]
+   ~sys-firmware/ipxe-1.0.0_p20190728[binary,qemu]
~sys-firmware/seabios-1.12.0[binary,seavgabios]
~sys-firmware/sgabios-0.1_pre8[binary]
)
!pin-upstream-blobs? (
sys-firmware/edk2-ovmf
-   sys-firmware/ipxe
+   sys-firmware/ipxe[qemu]
>=sys-firmware/seabios-1.10.2[seavgabios]
sys-firmware/sgabios
)"



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

2020-12-13 Thread Sam James
commit: 4055eec1b49b4221b36f2d23670bc312a27c6c22
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 11:14:22 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 11:14:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4055eec1

net-misc/curl: arm stable (bug #759259)

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

 net-misc/curl/curl-7.74.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/curl/curl-7.74.0-r2.ebuild 
b/net-misc/curl/curl-7.74.0-r2.ebuild
index 06882afe0cf..a4b61ba33cf 100644
--- a/net-misc/curl/curl-7.74.0-r2.ebuild
+++ b/net-misc/curl/curl-7.74.0-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://curl.haxx.se/download/${P}.tar.xz;
 LICENSE="curl"
 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 ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
-KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~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 ~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"
 IUSE="adns alt-svc brotli +ftp gnutls gopher hsts +http2 idn +imap ipv6 
kerberos ldap libressl mbedtls metalink nss +openssl +pop3 +progress-meter rtmp 
samba +smtp ssh ssl static-libs test telnet +tftp threads winssl zstd"
 IUSE+=" curl_ssl_gnutls curl_ssl_libressl curl_ssl_mbedtls curl_ssl_nss 
+curl_ssl_openssl curl_ssl_winssl"
 IUSE+=" nghttp3 quiche"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-io/files/, dev-libs/aws-c-io/

2020-12-13 Thread Joonas Niilola
commit: 81e89e6f30ef16742a3cb4f61f8869eaf1f3d55c
Author: Sven Eden  prydeworx  com>
AuthorDate: Tue Dec  8 09:14:59 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:50:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81e89e6f

dev-libs/aws-c-io: IO/TLS module, for dev-libs/aws-c-event-stream

This is a new dependency of dev-libs/aws-c-event-stream.

Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Sven Eden  prydeworx.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/aws-c-io/Manifest |  1 +
 dev-libs/aws-c-io/aws-c-io-0.7.0.ebuild| 40 ++
 .../files/aws-c-io-0.7.0-cmake-prefix.patch| 12 +++
 dev-libs/aws-c-io/metadata.xml | 23 +
 4 files changed, 76 insertions(+)

diff --git a/dev-libs/aws-c-io/Manifest b/dev-libs/aws-c-io/Manifest
new file mode 100644
index 000..bca18fcf622
--- /dev/null
+++ b/dev-libs/aws-c-io/Manifest
@@ -0,0 +1 @@
+DIST aws-c-io-0.7.0.tar.gz 561762 BLAKE2B 
ffe8ac5de9fd5f57e7bc18e1d956f28567413d34ec23a7d0869065718039b1ab56aeae82fd8e24bf77f7393df2c1140308195cd8a4c6ff06cbc7843ae62d76c8
 SHA512 
b858a5a14cfea86c39f96963c4238ca0f90339befcbd6480e6353719d9846079764f8b42fbdc0cec2f99223bfe1c07fa2a014543fa3fe8a6357440e3cd1007f5

diff --git a/dev-libs/aws-c-io/aws-c-io-0.7.0.ebuild 
b/dev-libs/aws-c-io/aws-c-io-0.7.0.ebuild
new file mode 100644
index 000..9418e8ca2f4
--- /dev/null
+++ b/dev-libs/aws-c-io/aws-c-io-0.7.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="AWS SDK for C module, handles IO and TLS work for application 
protocols."
+HOMEPAGE="https://github.com/awslabs/aws-c-io;
+SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs test"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   || ( dev-util/cmake-3.19.1 )
+"
+
+DEPEND="
+   >=dev-libs/aws-c-cal-0.4.5:=[static-libs=]
+   >=dev-libs/aws-c-common-0.4.62:=[static-libs=]
+   >=dev-libs/s2n-0.10.21:=[static-libs=]
+"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-cmake-prefix.patch
+)
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=$(usex !static-libs)
+   -DBUILD_TESTING=$(usex test)
+   )
+   cmake_src_configure
+}

diff --git a/dev-libs/aws-c-io/files/aws-c-io-0.7.0-cmake-prefix.patch 
b/dev-libs/aws-c-io/files/aws-c-io-0.7.0-cmake-prefix.patch
new file mode 100644
index 000..39cab922b3d
--- /dev/null
+++ b/dev-libs/aws-c-io/files/aws-c-io-0.7.0-cmake-prefix.patch
@@ -0,0 +1,12 @@
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -23,7 +23,7 @@ elseif(NOT DEFINED CMAKE_INSTALL_LIBDIR)
+ endif()
+ 
+ # This is required in order to append /lib/cmake to each element in 
CMAKE_PREFIX_PATH
+-set(AWS_MODULE_DIR "/${CMAKE_INSTALL_LIBDIR}/cmake")
++set(AWS_MODULE_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/cmake")
+ string(REPLACE ";" "${AWS_MODULE_DIR};" AWS_MODULE_PATH 
"${CMAKE_PREFIX_PATH}${AWS_MODULE_DIR}")
+ # Append that generated list to the module search path
+ list(APPEND CMAKE_MODULE_PATH ${AWS_MODULE_PATH})
+

diff --git a/dev-libs/aws-c-io/metadata.xml b/dev-libs/aws-c-io/metadata.xml
new file mode 100644
index 000..6e6c8ed7af3
--- /dev/null
+++ b/dev-libs/aws-c-io/metadata.xml
@@ -0,0 +1,23 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   sven.e...@prydeworx.com
+   Sven Eden
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+This is a module for the AWS SDK for C. It handles all IO and TLS work for 
application protocols.
+
+aws-c-io is an event driven framework for implementing application protocols. 
It is built on top of cross-platform
+abstractions that allow you as a developer to think only about the state 
machine and API for your protocols. A typical
+use-case would be to write something like Http on top of asynchronous-io with 
TLS already baked in. All of the platform
+and security concerns are already handled for you.
+
+It is designed to be light-weight, fast, portable, and flexible for multiple 
domain use-cases such as: embedded,
+server, client, and mobile.
+   
+



[gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-common/

2020-12-13 Thread Joonas Niilola
commit: ea9983e07205e693fc5e011d7fd6ae79a2ae992d
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Dec 13 10:57:56 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:59:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea9983e0

dev-libs/aws-c-common: WhitespaceFound

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

 dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild 
b/dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild
index 4d03853e528..7f1ab8b2b7e 100644
--- a/dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild
+++ b/dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild
@@ -17,8 +17,10 @@ IUSE="static-libs test"
 RESTRICT="!test? ( test )"
 
 BDEPEND="
-   || ( dev-util/cmake-3.19.1 )
+   || (
+   >dev-util/cmake-3.19.1
+   

[gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-event-stream/

2020-12-13 Thread Joonas Niilola
commit: 02fe83095501ee1ee273f70d9bd3373e9f226f23
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Dec 13 10:58:31 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:59:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02fe8309

dev-libs/aws-c-event-stream: WhitespaceFound

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

 dev-libs/aws-c-event-stream/aws-c-event-stream-0.2.5.ebuild | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-libs/aws-c-event-stream/aws-c-event-stream-0.2.5.ebuild 
b/dev-libs/aws-c-event-stream/aws-c-event-stream-0.2.5.ebuild
index b18b4fb8243..57f763c252a 100644
--- a/dev-libs/aws-c-event-stream/aws-c-event-stream-0.2.5.ebuild
+++ b/dev-libs/aws-c-event-stream/aws-c-event-stream-0.2.5.ebuild
@@ -17,8 +17,10 @@ IUSE="static-libs test"
 RESTRICT="!test? ( test )"
 
 BDEPEND="
-   || ( dev-util/cmake-3.19.1 )
+   || (
+   >dev-util/cmake-3.19.1
+   

[gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-sdk-cpp/files/, dev-libs/aws-sdk-cpp/

2020-12-13 Thread Joonas Niilola
commit: d0d0a78435ff1d94cfe931fe712d769cb9a5873a
Author: Sven Eden  prydeworx  com>
AuthorDate: Sat Dec 12 17:15:59 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:50:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0d0a784

dev-libs/aws-sdk-cpp: Remove obsolete ebuild

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sven Eden  prydeworx.com>
Closes: https://github.com/gentoo/gentoo/pull/18623
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/aws-sdk-cpp/Manifest  |   1 -
 dev-libs/aws-sdk-cpp/aws-sdk-cpp-1.8.46-r2.ebuild  | 184 -
 ...s-sdk-cpp-1.8.46-remove_Werror_from_FLAGS.patch |  30 
 3 files changed, 215 deletions(-)

diff --git a/dev-libs/aws-sdk-cpp/Manifest b/dev-libs/aws-sdk-cpp/Manifest
index 787351bbd42..283ae812409 100644
--- a/dev-libs/aws-sdk-cpp/Manifest
+++ b/dev-libs/aws-sdk-cpp/Manifest
@@ -1,2 +1 @@
 DIST aws-sdk-cpp-1.8.105.tar.gz 31880249 BLAKE2B 
1a2eb972b716c656f45b8d1d12fc3e7280c171e4a19eb5431e320511365d305211e8567aa7fcc3e21f553ad5befda91829df6ccf60c23296d210d0c7347bb2a2
 SHA512 
a76da095718c8569c62597431d29a0a54c1a7f81c1825894f0f40b1a971a3e0b4f0813da4ac929612b9bb5f92501ee6a034436faa6eef678d936117765baab7e
-DIST aws-sdk-cpp-1.8.46.tar.gz 28989406 BLAKE2B 
47a72d1e0578ecd28e376f3c6688a997faeeae41ba5e4ab5aeff59a2d8f592fc63746445728ab3236952cfc045dc683c816c77dfb8fbe3d98904e50013201ace
 SHA512 
9fedc9de84721189f001a0a5fb2dd63987a366a37ec6354234b244da39929b420e6289bd319d0f056fa4274b7bc682d1aab25dc823abdf24b69536610ed4

diff --git a/dev-libs/aws-sdk-cpp/aws-sdk-cpp-1.8.46-r2.ebuild 
b/dev-libs/aws-sdk-cpp/aws-sdk-cpp-1.8.46-r2.ebuild
deleted file mode 100644
index a2d30d7fccd..000
--- a/dev-libs/aws-sdk-cpp/aws-sdk-cpp-1.8.46-r2.ebuild
+++ /dev/null
@@ -1,184 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit cmake python-single-r1
-
-DESCRIPTION="AWS SDK for C++"
-HOMEPAGE="https://aws.amazon.com/sdk-for-cpp/;
-SRC_URI="https://github.com/aws/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-MODULES=(
-   access-management apigateway appconfig backup batch budgets chime 
cloud-desktop cloud-dev cloud-media
-   cloud-mobile cloudformation cloudfront cloudhsm cloudsearch cloudwatch 
cognito config dlm ebs ec2 ecr ecs eks
-   elasticache elasticbeanstalk elastic-inference elasticloadbalancing 
elasticmapreduce email es events forecast
-   frauddetector fsx globalaccelerator iot kendra kinesis kms lambda lex 
license-manager lightsail machinelearning
-   macie managedblockchain marketplace networkmanager opsworks 
organizations other outposts personalize polly qldb
-   queues rds rekognition resource-groups route53 s3 sagemaker 
secretsmanager securityhub serverlessrepo shield sns
-   sqs textract transcribe translate waf
-)
-
-IUSE="+http libressl pulseaudio +rtti +ssl static-libs test unity-build 
${MODULES[*]}"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-   http? ( net-misc/curl:= )
-   pulseaudio? ( media-sound/pulseaudio )
-   ssl? (
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   )
-   >=dev-libs/aws-c-common-0.4.26:=[static-libs=]
-   >=dev-libs/aws-c-event-stream-0.1.6:=[static-libs=]
-   >=dev-libs/aws-checksums-0.1.9:=[static-libs=]
-   sys-libs/zlib
-"
-RDEPEND="
-   ${DEPEND}
-   ${PYTHON_DEPS}
-"
-
-PATCHES=(
-   
"${FILESDIR}"/${PN}-upgrade_android-build_build_and_test_android_py-3.9.patch
-   
"${FILESDIR}"/${PN}-upgrade_binary-release-pipeline_lambda_publish_py-3.9.patch
-   "${FILESDIR}"/${PN}-upgrade_CI_ConstructReleaseDoc_py-3.9.patch
-   "${FILESDIR}"/${PN}-upgrade_CI_ExtractBuildArgs_py-3.9.patch
-   "${FILESDIR}"/${PN}-upgrade_CI_handle_release_notification_py-3.9.patch
-   "${FILESDIR}"/${PN}-upgrade_CI_move_release_doc_to_models_py-3.9.patch
-   
"${FILESDIR}"/${PN}-upgrade_doc_crosslinks_generate_cross_link_data_py-3.9.patch
-   "${FILESDIR}"/${PN}-upgrade_scripts_build_3rdparty_py-3.9.patch
-   "${FILESDIR}"/${PN}-upgrade_scripts_build_example_py-3.9.patch
-   "${FILESDIR}"/${PN}-upgrade_scripts_dummy_web_server_py-3.9.patch
-   "${FILESDIR}"/${PN}-upgrade_scripts_endpoints_checker_py-3.9.patch
-   "${FILESDIR}"/${PN}-upgrade_scripts_gather_3rdparty_py-3.9.patch
-   "${FILESDIR}"/${PN}-upgrade_scripts_generate_sdks_py-3.9.patch
-   "${FILESDIR}"/${PN}-upgrade_scripts_renew_license_py-3.9.patch
-   "${FILESDIR}"/${PN}-upgrade_scripts_run_integration_tests_py-3.9.patch
-   "${FILESDIR}"/${P}-remove_Werror_from_FLAGS.patch
-)
-
-src_configure() {
-   local mybuildtargets="core"
-
-   for module in ${MODULES[@]}; do
-   

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

2020-12-13 Thread Joonas Niilola
commit: 8d6c13a01c03e21c642b9e75722eaf3411a775ea
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Dec 13 10:54:29 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:59:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d6c13a0

dev-libs/aws-checksums: WhitespaceFound

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

 dev-libs/aws-checksums/aws-checksums-0.1.10.ebuild | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-libs/aws-checksums/aws-checksums-0.1.10.ebuild 
b/dev-libs/aws-checksums/aws-checksums-0.1.10.ebuild
index b9a98bfc891..61375a3de8b 100644
--- a/dev-libs/aws-checksums/aws-checksums-0.1.10.ebuild
+++ b/dev-libs/aws-checksums/aws-checksums-0.1.10.ebuild
@@ -17,8 +17,10 @@ IUSE="static-libs test"
 RESTRICT="!test? ( test )"
 
 BDEPEND="
-   || ( dev-util/cmake-3.19.1 )
+   || (
+   >dev-util/cmake-3.19.1
+   

[gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-cal/

2020-12-13 Thread Joonas Niilola
commit: 6c2f7d052d6542375aa7b932f7d2601b0afaa9ad
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Dec 13 10:55:34 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:59:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c2f7d05

dev-libs/aws-c-cal: WhitespaceFound

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

 dev-libs/aws-c-cal/aws-c-cal-0.4.5.ebuild | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-libs/aws-c-cal/aws-c-cal-0.4.5.ebuild 
b/dev-libs/aws-c-cal/aws-c-cal-0.4.5.ebuild
index f2fb066bd97..407a8f3334d 100644
--- a/dev-libs/aws-c-cal/aws-c-cal-0.4.5.ebuild
+++ b/dev-libs/aws-c-cal/aws-c-cal-0.4.5.ebuild
@@ -17,8 +17,10 @@ IUSE="static-libs test"
 RESTRICT="!test? ( test )"
 
 BDEPEND="
-   || ( dev-util/cmake-3.19.1 )
+   || (
+   >dev-util/cmake-3.19.1
+   

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

2020-12-13 Thread Joonas Niilola
commit: 488cf3279c559d700d815578fc987e3d3dbab43f
Author: Sven Eden  prydeworx  com>
AuthorDate: Tue Dec  8 09:04:22 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:50:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=488cf327

dev-libs/s2n: C99 TLS/SSL, needed for dev-libs/aws-c-io

* dev-libs/aws-c-io is still to be added, and is needed to bump
  dev-libs/aws-c-event-streams.

Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Sven Eden  prydeworx.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/s2n/Manifest   |  1 +
 dev-libs/s2n/metadata.xml   | 28 +++
 dev-libs/s2n/s2n-0.10.21.ebuild | 43 +
 3 files changed, 72 insertions(+)

diff --git a/dev-libs/s2n/Manifest b/dev-libs/s2n/Manifest
new file mode 100644
index 000..5886f4cb241
--- /dev/null
+++ b/dev-libs/s2n/Manifest
@@ -0,0 +1 @@
+DIST s2n-0.10.21.tar.gz 6150129 BLAKE2B 
cf598ef02b4aa9a2a69f11a47b2a691055575b7398ba0a833081da704ebc7564d30abda5f2ad9ff9858ec2f553b1f332e913494b9e195e2a754f008bab5c11d2
 SHA512 
26957edf36af088af2cb355dad9281fefd9d54ce8c3c2c26f5682aee8d64338a3677aa81f3a07563b27a938cad2c57e0a86a478c9619cc93552674451d501909

diff --git a/dev-libs/s2n/metadata.xml b/dev-libs/s2n/metadata.xml
new file mode 100644
index 000..f7c25930dcd
--- /dev/null
+++ b/dev-libs/s2n/metadata.xml
@@ -0,0 +1,28 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   sven.e...@prydeworx.com
+   Sven Eden
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+s2n is a C99 implementation of the TLS/SSL protocols that is designed to be 
simple, small, fast, and with security as a
+priority. It is released and licensed under the Apache License 2.0.
+
+The s2n I/O APIs are designed to be intuitive to developers familiar with the 
widely-used POSIX I/O APIs, and s2n
+supports blocking, non-blocking, and full-duplex I/O. Additionally there are 
no locks or mutexes within s2n.
+
+s2n implements SSLv3, TLS1.0, TLS1.1, and TLS1.2. For encryption, s2n supports 
128-bit and 256-bit AES, in the CBC and
+GCM modes, ChaCha20, 3DES, and RC4. For forward secrecy, s2n supports both DHE 
and ECDHE. s2n also supports the Server
+Name Indicator (SNI), Application-Layer Protocol Negotiation (ALPN) and the 
Online Certificate Status Protocol (OCSP)
+TLS extensions. SSLv3, RC4, 3DES and DHE are each disabled by default for 
security reasons.
+
+As it can be difficult to keep track of which encryption algorithms and 
protocols are best to use, s2n features a
+simple API to use the latest "default" set of preferences. If you prefer to 
remain on a specific version for backwards
+compatibility, that is also supported.
+   
+

diff --git a/dev-libs/s2n/s2n-0.10.21.ebuild b/dev-libs/s2n/s2n-0.10.21.ebuild
new file mode 100644
index 000..d4817482270
--- /dev/null
+++ b/dev-libs/s2n/s2n-0.10.21.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="simple, small, fast and secure C99 implementation of the TLS/SSL 
protocols"
+HOMEPAGE="https://github.com/awslabs/s2n;
+SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="libressl static-libs test"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   !libressl? ( dev-libs/openssl:0=[static-libs=] )
+   libressl? ( dev-libs/libressl:0=[static-libs=] )
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   default
+
+   # Fix 
+   # QA Notice: The following files contain writable and executable 
sections (...)
+   sed \
+-e '$a\\n#if defined(__linux__) && defined(__ELF__)\n.section 
.note.GNU-stack,"",%progbits\n#endif' \
+-i "${S}"/pq-crypto/sike_r2/fp_x64_asm.S || die "sed failed"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=$(usex !static-libs)
+   -DBUILD_TESTING=$(usex test)
+   )
+   cmake_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-common/

2020-12-13 Thread Joonas Niilola
commit: 7c7499b49249dde455f921a924bbea6e812a1e09
Author: Sven Eden  prydeworx  com>
AuthorDate: Tue Dec  8 07:52:44 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:50:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c7499b4

dev-libs/aws-c-common: Version 0.4.62 Bump; Block cmake-3.19.{0,1}

This commit updates to version 0.4.62 with the following enhancements
* Print CMake version when configuring. [0]
* Re-adding SOVERSION to CMakeLists.txt [1]
* Disabled MSVC 2015's non-constant aggregate initializer warning [2]
* Do not use addr2line by default, backtrace_symbols will do the job
  [3]
* Fixed memtrace/stack decoding test so it works more robustly
* Removes an unnecessary API hopefully before anyone uses it
  externally

Also block dev-util/cmake-3.19.0 and dev-util/cmake-3.19.1, which
introduced a regression causing configure phase to fail. [4]

[0] https://github.com/awslabs/aws-c-common/pull/701
[1] https://github.com/awslabs/aws-c-common/pull/702
[2] https://github.com/awslabs/aws-c-common/pull/738
[3] https://github.com/awslabs/aws-c-common/pull/739
[4] https://gitlab.kitware.com/cmake/cmake/-/issues/21529

Closes: https://bugs.gentoo.org/755932
Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Sven Eden  prydeworx.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/aws-c-common/Manifest   |  1 +
 dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild | 34 
 2 files changed, 35 insertions(+)

diff --git a/dev-libs/aws-c-common/Manifest b/dev-libs/aws-c-common/Manifest
index 2b7630e5d4a..5403e346954 100644
--- a/dev-libs/aws-c-common/Manifest
+++ b/dev-libs/aws-c-common/Manifest
@@ -1 +1,2 @@
 DIST aws-c-common-0.4.57.tar.gz 418954 BLAKE2B 
cfb268d92e90343e01756b571d0d7fa1269a144b933b5dfae6e5fb92a2b384ff73bf14ad830b53427ad37e9dbd9a0afff5b571108869a69a8d466982a2e6c6ef
 SHA512 
77a9110a067e3057ae3cb90ee0b1fa42e18595e476b803f83711ecc164053db73683df2fccf75ad992b7d08e142cb31d6a70f87ce2f3b87ce28ee1e8151b3c62
+DIST aws-c-common-0.4.62.tar.gz 411263 BLAKE2B 
b9eb8eab8fceb949adcb96bc98987c318dcc70dae2cb8ecdcdf36c306be97158a64208c4bcc2452c83f03708cd7fb5401639558bc9bea946234f4b6b4c8eaec1
 SHA512 
7f31d739a3376404016bd509b40656d7620bddfb77a7f988306f2dcb2b03a03387855d845c2b9f63194d0bf2182a8d96392dba6c2bf847eaeb008115561d73ba

diff --git a/dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild 
b/dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild
new file mode 100644
index 000..4d03853e528
--- /dev/null
+++ b/dev-libs/aws-c-common/aws-c-common-0.4.62.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Core c99 package for AWS SDK for C"
+HOMEPAGE="https://github.com/awslabs/aws-c-common;
+SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs test"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   || ( dev-util/cmake-3.19.1 )
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.4.57-remove-Werror-CFLAG.patch
+)
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=$(usex !static-libs)
+   -DBUILD_TESTING=$(usex test)
+   )
+   cmake_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-common/

2020-12-13 Thread Joonas Niilola
commit: b67eb10d56ad364978fae61ea20326e1fec618d7
Author: Sven Eden  prydeworx  com>
AuthorDate: Tue Dec  8 07:53:33 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:50:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b67eb10d

dev-libs/aws-c-common: Remove obsolete ebuild

Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Sven Eden  prydeworx.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/aws-c-common/Manifest |  1 -
 .../aws-c-common/aws-c-common-0.4.57-r1.ebuild | 29 --
 2 files changed, 30 deletions(-)

diff --git a/dev-libs/aws-c-common/Manifest b/dev-libs/aws-c-common/Manifest
index 5403e346954..a6c552fe907 100644
--- a/dev-libs/aws-c-common/Manifest
+++ b/dev-libs/aws-c-common/Manifest
@@ -1,2 +1 @@
-DIST aws-c-common-0.4.57.tar.gz 418954 BLAKE2B 
cfb268d92e90343e01756b571d0d7fa1269a144b933b5dfae6e5fb92a2b384ff73bf14ad830b53427ad37e9dbd9a0afff5b571108869a69a8d466982a2e6c6ef
 SHA512 
77a9110a067e3057ae3cb90ee0b1fa42e18595e476b803f83711ecc164053db73683df2fccf75ad992b7d08e142cb31d6a70f87ce2f3b87ce28ee1e8151b3c62
 DIST aws-c-common-0.4.62.tar.gz 411263 BLAKE2B 
b9eb8eab8fceb949adcb96bc98987c318dcc70dae2cb8ecdcdf36c306be97158a64208c4bcc2452c83f03708cd7fb5401639558bc9bea946234f4b6b4c8eaec1
 SHA512 
7f31d739a3376404016bd509b40656d7620bddfb77a7f988306f2dcb2b03a03387855d845c2b9f63194d0bf2182a8d96392dba6c2bf847eaeb008115561d73ba

diff --git a/dev-libs/aws-c-common/aws-c-common-0.4.57-r1.ebuild 
b/dev-libs/aws-c-common/aws-c-common-0.4.57-r1.ebuild
deleted file mode 100644
index 120faea56d6..000
--- a/dev-libs/aws-c-common/aws-c-common-0.4.57-r1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="Core c99 package for AWS SDK for C"
-HOMEPAGE="https://github.com/awslabs/aws-c-common;
-SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs test"
-
-RESTRICT="!test? ( test )"
-
-PATCHES=(
-   "${FILESDIR}"/${P}-remove-Werror-CFLAG.patch
-)
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_SHARED_LIBS=$(usex !static-libs)
-   -DBUILD_TESTING=$(usex test)
-   )
-   cmake_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-io/

2020-12-13 Thread Joonas Niilola
commit: 50b966f6289f5953d3f71ff579e0340456d196c1
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Dec 13 10:51:30 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:56:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50b966f6

dev-libs/aws-c-io: fix description

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

 dev-libs/aws-c-io/aws-c-io-0.7.0.ebuild | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/dev-libs/aws-c-io/aws-c-io-0.7.0.ebuild 
b/dev-libs/aws-c-io/aws-c-io-0.7.0.ebuild
index 9418e8ca2f4..e3fbefde131 100644
--- a/dev-libs/aws-c-io/aws-c-io-0.7.0.ebuild
+++ b/dev-libs/aws-c-io/aws-c-io-0.7.0.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 inherit cmake
 
-DESCRIPTION="AWS SDK for C module, handles IO and TLS work for application 
protocols."
+DESCRIPTION="AWS SDK for C module, handles IO and TLS work for application 
protocols"
 HOMEPAGE="https://github.com/awslabs/aws-c-io;
 SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
@@ -17,8 +17,10 @@ IUSE="static-libs test"
 RESTRICT="!test? ( test )"
 
 BDEPEND="
-   || ( dev-util/cmake-3.19.1 )
+   || (
+   >dev-util/cmake-3.19.1
+   

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

2020-12-13 Thread Joonas Niilola
commit: b197eaea91fd26180fadac31af951cbe4afcdff8
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Dec 13 10:52:30 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:59:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b197eaea

dev-libs/s2n: WhitespaceFound

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

 dev-libs/s2n/s2n-0.10.21.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-libs/s2n/s2n-0.10.21.ebuild b/dev-libs/s2n/s2n-0.10.21.ebuild
index d4817482270..225dc514461 100644
--- a/dev-libs/s2n/s2n-0.10.21.ebuild
+++ b/dev-libs/s2n/s2n-0.10.21.ebuild
@@ -25,11 +25,11 @@ DEPEND="${RDEPEND}"
 src_prepare() {
default
 
-   # Fix 
+   # Fix
# QA Notice: The following files contain writable and executable 
sections (...)
sed \
--e '$a\\n#if defined(__linux__) && defined(__ELF__)\n.section 
.note.GNU-stack,"",%progbits\n#endif' \
--i "${S}"/pq-crypto/sike_r2/fp_x64_asm.S || die "sed failed"
+   -e '$a\\n#if defined(__linux__) && defined(__ELF__)\n.section 
.note.GNU-stack,"",%progbits\n#endif' \
+   -i "${S}"/pq-crypto/sike_r2/fp_x64_asm.S || die "sed failed"
 
cmake_src_prepare
 }



[gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-sdk-cpp/, dev-libs/aws-sdk-cpp/files/

2020-12-13 Thread Joonas Niilola
commit: fdb1dfcb4ca5cbafb4a2ca09b7491cce6dbcde66
Author: Sven Eden  prydeworx  com>
AuthorDate: Thu Dec 10 08:03:38 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:50:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdb1dfcb

dev-libs/aws-sdk-cpp: Version 1.8.105 bump

The following new modules have been added:
* Amazon ECR Public
* Amazon EMR on EKS
* Amazon Lookout for Vision
* Amazon Managed Workflows for Apache Airflow (Amazon MWAA)
* Amazon Timestream
* Audit Manager
* Detective
* DevOps Guru

The following modules are now enabled in various categories:
* connect-contact-lens
* customer-profiles
* databrew
* healthlake
* network-firewall
* s3outposts
* sagemaker-edge
* sagemaker-featurestore-runtime
* sso-admin
* servicecatalog-appregistry

Further more the SDK now uses the new packages
* dev-libs/aws-c-cal
* dev-libs/aws-c-io and
* dev-libs/s2n
which have code for IO/TLS/SSL and a cryptography layer split out.

In the wake of this bump, the mentioned new packages have been added,
and the following packages bumped:
* dev-libs/aws-c-common
* dev-libs/aws-checksums
* dev-libs/aws-c-event-stream

All packages that suffer from the cmake-3.9.0/1 regression [0] have
been updated to no longer accept dev-util/cmake-3.9.0 and
dev-util/cmake-3.9.1 for building.

Bug: https://bugs.gentoo.org/755932
Bug: https://bugs.gentoo.org/756325
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sven Eden  prydeworx.com>

[0] https://gitlab.kitware.com/cmake/cmake/-/issues/21529

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

 dev-libs/aws-sdk-cpp/Manifest  |   1 +
 dev-libs/aws-sdk-cpp/aws-sdk-cpp-1.8.105.ebuild| 196 +
 ...-sdk-cpp-1.8.105-remove_Werror_from_FLAGS.patch |  30 
 dev-libs/aws-sdk-cpp/metadata.xml  |  43 +++--
 4 files changed, 260 insertions(+), 10 deletions(-)

diff --git a/dev-libs/aws-sdk-cpp/Manifest b/dev-libs/aws-sdk-cpp/Manifest
index c27b05abb98..787351bbd42 100644
--- a/dev-libs/aws-sdk-cpp/Manifest
+++ b/dev-libs/aws-sdk-cpp/Manifest
@@ -1 +1,2 @@
+DIST aws-sdk-cpp-1.8.105.tar.gz 31880249 BLAKE2B 
1a2eb972b716c656f45b8d1d12fc3e7280c171e4a19eb5431e320511365d305211e8567aa7fcc3e21f553ad5befda91829df6ccf60c23296d210d0c7347bb2a2
 SHA512 
a76da095718c8569c62597431d29a0a54c1a7f81c1825894f0f40b1a971a3e0b4f0813da4ac929612b9bb5f92501ee6a034436faa6eef678d936117765baab7e
 DIST aws-sdk-cpp-1.8.46.tar.gz 28989406 BLAKE2B 
47a72d1e0578ecd28e376f3c6688a997faeeae41ba5e4ab5aeff59a2d8f592fc63746445728ab3236952cfc045dc683c816c77dfb8fbe3d98904e50013201ace
 SHA512 
9fedc9de84721189f001a0a5fb2dd63987a366a37ec6354234b244da39929b420e6289bd319d0f056fa4274b7bc682d1aab25dc823abdf24b69536610ed4

diff --git a/dev-libs/aws-sdk-cpp/aws-sdk-cpp-1.8.105.ebuild 
b/dev-libs/aws-sdk-cpp/aws-sdk-cpp-1.8.105.ebuild
new file mode 100644
index 000..55d368d0d70
--- /dev/null
+++ b/dev-libs/aws-sdk-cpp/aws-sdk-cpp-1.8.105.ebuild
@@ -0,0 +1,196 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+
+inherit cmake python-single-r1
+
+DESCRIPTION="AWS SDK for C++"
+HOMEPAGE="https://aws.amazon.com/sdk-for-cpp/;
+SRC_URI="https://github.com/aws/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+MODULES=(
+   access-management apigateway appconfig backup batch budgets chime 
cloud-desktop cloud-dev cloud-media
+   cloud-mobile cloudformation cloudfront cloudhsm cloudsearch cloudwatch 
cognito config dlm ebs ec2 ecr ecs
+   eks elasticache elasticbeanstalk elastic-inference elasticloadbalancing 
elasticmapreduce email es events
+   forecast frauddetector fsx globalaccelerator iot kendra kinesis kms 
lambda lex license-manager lightsail
+   lookoutvision machinelearning macie managedblockchain marketplace mwaa 
networkmanager opsworks
+   organizations other outposts personalize polly qldb queues rds 
rekognition resource-groups route53 s3
+   sagemaker secretsmanager securityhub serverlessrepo shield sns sqs 
textract timestream transcribe
+   translate waf
+)
+
+IUSE="+http libressl pulseaudio +rtti +ssl static-libs test unity-build 
${MODULES[*]}"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+   http? ( net-misc/curl:= )
+   pulseaudio? ( media-sound/pulseaudio )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )
+   >=dev-libs/aws-c-common-0.4.62:=[static-libs=]
+   >=dev-libs/aws-c-event-stream-0.2.5:=[static-libs=]
+   >=dev-libs/aws-checksums-0.1.10:=[static-libs=]
+   sys-libs/zlib
+"
+RDEPEND="
+   ${DEPEND}
+   ${PYTHON_DEPS}
+"
+
+PATCHES=(
+   
"${FILESDIR}"/${PN}-upgrade_android-build_build_and_test_android_py-3.9.patch
+   

[gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-cal/, dev-libs/aws-c-cal/files/

2020-12-13 Thread Joonas Niilola
commit: 00606c0f9e68314107d8d1b159f107c3972542c9
Author: Sven Eden  prydeworx  com>
AuthorDate: Tue Dec  8 08:23:01 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:50:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00606c0f

dev-libs/aws-c-cal: Cryptography layer, needed for dev-libs/aws-c-io

* dev-libs/aws-c-io is still to be added, and is needed to bump
  dev-libs/aws-c-event-streams.

Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Sven Eden  prydeworx.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/aws-c-cal/Manifest|  1 +
 dev-libs/aws-c-cal/aws-c-cal-0.4.5.ebuild  | 38 ++
 .../files/aws-c-cal-0.4.5-cmake-prefix.patch   | 11 +++
 dev-libs/aws-c-cal/metadata.xml| 12 +++
 4 files changed, 62 insertions(+)

diff --git a/dev-libs/aws-c-cal/Manifest b/dev-libs/aws-c-cal/Manifest
new file mode 100644
index 000..41e867a5713
--- /dev/null
+++ b/dev-libs/aws-c-cal/Manifest
@@ -0,0 +1 @@
+DIST aws-c-cal-0.4.5.tar.gz 51956 BLAKE2B 
8e758cf4ba362efb3721c4b25f8264e3859eb0882d5bd1dc65a1ad7fa6ac5deb80872b214f39f389ad2c4cae620cb3d6535f39e8e6cbd63bceeb6b1ad7fd5bd1
 SHA512 
b6feb72e607bf9bbd927dda21a6d7e7f99771c5078fad778aa2d858aa86b251726a3797b61ad2d927a5293dad10b8ec97192ed60db652ebf8c664923c2484b6f

diff --git a/dev-libs/aws-c-cal/aws-c-cal-0.4.5.ebuild 
b/dev-libs/aws-c-cal/aws-c-cal-0.4.5.ebuild
new file mode 100644
index 000..f2fb066bd97
--- /dev/null
+++ b/dev-libs/aws-c-cal/aws-c-cal-0.4.5.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Crypto Abstraction Layer: Cross-Platform C99 wrapper for 
cryptography primitives"
+HOMEPAGE="https://github.com/awslabs/aws-c-cal;
+SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs test"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   || ( dev-util/cmake-3.19.1 )
+"
+
+DEPEND="
+   >=dev-libs/aws-c-common-0.4.62:=[static-libs=]
+"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-cmake-prefix.patch
+)
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=$(usex !static-libs)
+   -DBUILD_TESTING=$(usex test)
+   )
+   cmake_src_configure
+}

diff --git a/dev-libs/aws-c-cal/files/aws-c-cal-0.4.5-cmake-prefix.patch 
b/dev-libs/aws-c-cal/files/aws-c-cal-0.4.5-cmake-prefix.patch
new file mode 100644
index 000..7c861ce715f
--- /dev/null
+++ b/dev-libs/aws-c-cal/files/aws-c-cal-0.4.5-cmake-prefix.patch
@@ -0,0 +1,11 @@
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -23,7 +23,7 @@ elseif(NOT DEFINED CMAKE_INSTALL_LIBDIR)
+ endif()
+ 
+ # This is required in order to append /lib/cmake to each element in 
CMAKE_PREFIX_PATH
+-set(AWS_MODULE_DIR "/${CMAKE_INSTALL_LIBDIR}/cmake")
++set(AWS_MODULE_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/cmake")
+ string(REPLACE ";" "${AWS_MODULE_DIR};" AWS_MODULE_PATH 
"${CMAKE_PREFIX_PATH}${AWS_MODULE_DIR}")
+ # Append that generated list to the module search path
+ list(APPEND CMAKE_MODULE_PATH ${AWS_MODULE_PATH})

diff --git a/dev-libs/aws-c-cal/metadata.xml b/dev-libs/aws-c-cal/metadata.xml
new file mode 100644
index 000..82d54590389
--- /dev/null
+++ b/dev-libs/aws-c-cal/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   sven.e...@prydeworx.com
+   Sven Eden
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+



[gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-event-stream/

2020-12-13 Thread Joonas Niilola
commit: 671b10eb514775c1cbdf28c59995ae371b625292
Author: Sven Eden  prydeworx  com>
AuthorDate: Tue Dec  8 09:24:12 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:50:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=671b10eb

dev-libs/aws-c-event-stream: Version 0.2.5 Bump, fix #756325

* Event stream rpc full stack [0]
  event-stream-rpc implementation and tests. Added aws-c-io
  dependency.
* Marked RPC tests as net tests [1]
* Added test helper to ensure symbol is exported [2]
* Fixed shared-lib builds [3]
* Added newline [4]

Also:
* Raise dependency of dev-libs/aws-c-common to at least 0.4.62
* Depend now on dev-libs/aws-c-io as demanded by [0]
* Block dev-util/cmake-3.19.0 and dev-util/cmake-3.19.1, which
  introduced a regression causing configure phase to fail. [5]

[0] https://github.com/awslabs/aws-c-event-stream/pull/48
[1] https://github.com/awslabs/aws-c-event-stream/pull/49
[2] https://github.com/awslabs/aws-c-event-stream/pull/50
[3] https://github.com/awslabs/aws-c-event-stream/pull/51
[4] https://github.com/awslabs/aws-c-event-stream/pull/53
[5] https://gitlab.kitware.com/cmake/cmake/-/issues/21529

Closes: https://bugs.gentoo.org/756325
Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Sven Eden  prydeworx.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/aws-c-event-stream/Manifest   |  1 +
 .../aws-c-event-stream-0.2.5.ebuild| 39 ++
 2 files changed, 40 insertions(+)

diff --git a/dev-libs/aws-c-event-stream/Manifest 
b/dev-libs/aws-c-event-stream/Manifest
index c2b13f320ab..cf7ed9a7caf 100644
--- a/dev-libs/aws-c-event-stream/Manifest
+++ b/dev-libs/aws-c-event-stream/Manifest
@@ -1 +1,2 @@
 DIST aws-c-event-stream-0.1.6.tar.gz 26952 BLAKE2B 
0edebb4c290d7e33d06dcba64a339bb3f4c60aa8b9455d8d519b41c7cab7eae3ac80e3545219ce87174de8ca47be4c4cd88d7cf21deff87a10f4d121ca66d3bb
 SHA512 
2eca4176d9429de2741e9650f84b726a9979842e729fd0d900c1265ff89886dd7e12f72b61fc3af7c3282ec9357b8f6290c92713cef68e474150c947a5773421
+DIST aws-c-event-stream-0.2.5.tar.gz 61949 BLAKE2B 
baebd87a916fb8440db56afa2b97bd02229d70e00b55c40a17a2f467ad683422a6c6747aa698adce5272a03ced3fe6957d8cc62040d8080d3ed95409d8182851
 SHA512 
1421d608d8a5cfa5ec5df3bd905aab9ce9abc913461569a99b895c8415e50305aca0be3595bd4f3ed74cb52cc0e342354d211531066fdde60e14dd60e5629239

diff --git a/dev-libs/aws-c-event-stream/aws-c-event-stream-0.2.5.ebuild 
b/dev-libs/aws-c-event-stream/aws-c-event-stream-0.2.5.ebuild
new file mode 100644
index 000..b18b4fb8243
--- /dev/null
+++ b/dev-libs/aws-c-event-stream/aws-c-event-stream-0.2.5.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="C99 implementation of the vnd.amazon.eventstream content-type"
+HOMEPAGE="https://github.com/awslabs/aws-c-event-stream;
+SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs test"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   || ( dev-util/cmake-3.19.1 )
+"
+
+DEPEND="
+   >=dev-libs/aws-c-common-0.4.62:=[static-libs=]
+   >=dev-libs/aws-checksums-0.1.10:=[static-libs=]
+"
+
+PATCHES=(
+   "${FILESDIR}"/0.1.3-add_missing_cmake_install_prefix.patch
+)
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=$(usex !static-libs)
+   -DBUILD_TESTING=$(usex test)
+   )
+   cmake_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-event-stream/

2020-12-13 Thread Joonas Niilola
commit: f51480c28800e5b435792a05f477a34fecb131ea
Author: Sven Eden  prydeworx  com>
AuthorDate: Tue Dec  8 09:25:02 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:50:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f51480c2

dev-libs/aws-c-event-stream: remove obsolete ebuild

Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Sven Eden  prydeworx.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/aws-c-event-stream/Manifest   |  1 -
 .../aws-c-event-stream-0.1.6-r1.ebuild | 34 --
 2 files changed, 35 deletions(-)

diff --git a/dev-libs/aws-c-event-stream/Manifest 
b/dev-libs/aws-c-event-stream/Manifest
index cf7ed9a7caf..26068293074 100644
--- a/dev-libs/aws-c-event-stream/Manifest
+++ b/dev-libs/aws-c-event-stream/Manifest
@@ -1,2 +1 @@
-DIST aws-c-event-stream-0.1.6.tar.gz 26952 BLAKE2B 
0edebb4c290d7e33d06dcba64a339bb3f4c60aa8b9455d8d519b41c7cab7eae3ac80e3545219ce87174de8ca47be4c4cd88d7cf21deff87a10f4d121ca66d3bb
 SHA512 
2eca4176d9429de2741e9650f84b726a9979842e729fd0d900c1265ff89886dd7e12f72b61fc3af7c3282ec9357b8f6290c92713cef68e474150c947a5773421
 DIST aws-c-event-stream-0.2.5.tar.gz 61949 BLAKE2B 
baebd87a916fb8440db56afa2b97bd02229d70e00b55c40a17a2f467ad683422a6c6747aa698adce5272a03ced3fe6957d8cc62040d8080d3ed95409d8182851
 SHA512 
1421d608d8a5cfa5ec5df3bd905aab9ce9abc913461569a99b895c8415e50305aca0be3595bd4f3ed74cb52cc0e342354d211531066fdde60e14dd60e5629239

diff --git a/dev-libs/aws-c-event-stream/aws-c-event-stream-0.1.6-r1.ebuild 
b/dev-libs/aws-c-event-stream/aws-c-event-stream-0.1.6-r1.ebuild
deleted file mode 100644
index 9c59ceb1a5e..000
--- a/dev-libs/aws-c-event-stream/aws-c-event-stream-0.1.6-r1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="C99 implementation of the vnd.amazon.eventstream content-type"
-HOMEPAGE="https://github.com/awslabs/aws-c-event-stream;
-SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs test"
-
-RESTRICT="!test? ( test )"
-
-DEPEND="
-   >=dev-libs/aws-c-common-0.4.26:=[static-libs=]
-   >=dev-libs/aws-checksums-0.1.9:=[static-libs=]
-"
-
-PATCHES=(
-   "${FILESDIR}"/0.1.3-add_missing_cmake_install_prefix.patch
-)
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_SHARED_LIBS=$(usex !static-libs)
-   -DBUILD_TESTING=$(usex test)
-   )
-   cmake_src_configure
-}



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

2020-12-13 Thread Joonas Niilola
commit: 755c8b4d492f05a40213e9d0ec5d6286903fddbd
Author: Sven Eden  prydeworx  com>
AuthorDate: Tue Dec  8 08:01:51 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:50:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=755c8b4d

dev-libs/aws-checksums: remove obsolete ebuild

Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Sven Eden  prydeworx.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/aws-checksums/Manifest|  1 -
 .../aws-checksums/aws-checksums-0.1.9-r1.ebuild| 33 --
 2 files changed, 34 deletions(-)

diff --git a/dev-libs/aws-checksums/Manifest b/dev-libs/aws-checksums/Manifest
index 76ff7761529..aeb6ae36ca4 100644
--- a/dev-libs/aws-checksums/Manifest
+++ b/dev-libs/aws-checksums/Manifest
@@ -1,2 +1 @@
 DIST aws-checksums-0.1.10.tar.gz 70961 BLAKE2B 
ef0644b8b6f81ca743955170940b9e152bf6b48d8146ea0ebe11b37eac607fe6544a826d9a14b273575837c842a3e539e4829571df1c4fa61bf9008e44872e8c
 SHA512 
a76eb274f668189cb303f7010311e51551b224d19bf54bb152c3d9346ab837c33300fc6c1e9c35b04922101817cca8b3ea7968f6cdecf1166e7933bf0348edb6
-DIST aws-checksums-0.1.9.tar.gz 70967 BLAKE2B 
2be344e9757236400879de2f946e7d7a41106c9544c1eefda0150bee3e483b909719d4612f4a8bbef1df01a8f5f887332f06e99aa0867f9d0f9b92f76c8badeb
 SHA512 
16d8f1624d4a60c6a285c6212d2cc1bdf081fec4be5034095b89040543a0ccec6a2f22d9bacf156c781e0e06e80935e13f39c3643a77c2186b58211da4ca1207

diff --git a/dev-libs/aws-checksums/aws-checksums-0.1.9-r1.ebuild 
b/dev-libs/aws-checksums/aws-checksums-0.1.9-r1.ebuild
deleted file mode 100644
index bda76dac92c..000
--- a/dev-libs/aws-checksums/aws-checksums-0.1.9-r1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="Cross-Platform HW accelerated CRC32c and CRC32 with software 
fallbacks"
-HOMEPAGE="https://github.com/awslabs/aws-checksums;
-SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs test"
-
-RESTRICT="!test? ( test )"
-
-DEPEND="
-   >=dev-libs/aws-c-common-0.4.26:=[static-libs=]
-"
-
-PATCHES=(
-   "${FILESDIR}/${P}-cmake-prefix.patch"
-)
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_SHARED_LIBS=$(usex !static-libs)
-   -DBUILD_TESTING=$(usex test)
-   )
-   cmake_src_configure
-}



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

2020-12-13 Thread Joonas Niilola
commit: f0699a9cb4abb40fa01039e428b4e6e821445103
Author: Sven Eden  prydeworx  com>
AuthorDate: Tue Dec  8 08:00:40 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:50:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0699a9c

dev-libs/aws-checksums: Version 0.1.10 Bump

* Raise dependency of dev-libs/aws-c-common to at least 0.4.62
* Also block dev-util/cmake-3.19.0 and dev-util/cmake-3.19.1, which
  introduced a regression causing configure phase to fail. [0]

[0] https://gitlab.kitware.com/cmake/cmake/-/issues/21529

Bug: https://bugs.gentoo.org/755932
Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Sven Eden  prydeworx.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/aws-checksums/Manifest|  1 +
 dev-libs/aws-checksums/aws-checksums-0.1.10.ebuild | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/dev-libs/aws-checksums/Manifest b/dev-libs/aws-checksums/Manifest
index 5ae05de0ed8..76ff7761529 100644
--- a/dev-libs/aws-checksums/Manifest
+++ b/dev-libs/aws-checksums/Manifest
@@ -1 +1,2 @@
+DIST aws-checksums-0.1.10.tar.gz 70961 BLAKE2B 
ef0644b8b6f81ca743955170940b9e152bf6b48d8146ea0ebe11b37eac607fe6544a826d9a14b273575837c842a3e539e4829571df1c4fa61bf9008e44872e8c
 SHA512 
a76eb274f668189cb303f7010311e51551b224d19bf54bb152c3d9346ab837c33300fc6c1e9c35b04922101817cca8b3ea7968f6cdecf1166e7933bf0348edb6
 DIST aws-checksums-0.1.9.tar.gz 70967 BLAKE2B 
2be344e9757236400879de2f946e7d7a41106c9544c1eefda0150bee3e483b909719d4612f4a8bbef1df01a8f5f887332f06e99aa0867f9d0f9b92f76c8badeb
 SHA512 
16d8f1624d4a60c6a285c6212d2cc1bdf081fec4be5034095b89040543a0ccec6a2f22d9bacf156c781e0e06e80935e13f39c3643a77c2186b58211da4ca1207

diff --git a/dev-libs/aws-checksums/aws-checksums-0.1.10.ebuild 
b/dev-libs/aws-checksums/aws-checksums-0.1.10.ebuild
new file mode 100644
index 000..b9a98bfc891
--- /dev/null
+++ b/dev-libs/aws-checksums/aws-checksums-0.1.10.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Cross-Platform HW accelerated CRC32c and CRC32 with software 
fallbacks"
+HOMEPAGE="https://github.com/awslabs/aws-checksums;
+SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs test"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   || ( dev-util/cmake-3.19.1 )
+"
+
+DEPEND="
+   >=dev-libs/aws-c-common-0.4.62:=[static-libs=]
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-0.1.9-cmake-prefix.patch"
+)
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=$(usex !static-libs)
+   -DBUILD_TESTING=$(usex test)
+   )
+   cmake_src_configure
+}



[gentoo-commits] proj/kde:master commit in: app-office/calligra/

2020-12-13 Thread Andreas Sturmlechner
commit: 95ff08b3b6ab347079792bd7d33b1595fa94bd0c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec 13 10:51:38 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec 13 10:51:54 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=95ff08b3

app-office/calligra: Drop unused cmake var

Upstream porting away from KF5Html.

Upstream commit abf0753cd899515740bbdcaadb8e9c76309d5df4

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-office/calligra/calligra-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app-office/calligra/calligra-.ebuild 
b/app-office/calligra/calligra-.ebuild
index f0b4971a45..a40aa8d72b 100644
--- a/app-office/calligra/calligra-.ebuild
+++ b/app-office/calligra/calligra-.ebuild
@@ -153,7 +153,6 @@ src_configure() {
-DRELEASE_BUILD=ON
-DWITH_Iconv=ON
-DCMAKE_DISABLE_FIND_PACKAGE_KF5CalendarCore=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_KF5KHtml=ON
-DPRODUCTSET="${myproducts[*]}"
$(cmake_use_find_package activities KF5Activities)
$(cmake_use_find_package charts KChart)



[gentoo-commits] proj/kde:master commit in: app-office/libalkimia/

2020-12-13 Thread Andreas Sturmlechner
commit: 95fe8c6899d672ffb459ba62c4f84fba5255baf8
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec 13 10:44:51 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec 13 10:44:51 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=95fe8c68

app-office/libalkimia: Re-add  git master

Ahead of 8.0 branch again and even ported away from KDE4 support.

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-office/libalkimia/libalkimia-8..ebuild | 4 +++-
 .../{libalkimia-8..ebuild => libalkimia-.ebuild}   | 7 ---
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/app-office/libalkimia/libalkimia-8..ebuild 
b/app-office/libalkimia/libalkimia-8..ebuild
index 14097a4b57..35b0842263 100644
--- a/app-office/libalkimia/libalkimia-8..ebuild
+++ b/app-office/libalkimia/libalkimia-8..ebuild
@@ -34,8 +34,8 @@ DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
>=dev-qt/qtnetwork-${QTMIN}:5
>=dev-qt/qtwidgets-${QTMIN}:5
-   >=kde-frameworks/kcompletion-${KFMIN}:5
>=kde-frameworks/kcodecs-${KFMIN}:5
+   >=kde-frameworks/kcompletion-${KFMIN}:5
>=kde-frameworks/kconfig-${KFMIN}:5
>=kde-frameworks/kcoreaddons-${KFMIN}:5
>=kde-frameworks/kdelibs4support-${KFMIN}:5
@@ -59,6 +59,8 @@ PATCHES=( "${FILESDIR}/${PN}-8.0.3-cmake.patch" )
 
 src_configure() {
local mycmakeargs=(
+   -DENABLE_FINANCEQUOTE=OFF
+   -DBUILD_TOOLS=ON
-DBUILD_WITH_WEBKIT=OFF
-DBUILD_DOXYGEN_DOCS=$(usex doc)
$(cmake_use_find_package !gmp MPIR)

diff --git a/app-office/libalkimia/libalkimia-8..ebuild 
b/app-office/libalkimia/libalkimia-.ebuild
similarity index 95%
copy from app-office/libalkimia/libalkimia-8..ebuild
copy to app-office/libalkimia/libalkimia-.ebuild
index 14097a4b57..6942d3032c 100644
--- a/app-office/libalkimia/libalkimia-8..ebuild
+++ b/app-office/libalkimia/libalkimia-.ebuild
@@ -3,7 +3,6 @@
 
 EAPI=7
 
-EGIT_BRANCH="8.0"
 ECM_TEST="forceoptional"
 KDE_ORG_NAME="alkimia"
 KFMIN=5.74.0
@@ -34,13 +33,13 @@ DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
>=dev-qt/qtnetwork-${QTMIN}:5
>=dev-qt/qtwidgets-${QTMIN}:5
-   >=kde-frameworks/kcompletion-${KFMIN}:5
>=kde-frameworks/kcodecs-${KFMIN}:5
+   >=kde-frameworks/kcompletion-${KFMIN}:5
>=kde-frameworks/kconfig-${KFMIN}:5
>=kde-frameworks/kcoreaddons-${KFMIN}:5
-   >=kde-frameworks/kdelibs4support-${KFMIN}:5
>=kde-frameworks/ki18n-${KFMIN}:5
>=kde-frameworks/kiconthemes-${KFMIN}:5
+   >=kde-frameworks/kio-${KFMIN}:5
>=kde-frameworks/knewstuff-${KFMIN}:5
>=kde-frameworks/ktextwidgets-${KFMIN}:5
>=kde-frameworks/kwidgetsaddons-${KFMIN}:5
@@ -59,6 +58,8 @@ PATCHES=( "${FILESDIR}/${PN}-8.0.3-cmake.patch" )
 
 src_configure() {
local mycmakeargs=(
+   -DENABLE_FINANCEQUOTE=OFF
+   -DBUILD_TOOLS=ON
-DBUILD_WITH_WEBKIT=OFF
-DBUILD_DOXYGEN_DOCS=$(usex doc)
$(cmake_use_find_package !gmp MPIR)



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

2020-12-13 Thread Joonas Niilola
commit: 0b4171655437ff84b5b03a5763a42a764578cd4b
Author: David Zero  zer0-one  net>
AuthorDate: Sun Dec  6 09:25:50 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:44:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b417165

dev-libs/jansson: remove dependency on sphinx < 3.0

This revision removes the dependency on sphinx < 3.0 .

Closes: https://bugs.gentoo.org/731668
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: David Zero  zer0-one.net>
Closes: https://github.com/gentoo/gentoo/pull/18528
Signed-off-by: Joonas Niilola  gentoo.org>

 .../jansson/files/jansson-2.13.1-sphinx3.patch | 269 +
 dev-libs/jansson/jansson-2.13.1-r1.ebuild  |  41 
 2 files changed, 310 insertions(+)

diff --git a/dev-libs/jansson/files/jansson-2.13.1-sphinx3.patch 
b/dev-libs/jansson/files/jansson-2.13.1-sphinx3.patch
new file mode 100644
index 000..e611896e9c4
--- /dev/null
+++ b/dev-libs/jansson/files/jansson-2.13.1-sphinx3.patch
@@ -0,0 +1,269 @@
+Rebase pull request #543 onto v2.13.1
+
+Allows jansson documentation to compile with Sphinx-3.0
+
+Squashed commit messages below:
+
+
+pick 798d40c doc: convert refcounting directive to a class
+
+Directive functions are no longer supported in Sphinx-3.0
+but directive classes have been supported since early 1.x
+
+
+pick 9431889 doc: do not use references for standard C types or file names
+
+Use double-backtick quoting instead. It has the same effect
+(because these links had nowhere to link to) but it does not
+result in loud warnings about broken references by default with Sphinx-3.x.
+
+
+pick c329fd7 doc: add return types for function-like macros
+
+The Sphinx-3.0 c:function:: directive requires the return type.
+
+Sphinx-3.0 also adds function-like macro support to the c:macro::
+directive, which Sphinx-1.x and Sphinx-2.x do not support, but it
+is probably a good idea to keep compatibility with slightly older
+Sphinx for now.
+
+diff --git a/CHANGES b/CHANGES
+index a374a86..256fde1 100644
+--- a/CHANGES
 b/CHANGES
+@@ -8,7 +8,7 @@ Released 2020-05-07
+   - Include `jansson_version_str()` and `jansson_version_cmp()` in
+ shared library. (#534)
+ 
+-  - Include `scripts/` in tarball. (#535)
++  - Include ``scripts/`` in tarball. (#535)
+ 
+ 
+ Version 2.13
+@@ -127,7 +127,7 @@ Released 2018-02-09
+ 
+   - Work around gcc's -Wimplicit-fallthrough.
+ 
+-  - Fix CMake detection of `sys/types.h` header (#375).
++  - Fix CMake detection of ``sys/types.h`` header (#375).
+ 
+   - Fix `jansson.pc` generated by CMake to be more consistent with the one
+ generated using GNU Autotools (#368).
+diff --git a/doc/apiref.rst b/doc/apiref.rst
+index c3a814f..94c5726 100644
+--- a/doc/apiref.rst
 b/doc/apiref.rst
+@@ -145,33 +145,33 @@ Type
+ .. function:: int json_typeof(const json_t *json)
+ 
+Return the type of the JSON value (a :type:`json_type` cast to
+-   :type:`int`). *json* MUST NOT be *NULL*. This function is actually
++   ``int``). *json* MUST NOT be *NULL*. This function is actually
+implemented as a macro for speed.
+ 
+-.. function:: json_is_object(const json_t *json)
+-   json_is_array(const json_t *json)
+-   json_is_string(const json_t *json)
+-   json_is_integer(const json_t *json)
+-   json_is_real(const json_t *json)
+-   json_is_true(const json_t *json)
+-   json_is_false(const json_t *json)
+-   json_is_null(const json_t *json)
++.. function:: int json_is_object(const json_t *json)
++  int json_is_array(const json_t *json)
++  int json_is_string(const json_t *json)
++  int json_is_integer(const json_t *json)
++  int json_is_real(const json_t *json)
++  int json_is_true(const json_t *json)
++  int json_is_false(const json_t *json)
++  int json_is_null(const json_t *json)
+ 
+These functions (actually macros) return true (non-zero) for values
+of the given type, and false (zero) for values of other types and
+for *NULL*.
+ 
+-.. function:: json_is_number(const json_t *json)
++.. function:: int json_is_number(const json_t *json)
+ 
+Returns true for values of types ``JSON_INTEGER`` and
+``JSON_REAL``, and false for other types and for *NULL*.
+ 
+-.. function:: json_is_boolean(const json_t *json)
++.. function:: int json_is_boolean(const json_t *json)
+ 
+Returns true for types ``JSON_TRUE`` and ``JSON_FALSE``, and false
+for values of other types and for *NULL*.
+ 
+-.. function:: json_boolean_value(const json_t *json)
++.. function:: int json_boolean_value(const json_t *json)
+ 
+Alias of :func:`json_is_true()`, i.e. returns 1 for ``JSON_TRUE``
+and 0 otherwise.
+@@ -594,7 +594,7 @@ A JSON array is an ordered collection of other JSON values.
+Appends all elements in *other_array* to the end of *array*.
+Returns 0 

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

2020-12-13 Thread Joonas Niilola
commit: e6f026bca41860d38f36d1687d0ffaca77f1f8cc
Author: William Pettersson  ewpettersson  se>
AuthorDate: Thu Dec 10 00:25:36 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:44:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6f026bc

dev-python/pybtex: Drop old version

Note that we can't drop the patch in the files/ directory, as newer
version still use the same patch.

Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: William Pettersson  ewpettersson.se>
Closes: https://github.com/gentoo/gentoo/pull/18482
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pybtex/Manifest |  1 -
 dev-python/pybtex/pybtex-0.22.2.ebuild | 30 --
 2 files changed, 31 deletions(-)

diff --git a/dev-python/pybtex/Manifest b/dev-python/pybtex/Manifest
index 4ca0d8c0cf5..73dd4e917c6 100644
--- a/dev-python/pybtex/Manifest
+++ b/dev-python/pybtex/Manifest
@@ -1,2 +1 @@
-DIST pybtex-0.22.2.tar.gz 363094 BLAKE2B 
6e59543a1178f2d3528c8b65b63afd720864fb8f31172e3fa76a36bee3d5dd9f32aa6226fa0a599af0a4705d3c37060417f6e902ec7b900efcc8a6f8487c31e1
 SHA512 
afabae8c47008651fa9c4c6546bf87f4a2c74d3184f1d0c1b4c2bd68ad8110ea37054026b5934312b86d97354a592bae5c0b6d384003b4e56f0157f6520b77a1
 DIST pybtex-0.23.0.tar.gz 400649 BLAKE2B 
ae841eb98588fea55dea59a90be4ea5489b115b5594aa2ba7da140d529371c9275d28896d2b3b1d7fdbfe6a4bc7f1a99a8a73505f5d141f7affc0f22e5b08ceb
 SHA512 
11b4c8141f237a25c320726b18fb254df077f4b644ac26fa2bf9f3d85c4301ab839f3544a3c1849243e75bbcbf194b25642b0ef11d354e3711578a4e19565bde

diff --git a/dev-python/pybtex/pybtex-0.22.2.ebuild 
b/dev-python/pybtex/pybtex-0.22.2.ebuild
deleted file mode 100644
index 5359af38446..000
--- a/dev-python/pybtex/pybtex-0.22.2.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="BibTeX-compatible bibliography processor"
-HOMEPAGE="https://pybtex.org https://pypi.org/project/pybtex/;
-SRC_URI="https://files.pythonhosted.org/packages/source/p/${PN}/${P}.tar.gz;
-PATCHES=( "${FILESDIR}/${P}-fix-test-installation.patch" )
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="dev-python/latexcodec[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]"
-
-BDEPEND="test?  (
-   dev-python/nose[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests pytest



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

2020-12-13 Thread Joonas Niilola
commit: 4f3391d1bec91ca92e046f094568381562a14005
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Dec 13 09:34:54 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:44:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f3391d1

dev-python/pybtex: fix 0.23.0 to default skel format

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

 dev-python/pybtex/pybtex-0.23.0.ebuild | 16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/dev-python/pybtex/pybtex-0.23.0.ebuild 
b/dev-python/pybtex/pybtex-0.23.0.ebuild
index b2897d9c658..5c9b636aeed 100644
--- a/dev-python/pybtex/pybtex-0.23.0.ebuild
+++ b/dev-python/pybtex/pybtex-0.23.0.ebuild
@@ -11,20 +11,22 @@ inherit distutils-r1
 DESCRIPTION="BibTeX-compatible bibliography processor"
 HOMEPAGE="https://pybtex.org https://pypi.org/project/pybtex/;
 SRC_URI="https://files.pythonhosted.org/packages/source/p/${PN}/${P}.tar.gz;
-PATCHES=( "${FILESDIR}/${PN}-0.22.2-fix-test-installation.patch" )
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RESTRICT="!test? ( test )"
 
 RDEPEND="dev-python/latexcodec[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]"
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]"
 
 BDEPEND="test?  (
-   dev-python/nose[${PYTHON_USEDEP}]
-   )"
+   dev-python/nose[${PYTHON_USEDEP}]
+   )"
 
 distutils_enable_tests pytest
+
+PATCHES=( "${FILESDIR}/${PN}-0.22.2-fix-test-installation.patch" )



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

2020-12-13 Thread Joonas Niilola
commit: 998ea05677d8fcc151cd33fc491e7513e06cd02f
Author: Oz N Tiram  gmail  com>
AuthorDate: Wed Dec  9 20:59:22 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:44:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=998ea056

dev-python/pipenv: bump to version 2020.11.15

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Oz Tiram  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18458
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pipenv/Manifest |  1 +
 dev-python/pipenv/pipenv-2020.11.15.ebuild | 52 ++
 2 files changed, 53 insertions(+)

diff --git a/dev-python/pipenv/Manifest b/dev-python/pipenv/Manifest
index f8d9b27c9b4..f9c16b0765f 100644
--- a/dev-python/pipenv/Manifest
+++ b/dev-python/pipenv/Manifest
@@ -1 +1,2 @@
+DIST pipenv-2020.11.15.tar.gz 11603983 BLAKE2B 
552c35c942f9ece0f52419b6090b87c7dce0c49dd9dc12f8c5b3eb311058fc770ec9e2b141e960d357064c66c6de7cd0892d2dd19868e5cdaee0f302f98fb0ff
 SHA512 
d312059b3fefc97d4cd79bf2b75d6bde1d117d92c0a299c30181a60ebea662a6c3dff0ca7b92c610dd8eb0c873509dd23c9a891761d0d47d0bba2cab738c830d
 DIST pipenv-2020.11.4.tar.gz 11574683 BLAKE2B 
cb2ac4ba6b07377a3a5540b23756afac38a02691e495ba93031815417d001701b919221fd83d0f9e6b94d4f28c1fa754c2c31e289830305a8c8ac75d847209c4
 SHA512 
c9015eb9a449fa517f31619d1fec5d99882da915a50e189ba6ab9c7c147862f9734f0df200330d666380afe5d2cf52d18015c539635ca6459042ab50d3ccd059

diff --git a/dev-python/pipenv/pipenv-2020.11.15.ebuild 
b/dev-python/pipenv/pipenv-2020.11.15.ebuild
new file mode 100644
index 000..eade778d1d8
--- /dev/null
+++ b/dev-python/pipenv/pipenv-2020.11.15.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_6 python3_7 python3_8 )
+
+inherit distutils-r1
+
+MY_PV=${PV/_beta/b}
+DESCRIPTION="Python Development Workflow for Humans"
+HOMEPAGE="https://github.com/pypa/pipenv https://pypi.org/project/pipenv/;
+SRC_URI="https://github.com/pypa/pipenv/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}"/${PN}-${MY_PV}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   ${PYTHON_DEPS}
+   dev-python/certifi[${PYTHON_USEDEP}]
+   dev-python/pip[${PYTHON_USEDEP}]
+   >=dev-python/virtualenv-20.0.35[${PYTHON_USEDEP}]
+   dev-python/virtualenv-clone[${PYTHON_USEDEP}]
+   "
+
+BDEPEND="
+   ${RDEPEND}
+   test? (
+   dev-python/flaky[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   )"
+
+src_prepare() {
+   # remove vendored version of PyYAML that is backported to Python2
+   # this should be removed when upstream removes support for Python2
+   rm -vR "${S}/${PN}/patched/yaml2/" || die
+   # disable running of unittests in parallel with xdist
+   sed -i 's/addopts = -ra -n auto/;&/g' setup.cfg || die
+   sed -i 's/plugins = xdist/;&/g' setup.cfg || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   pytest -vvv -x -m "not cli and not needs_internet" tests/unit/ || die
+}



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

2020-12-13 Thread Joonas Niilola
commit: b5f7234ed4fc8f33f9a4837d1ad842276722df90
Author: William Pettersson  ewpettersson  se>
AuthorDate: Thu Dec 10 00:24:19 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:44:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5f7234e

dev-python/pybtex: Bump to version 0.23.0

Still needs the patch from 0.22.2 to not install a package called tests

Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: William Pettersson  ewpettersson.se>
Signed-off-by: Joonas Niilola  gentoo.org>

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

diff --git a/dev-python/pybtex/Manifest b/dev-python/pybtex/Manifest
index 86356b0acb5..4ca0d8c0cf5 100644
--- a/dev-python/pybtex/Manifest
+++ b/dev-python/pybtex/Manifest
@@ -1 +1,2 @@
 DIST pybtex-0.22.2.tar.gz 363094 BLAKE2B 
6e59543a1178f2d3528c8b65b63afd720864fb8f31172e3fa76a36bee3d5dd9f32aa6226fa0a599af0a4705d3c37060417f6e902ec7b900efcc8a6f8487c31e1
 SHA512 
afabae8c47008651fa9c4c6546bf87f4a2c74d3184f1d0c1b4c2bd68ad8110ea37054026b5934312b86d97354a592bae5c0b6d384003b4e56f0157f6520b77a1
+DIST pybtex-0.23.0.tar.gz 400649 BLAKE2B 
ae841eb98588fea55dea59a90be4ea5489b115b5594aa2ba7da140d529371c9275d28896d2b3b1d7fdbfe6a4bc7f1a99a8a73505f5d141f7affc0f22e5b08ceb
 SHA512 
11b4c8141f237a25c320726b18fb254df077f4b644ac26fa2bf9f3d85c4301ab839f3544a3c1849243e75bbcbf194b25642b0ef11d354e3711578a4e19565bde

diff --git a/dev-python/pybtex/pybtex-0.23.0.ebuild 
b/dev-python/pybtex/pybtex-0.23.0.ebuild
new file mode 100644
index 000..b2897d9c658
--- /dev/null
+++ b/dev-python/pybtex/pybtex-0.23.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="BibTeX-compatible bibliography processor"
+HOMEPAGE="https://pybtex.org https://pypi.org/project/pybtex/;
+SRC_URI="https://files.pythonhosted.org/packages/source/p/${PN}/${P}.tar.gz;
+PATCHES=( "${FILESDIR}/${PN}-0.22.2-fix-test-installation.patch" )
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-python/latexcodec[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]"
+
+BDEPEND="test?  (
+   dev-python/nose[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests pytest



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

2020-12-13 Thread Joonas Niilola
commit: 2f3bef79c2b8ac69680431eb8b36b8584ba8eb06
Author: Maciej Barć  protonmail  com>
AuthorDate: Sat Dec 12 22:31:20 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:44:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f3bef79

net-misc/gallery-dl: bump to 1.16.0

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Maciej Barć  protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18629
Signed-off-by: Joonas Niilola  gentoo.org>

 net-misc/gallery-dl/Manifest |  1 +
 net-misc/gallery-dl/gallery-dl-1.16.0.ebuild | 45 
 2 files changed, 46 insertions(+)

diff --git a/net-misc/gallery-dl/Manifest b/net-misc/gallery-dl/Manifest
index abb92a5e3ee..28ec6a69300 100644
--- a/net-misc/gallery-dl/Manifest
+++ b/net-misc/gallery-dl/Manifest
@@ -1,2 +1,3 @@
 DIST gallery-dl-1.15.2.tar.gz 323739 BLAKE2B 
99a06331bd7dc6ec951749129ad0ac797d9ce2d9f98e75a29198fd47d0481c43b96922ea08149abfe990e8994a19b3170853618de9b51465264d100dba777f32
 SHA512 
7f31c0485d9de6eaf76e7b0772e66049f9aa8fd7d77d3ef6fd2803d7ec7dddbf3419051c9d8b3984eb86a8fbbf9a168cf8ec69a55082a38e2ca23cfc3574b1f4
 DIST gallery-dl-1.15.3.tar.gz 325926 BLAKE2B 
9ae31ba89a60460cd041fe9f353d4a7d1dab14fe63a8967f1a94f8d0ea42ef30032e5f734cbb370f5ac681f9274ba756a156acc7bd11ca4b5aad387fdc6be76f
 SHA512 
618dc26ba74274c961cce1ef058fce3e12741366329ce50d09421245987a88a796be3f1a31926e8b2c33cc87cddcde3585f74f4f1a80347153c2a7a9cab7e3c0
+DIST gallery-dl-1.16.0.tar.gz 327915 BLAKE2B 
8d7805219f900ab66afc400a56b279a18ebb78c47a531b380af2d1578c338f84575f1fb5a006a5e1bb0684349d595550dc89177493890001e38077edd34e00b5
 SHA512 
84cd8ab4b3e4a63f912e36454e6f35adb9f9c395002d04391c4093d4efe62ff24eda3755f0ce77b4d4b7ce11ccfb2acb972cd5144ea84b00d61e370f5de7

diff --git a/net-misc/gallery-dl/gallery-dl-1.16.0.ebuild 
b/net-misc/gallery-dl/gallery-dl-1.16.0.ebuild
new file mode 100644
index 000..458d0edf5ed
--- /dev/null
+++ b/net-misc/gallery-dl/gallery-dl-1.16.0.ebuild
@@ -0,0 +1,45 @@
+# 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="sqlite,ssl,xml"
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Download image galleries and collections from several image 
hosting sites"
+HOMEPAGE="https://github.com/mikf/gallery-dl;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/mikf/${PN}.git;
+else
+   SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64"
+fi
+
+# tests require network access
+RESTRICT="test"
+LICENSE="GPL-2"
+SLOT="0"
+
+RDEPEND=">=dev-python/requests-2.11.0[${PYTHON_USEDEP}]"
+
+distutils_enable_tests setup.py
+
+src_compile() {
+   emake data/completion/gallery-dl
+   emake data/completion/_gallery-dl
+   emake man
+   distutils-r1_src_compile
+}
+
+pkg_postinst() {
+   elog "To get additional features, some optional runtime dependencies"
+   elog "may be installed:"
+   elog ""
+   optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
+   optfeature "video downloads" net-misc/youtube-dl
+}



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

2020-12-13 Thread Joonas Niilola
commit: 69d63d6c56fce521d8c30b51eb5f8c1eb2481e2d
Author: John Helmert III  posteo  net>
AuthorDate: Mon Dec  7 05:51:35 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:44:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69d63d6c

x11-misc/polybar: add 3.5.1

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

 x11-misc/polybar/Manifest |  3 ++
 x11-misc/polybar/polybar-3.5.1.ebuild | 67 +++
 2 files changed, 70 insertions(+)

diff --git a/x11-misc/polybar/Manifest b/x11-misc/polybar/Manifest
index 7b96c9ac8b8..f69e60c0559 100644
--- a/x11-misc/polybar/Manifest
+++ b/x11-misc/polybar/Manifest
@@ -1,3 +1,6 @@
 DIST i3ipcpp-21ce9060ac7c502225fdbd2f200b1cbdd8eca08d.tar.gz 191599 BLAKE2B 
85488a6c2ab9c6f653b499ceaa6d8e803dd8b32cd701a7fbbe151f7f3ea2dc30555c520ded53f023a21b119be97c2b07ae1ab413479cfde677e2073f3d48e36b
 SHA512 
ba136bd531899ce9e87d458bd6f7d16f45509def37e4fd7aafc16d0e122fe5f56d0eb9dbc3e722dbb6c9812913a7aafa4b749a9c727ab0988908b1e2a425
+DIST i3ipcpp-cb008b30fc5f3febfe467884cb0211ee3c16386b.tar.gz 43681 BLAKE2B 
a17c9764f429edd4a65d173ff43c139083a8831d9ee68d3024c033f039409efd486178a6225d06e3313642a9918298b1b60da1da75d49243973f8e2dd1fc855f
 SHA512 
27a90d80f2de45743c2347be5ec5c88db58c4f3bb2aa44093c2a1e3178bfd5761ec806bdec9c6b6a4de6d1e67d5f14d4518e99611bf7e2984cfc880898357133
 DIST polybar-3.4.3.tar.gz 253207 BLAKE2B 
213b5ea67cc337c47f62afcdce9cacf66516e6f410d2d93570567cddf9f0f5b93764f16e3eaf7c03c56a5ddad62ade92bd83fcfe30c6b91d067c2343f7264342
 SHA512 
20ac34375da4634a7fd596f38e98a245186c94f8fd624d1dfdcd6633a3c8470fcc57946a50a59177e9d34689aeb5f6cde49e95b30ad699239a2aabbf0635d31a
+DIST polybar-3.5.1.tar.gz 282038 BLAKE2B 
2b252c3bea296581160af74412485a6a19201c1aef688c496294823380503574e8b912be4b9eb822214b6a696954ccfc3e3ca29303f751bfa6640988593a
 SHA512 
835decbdfcf398d6920d871beace2aa3883977bec89c7d87f3bd650d05ef267cfa17d1df7fd79bcf685c79ea0c5c9d1d46c4ab32cffbfd85d44a273f0ae8b906
+DIST xpp-044e69d05db7f89339bda1ccd1efe0263b01c8f6.tar.gz 84121 BLAKE2B 
dea2384773803bbc5de2ec971ed0cf769b0af8b987bbcf918718647e4787b4713af54a358c029e9603c28c5424488731f76ecc430b6b124bcd9255aef893431f
 SHA512 
646e159d47d6dac8f08a27a1cb54e2ef48e42cff952b55b3906c2021c424e015c070a31a7a1e70b62e0edc7a8b42b935a23b9a922eaab138d3f6929bc1fdb8d4
 DIST xpp-8c019e6d7fefd2468791bc1cbf90d68ff7c1ba33.tar.gz 83974 BLAKE2B 
6ea8599136288c006b6993bd6c704ec32d82773153733b4bc6a9c3f326eaf6f3b155d92f270eeb14d57b399f7b5ea0f6bdd5cee41bb5bdf4c1650f337b77f857
 SHA512 
92874b25305b3be777e739122ff82f1ba16b8e2e445e8ee4891918074ea8ea371f2016d7901cfc477d0286a9e15910c4cee431a11eb71e32728bfbf561313e4f

diff --git a/x11-misc/polybar/polybar-3.5.1.ebuild 
b/x11-misc/polybar/polybar-3.5.1.ebuild
new file mode 100644
index 000..876307caf15
--- /dev/null
+++ b/x11-misc/polybar/polybar-3.5.1.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8,9} )
+XPP_COMMIT="044e69d05db7f89339bda1ccd1efe0263b01c8f6"
+I3IPCPP_COMMIT="cb008b30fc5f3febfe467884cb0211ee3c16386b"
+
+inherit cmake python-single-r1
+
+DESCRIPTION="A fast and easy-to-use tool for creating status bars"
+HOMEPAGE="https://github.com/polybar/polybar;
+SRC_URI="https://github.com/polybar/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
+   https://github.com/polybar/xpp/archive/${XPP_COMMIT}.tar.gz -> 
xpp-${XPP_COMMIT}.tar.gz
+   https://github.com/polybar/i3ipcpp/archive/${I3IPCPP_COMMIT}.tar.gz -> 
i3ipcpp-${I3IPCPP_COMMIT}.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="MIT"
+SLOT="0"
+IUSE="alsa curl i3wm ipc mpd network pulseaudio"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="
+   ${PYTHON_DEPS}
+   $(python_gen_cond_dep 'x11-base/xcb-proto[${PYTHON_MULTI_USEDEP}]')
+   x11-libs/cairo[X,xcb(+)]
+   x11-libs/libxcb[xkb]
+   x11-libs/xcb-util-image
+   x11-libs/xcb-util-wm
+   x11-libs/xcb-util-xrm
+   alsa? ( media-libs/alsa-lib )
+   curl? ( net-misc/curl )
+   i3wm? (
+   dev-libs/jsoncpp:=
+   || ( x11-wm/i3 x11-wm/i3-gaps )
+   )
+   mpd? ( media-libs/libmpdclient )
+   network? ( net-wireless/wireless-tools )
+   pulseaudio? ( media-sound/pulseaudio )
+"
+
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   rmdir "${S}/lib/xpp" || die
+   mv "${WORKDIR}/xpp-${XPP_COMMIT}" "${S}/lib/xpp" || die
+
+   rmdir "${S}/lib/i3ipcpp" || die
+   mv "${WORKDIR}/i3ipcpp-${I3IPCPP_COMMIT}" "${S}/lib/i3ipcpp" || die
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DENABLE_ALSA="$(usex alsa)"
+   -DENABLE_CURL="$(usex curl)"
+   -DENABLE_I3="$(usex i3wm)"
+   

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

2020-12-13 Thread Joonas Niilola
commit: cbf77ceb7c455db7ba634ed215b4b615ec6505e5
Author: Oz N Tiram  gmail  com>
AuthorDate: Wed Dec  9 20:58:07 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Dec 13 10:44:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbf77ceb

dev-python/pipenv: drop old version

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Oz Tiram  gmail.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pipenv/Manifest|  1 -
 dev-python/pipenv/pipenv-2020.8.13.ebuild | 51 ---
 2 files changed, 52 deletions(-)

diff --git a/dev-python/pipenv/Manifest b/dev-python/pipenv/Manifest
index a5728565415..f8d9b27c9b4 100644
--- a/dev-python/pipenv/Manifest
+++ b/dev-python/pipenv/Manifest
@@ -1,2 +1 @@
 DIST pipenv-2020.11.4.tar.gz 11574683 BLAKE2B 
cb2ac4ba6b07377a3a5540b23756afac38a02691e495ba93031815417d001701b919221fd83d0f9e6b94d4f28c1fa754c2c31e289830305a8c8ac75d847209c4
 SHA512 
c9015eb9a449fa517f31619d1fec5d99882da915a50e189ba6ab9c7c147862f9734f0df200330d666380afe5d2cf52d18015c539635ca6459042ab50d3ccd059
-DIST pipenv-2020.8.13.tar.gz 11573493 BLAKE2B 
ac6c6f0336f0c675f73fbecfdefe158eb2a53b5aa4559850b3c9a050404d9d18b0ff2ca3cb62031da027937244a6bbb0d4c1ec433073e429518ec0ea908cb12e
 SHA512 
90ccaf386bc68d856ee9c645084cb65c4213902a8c87e2059cc2274b88d922c3b02c58c15d05945e1f61e8b816ef92a11672cadaf125143bd5019ab25ff0b19e

diff --git a/dev-python/pipenv/pipenv-2020.8.13.ebuild 
b/dev-python/pipenv/pipenv-2020.8.13.ebuild
deleted file mode 100644
index d9f0436d554..000
--- a/dev-python/pipenv/pipenv-2020.8.13.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_6 python3_7 python3_8 )
-
-inherit distutils-r1
-
-MY_PV=${PV/_beta/b}
-DESCRIPTION="Python Development Workflow for Humans"
-HOMEPAGE="https://github.com/pypa/pipenv https://pypi.org/project/pipenv/;
-SRC_URI="https://github.com/pypa/pipenv/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}"/${PN}-${MY_PV}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-python/certifi[${PYTHON_USEDEP}]
-   >=dev-python/pip-18.0[${PYTHON_USEDEP}]
-   dev-python/virtualenv[${PYTHON_USEDEP}]
-   >=dev-python/virtualenv-clone-0.2.5[${PYTHON_USEDEP}]
-   "
-
-BDEPEND="
-   test? (
-   ${RDEPEND}
-   dev-python/flaky[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   

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

2020-12-13 Thread Sam James
commit: fddfe3a1fe7007115f15b198e3bf61b90e42afcf
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 10:34:46 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 10:34:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fddfe3a1

media-gfx/zbar: arm64 keyworded (bug #759160)

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

 media-gfx/zbar/zbar-0.23.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/zbar/zbar-0.23.1.ebuild 
b/media-gfx/zbar/zbar-0.23.1.ebuild
index 79c9d2c02b8..23cc7fc6254 100644
--- a/media-gfx/zbar/zbar-0.23.1.ebuild
+++ b/media-gfx/zbar/zbar-0.23.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/mchehab/zbar/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 
 IUSE="dbus graphicsmagick gtk +imagemagick introspection java jpeg nls python 
qt5 static-libs test +threads v4l X xv"
 REQUIRED_USE="



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

2020-12-13 Thread Sam James
commit: f3e494c9b0daa7857c11f73433b7e9d07b5e4eb9
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 10:30:29 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 10:34:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3e494c9

dev-libs/libconfig: s390 keyworded (bug #759706)

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

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

diff --git a/dev-libs/libconfig/libconfig-1.7.2.ebuild 
b/dev-libs/libconfig/libconfig-1.7.2.ebuild
index 3c60a7c94fb..225468fb0c9 100644
--- a/dev-libs/libconfig/libconfig-1.7.2.ebuild
+++ b/dev-libs/libconfig/libconfig-1.7.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/hyperrealm/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="LGPL-2.1"
 SLOT="0/11"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ppc ~ppc64 sparc x86 ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ppc ~ppc64 ~s390 sparc x86 ~x86-linux"
 IUSE="+cxx static-libs"
 
 DEPEND="



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

2020-12-13 Thread Sam James
commit: 2ae020cbacd3b7e7141db23492f8bf5ce15cd494
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 10:23:53 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 10:34:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ae020cb

sci-libs/fftw: s390 keyworded (bug #759745)

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

 sci-libs/fftw/fftw-3.3.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/fftw/fftw-3.3.8-r1.ebuild 
b/sci-libs/fftw/fftw-3.3.8-r1.ebuild
index a6577c18e01..cebf3cd2360 100644
--- a/sci-libs/fftw/fftw-3.3.8-r1.ebuild
+++ b/sci-libs/fftw/fftw-3.3.8-r1.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} = * ]]; then
EGIT_REPO_URI="https://github.com/FFTW/fftw3.git;
 else
SRC_URI="http://www.fftw.org/${PN}-${PV/_p/-pl}.tar.gz;
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 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"
 fi
 
 LICENSE="GPL-2+"



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

2020-12-13 Thread Sam James
commit: d0bd6f52e690c3f0ad9bd7d11457b4ed4f738896
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 10:34:09 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 10:34:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0bd6f52

dev-python/responses: s390 keyworded (bug #759730)

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

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

diff --git a/dev-python/responses/responses-0.12.1.ebuild 
b/dev-python/responses/responses-0.12.1.ebuild
index 438c4f69769..398a6aa8505 100644
--- a/dev-python/responses/responses-0.12.1.ebuild
+++ b/dev-python/responses/responses-0.12.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND="



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

2020-12-13 Thread Sam James
commit: ec2d93ae28ce10f99f73e979bca2b59d116ca57a
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 10:28:10 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 10:34:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec2d93ae

dev-python/hypothesis: s390 keyworded (bug #752336)

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

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

diff --git a/dev-python/hypothesis/hypothesis-5.43.3.ebuild 
b/dev-python/hypothesis/hypothesis-5.43.3.ebuild
index 7cd8e4bcc52..a4814b9ee7d 100644
--- a/dev-python/hypothesis/hypothesis-5.43.3.ebuild
+++ b/dev-python/hypothesis/hypothesis-5.43.3.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${PN}-${PN}-python-${PV}/${PN}-python"
 
 LICENSE="MPL-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-macos"
 IUSE="cli test"
 RESTRICT="!test? ( test )"
 



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

2020-12-13 Thread Sam James
commit: 3537a3819afe93ecb90b7beb1ec4c5e99a4fd756
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 10:32:31 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 10:34:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3537a381

app-text/mandoc: s390 keyworded (bug #759691)

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

 app-text/mandoc/mandoc-1.14.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/mandoc/mandoc-1.14.5-r1.ebuild 
b/app-text/mandoc/mandoc-1.14.5-r1.ebuild
index 7e65aa0eb30..42a2944c000 100644
--- a/app-text/mandoc/mandoc-1.14.5-r1.ebuild
+++ b/app-text/mandoc/mandoc-1.14.5-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://mdocml.bsd.lv/snapshots/${P}.tar.gz;
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~s390 ~x86"
 IUSE="cgi system-man"
 
 RDEPEND="sys-libs/zlib



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

2020-12-13 Thread Michael Palimaka
commit: a8e28993a10671daae81900a37485b6ad51bc4b8
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Dec 13 10:23:59 2020 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec 13 10:25:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8e28993

profiles/package.mask: mask x11-misc/albert for removal

Signed-off-by: Michael Palimaka  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index d74e3c0a51b..b689be44b6b 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Michael Palimaka  (2020-12-13)
+# Buggy. Uncooperative upstream.
+# Masked for removal in 30 days.
+x11-misc/albert
+
 # Sam James  (2020-12-13)
 # This new version of libcap-ng seems to (still)
 # break consumers.



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

2020-12-13 Thread Sam James
commit: 4b2ed0e20b58b6c2f9348f63c7caa42de13547b6
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 10:07:40 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 10:07:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b2ed0e2

dev-python/isort: arm64 stable (bug #754792)

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

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

diff --git a/dev-python/isort/isort-5.6.3.ebuild 
b/dev-python/isort/isort-5.6.3.ebuild
index 9bf41d99202..7820da84b25 100644
--- a/dev-python/isort/isort-5.6.3.ebuild
+++ b/dev-python/isort/isort-5.6.3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm64 ~ia64 ~ppc ~ppc64 ~x86 ~x64-macos"
 
 BDEPEND="
test? (



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

2020-12-13 Thread Sam James
commit: 87d73618c54ecb9de73070bfde456162df6aeecb
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 10:09:52 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 10:09:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87d73618

dev-python/pylama: arm64 stable (bug #754792)

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

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

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
index 76ef2bd61be..58fe827668a 100644
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm64 ~ia64 ~ppc ~ppc64 ~x86 ~x64-macos"
 
 RDEPEND="
>=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]



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

2020-12-13 Thread Sam James
commit: d5f3042c5c43ea129db381a63f3d589cba4a924b
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 09:15:18 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 09:15:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5f3042c

profiles/arch/arm64: mask net-proxy/haproxy[device-atlas]

dev-libs/device-atlas-api-c is not yet keyworded
and is fetch-restricted. Too much effort to keyword
it for now, let's wait until someone wants it.

Bug: https://bugs.gentoo.org/685990
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index d019b117352..ca81a3769c1 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Sam James  (2020-12-13)
+# Requires unkeyworded, fetch-restricted deps
+net-proxy/haproxy device-atlas
+
 # Roy Bamford 

[gentoo-commits] repo/gentoo:master commit in: net-proxy/haproxy/

2020-12-13 Thread Sam James
commit: c49e34010e10decdf2a5c4226496715b6e46d6ee
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 09:17:48 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 09:17:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c49e3401

net-proxy/haproxy: arm64 keyworded (bug #685990)

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

 net-proxy/haproxy/haproxy-2.3.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/haproxy/haproxy-2.3.2-r1.ebuild 
b/net-proxy/haproxy/haproxy-2.3.2-r1.ebuild
index 60358d71950..07881439217 100644
--- a/net-proxy/haproxy/haproxy-2.3.2-r1.ebuild
+++ b/net-proxy/haproxy/haproxy-2.3.2-r1.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="A TCP/HTTP reverse proxy for high availability 
environments"
 HOMEPAGE="http://www.haproxy.org;
 if [[ ${PV} != * ]]; then
SRC_URI="http://haproxy.1wt.eu/download/$(ver_cut 
1-2)/src/${MY_P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~ppc ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
 else
EGIT_REPO_URI="http://git.haproxy.org/git/haproxy-$(ver_cut 1-2).git/"
EGIT_BRANCH=master



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

2020-12-13 Thread Sam James
commit: 3b3e0d9aa3b69dac660ba03de37b372e6ba421c4
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 09:11:56 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 09:11:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b3e0d9a

app-text/mandoc: arm64 keyworded (bug #759691)

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

 app-text/mandoc/mandoc-1.14.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/mandoc/mandoc-1.14.5-r1.ebuild 
b/app-text/mandoc/mandoc-1.14.5-r1.ebuild
index 0fe32b7157c..7e65aa0eb30 100644
--- a/app-text/mandoc/mandoc-1.14.5-r1.ebuild
+++ b/app-text/mandoc/mandoc-1.14.5-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://mdocml.bsd.lv/snapshots/${P}.tar.gz;
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
 IUSE="cgi system-man"
 
 RDEPEND="sys-libs/zlib



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

2020-12-13 Thread Sam James
commit: 2edc2b16ae796931654d1e07424665dfbc910c4e
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 09:02:13 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 09:02:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2edc2b16

app-text/mandoc: Keyword 1.14.5-r1 arm, #759691

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

 app-text/mandoc/mandoc-1.14.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/mandoc/mandoc-1.14.5-r1.ebuild 
b/app-text/mandoc/mandoc-1.14.5-r1.ebuild
index f138ef991ac..0fe32b7157c 100644
--- a/app-text/mandoc/mandoc-1.14.5-r1.ebuild
+++ b/app-text/mandoc/mandoc-1.14.5-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://mdocml.bsd.lv/snapshots/${P}.tar.gz;
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
 IUSE="cgi system-man"
 
 RDEPEND="sys-libs/zlib



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

2020-12-13 Thread Sam James
commit: 1491085db4b3ed600239bff8e8488bd714aa3ea9
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 09:00:48 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 09:00:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1491085d

sys-libs/libunwind: arm stable (bug #759637)

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

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

diff --git a/sys-libs/libunwind/libunwind-1.5.0.ebuild 
b/sys-libs/libunwind/libunwind-1.5.0.ebuild
index 415863a1e46..5d2c92d3e26 100644
--- a/sys-libs/libunwind/libunwind-1.5.0.ebuild
+++ b/sys-libs/libunwind/libunwind-1.5.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://nongnu/libunwind/${MY_P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0/8" # libunwind.so.8
-KEYWORDS="~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="debug debug-frame doc libatomic lzma +static-libs zlib"
 
 RESTRICT="test" # some tests are broken (toolchain version dependent, rely on 
external binaries)



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

2020-12-13 Thread Sam James
commit: 425afefd2712fae9690968194fbd0c0fabfab776
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 08:58:10 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 08:58:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=425afefd

dev-python/dill: Stabilize 0.3.3 ALLARCHES, #758536

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

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

diff --git a/dev-python/dill/dill-0.3.3.ebuild 
b/dev-python/dill/dill-0.3.3.ebuild
index a568aa3b45b..21415440540 100644
--- a/dev-python/dill/dill-0.3.3.ebuild
+++ b/dev-python/dill/dill-0.3.3.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${PN}-${P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ppc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 ppc x86 ~amd64-linux ~x86-linux"
 
 python_test() {
local fail= t



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

2020-12-13 Thread Sam James
commit: de3b251489fd6703e01e2cb07c9a6c08bb6d24a0
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 08:58:36 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 08:58:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de3b2514

dev-python/markdown2: Stabilize 2.3.10 ALLARCHES, #758551

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

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

diff --git a/dev-python/markdown2/markdown2-2.3.10.ebuild 
b/dev-python/markdown2/markdown2-2.3.10.ebuild
index eb5e7f9d0eb..9739546f9a3 100644
--- a/dev-python/markdown2/markdown2-2.3.10.ebuild
+++ b/dev-python/markdown2/markdown2-2.3.10.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/trentm/python-markdown2;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ppc sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ppc sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="dev-python/pygments[${PYTHON_USEDEP}]"
 



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

2020-12-13 Thread Sam James
commit: b7c5ac2a780652ec638d92601ea46a50f163fe15
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 08:58:22 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 08:58:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7c5ac2a

dev-python/breathe: Stabilize 4.22.1 ALLARCHES, #758548

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

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

diff --git a/dev-python/breathe/breathe-4.22.1.ebuild 
b/dev-python/breathe/breathe-4.22.1.ebuild
index f82c38d1d5e..b38dab15c46 100644
--- a/dev-python/breathe/breathe-4.22.1.ebuild
+++ b/dev-python/breathe/breathe-4.22.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
 
 RDEPEND="
app-doc/doxygen



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

2020-12-13 Thread Sam James
commit: 610d78d5abb45076a0403ddd551db66c03484d05
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 08:53:53 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 08:53:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=610d78d5

dev-python/sphinxcontrib-issuetracker: Stabilize 0.11-r2 ALLARCHES, #731594

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

 .../sphinxcontrib-issuetracker-0.11-r2.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/sphinxcontrib-issuetracker/sphinxcontrib-issuetracker-0.11-r2.ebuild
 
b/dev-python/sphinxcontrib-issuetracker/sphinxcontrib-issuetracker-0.11-r2.ebuild
index 47b8785ed83..6cdea6dc4f0 100644
--- 
a/dev-python/sphinxcontrib-issuetracker/sphinxcontrib-issuetracker-0.11-r2.ebuild
+++ 
b/dev-python/sphinxcontrib-issuetracker/sphinxcontrib-issuetracker-0.11-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ppc ppc64 ~s390 sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
 
 # ImportError: cannot import name 'SphinxStandaloneReader'
 RESTRICT="test"



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

2020-12-13 Thread Sam James
commit: b11a118d3fd43c9a72121f4a71d5e513dbbfe33e
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 08:53:30 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 08:53:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b11a118d

dev-python/sphinxcontrib-issuetracker: mark ALLARCHES

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

 dev-python/sphinxcontrib-issuetracker/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/sphinxcontrib-issuetracker/metadata.xml 
b/dev-python/sphinxcontrib-issuetracker/metadata.xml
index a5d53d3b52a..aa1d6f0a539 100644
--- a/dev-python/sphinxcontrib-issuetracker/metadata.xml
+++ b/dev-python/sphinxcontrib-issuetracker/metadata.xml
@@ -2,6 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

+   

sphinxcontrib-issuetracker




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

2020-12-13 Thread Sam James
commit: 401aa235a4dd9e6b1ab81402b942d9c0d515636f
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 08:48:41 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 08:48:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=401aa235

media-sound/wildmidi: arm stable (bug #756154)

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

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

diff --git a/media-sound/wildmidi/wildmidi-0.4.3.ebuild 
b/media-sound/wildmidi/wildmidi-0.4.3.ebuild
index f9872c2145f..af143f99912 100644
--- a/media-sound/wildmidi/wildmidi-0.4.3.ebuild
+++ b/media-sound/wildmidi/wildmidi-0.4.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/Mindwerks/${PN}/archive/${P}.tar.gz;
 
 LICENSE="GPL-3+ LGPL-3+"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ppc ppc64 x86"
+KEYWORDS="amd64 arm ~hppa ppc ppc64 x86"
 IUSE="+alsa openal oss +player"
 
 DEPEND="



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

2020-12-13 Thread Sam James
commit: 63d7b7dd0e3f9e4df73055445432ad0e673facf2
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 08:47:27 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 08:47:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63d7b7dd

x11-libs/gdk-pixbuf: arm stable (bug #759094)

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

 x11-libs/gdk-pixbuf/gdk-pixbuf-2.42.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/gdk-pixbuf/gdk-pixbuf-2.42.2.ebuild 
b/x11-libs/gdk-pixbuf/gdk-pixbuf-2.42.2.ebuild
index 3750c43f06a..4b453c8c53e 100644
--- a/x11-libs/gdk-pixbuf/gdk-pixbuf-2.42.2.ebuild
+++ b/x11-libs/gdk-pixbuf/gdk-pixbuf-2.42.2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://git.gnome.org/browse/gdk-pixbuf;
 
 LICENSE="LGPL-2.1+"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~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 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="gtk-doc +introspection jpeg tiff"
 
 # TODO: For windows/darwin support: shared-mime-info conditional, 
native_windows_loaders option review



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

2020-12-13 Thread Sam James
commit: f7a4ac4840f6b18f57d43c1bff27427c18f5f5be
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 08:51:41 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 08:51:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7a4ac48

sys-libs/libunwind: arm64 stable (bug #759637)

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

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

diff --git a/sys-libs/libunwind/libunwind-1.5.0.ebuild 
b/sys-libs/libunwind/libunwind-1.5.0.ebuild
index 66243881006..415863a1e46 100644
--- a/sys-libs/libunwind/libunwind-1.5.0.ebuild
+++ b/sys-libs/libunwind/libunwind-1.5.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://nongnu/libunwind/${MY_P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0/8" # libunwind.so.8
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="debug debug-frame doc libatomic lzma +static-libs zlib"
 
 RESTRICT="test" # some tests are broken (toolchain version dependent, rely on 
external binaries)



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

2020-12-13 Thread Sam James
commit: 87d3601fc7d7e7b4aa2b3d1e9e0093db802357fb
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 08:49:44 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 08:49:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87d3601f

dev-python/sphinxcontrib-issuetracker: arm stable (bug #731594)

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

 .../sphinxcontrib-issuetracker-0.11-r2.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/sphinxcontrib-issuetracker/sphinxcontrib-issuetracker-0.11-r2.ebuild
 
b/dev-python/sphinxcontrib-issuetracker/sphinxcontrib-issuetracker-0.11-r2.ebuild
index a9f2c5d53ae..47b8785ed83 100644
--- 
a/dev-python/sphinxcontrib-issuetracker/sphinxcontrib-issuetracker-0.11-r2.ebuild
+++ 
b/dev-python/sphinxcontrib-issuetracker/sphinxcontrib-issuetracker-0.11-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ppc ppc64 ~s390 sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ppc ppc64 ~s390 sparc ~x86 
~amd64-linux ~x86-linux"
 
 # ImportError: cannot import name 'SphinxStandaloneReader'
 RESTRICT="test"



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

2020-12-13 Thread Sam James
commit: 20aac74f573606b66708f683e4cb0f39c0638116
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 08:51:03 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 08:51:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20aac74f

media-video/mplayer: arm stable (bug #755650)

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

 media-video/mplayer/mplayer-1.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/mplayer/mplayer-1.4-r1.ebuild 
b/media-video/mplayer/mplayer-1.4-r1.ebuild
index 6be49c30001..cc2bb32bc28 100644
--- a/media-video/mplayer/mplayer-1.4-r1.ebuild
+++ b/media-video/mplayer/mplayer-1.4-r1.ebuild
@@ -150,7 +150,7 @@ RDEPEND+="
 SLOT="0"
 LICENSE="GPL-2"
 if [[ ${PV} != ** ]]; then
-   KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86"
+   KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86"
 fi
 
 # faac codecs are nonfree



[gentoo-commits] repo/gentoo:master commit in: x11-libs/gdk-pixbuf-xlib/

2020-12-13 Thread Sam James
commit: 3bba4b566d4a1b2df3acf6abf9ac6f4c4e82148a
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 08:48:04 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 08:48:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bba4b56

x11-libs/gdk-pixbuf-xlib: arm stable (bug #759094)

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

 x11-libs/gdk-pixbuf-xlib/gdk-pixbuf-xlib-2.40.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/gdk-pixbuf-xlib/gdk-pixbuf-xlib-2.40.2.ebuild 
b/x11-libs/gdk-pixbuf-xlib/gdk-pixbuf-xlib-2.40.2.ebuild
index 04e02e373e5..8002ff9cc29 100644
--- a/x11-libs/gdk-pixbuf-xlib/gdk-pixbuf-xlib-2.40.2.ebuild
+++ b/x11-libs/gdk-pixbuf-xlib/gdk-pixbuf-xlib-2.40.2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://gitlab.gnome.org/Archive/gdk-pixbuf-xlib;
 LICENSE="LGPL-2+ MPL-1.1"
 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 ~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"
 IUSE="gtk-doc"
 
 RDEPEND="



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

2020-12-13 Thread Fabian Groffen
commit: 50aa0a6802c5c2510c31c3d1d0754427677f1613
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Dec 13 08:40:45 2020 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Dec 13 08:41:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50aa0a68

net-libs/nghttp2-1.42.0: marked ~x86-solaris

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

 net-libs/nghttp2/nghttp2-1.42.0.ebuild | 2 +-
 net-libs/nghttp2/nghttp2-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/nghttp2/nghttp2-1.42.0.ebuild 
b/net-libs/nghttp2/nghttp2-1.42.0.ebuild
index bfd3924c87c..b868914d411 100644
--- a/net-libs/nghttp2/nghttp2-1.42.0.ebuild
+++ b/net-libs/nghttp2/nghttp2-1.42.0.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} ==  ]] ; then
inherit autotools git-r3
 else

SRC_URI="https://github.com/nghttp2/nghttp2/releases/download/v${PV}/${P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sparc ~x86 ~amd64-linux ~x64-macos ~sparc-solaris ~x64-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sparc ~x86 ~amd64-linux ~x64-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
 fi
 
 DESCRIPTION="HTTP/2 C Library"

diff --git a/net-libs/nghttp2/nghttp2-.ebuild 
b/net-libs/nghttp2/nghttp2-.ebuild
index b26f2f341e2..6159ee00f9b 100644
--- a/net-libs/nghttp2/nghttp2-.ebuild
+++ b/net-libs/nghttp2/nghttp2-.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} ==  ]] ; then
inherit autotools git-r3
 else

SRC_URI="https://github.com/nghttp2/nghttp2/releases/download/v${PV}/${P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sparc ~x86 ~x64-macos ~sparc-solaris ~x64-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sparc ~x86 ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="HTTP/2 C Library"



<    1   2   3