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

2020-12-10 Thread Joonas Niilola
commit: 9f7f03a8f9afb113d795c4765a5b27659ca0f51a
Author: Valérian Rousset  users  noreply  github 
 com>
AuthorDate: Sun Dec  6 23:33:58 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Dec 11 07:58:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f7f03a8

net-libs/nativebiginteger: drop 0.9.45

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Valérian Rousset  users.noreply.github.com>
Closes: https://github.com/gentoo/gentoo/pull/18545
Signed-off-by: Joonas Niilola  gentoo.org>

 net-libs/nativebiginteger/Manifest |  1 -
 .../nativebiginteger-0.9.45.ebuild | 71 --
 2 files changed, 72 deletions(-)

diff --git a/net-libs/nativebiginteger/Manifest 
b/net-libs/nativebiginteger/Manifest
index 83886cdee05..bf0384c8731 100644
--- a/net-libs/nativebiginteger/Manifest
+++ b/net-libs/nativebiginteger/Manifest
@@ -1,3 +1,2 @@
-DIST i2psource_0.9.45.tar.bz2 31921025 BLAKE2B 
2d3f77784ff93de4d7442eddf46b9a541902412bf5fb24cf96baba73851cc17d01649a7b4b41a710ccde5690036a890b8f84de00f4c615ed2e23da8fa510
 SHA512 
d4cf354f0a807d132fae75d4bad3e2e788e1ed03d6f625feb0f1369bb2c9e1a6e2758645acf2017c61dbc47d75e6d834b87455adbead1077f206025686548ae9
 DIST i2psource_0.9.47.tar.bz2 32488438 BLAKE2B 
e1544475dad526e242570918c1bb967a4b713567e71201e08b73c8995743a68396b5951f477bfe8830927c0cdf7e991a25a1978d4aaf88cae3e4218ba57a8818
 SHA512 
7fdd9ab0b3e81aa89e73be6fa172d723c2b5a67365116a1e0e0ec948067fe4f58e3ad946a0ef4605602c0d803b98e37b2d5692a39a14cf7433d546ada204cbc9
 DIST i2psource_0.9.48.tar.bz2 33029295 BLAKE2B 
8210018610d3dd8272d3c136f32048ede9446c517971be97d6588c6a1a592e9db2261077da3634fa29af28ecdb488427dd1145a731b130b75f41c3c56a8c8779
 SHA512 
ddfbc8f86bc2fd4012e14732493d30e292af1603d74b1f786a0ecc56a1373301ec9b3fd16fe2e3f953053291b8efdb5510959fcf1e42d7e5f8ec87d85a8a

diff --git a/net-libs/nativebiginteger/nativebiginteger-0.9.45.ebuild 
b/net-libs/nativebiginteger/nativebiginteger-0.9.45.ebuild
deleted file mode 100644
index e0d376b7aa6..000
--- a/net-libs/nativebiginteger/nativebiginteger-0.9.45.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 2018-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit java-pkg-2 toolchain-funcs
-
-DESCRIPTION="jbigi library used by net-vpn/i2p"
-HOMEPAGE="https://geti2p.net;
-SRC_URI="https://download.i2p2.de/releases/${PV}/i2psource_${PV}.tar.bz2;
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-   dev-libs/gmp:0=
-   virtual/jdk:1.8
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/i2p-${PV}/core"
-
-PATCHES=(
-   "${FILESDIR}/${P}-asmfix.patch"
-)
-
-src_compile() {
-   local compile_lib
-   compile_lib() {
-   local name="${1}"
-   local file="${2}"
-   shift 2
-
-   "$(tc-getCC)" "${@}" ${CFLAGS} $(java-pkg_get-jni-cflags) \
-   ${LDFLAGS} -shared -fPIC "-Wl,-soname,lib${name}.so" \
-   "${file}" -o "lib${name}.so"
-   }
-
-   cd "${S}/c/jbigi/jbigi" || die "unable to cd to jbigi"
-   compile_lib jbigi src/jbigi.c -Iinclude -lgmp ||
-   die "unable to build jbigi"
-
-   if use amd64 || use x86; then
-   cd "${S}/c/jcpuid" || die "unable to cd to jcpuid"
-   compile_lib jcpuid src/jcpuid.c -Iinclude ||
-   die "unable to build jcpuid"
-   fi
-
-   if use test; then
-   cd "${S}/java/src" || die "unable to cd to java/src"
-   ejavac -encoding UTF-8 net/i2p/util/NativeBigInteger.java ||
-   die "unable to build tests"
-   fi
-}
-
-src_test() {
-   cd "${S}/java/src" || die "unable to cd to java/src"
-   "$(java-config -J)" -Djava.library.path="${S}/c/jbigi/jbigi" 
net/i2p/util/NativeBigInteger ||
-   die "unable to pass tests"
-}
-
-src_install() {
-   dolib.so c/jbigi/jbigi/libjbigi.so
-
-   if use amd64 || use x86; then
-   dolib.so c/jcpuid/libjcpuid.so
-   fi
-}



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

2020-12-10 Thread Joonas Niilola
commit: 40e5c615573535fd9685875d19a3ce10f27bc5ed
Author: Joonas Niilola  gentoo  org>
AuthorDate: Fri Dec 11 07:56:30 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Dec 11 07:58:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40e5c615

media-libs/osl: remove old 1.10.10

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

 media-libs/osl/Manifest   |  1 -
 media-libs/osl/osl-1.10.10.ebuild | 86 ---
 2 files changed, 87 deletions(-)

diff --git a/media-libs/osl/Manifest b/media-libs/osl/Manifest
index 1b6d5ed44f2..db1eb09c70c 100644
--- a/media-libs/osl/Manifest
+++ b/media-libs/osl/Manifest
@@ -1,3 +1,2 @@
-DIST osl-1.10.10.tar.gz 13549066 BLAKE2B 
d91360d4cde0e8f70e01aa5cbf14bd6dc30be47ba96d4f2206adb75ef8f14af6af43b00f025cbf9b9c03cfcf117380ee9bb0a93129c314b249151cd97135757b
 SHA512 
10371d9aefa786fefbae15cb9c71d7360bd903a36734840f7d0a960a615d48096b7170596bd934d10579b33d8f8398fc0e00471a10cd517c1a4a601169b2ca13
 DIST osl-1.10.13.tar.gz 13551733 BLAKE2B 
63b687ec46bd5334a7d0c00cfa5bf5243003e16adf2637fba648a75f98c10103c7c4b5fa1d091ab43b0929f85523b0fa79589eca56686490ee61c48069593767
 SHA512 
bc39fcf80878160807e35c52654a2993a7d33b3ab2fbf567ec50d0b23636a19064830afab5734f1e39276c77e843bbfe1d6b10a64fd4ebe69b17c8faa5378201
 DIST osl-1.11.9.0.tar.gz 14137334 BLAKE2B 
db68cb77d6af56e711b897371a4fe9386bf1a62625f9fa04012e9ec22346933fe3b0112301a8ad17ac6dd9c01c2a8e00c6d6e557d947870fd39bb3dec1443fd8
 SHA512 
f93bce0b29ff2da022372d81f2709c7db68e011c07c346b679c4b5ce05425f7eda8904779d7ea460817639e6be78a8c77272d71a3ffa8b068cfaab7572eb2e65

diff --git a/media-libs/osl/osl-1.10.10.ebuild 
b/media-libs/osl/osl-1.10.10.ebuild
deleted file mode 100644
index 1b2d7c3168e..000
--- a/media-libs/osl/osl-1.10.10.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit cmake llvm toolchain-funcs
-
-# check this on updates
-LLVM_MAX_SLOT=9
-
-DESCRIPTION="Advanced shading language for production GI renderers"
-HOMEPAGE="http://opensource.imageworks.com/?p=osl;
-SRC_URI="https://github.com/imageworks/OpenShadingLanguage/archive/Release-${PV}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-
-X86_CPU_FEATURES=(
-   sse2:sse2 sse3:sse3 ssse3:ssse3 sse4_1:sse4.1 sse4_2:sse4.2
-   avx:avx avx2:avx2 avx512f:avx512f f16c:f16c
-)
-CPU_FEATURES=( ${X86_CPU_FEATURES[@]/#/cpu_flags_x86_} )
-
-IUSE="doc partio qt5 test ${CPU_FEATURES[@]%:*}"
-
-RDEPEND="
-   dev-libs/boost:=
-   dev-libs/pugixml
-   media-libs/openexr:=
-   media-libs/openimageio:=
-   

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

2020-12-10 Thread Joonas Niilola
commit: 0722271ca187e1c4c5f30ae32b4385fe766be942
Author: Maciej Barć  protonmail  com>
AuthorDate: Sun Dec  6 21:47:58 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Dec 11 07:58:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0722271c

games-emulation/ppsspp: add USE flag for discord-rpc

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

 games-emulation/ppsspp/metadata.xml |  1 +
 games-emulation/ppsspp/ppsspp-1.10.3.ebuild | 11 +--
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/games-emulation/ppsspp/metadata.xml 
b/games-emulation/ppsspp/metadata.xml
index 73483506334..d19785f0a0c 100644
--- a/games-emulation/ppsspp/metadata.xml
+++ b/games-emulation/ppsspp/metadata.xml
@@ -10,6 +10,7 @@
 Proxy Maintainers
 
 
+Enable interfacing with a locally running Discord 
desktop client
 Use the system-wide media-video/ffmpeg 
instead of bundled
 
 

diff --git a/games-emulation/ppsspp/ppsspp-1.10.3.ebuild 
b/games-emulation/ppsspp/ppsspp-1.10.3.ebuild
index 41b2ef1ee03..c2d256e9a4f 100644
--- a/games-emulation/ppsspp/ppsspp-1.10.3.ebuild
+++ b/games-emulation/ppsspp/ppsspp-1.10.3.ebuild
@@ -12,18 +12,18 @@ SRC_URI="

https://github.com/KhronosGroup/SPIRV-Cross/archive/a1f7c8dc8ea2f94443951ee27003bffa562c1f13.tar.gz
 -> ${P}-ext_SPIRV-Cross.tar.gz

https://github.com/Kingcom/armips/archive/7885552b208493a6a0f21663770c446c3ba65576.tar.gz
 -> ${P}-ext_armips.tar.gz

https://github.com/Tencent/rapidjson/archive/73063f5002612c6bf64fe24f851cd5cc0d83eef9.tar.gz
 -> ${P}-ext_rapidjson.tar.gz
-   
https://github.com/discordapp/discord-rpc/archive/3d3ae7129d17643bc706da0a2eea85aafd10ab3a.tar.gz
 -> ${P}-ext_discord-rpc.tar.gz

https://github.com/hrydgard/glslang/archive/d0850f875ec392a130ccf00018dab458b546f27c.tar.gz
 -> ${P}-ext_glslang.tar.gz

https://github.com/hrydgard/ppsspp-freetype/archive/cbea79dc8fef4d9210e2bac7e7b9b5ff3388197a.tar.gz
 -> ${P}-ext_native_tools_prebuilt.tar.gz

https://github.com/hrydgard/ppsspp-lang/archive/fd6f5bc01afb419eacca538b425c01eb2a055393.tar.gz
 -> ${P}-assets_lang.tar.gz
!system-ffmpeg? ( 
https://github.com/hrydgard/ppsspp-ffmpeg/archive/d3e695286cce346274192c214c00f021c00cd575.tar.gz
 -> ${P}-ffmpeg.tar.gz )
+   discord? ( 
https://github.com/discordapp/discord-rpc/archive/3d3ae7129d17643bc706da0a2eea85aafd10ab3a.tar.gz
 -> ${P}-ext_discord-rpc.tar.gz )
 "
 
 RESTRICT="test"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE="qt5 sdl +system-ffmpeg"
+IUSE="discord qt5 sdl +system-ffmpeg"
 REQUIRED_USE="!qt5? ( sdl )"
 
 RDEPEND="
@@ -57,14 +57,12 @@ src_unpack() {
assets_lang
ext_SPIRV-Cross
ext_armips
-   ext_discord-rpc
ext_glslang
ext_native_tools_prebuilt
ext_rapidjson
)
-   if ! use system-ffmpeg; then
-   list+=( ffmpeg )
-   fi
+   ! use system-ffmpeg && list+=( ffmpeg )
+   use discord && list+=( ext_discord-rpc )
for i in "${list[@]}"; do
tar xf "${DISTDIR}/${P}-${i}.tar.gz" --strip-components 1 -C 
"${i//_//}" || die "Failed to unpack ${P}-${i}.tar.gz"
done
@@ -82,6 +80,7 @@ src_configure() {
local mycmakeargs=(
$(cmake_use_find_package sdl SDL2)
-DHEADLESS=true
+   -DUSE_DISCORD=$(usex discord)
-DUSE_SYSTEM_FFMPEG=$(usex system-ffmpeg)
-DUSE_SYSTEM_LIBZIP=ON
-DUSE_SYSTEM_SNAPPY=ON



[gentoo-commits] repo/gentoo:master commit in: media-fonts/jetbrains-mono/

2020-12-10 Thread Joonas Niilola
commit: 062beae49d0b12006ce4641af126a519a62abd39
Author: Jan Henke  taujhe  de>
AuthorDate: Mon Dec  7 17:14:27 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Dec 11 07:58:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=062beae4

media-fonts/jetbrains-mono: Version bump 2.210

Closes: https://bugs.gentoo.org/758926
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Jan Henke  taujhe.de>
Closes: https://github.com/gentoo/gentoo/pull/18553
Signed-off-by: Joonas Niilola  gentoo.org>

 media-fonts/jetbrains-mono/Manifest   |  1 +
 .../jetbrains-mono/jetbrains-mono-2.210.ebuild| 19 +++
 2 files changed, 20 insertions(+)

diff --git a/media-fonts/jetbrains-mono/Manifest 
b/media-fonts/jetbrains-mono/Manifest
index 61f1cacee0a..eae2a074589 100644
--- a/media-fonts/jetbrains-mono/Manifest
+++ b/media-fonts/jetbrains-mono/Manifest
@@ -1 +1,2 @@
 DIST jetbrains-mono-2.001.zip 8351990 BLAKE2B 
cd0eff80f78752ddcd8b7c227dd530057d6e7533ad6b343f403e810f5cf8c6e32c09d503f40336bd926a6ee14b07b5fb8eae7efaaebf37c2e367a5fc9b288e46
 SHA512 
c47c257b01c50aa77561132993ef07f0b9f244e5040da7a8945c7d9dcdf740e89cd1a130bb81d7caa63d3a579ec74e4af9840c36b6d62601c094b33fdb5e4bb2
+DIST jetbrains-mono-2.210.zip 2664665 BLAKE2B 
02e719b7d03d88df6098445dbc1b17735250184b60ba748ba83903b4ad4f59ac3a67cb472e7b6e10ef8351a8ab2ccf0d2188a39003ec8a9cd61f432b0bdb2af4
 SHA512 
1e0d98b7e8b3f6e115d7a5f3e519483b9d6b2c3e56b55916f4d6dce83f9f1e65303db2d7c44b35de8a7cb25f37d478f0975c874f2a21d44eb1be915be389b408

diff --git a/media-fonts/jetbrains-mono/jetbrains-mono-2.210.ebuild 
b/media-fonts/jetbrains-mono/jetbrains-mono-2.210.ebuild
new file mode 100644
index 000..5304e705364
--- /dev/null
+++ b/media-fonts/jetbrains-mono/jetbrains-mono-2.210.ebuild
@@ -0,0 +1,19 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit font
+
+DESCRIPTION="A free and open-source typeface for developers"
+HOMEPAGE="https://www.jetbrains.com/lp/mono/;
+SRC_URI="https://github.com/JetBrains/JetBrainsMono/releases/download/v${PV}/JetBrainsMono-${PV}.zip
 -> ${P}.zip"
+
+LICENSE="OFL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="app-arch/unzip"
+
+S="${WORKDIR}/fonts/ttf"
+FONT_SUFFIX="ttf"



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

2020-12-10 Thread Joonas Niilola
commit: 206b84cc385c0f2a6d09102d8a862f637808bde4
Author: Joonas Niilola  gentoo  org>
AuthorDate: Fri Dec 11 07:56:03 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Dec 11 07:58:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=206b84cc

media-libs/osl: stabilize 1.10.13 on amd64

Closes: https://bugs.gentoo.org/759442
Signed-off-by: Joonas Niilola  gentoo.org>

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

diff --git a/media-libs/osl/osl-1.10.13.ebuild 
b/media-libs/osl/osl-1.10.13.ebuild
index 85fdd979a7f..fdab29afa48 100644
--- a/media-libs/osl/osl-1.10.13.ebuild
+++ b/media-libs/osl/osl-1.10.13.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/imageworks/OpenShadingLanguage/archive/Release-${PV}
 
 LICENSE="BSD"
 SLOT="0/10"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 X86_CPU_FEATURES=(
sse2:sse2 sse3:sse3 ssse3:ssse3 sse4_1:sse4.1 sse4_2:sse4.2



[gentoo-commits] repo/gentoo:master commit in: net-vpn/i2p/

2020-12-10 Thread Joonas Niilola
commit: eb9f6d78154332dfa9b5694be9b28a46c865aa74
Author: Valérian Rousset  users  noreply  github 
 com>
AuthorDate: Sun Dec  6 23:32:44 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Dec 11 07:58:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb9f6d78

net-vpn/i2p: bump to 0.9.48

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Valérian Rousset  users.noreply.github.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 net-vpn/i2p/Manifest  |   1 +
 net-vpn/i2p/i2p-0.9.48.ebuild | 159 ++
 2 files changed, 160 insertions(+)

diff --git a/net-vpn/i2p/Manifest b/net-vpn/i2p/Manifest
index cfc3977e98a..83886cdee05 100644
--- a/net-vpn/i2p/Manifest
+++ b/net-vpn/i2p/Manifest
@@ -1,2 +1,3 @@
 DIST i2psource_0.9.45.tar.bz2 31921025 BLAKE2B 
2d3f77784ff93de4d7442eddf46b9a541902412bf5fb24cf96baba73851cc17d01649a7b4b41a710ccde5690036a890b8f84de00f4c615ed2e23da8fa510
 SHA512 
d4cf354f0a807d132fae75d4bad3e2e788e1ed03d6f625feb0f1369bb2c9e1a6e2758645acf2017c61dbc47d75e6d834b87455adbead1077f206025686548ae9
 DIST i2psource_0.9.47.tar.bz2 32488438 BLAKE2B 
e1544475dad526e242570918c1bb967a4b713567e71201e08b73c8995743a68396b5951f477bfe8830927c0cdf7e991a25a1978d4aaf88cae3e4218ba57a8818
 SHA512 
7fdd9ab0b3e81aa89e73be6fa172d723c2b5a67365116a1e0e0ec948067fe4f58e3ad946a0ef4605602c0d803b98e37b2d5692a39a14cf7433d546ada204cbc9
+DIST i2psource_0.9.48.tar.bz2 33029295 BLAKE2B 
8210018610d3dd8272d3c136f32048ede9446c517971be97d6588c6a1a592e9db2261077da3634fa29af28ecdb488427dd1145a731b130b75f41c3c56a8c8779
 SHA512 
ddfbc8f86bc2fd4012e14732493d30e292af1603d74b1f786a0ecc56a1373301ec9b3fd16fe2e3f953053291b8efdb5510959fcf1e42d7e5f8ec87d85a8a

diff --git a/net-vpn/i2p/i2p-0.9.48.ebuild b/net-vpn/i2p/i2p-0.9.48.ebuild
new file mode 100644
index 000..23715c60adf
--- /dev/null
+++ b/net-vpn/i2p/i2p-0.9.48.ebuild
@@ -0,0 +1,159 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit java-pkg-2 java-ant-2 systemd
+
+DESCRIPTION="A privacy-centric, anonymous network"
+HOMEPAGE="https://geti2p.net;
+SRC_URI="https://download.i2p2.de/releases/${PV}/i2psource_${PV}.tar.bz2;
+
+LICENSE="Apache-2.0 Artistic BSD CC-BY-2.5 CC-BY-3.0 CC-BY-SA-3.0 EPL-1.0 
GPL-2 GPL-3 LGPL-2.1 LGPL-3 MIT public-domain WTFPL-2"
+SLOT="0"
+
+# Until the deps reach other arches
+KEYWORDS="~amd64 ~x86"
+IUSE="nls test"
+RESTRICT="!test? ( test )"
+
+# dev-java/ant-core is automatically added due to java-ant-2.eclass
+CP_DEPEND="
+   dev-java/commons-logging:0
+   dev-java/java-service-wrapper:0
+   dev-java/tomcat-servlet-api:4.0
+"
+
+DEPEND="${CP_DEPEND}
+   dev-java/eclipse-ecj:*
+   nls? ( >=sys-devel/gettext-0.19 )
+   virtual/jdk:1.8
+   test? (
+   dev-java/ant-junit4:0
+   dev-java/hamcrest-core:1.3
+   dev-java/hamcrest-library:1.3
+   dev-java/junit:4
+   )
+"
+
+RDEPEND="${CP_DEPEND}
+   acct-user/i2p
+   acct-group/i2p
+   virtual/jre:1.8
+   net-libs/nativebiginteger:0
+"
+
+EANT_BUILD_TARGET="pkg"
+# no scala as depending on antlib.xml not installed by dev-lang/scala
+EANT_TEST_TARGET="junit.test"
+JAVA_ANT_ENCODING="UTF-8"
+
+src_prepare() {
+   if use test; then
+   # no *streaming as requiring >dev-java/mockito-1.9.5
+   sed -e "/streaming.*junit\.test/d" \
+   -i build.xml ||
+   die "unable to remove ministreaming tests"
+   fi
+
+   # as early as possible to allow generic patches to be applied
+   default
+
+   java-ant_rewrite-classpath
+
+   java-pkg-2_src_prepare
+
+   # We're on GNU/Linux, we don't need .exe files
+   echo "noExe=true" > override.properties || die
+   if ! use nls; then
+   echo "require.gettext=false" >> override.properties || die
+   fi
+
+   # avoid auto starting browser
+   sed -i "s|clientApp.4.startOnLoad=true|clientApp.4.startOnLoad=false|" \
+   "installer/resources/clients.config" || die
+
+   # generate wrapper classpath, keeping the default to be replaced later
+   i2p_cp="" # global forced by java-pkg_gen-cp
+   java-pkg_gen-cp i2p_cp
+   local lib i=2
+   local cp="wrapper.java.classpath.1=${EPREFIX}/usr/share/i2p/lib/*\n"
+   for lib in ${i2p_cp//,/ }
+   do
+   cp+="wrapper.java.classpath.$((i++))=$(java-pkg_getjars 
${lib})\n"
+   done
+
+   # add generated cp, hardcode system VM, setting system's conf
+   sed -e "s|\(wrapper\.java\.classpath\.1\)=.*|${cp}|" \
+   -e 
"s|\(wrapper\.java\.command\)=.*|\1=/etc/java-config-2/current-system-vm/bin/java|"
 \
+   -e 
"s|\(wrapper\.java\.library\.path\.1\)=.*|\1=/usr/$(get_libdir)/java-service-wrapper|"
 \
+   -e 

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

2020-12-10 Thread Joonas Niilola
commit: 91af58809bfb0ffb416a3aa52969cded3d470433
Author: Marco Genasci  gmail  com>
AuthorDate: Sat Dec  5 10:29:53 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Dec 11 07:58:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91af5880

app-editors/bluefish: bump version to 2.2.12

- move to EAPI=7
- re-add python3 support
- change appdata location to metainfo

Closes: https://bugs.gentoo.org/758626
Closes: https://bugs.gentoo.org/733072
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Marco Genasci  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18514
Signed-off-by: Joonas Niilola  gentoo.org>

 app-editors/bluefish/Manifest   |   1 +
 app-editors/bluefish/bluefish-2.2.12.ebuild | 103 
 2 files changed, 104 insertions(+)

diff --git a/app-editors/bluefish/Manifest b/app-editors/bluefish/Manifest
index d87d4ad06be..ce963709013 100644
--- a/app-editors/bluefish/Manifest
+++ b/app-editors/bluefish/Manifest
@@ -1 +1,2 @@
 DIST bluefish-2.2.10.tar.bz2 4159964 BLAKE2B 
94210df4f9cf0abb46fa26612e1b64550f5970c72584b683779f5bcaf921a8925c6275c647125f73990e99a0175e3c92c0cc286590fbd08e938c6fd1d8c32cef
 SHA512 
ddfad4c595d371dfd7ca5551c1771c2d82dbffcc90acda31bbd2a048730e24e2d1e37fbe847e5005d96acefdf5f38cb93785d23817e59624ecd7ea10bfbc3aeb
+DIST bluefish-2.2.12.tar.bz2 4180228 BLAKE2B 
9e05a4618c37951da6a669e9bd4e0dd7e9993ea764dd467f875039b28cdc6d71ae70d1a87df7f0c63f850ebbff6ceeb8550d1d036bab32b7435f362d5b137147
 SHA512 
f0eb6496d371db8a9b4aee33ddf67e5e87bcc86ff283704cac115be7f00609b1ccbd47ff2d8f8b0bc30f234a339069cc1f7cb1f8809d97f94f0b0e09e4f16754

diff --git a/app-editors/bluefish/bluefish-2.2.12.ebuild 
b/app-editors/bluefish/bluefish-2.2.12.ebuild
new file mode 100644
index 000..9b1dfeae212
--- /dev/null
+++ b/app-editors/bluefish/bluefish-2.2.12.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+
+inherit autotools python-single-r1 xdg
+
+MY_P=${P/_/-}
+
+DESCRIPTION="A GTK HTML editor for the experienced web designer or programmer"
+HOMEPAGE="http://bluefish.openoffice.nl/;
+SRC_URI="https://www.bennewitz.com/bluefish/stable/source/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+SLOT="0"
+IUSE="+gtk3 gucharmap nls python spell"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="
+   sys-libs/zlib
+   !gtk3? ( x11-libs/gtk+:2 )
+   gtk3? (
+   x11-libs/gtk+:3
+   gucharmap? ( gnome-extra/gucharmap:2.90 )
+   )
+   python? ( ${PYTHON_DEPS} )
+   spell? ( >=app-text/enchant-1.4:0 )"
+DEPEND="${RDEPEND}
+   x11-libs/pango"
+BDEPEND=">=dev-libs/glib-2.24:2
+   dev-libs/libxml2:2
+   virtual/pkgconfig
+   nls? (
+   sys-devel/gettext
+   dev-util/intltool
+   )"
+
+S="${WORKDIR}/${MY_P}"
+
+# there actually is just some broken manpage checkup -> not bother
+RESTRICT="test"
+
+pkg_setup() {
+   if ! use gtk3 && use gucharmap ; then
+   ewarn "gucharmap USE flag requires the gtk3 USE flag being 
enabled."
+   ewarn "Disabling charmap plugin."
+   fi
+
+   use python && python-single-r1_pkg_setup
+}
+
+PATCHES=(
+   "${FILESDIR}/${PN}-2.2.9-charmap_configure.patch"
+)
+
+# eautoreconf seems to no longer kill translation files.
+src_prepare() {
+   default
+   eautoreconf
+   sed -i 's:gzip -n $< -c:gzip -n -c $<:' data/bflib/Makefile.* || die 
"Cannot fix makefile"
+}
+
+src_configure() {
+   econf \
+   --disable-update-databases \
+   --disable-xml-catalog-update \
+   --with-freedesktop_org-appdata="${EPREFIX}"/usr/share/metainfo \
+   $(use_with !gtk3 gtk2) \
+   $(usex gtk3 "$(use_with gucharmap charmap)" 
'--without-charmap') \
+   $(use_enable nls) \
+   $(use_enable spell spell-check) \
+   $(use_enable python)
+}
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   einfo "Adding XML catalog entries..."
+   /usr/bin/xmlcatalog  --noout \
+   --add 'public' 'Bluefish/DTD/Bflang' 'bflang.dtd' \
+   --add 'system' 'http://bluefish.openoffice.nl/DTD/bflang.dtd' 
'bflang.dtd' \
+   --add 'rewriteURI' 'http://bluefish.openoffice.nl/DTD' 
'/usr/share/xml/bluefish-unstable' \
+   /etc/xml/catalog \
+   || ewarn "Failed to add XML catalog entries."
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   einfo "Removing XML catalog entries..."
+   /usr/bin/xmlcatalog  --noout \
+   --del 'Bluefish/DTD/Bflang' \
+   --del 'http://bluefish.openoffice.nl/DTD/bflang.dtd' \
+   --del 

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

2020-12-10 Thread Joonas Niilola
commit: 277c1e84088b272b3979df0c74ab738150929590
Author: Valérian Rousset  users  noreply  github 
 com>
AuthorDate: Sun Dec  6 23:33:42 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Dec 11 07:58:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=277c1e84

net-libs/nativebiginteger: bump to 0.9.48

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Valérian Rousset  users.noreply.github.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 net-libs/nativebiginteger/Manifest |  1 +
 .../nativebiginteger-0.9.48.ebuild | 71 ++
 2 files changed, 72 insertions(+)

diff --git a/net-libs/nativebiginteger/Manifest 
b/net-libs/nativebiginteger/Manifest
index cfc3977e98a..83886cdee05 100644
--- a/net-libs/nativebiginteger/Manifest
+++ b/net-libs/nativebiginteger/Manifest
@@ -1,2 +1,3 @@
 DIST i2psource_0.9.45.tar.bz2 31921025 BLAKE2B 
2d3f77784ff93de4d7442eddf46b9a541902412bf5fb24cf96baba73851cc17d01649a7b4b41a710ccde5690036a890b8f84de00f4c615ed2e23da8fa510
 SHA512 
d4cf354f0a807d132fae75d4bad3e2e788e1ed03d6f625feb0f1369bb2c9e1a6e2758645acf2017c61dbc47d75e6d834b87455adbead1077f206025686548ae9
 DIST i2psource_0.9.47.tar.bz2 32488438 BLAKE2B 
e1544475dad526e242570918c1bb967a4b713567e71201e08b73c8995743a68396b5951f477bfe8830927c0cdf7e991a25a1978d4aaf88cae3e4218ba57a8818
 SHA512 
7fdd9ab0b3e81aa89e73be6fa172d723c2b5a67365116a1e0e0ec948067fe4f58e3ad946a0ef4605602c0d803b98e37b2d5692a39a14cf7433d546ada204cbc9
+DIST i2psource_0.9.48.tar.bz2 33029295 BLAKE2B 
8210018610d3dd8272d3c136f32048ede9446c517971be97d6588c6a1a592e9db2261077da3634fa29af28ecdb488427dd1145a731b130b75f41c3c56a8c8779
 SHA512 
ddfbc8f86bc2fd4012e14732493d30e292af1603d74b1f786a0ecc56a1373301ec9b3fd16fe2e3f953053291b8efdb5510959fcf1e42d7e5f8ec87d85a8a

diff --git a/net-libs/nativebiginteger/nativebiginteger-0.9.48.ebuild 
b/net-libs/nativebiginteger/nativebiginteger-0.9.48.ebuild
new file mode 100644
index 000..e0d376b7aa6
--- /dev/null
+++ b/net-libs/nativebiginteger/nativebiginteger-0.9.48.ebuild
@@ -0,0 +1,71 @@
+# Copyright 2018-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit java-pkg-2 toolchain-funcs
+
+DESCRIPTION="jbigi library used by net-vpn/i2p"
+HOMEPAGE="https://geti2p.net;
+SRC_URI="https://download.i2p2.de/releases/${PV}/i2psource_${PV}.tar.bz2;
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+   dev-libs/gmp:0=
+   virtual/jdk:1.8
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/i2p-${PV}/core"
+
+PATCHES=(
+   "${FILESDIR}/${P}-asmfix.patch"
+)
+
+src_compile() {
+   local compile_lib
+   compile_lib() {
+   local name="${1}"
+   local file="${2}"
+   shift 2
+
+   "$(tc-getCC)" "${@}" ${CFLAGS} $(java-pkg_get-jni-cflags) \
+   ${LDFLAGS} -shared -fPIC "-Wl,-soname,lib${name}.so" \
+   "${file}" -o "lib${name}.so"
+   }
+
+   cd "${S}/c/jbigi/jbigi" || die "unable to cd to jbigi"
+   compile_lib jbigi src/jbigi.c -Iinclude -lgmp ||
+   die "unable to build jbigi"
+
+   if use amd64 || use x86; then
+   cd "${S}/c/jcpuid" || die "unable to cd to jcpuid"
+   compile_lib jcpuid src/jcpuid.c -Iinclude ||
+   die "unable to build jcpuid"
+   fi
+
+   if use test; then
+   cd "${S}/java/src" || die "unable to cd to java/src"
+   ejavac -encoding UTF-8 net/i2p/util/NativeBigInteger.java ||
+   die "unable to build tests"
+   fi
+}
+
+src_test() {
+   cd "${S}/java/src" || die "unable to cd to java/src"
+   "$(java-config -J)" -Djava.library.path="${S}/c/jbigi/jbigi" 
net/i2p/util/NativeBigInteger ||
+   die "unable to pass tests"
+}
+
+src_install() {
+   dolib.so c/jbigi/jbigi/libjbigi.so
+
+   if use amd64 || use x86; then
+   dolib.so c/jcpuid/libjcpuid.so
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-vpn/i2p/

2020-12-10 Thread Joonas Niilola
commit: 743d71b44d9444abc50e20abe5e103d4bdd2e86a
Author: Valérian Rousset  users  noreply  github 
 com>
AuthorDate: Sun Dec  6 23:33:10 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Dec 11 07:58:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=743d71b4

net-vpn/i2p: drop 0.9.45

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Valérian Rousset  users.noreply.github.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 net-vpn/i2p/Manifest  |   1 -
 net-vpn/i2p/i2p-0.9.45.ebuild | 210 --
 2 files changed, 211 deletions(-)

diff --git a/net-vpn/i2p/Manifest b/net-vpn/i2p/Manifest
index 83886cdee05..bf0384c8731 100644
--- a/net-vpn/i2p/Manifest
+++ b/net-vpn/i2p/Manifest
@@ -1,3 +1,2 @@
-DIST i2psource_0.9.45.tar.bz2 31921025 BLAKE2B 
2d3f77784ff93de4d7442eddf46b9a541902412bf5fb24cf96baba73851cc17d01649a7b4b41a710ccde5690036a890b8f84de00f4c615ed2e23da8fa510
 SHA512 
d4cf354f0a807d132fae75d4bad3e2e788e1ed03d6f625feb0f1369bb2c9e1a6e2758645acf2017c61dbc47d75e6d834b87455adbead1077f206025686548ae9
 DIST i2psource_0.9.47.tar.bz2 32488438 BLAKE2B 
e1544475dad526e242570918c1bb967a4b713567e71201e08b73c8995743a68396b5951f477bfe8830927c0cdf7e991a25a1978d4aaf88cae3e4218ba57a8818
 SHA512 
7fdd9ab0b3e81aa89e73be6fa172d723c2b5a67365116a1e0e0ec948067fe4f58e3ad946a0ef4605602c0d803b98e37b2d5692a39a14cf7433d546ada204cbc9
 DIST i2psource_0.9.48.tar.bz2 33029295 BLAKE2B 
8210018610d3dd8272d3c136f32048ede9446c517971be97d6588c6a1a592e9db2261077da3634fa29af28ecdb488427dd1145a731b130b75f41c3c56a8c8779
 SHA512 
ddfbc8f86bc2fd4012e14732493d30e292af1603d74b1f786a0ecc56a1373301ec9b3fd16fe2e3f953053291b8efdb5510959fcf1e42d7e5f8ec87d85a8a

diff --git a/net-vpn/i2p/i2p-0.9.45.ebuild b/net-vpn/i2p/i2p-0.9.45.ebuild
deleted file mode 100644
index 8949446a266..000
--- a/net-vpn/i2p/i2p-0.9.45.ebuild
+++ /dev/null
@@ -1,210 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit java-pkg-2 java-ant-2 systemd
-
-DESCRIPTION="A privacy-centric, anonymous network"
-HOMEPAGE="https://geti2p.net;
-SRC_URI="https://download.i2p2.de/releases/${PV}/i2psource_${PV}.tar.bz2;
-
-LICENSE="Apache-2.0 Artistic BSD CC-BY-2.5 CC-BY-3.0 CC-BY-SA-3.0 EPL-1.0 
GPL-2 GPL-3 LGPL-2.1 LGPL-3 MIT public-domain WTFPL-2"
-SLOT="0"
-
-# Until the deps reach other arches
-KEYWORDS="~amd64 ~x86"
-IUSE="nls test"
-RESTRICT="!test? ( test )"
-
-# dev-java/ant-core is automatically added due to java-ant-2.eclass
-CP_DEPEND="
-   dev-java/bcprov:1.50
-   dev-java/jrobin:0
-   dev-java/slf4j-api:0
-   dev-java/tomcat-jstl-impl:0
-   dev-java/tomcat-jstl-spec:0
-   dev-java/java-service-wrapper:0
-   dev-java/commons-logging:0
-   dev-java/slf4j-simple:0
-   java-virtuals/servlet-api:3.1
-"
-
-DEPEND="${CP_DEPEND}
-   dev-java/eclipse-ecj:*
-   nls? ( >=sys-devel/gettext-0.19 )
-   virtual/jdk:1.8
-   test? (
-   dev-java/ant-junit4:0
-   dev-java/hamcrest-core:1.3
-   dev-java/hamcrest-library:1.3
-   dev-java/junit:4
-   )
-"
-
-RDEPEND="${CP_DEPEND}
-   acct-user/i2p
-   acct-group/i2p
-   virtual/jre:1.8
-   net-libs/nativebiginteger:0
-"
-
-EANT_BUILD_TARGET="pkg"
-# no scala as depending on antlib.xml not installed by dev-lang/scala
-EANT_TEST_TARGET="junit.test"
-JAVA_ANT_ENCODING="UTF-8"
-
-src_prepare() {
-   if use test; then
-   # no *streaming as requiring >dev-java/mockito-1.9.5
-   sed -e "/streaming.*junit\.test/d" \
-   -i build.xml ||
-   die "unable to remove ministreaming tests"
-   fi
-
-   # as early as possible to allow generic patches to be applied
-   default
-
-   java-ant_rewrite-classpath
-
-   java-pkg-2_src_prepare
-
-   # We're on GNU/Linux, we don't need .exe files
-   echo "noExe=true" > override.properties || die
-   if ! use nls; then
-   echo "require.gettext=false" >> override.properties || die
-   fi
-
-   # avoid auto starting browser
-   sed -i "s|clientApp.4.startOnLoad=true|clientApp.4.startOnLoad=false|" \
-   "installer/resources/clients.config" || die
-
-   # generate wrapper classpath, keeping the default to be replaced later
-   i2p_cp="" # global forced by java-pkg_gen-cp
-   java-pkg_gen-cp i2p_cp
-   local lib i=2
-   local cp="wrapper.java.classpath.1=${EPREFIX}/usr/share/i2p/lib/*\n"
-   for lib in ${i2p_cp//,/ }
-   do
-   cp+="wrapper.java.classpath.$((i++))=$(java-pkg_getjars 
${lib})\n"
-   done
-
-   # add generated cp, hardcode system VM, setting system's conf
-   sed -e "s|\(wrapper\.java\.classpath\.1\)=.*|${cp}|" \
-   -e 

[gentoo-commits] repo/gentoo:master commit in: sys-auth/seatd/

2020-12-10 Thread Joonas Niilola
commit: dc8edaa92db78c8d861d15f2ee252ed1eb88141f
Author: Haelwenn (lanodan) Monnier  hacktivis  me>
AuthorDate: Mon Dec  7 17:37:27 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Dec 11 07:58:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc8edaa9

sys-auth/seatd: Install systemd service file

Closes: https://bugs.gentoo.org/754657
Signed-off-by: Haelwenn (lanodan) Monnier  hacktivis.me>
Closes: https://github.com/gentoo/gentoo/pull/18555
Signed-off-by: Joonas Niilola  gentoo.org>

 sys-auth/seatd/{seatd-0.4.0.ebuild => seatd-0.4.0-r1.ebuild} | 4 ++--
 sys-auth/seatd/seatd-.ebuild | 3 ++-
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/sys-auth/seatd/seatd-0.4.0.ebuild 
b/sys-auth/seatd/seatd-0.4.0-r1.ebuild
similarity index 93%
rename from sys-auth/seatd/seatd-0.4.0.ebuild
rename to sys-auth/seatd/seatd-0.4.0-r1.ebuild
index 06bf3fce1be..ab311a6c598 100644
--- a/sys-auth/seatd/seatd-0.4.0.ebuild
+++ b/sys-auth/seatd/seatd-0.4.0-r1.ebuild
@@ -3,13 +3,12 @@
 
 EAPI=7
 
-inherit meson
+inherit meson systemd
 
 DESCRIPTION="Minimal seat management daemon and universal library"
 HOMEPAGE="https://sr.ht/~kennylevinsen/seatd;
 if [[ ${PV} ==  ]]; then
inherit git-r3
-
EGIT_REPO_URI="https://git.sr.ht/~kennylevinsen/seatd;
 else
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
@@ -45,4 +44,5 @@ src_configure() {
 src_install() {
meson_src_install
newinitd "${FILESDIR}/seatd.initd" seatd
+   systemd_dounit contrib/systemd/seatd.service
 }

diff --git a/sys-auth/seatd/seatd-.ebuild b/sys-auth/seatd/seatd-.ebuild
index 3d89eb8e867..ab311a6c598 100644
--- a/sys-auth/seatd/seatd-.ebuild
+++ b/sys-auth/seatd/seatd-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit meson
+inherit meson systemd
 
 DESCRIPTION="Minimal seat management daemon and universal library"
 HOMEPAGE="https://sr.ht/~kennylevinsen/seatd;
@@ -44,4 +44,5 @@ src_configure() {
 src_install() {
meson_src_install
newinitd "${FILESDIR}/seatd.initd" seatd
+   systemd_dounit contrib/systemd/seatd.service
 }



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

2020-12-10 Thread Lars Wendler
commit: ff3bbe2e21da99a4f5f068c0e9eb2bdde1a3f82c
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Dec 11 07:49:29 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Dec 11 07:49:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff3bbe2e

dev-libs/libusb: Removed old

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

 dev-libs/libusb/Manifest|  3 --
 dev-libs/libusb/libusb-1.0.19-r1.ebuild | 68 -
 dev-libs/libusb/libusb-1.0.21-r1.ebuild | 68 -
 dev-libs/libusb/libusb-1.0.22.ebuild| 67 
 4 files changed, 206 deletions(-)

diff --git a/dev-libs/libusb/Manifest b/dev-libs/libusb/Manifest
index bc416c0760e..12381aa27ff 100644
--- a/dev-libs/libusb/Manifest
+++ b/dev-libs/libusb/Manifest
@@ -1,5 +1,2 @@
-DIST libusb-1.0.19.tar.bz2 521496 BLAKE2B 
9f38dcb8f053019511dc2eed93772183c5487917794abd2839e981924bf05e39aba5cee4fb9a366b78e4d265fb16a921fb64c9a083323993ce21543d37073720
 SHA512 
f42f0187bfec16ebabad64efef7a7651ee85dcf2af1b7cbe543b7de615f9c6432f7eea5fcc6b23335591dcad287c905eb9bd56199cc5d3b47435027ad678f2c1
-DIST libusb-1.0.21.tar.bz2 607417 BLAKE2B 
c76352a19f416ad27b8940e99f38878e248cdbc04ef97752f8c8468ab0391869ab611197e3e143d69e0e23563da59f1691c14fce72958fdf28ebf10dd8c1521b
 SHA512 
015ca07bdb559aa40af5db1302ab0b1c8a30d593699fe2f3c9f45162673dc7b608cecc58d60fde8f3bde2a68370794a045e8efa48fc55402eece11261e525762
-DIST libusb-1.0.22.tar.bz2 598833 BLAKE2B 
38d01c1dd1837434c24008151a27cdfb2b2e9aab30fe95e4403bad613a0147a13b9b029814e15520bcfc2c181b00e3c5cc1ffdc3a586a604190bf441d3c89318
 SHA512 
2a93ba48bb66b9775838c16d74f7269348d9bc163f94ccf2842d1108d95a41cf79f8c8065233bea410fb94261a462dbb08ecfa1a9b6d3ddf4a5980e6043f74f4
 DIST libusb-1.0.23.tar.bz2 602860 BLAKE2B 
4eaf8cce0047b85c3057c67b53769739c50a39c4d34e94659b030fb11f02309f9217e93d35d78f699c55256346cf8b14827c8ddf495caeeacc522c51f473abc2
 SHA512 
73430ad31dd405e76a9c6c55086961003989c44964e2735b5076f9ca849e3f6fe71d10a66b74b111f0c34a0d2cb744b9ca105863c552123fce4ec0bbdd2ec15b
 DIST libusb-1.0.24.tar.bz2 606593 BLAKE2B 
f6188b5af1225cf8b6d1486b6efcf48e837ee4f2e3592adab3ae6aae0a74a67aa54f40f0dd547f951a194d40954f2ee33acf741d2eee0b8449ce64f2edcf1018
 SHA512 
5aea36a530aaa15c6dd656d0ed3ce204522c9946d8d39ffbb290dab4a98cda388a2598da4995123d1032324056090bd429e702459626d3e8d7daeebc4e7ff3dc

diff --git a/dev-libs/libusb/libusb-1.0.19-r1.ebuild 
b/dev-libs/libusb/libusb-1.0.19-r1.ebuild
deleted file mode 100644
index 3aa756f257a..000
--- a/dev-libs/libusb/libusb-1.0.19-r1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit multilib-minimal toolchain-funcs usr-ldscript
-
-DESCRIPTION="Userspace access to USB devices"
-HOMEPAGE="https://libusb.info/ https://github.com/libusb/libusb;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="1"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="debug doc examples static-libs test udev"
-RESTRICT="!test? ( test )"
-
-RDEPEND="udev? ( >=virtual/libudev-208:=[${MULTILIB_USEDEP},static-libs(-)?] )"
-DEPEND="${RDEPEND}
-   doc? ( app-doc/doxygen )
-   !udev? ( virtual/os-headers )"
-
-multilib_src_configure() {
-   ECONF_SOURCE=${S} \
-   econf \
-   $(use_enable static-libs static) \
-   $(use_enable udev) \
-   $(use_enable debug debug-log) \
-   $(use_enable test tests-build)
-}
-
-multilib_src_compile() {
-   emake
-
-   if multilib_is_native_abi; then
-   use doc && emake -C doc docs
-   fi
-}
-
-multilib_src_test() {
-   emake check
-
-   # noinst_PROGRAMS from tests/Makefile.am
-   tests/stress || die
-}
-
-multilib_src_install() {
-   emake DESTDIR="${D}" install
-
-   if multilib_is_native_abi; then
-   gen_usr_ldscript -a usb-1.0
-
-   use doc && dohtml doc/html/*
-   fi
-}
-
-multilib_src_install_all() {
-   find "${ED}" -name '*.la' -delete || die
-
-   dodoc AUTHORS ChangeLog NEWS PORTING README TODO
-
-   if use examples; then
-   insinto /usr/share/doc/${PF}/examples
-   doins examples/*.{c,h}
-   insinto /usr/share/doc/${PF}/examples/getopt
-   doins examples/getopt/*.{c,h}
-   fi
-}

diff --git a/dev-libs/libusb/libusb-1.0.21-r1.ebuild 
b/dev-libs/libusb/libusb-1.0.21-r1.ebuild
deleted file mode 100644
index 09e8498e73f..000
--- a/dev-libs/libusb/libusb-1.0.21-r1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit multilib-minimal toolchain-funcs usr-ldscript
-

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

2020-12-10 Thread Lars Wendler
commit: e25ee0b065a007a30ff6e362bd5610a55a6b211b
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Dec 11 07:48:37 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Dec 11 07:49:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e25ee0b0

dev-libs/libusb: Bump to version 1.0.24

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

 dev-libs/libusb/Manifest |  1 +
 dev-libs/libusb/libusb-1.0.24.ebuild | 68 
 2 files changed, 69 insertions(+)

diff --git a/dev-libs/libusb/Manifest b/dev-libs/libusb/Manifest
index e3eef8d1174..bc416c0760e 100644
--- a/dev-libs/libusb/Manifest
+++ b/dev-libs/libusb/Manifest
@@ -2,3 +2,4 @@ DIST libusb-1.0.19.tar.bz2 521496 BLAKE2B 
9f38dcb8f053019511dc2eed93772183c54879
 DIST libusb-1.0.21.tar.bz2 607417 BLAKE2B 
c76352a19f416ad27b8940e99f38878e248cdbc04ef97752f8c8468ab0391869ab611197e3e143d69e0e23563da59f1691c14fce72958fdf28ebf10dd8c1521b
 SHA512 
015ca07bdb559aa40af5db1302ab0b1c8a30d593699fe2f3c9f45162673dc7b608cecc58d60fde8f3bde2a68370794a045e8efa48fc55402eece11261e525762
 DIST libusb-1.0.22.tar.bz2 598833 BLAKE2B 
38d01c1dd1837434c24008151a27cdfb2b2e9aab30fe95e4403bad613a0147a13b9b029814e15520bcfc2c181b00e3c5cc1ffdc3a586a604190bf441d3c89318
 SHA512 
2a93ba48bb66b9775838c16d74f7269348d9bc163f94ccf2842d1108d95a41cf79f8c8065233bea410fb94261a462dbb08ecfa1a9b6d3ddf4a5980e6043f74f4
 DIST libusb-1.0.23.tar.bz2 602860 BLAKE2B 
4eaf8cce0047b85c3057c67b53769739c50a39c4d34e94659b030fb11f02309f9217e93d35d78f699c55256346cf8b14827c8ddf495caeeacc522c51f473abc2
 SHA512 
73430ad31dd405e76a9c6c55086961003989c44964e2735b5076f9ca849e3f6fe71d10a66b74b111f0c34a0d2cb744b9ca105863c552123fce4ec0bbdd2ec15b
+DIST libusb-1.0.24.tar.bz2 606593 BLAKE2B 
f6188b5af1225cf8b6d1486b6efcf48e837ee4f2e3592adab3ae6aae0a74a67aa54f40f0dd547f951a194d40954f2ee33acf741d2eee0b8449ce64f2edcf1018
 SHA512 
5aea36a530aaa15c6dd656d0ed3ce204522c9946d8d39ffbb290dab4a98cda388a2598da4995123d1032324056090bd429e702459626d3e8d7daeebc4e7ff3dc

diff --git a/dev-libs/libusb/libusb-1.0.24.ebuild 
b/dev-libs/libusb/libusb-1.0.24.ebuild
new file mode 100644
index 000..8236783eb0c
--- /dev/null
+++ b/dev-libs/libusb/libusb-1.0.24.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit toolchain-funcs multilib-minimal usr-ldscript
+
+DESCRIPTION="Userspace access to USB devices"
+HOMEPAGE="https://libusb.info/ https://github.com/libusb/libusb;
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.bz2;
+
+LICENSE="LGPL-2.1"
+SLOT="1"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+IUSE="debug doc examples static-libs test udev"
+RESTRICT="!test? ( test )"
+
+RDEPEND="udev? ( >=virtual/libudev-208:=[${MULTILIB_USEDEP},static-libs(-)?] )"
+DEPEND="${RDEPEND}
+   !udev? ( virtual/os-headers )"
+BDEPEND="doc? ( app-doc/doxygen )"
+
+multilib_src_configure() {
+   local myeconfargs=(
+   $(use_enable static-libs static)
+   $(use_enable udev)
+   $(use_enable debug debug-log)
+   $(use_enable test tests-build)
+   )
+   ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_compile() {
+   emake
+
+   if multilib_is_native_abi; then
+   use doc && emake -C doc docs
+   fi
+}
+
+multilib_src_test() {
+   emake check
+
+   # noinst_PROGRAMS from tests/Makefile.am
+   tests/stress || die
+}
+
+multilib_src_install() {
+   emake DESTDIR="${D}" install
+
+   if multilib_is_native_abi; then
+   gen_usr_ldscript -a usb-1.0
+
+   use doc && dodoc -r doc/html
+   fi
+}
+
+multilib_src_install_all() {
+   find "${ED}" -type f -name "*.la" -delete || die
+
+   dodoc AUTHORS ChangeLog NEWS PORTING README TODO
+
+   if use examples; then
+   insinto /usr/share/doc/${PF}/examples
+   doins examples/*.{c,h}
+   insinto /usr/share/doc/${PF}/examples/getopt
+   doins examples/getopt/*.{c,h}
+   fi
+}



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

2020-12-10 Thread Sergei Trofimovich
commit: 00bb2717a7151a82e128204e6817041dd06df183
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Dec 11 07:08:34 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Dec 11 07:42:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00bb2717

x11-libs/gdk-pixbuf: stable 2.42.2 for hppa/sparc, bug #759094

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  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 7e4c5488c4a..e52758955e6 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: dev-libs/zziplib/

2020-12-10 Thread Sergei Trofimovich
commit: 783849b6392a576d1253e043f1bbfee27cb3f514
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Dec 11 07:06:30 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Dec 11 07:41:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=783849b6

dev-libs/zziplib: mark 0.13.71_p20201021 hppa/sparc, bug #759178

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-libs/zziplib/zziplib-0.13.71_p20201021.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/zziplib/zziplib-0.13.71_p20201021.ebuild 
b/dev-libs/zziplib/zziplib-0.13.71_p20201021.ebuild
index 5422a0631a7..f42a6d5d8fa 100644
--- a/dev-libs/zziplib/zziplib-0.13.71_p20201021.ebuild
+++ b/dev-libs/zziplib/zziplib-0.13.71_p20201021.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/gdraheim/${PN}/archive/${MY_COMMIT}.tar.gz -> ${P}.t
 
 LICENSE="|| ( LGPL-2.1 MPL-1.1 )"
 SLOT="0/13"
-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="sdl static-libs"
 
 # Tests require internet access



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

2020-12-10 Thread Sergei Trofimovich
commit: 886cef466fe8d27ff26c36c7488beb7da9c554b3
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Dec 11 07:07:11 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Dec 11 07:42:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=886cef46

app-shells/mksh: stable 59 for sparc, bug #759214

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/app-shells/mksh/mksh-59.ebuild b/app-shells/mksh/mksh-59.ebuild
index 49b54d78db4..9ba431410c4 100644
--- a/app-shells/mksh/mksh-59.ebuild
+++ b/app-shells/mksh/mksh-59.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]] ; then
ECVS_AUTH="ext"
 else
SRC_URI="https://www.mirbsd.org/MirOS/dist/mir/mksh/${PN}-R${PV}.tgz;
-   KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~sparc x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv sparc x86 ~amd64-linux ~x86-linux"
 fi
 
 DESCRIPTION="MirBSD Korn Shell"



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

2020-12-10 Thread Sergei Trofimovich
commit: 457ed4d862d91a9361f602d0df1b019a678e5b57
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Dec 11 07:09:16 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Dec 11 07:42:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=457ed4d8

x11-libs/gdk-pixbuf-xlib: stable 2.40.2 for sparc, bug #759094

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  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 30bb1f102a9..340c8b1123d 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: dev-python/soupsieve/

2020-12-10 Thread Michał Górny
commit: b1cf7fa5f29fea78ac38a51df5b2d8c5a74ef649
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Dec 11 07:16:59 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Dec 11 07:33:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1cf7fa5

dev-python/soupsieve: Bump to 2.1.0

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

 dev-python/soupsieve/Manifest   |  1 +
 dev-python/soupsieve/soupsieve-2.1.0.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/dev-python/soupsieve/Manifest b/dev-python/soupsieve/Manifest
index b327b9a013c..e2fbb2a156d 100644
--- a/dev-python/soupsieve/Manifest
+++ b/dev-python/soupsieve/Manifest
@@ -1 +1,2 @@
 DIST soupsieve-2.0.1.tar.gz 96436 BLAKE2B 
00fe9390569886181d484c5eb3f2a14352c16c3807d4e2eca8b5fe0ff0fdc1ec77fcf6b32885d76f3a085c149848bdeafa1fd2cabdd4fe4742fc175c34aa72c4
 SHA512 
f4ef4deee81bb31952e1d3216250712f09b425e7a2253e15bd1b38cb74b680e421e7d086a8770737898f6b57867f07f2dd07b8a98108d05e338bce92b274b85f
+DIST soupsieve-2.1.0.tar.gz 98150 BLAKE2B 
37f6ef00f42d164ef57be88135e8a942166f53a39ed5643d6ae0468916a66be04c79e4e70da6ad38f8adf6fac41cb8bccb7edcfabd7e1a07083ab8a043d5203a
 SHA512 
19cd4ee596d189a001bbaf9f047e6c9eff569e2149ef5424bfe55c9b4325d856c957de87d55510335f748aab322dbb847b06b48931fbdeadbcc3790259c69eb1

diff --git a/dev-python/soupsieve/soupsieve-2.1.0.ebuild 
b/dev-python/soupsieve/soupsieve-2.1.0.ebuild
new file mode 100644
index 000..19bfd18e7a7
--- /dev/null
+++ b/dev-python/soupsieve/soupsieve-2.1.0.ebuild
@@ -0,0 +1,29 @@
+# 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} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="A modern CSS selector implementation for BeautifulSoup"
+HOMEPAGE="https://github.com/facelessuser/soupsieve/
+   https://pypi.org/project/soupsieve/;
+SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~x64-macos"
+IUSE="test"
+RESTRICT+=" !test? ( test )"
+
+BDEPEND="${RDEPEND}
+   test? (
+   dev-python/beautifulsoup[${PYTHON_USEDEP}]
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/html5lib[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest



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

2020-12-10 Thread Michał Górny
commit: 44aee51546d3c8042ff768210d61399feac9e01b
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Dec 11 07:09:59 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Dec 11 07:09:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44aee515

dev-python/hypothesis: Bump to 5.43.3

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

 dev-python/hypothesis/Manifest |  1 +
 dev-python/hypothesis/hypothesis-5.43.3.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/dev-python/hypothesis/Manifest b/dev-python/hypothesis/Manifest
index ed01c31dace..56ee4a0bf07 100644
--- a/dev-python/hypothesis/Manifest
+++ b/dev-python/hypothesis/Manifest
@@ -6,3 +6,4 @@ DIST hypothesis-python-5.41.5.tar.gz 9098660 BLAKE2B 
6caa742d34a3a2aeb6c6fdec3f8
 DIST hypothesis-python-5.43.0.tar.gz 9103047 BLAKE2B 
c9c8262fb32dfdb48b52ad11cd18f907d488802f1af04d7677e260abf24598afd5f89bf3f1a42c919460d5ea48b1d6979da5215ef9877260c601b133076bbd05
 SHA512 
129760a9c58f264e25c403fcacf9e1ab41267faee637856230341a91d6965a6c2fd05b9a8a12b6977377f8abc26ed7151384ad08195b03ddf62e8445b216eacf
 DIST hypothesis-python-5.43.1.tar.gz 9103292 BLAKE2B 
aa718b98c7a0e16322cbde38f0768e5ccf6716e2cd08aa97b5ed4d36c7ed9565e5ccba76443d74d253adff557918400ec384ee39c630523a31356c80dce15622
 SHA512 
428a7f1cfb379ebb3d3bea01727ad1633d2e591bea00de15d7967856af8b1aaa9371d278e51be9a0a902adaeff63215a2e87205309f058e371f6ad331737a11f
 DIST hypothesis-python-5.43.2.tar.gz 9103806 BLAKE2B 
7ef4bfdcd12782a3445d5094ab5111b305743c1c11afd33f3f615e6fd863192cff37c9df7b42052a83d55ee16d570adfb08f1e1c610697f2c2a3295cf09528fa
 SHA512 
c348568f00ce66c6cb53398a7f9b471ffa686cb9c4a4180ac00ba0edae76404c0a7e182f5df8a3c0738b9379f79bfb4b89fdb94bfe3529313a9a3c243a2658ae
+DIST hypothesis-python-5.43.3.tar.gz 9103991 BLAKE2B 
e374edf17571c33e48dc8d259db2fb23b9cc358f56189ebd60f3e9141ade7759eede1bdbd91d924f144a20b1ea0b7ec19817559b7f82a90f026ac101a7feeabd
 SHA512 
392fb794fc5ba06acd1e465cf1500f742d8b056148540778f1ec9c5065be66c0f514f0fa6872337869079636c71235d51d4c6722a63b03037b689edd6f09809f

diff --git a/dev-python/hypothesis/hypothesis-5.43.3.ebuild 
b/dev-python/hypothesis/hypothesis-5.43.3.ebuild
new file mode 100644
index 000..7cd8e4bcc52
--- /dev/null
+++ b/dev-python/hypothesis/hypothesis-5.43.3.ebuild
@@ -0,0 +1,64 @@
+# 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,7,8,9} pypy3 )
+PYTHON_REQ_USE="threads(+),sqlite"
+
+inherit distutils-r1 eutils multiprocessing optfeature
+
+DESCRIPTION="A library for property based testing"
+HOMEPAGE="https://github.com/HypothesisWorks/hypothesis 
https://pypi.org/project/hypothesis/;
+SRC_URI="https://github.com/HypothesisWorks/${PN}/archive/${PN}-python-${PV}.tar.gz;
+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"
+IUSE="cli test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
+   >=dev-python/sortedcontainers-2.1.0[${PYTHON_USEDEP}]
+   cli? (
+   $(python_gen_cond_dep '
+   dev-python/black[${PYTHON_USEDEP}]
+   dev-python/click[${PYTHON_USEDEP}]
+   ' python3_{6..9})
+   )
+"
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pexpect[${PYTHON_USEDEP}]
+   >=dev-python/pytest-5.3.5[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   !!

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

2020-12-10 Thread Michał Górny
commit: b849314e07039ca77368c2f8209540988f1a064f
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Dec 11 07:11:02 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Dec 11 07:11:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b849314e

dev-util/debugedit: Bump to 4.16.1

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

 dev-util/debugedit/Manifest|  1 +
 dev-util/debugedit/debugedit-4.16.1.ebuild | 91 ++
 2 files changed, 92 insertions(+)

diff --git a/dev-util/debugedit/Manifest b/dev-util/debugedit/Manifest
index f75fa034aa9..b462aca4af1 100644
--- a/dev-util/debugedit/Manifest
+++ b/dev-util/debugedit/Manifest
@@ -1 +1,2 @@
 DIST rpm-4.16.0.tar.bz2 4341683 BLAKE2B 
5161e5dcc6d9a1f1d4b8e44740fb368050b808fd9e8b8276fb17b530a4642e1b9ad104b5a30c0071215aef7f823eeab10988dd41f73af1c52d575529c374b5eb
 SHA512 
177119c3ac3d48980db55bb4ba0fdbb2a911968e5efc690bfa8cc343f850fc90531cc0dee6dd8e45d2b14f0d951ced35bd8893d24011b7f270745d281ddf4e3d
+DIST rpm-4.16.1.tar.bz2 4348973 BLAKE2B 
5f415099ed5b4f3425c1cbd02476c3066ef51e8efbe09829c0c7d9732cfdeed76ab0c5eed113a1b007d35bf5d5fb1c60543b7ef23319ba0f63550d598e98dcdd
 SHA512 
cbce8381e7a0bdaf2c7529d0ac91fda15e663db7a76b02652d53327ebcd7d5b6b6154d5e88feeda87f71727a036e7a2afcd57c7dcddef610e32957b9e430d367

diff --git a/dev-util/debugedit/debugedit-4.16.1.ebuild 
b/dev-util/debugedit/debugedit-4.16.1.ebuild
new file mode 100644
index 000..d2c33879440
--- /dev/null
+++ b/dev-util/debugedit/debugedit-4.16.1.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic
+
+MY_P=rpm-${PV}
+DESCRIPTION="Stand-alone debugedit from RPM"
+HOMEPAGE="https://rpm.org
+   https://github.com/rpm-software-management/rpm;
+SRC_URI="http://ftp.rpm.org/releases/rpm-$(ver_cut 1-2).x/${MY_P}.tar.bz2"
+
+LICENSE="GPL-2+ LGPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND="
+   sys-libs/zlib:=
+   >=dev-libs/popt-1.7
+   >=dev-libs/elfutils-0.176-r1
+   dev-libs/nss
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   eapply_user
+
+   # cheat it into believing we're bundling db
+   mkdir -p db/dist || die
+   touch db/dist/configure || die
+   chmod +x db/dist/configure || die
+   echo 'install:' > db3/Makefile || die
+
+   # TODO: why do we need to do this?
+   mkdir rpm || die
+   find -name '*.h' -exec cp {} rpm/ ';' || die
+}
+
+src_configure() {
+   append-cppflags -I"${EPREFIX}/usr/include/nss" 
-I"${EPREFIX}/usr/include/nspr"
+   local myconf=(
+   # force linking to static librpmio
+   --disable-shared
+
+   # disable linking compression libraries
+   ac_cv_header_bzlib_h=no
+   ac_cv_header_lzma_h=no
+   --disable-zstd
+
+   # fake some libraries we don't use
+   ac_cv_header_magic_h=yes
+   ac_cv_lib_magic_magic_open=yes
+
+   # use nss as crypto provider
+   --with-crypto=nss
+
+   # disable other stuff irrelevant to debugedit
+   --disable-bdb
+   --disable-nls
+   --disable-plugins
+   --disable-python
+   --without-acl
+   --without-archive
+   --without-cap
+   --without-external-db
+   --without-hackingdocs
+   --without-lua
+   --without-selinux
+   )
+   econf "${myconf[@]}"
+}
+
+src_compile() {
+   emake -C misc
+   emake -C rpmio
+   emake debugedit
+}
+
+src_test() {
+   :
+}
+
+src_install() {
+   dobin debugedit
+}



[gentoo-commits] data/api:master commit in: files/overlays/

2020-12-10 Thread Michał Górny
commit: 5660e75445b648b6a5a78e99dcb3f2e9a5e216da
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Dec 11 07:23:18 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Dec 11 07:23:18 2020 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=5660e754

repositories: Remove freeswitch per owner's request

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

 files/overlays/repositories.xml | 11 ---
 1 file changed, 11 deletions(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index c6cd28e..d16dcfb 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -1772,17 +1772,6 @@
 g...@github.com:Pekkari/foxiverlay.git
 https://github.com/Pekkari/foxiverlay/commits/master.atom
   
-  
-freeswitch
-Freeswitch Gentoo overlay
-https://github.com/alphallc/freeswitch/
-
-  m...@gentoo.org
-  Vadim A. Misbakh-Soloviov
-
-git://github.com/alphallc/freeswitch
-https://github.com/alphallc/freeswitch/commits/master.atom
-  
   
 fritteli
 fritteli's Gentoo Overlay



[gentoo-commits] repo/proj/guru:dev commit in: sys-fs/erofs-utils/files/, sys-fs/erofs-utils/

2020-12-10 Thread Denis Reva
commit: 828be86ca51385916354962961fb259450fa
Author: Denis Reva  gmail  com>
AuthorDate: Fri Dec 11 04:48:20 2020 +
Commit: Denis Reva  gmail  com>
CommitDate: Fri Dec 11 04:48:20 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=828be86c

sys-fs/erofs-utils: bumped up to 1.2+ version

Thank David Michael for ebuild:
https://bugs.gentoo.org/701284
Version 1.2 with patch now supports -fno-common

Live ebuild (message from D.Michael):
This updates the live ebuild with the new features.  It doesn't need
the patch from 1.2, since that's in the experimental branch.
It actually does need the sed call to fix selinux+fuse at
the moment, since that is not addressed upstream.  I dropped it
here anyway assuming it will be fixed relatively soon.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Denis Reva  gmail.com>

 sys-fs/erofs-utils/Manifest|  1 +
 sys-fs/erofs-utils/erofs-utils-1.2.ebuild  | 45 
 sys-fs/erofs-utils/erofs-utils-.ebuild | 38 ++
 .../files/erofs-utils-1.2-no-common.patch  | 61 ++
 sys-fs/erofs-utils/metadata.xml|  1 +
 5 files changed, 146 insertions(+)

diff --git a/sys-fs/erofs-utils/Manifest b/sys-fs/erofs-utils/Manifest
index 3bf92e0b..4b9d3aab 100644
--- a/sys-fs/erofs-utils/Manifest
+++ b/sys-fs/erofs-utils/Manifest
@@ -1 +1,2 @@
 DIST erofs-utils-1.1.tar.gz 46133 BLAKE2B 
24a2f16059e39bd65203f4a28721b8aad70599d6201ead02c291234de631bd3def1c403fa8b50b6dce4af3eea2768b912c4f56ad20c3c26db3853ba3174775ac
 SHA512 
f300b536f0ba91a05a7eb3dc9a9ec402c98966ad7c0e1f2f664a650caaffce6c4433722374418c6d03e69ce2e74785e55f9bcc45e6717a8bc67e5352e450806b
+DIST erofs-utils-1.2.tar.gz 60991 BLAKE2B 
08b9bea397f52d158a40f095811853315a3b553618f380d1ece012c813d708c2331b2a445bb59c4b86d81edab33c834e37aeb0aeeb9acb157b7aebed309cb591
 SHA512 
167311beb2d4722436051956076d670f6a54da72e1690d19d43e0c46dd972f9f61427b4792b469813a6a4ff2e3c445646cf063d37b4ee2b52f88eb14e7bf2713

diff --git a/sys-fs/erofs-utils/erofs-utils-1.2.ebuild 
b/sys-fs/erofs-utils/erofs-utils-1.2.ebuild
new file mode 100644
index ..62a2d24c
--- /dev/null
+++ b/sys-fs/erofs-utils/erofs-utils-1.2.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Userspace tools for EROFS images"
+HOMEPAGE="https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git;
+SRC_URI="${HOMEPAGE}/snapshot/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+IUSE="fuse lz4 selinux +uuid"
+
+RDEPEND="
+   fuse? ( sys-fs/fuse:0 )
+   lz4? ( >=app-arch/lz4-1.9 )
+   selinux? ( sys-libs/libselinux )
+   uuid? ( sys-apps/util-linux )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+   "${FILESDIR}/${P}-no-common.patch"
+)
+
+src_prepare() {
+   default
+   use fuse && use selinux && sed -i \
+   -e 's/.*CFLAGS}.*/& ${libselinux_CFLAGS}/' \
+   -e 's/.*LIBS}.*/& ${libselinux_LIBS}/' \
+   fuse/Makefile.am
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   $(use_enable fuse) \
+   $(use_enable lz4) \
+   $(use_with selinux) \
+   $(use_with uuid)
+}

diff --git a/sys-fs/erofs-utils/erofs-utils-.ebuild 
b/sys-fs/erofs-utils/erofs-utils-.ebuild
new file mode 100644
index ..1b9df411
--- /dev/null
+++ b/sys-fs/erofs-utils/erofs-utils-.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools git-r3
+
+DESCRIPTION="Userspace tools for EROFS images"
+HOMEPAGE="https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git;
+EGIT_BRANCH="experimental"
+EGIT_REPO_URI="${HOMEPAGE}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS=""
+IUSE="fuse lz4 selinux +uuid"
+
+RDEPEND="
+   fuse? ( sys-fs/fuse:0 )
+   lz4? ( >=app-arch/lz4-1.9 )
+   selinux? ( sys-libs/libselinux )
+   uuid? ( sys-apps/util-linux )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   $(use_enable fuse) \
+   $(use_enable lz4) \
+   $(use_with selinux) \
+   $(use_with uuid)
+}

diff --git a/sys-fs/erofs-utils/files/erofs-utils-1.2-no-common.patch 
b/sys-fs/erofs-utils/files/erofs-utils-1.2-no-common.patch
new file mode 100644
index ..689e485d
--- /dev/null
+++ b/sys-fs/erofs-utils/files/erofs-utils-1.2-no-common.patch
@@ -0,0 +1,61 @@
+From ac0d13efa1fe673e677343cda4795d820500da6b Mon Sep 17 00:00:00 2001
+From: Gao Xiang 
+Date: Tue, 8 Dec 2020 18:57:41 +0800
+Subject: erofs-utils: fix multiple definition of `sbi'
+
+As nl6720 

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

2020-12-10 Thread Matt Turner
commit: 7d93c319f17a83390450d30b8053244075d3c905
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 11 03:24:09 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 11 03:24:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d93c319

app-editors/gedit: Keyword 3.36.2 alpha, #737476

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

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

diff --git a/app-editors/gedit/gedit-3.36.2.ebuild 
b/app-editors/gedit/gedit-3.36.2.ebuild
index 41d504dc337..3b78f351f47 100644
--- a/app-editors/gedit/gedit-3.36.2.ebuild
+++ b/app-editors/gedit/gedit-3.36.2.ebuild
@@ -17,7 +17,7 @@ SLOT="0"
 IUSE="+introspection +python gtk-doc spell vala"
 REQUIRED_USE="python? ( introspection ${PYTHON_REQUIRED_USE} )"
 
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 # X libs are not needed for OSX (aqua)
 DEPEND="



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

2020-12-10 Thread Matt Turner
commit: 0e50d5f2d7a0c95c889f13b091dd39a652553258
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 11 03:24:27 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 11 03:24:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e50d5f2

app-crypt/seahorse: Keyword 3.36.2 alpha, #692802

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

 app-crypt/seahorse/seahorse-3.36.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/seahorse/seahorse-3.36.2.ebuild 
b/app-crypt/seahorse/seahorse-3.36.2.ebuild
index 38e02be066e..0634a614201 100644
--- a/app-crypt/seahorse/seahorse-3.36.2.ebuild
+++ b/app-crypt/seahorse/seahorse-3.36.2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Seahorse;
 LICENSE="GPL-2+ FDL-1.1+"
 SLOT="0"
 IUSE="ldap zeroconf"
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 RDEPEND="
>=dev-libs/glib-2.44:2



[gentoo-commits] repo/gentoo:master commit in: gui-libs/tepl/

2020-12-10 Thread Matt Turner
commit: 6730c68126f0e3c434e616d84a2eac93ab0af5c1
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 11 03:24:08 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 11 03:24:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6730c681

gui-libs/tepl: Keyword 4.4.0 alpha, #737476

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

 gui-libs/tepl/tepl-4.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/tepl/tepl-4.4.0.ebuild b/gui-libs/tepl/tepl-4.4.0.ebuild
index 2ad2ada5717..0a54c747360 100644
--- a/gui-libs/tepl/tepl-4.4.0.ebuild
+++ b/gui-libs/tepl/tepl-4.4.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Tepl;
 
 LICENSE="LGPL-2.1+"
 SLOT="4"
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="+introspection"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: gui-libs/libhandy/

2020-12-10 Thread Matt Turner
commit: 535df0478ee0fe6d7021f0699eb17b6c1720386a
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 11 03:24:26 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 11 03:24:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=535df047

gui-libs/libhandy: Keyword 0.0.13 alpha, #692802

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

 gui-libs/libhandy/libhandy-0.0.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libhandy/libhandy-0.0.13.ebuild 
b/gui-libs/libhandy/libhandy-0.0.13.ebuild
index 07b2ca7fab2..c9ba68791ce 100644
--- a/gui-libs/libhandy/libhandy-0.0.13.ebuild
+++ b/gui-libs/libhandy/libhandy-0.0.13.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_P}"
 LICENSE="LGPL-2.1+"
 SLOT="0.0/0" # It may or may not break ABI in future versions at this point; 
if new
 # SLOT happens, it'll likely file conflict on gtk-doc and glade library and 
catalog
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 IUSE="examples glade gtk-doc +introspection test +vala"
 REQUIRED_USE="vala? ( introspection )"



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

2020-12-10 Thread Matt Turner
commit: ecbe3d93aa6326d49773f692c36ac3870dfb1b12
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 11 03:24:26 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 11 03:24:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecbe3d93

media-libs/gsound: Keyword 1.0.2-r1 alpha, #692802

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

 media-libs/gsound/gsound-1.0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/gsound/gsound-1.0.2-r1.ebuild 
b/media-libs/gsound/gsound-1.0.2-r1.ebuild
index cf05d8cf114..bbb5fd9d277 100644
--- a/media-libs/gsound/gsound-1.0.2-r1.ebuild
+++ b/media-libs/gsound/gsound-1.0.2-r1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/GSound;
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
 IUSE="+introspection +vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2020-12-10 Thread Patrick McLean
commit: 7a2a100a394aedb8ec1a7d9e374e72f33dee364c
Author: Patrick McLean  sony  com>
AuthorDate: Fri Dec 11 02:03:12 2020 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Dec 11 02:03:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a2a100a

dev-python/pysimdjson-3.1.1: add py39

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

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

diff --git a/dev-python/pysimdjson/pysimdjson-3.1.1.ebuild 
b/dev-python/pysimdjson/pysimdjson-3.1.1.ebuild
index 13cae8be7e3..276dfb899f4 100644
--- a/dev-python/pysimdjson/pysimdjson-3.1.1.ebuild
+++ b/dev-python/pysimdjson/pysimdjson-3.1.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6..8} )
+PYTHON_COMPAT=( python3_{6..9} )
 inherit distutils-r1
 
 DESCRIPTION="Python bindings for simdjson"



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

2020-12-10 Thread Thomas Deutschmann
commit: dfcd1083180e4c1966c39d4d9bee66071ea6e5f1
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Dec 11 00:07:43 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec 11 00:10:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfcd1083

net-misc/curl: rev bump to enable socketpair support

Link: https://github.com/curl/curl/issues/6299#issuecomment-742867378
Acked-by:  Anthony G. Basile  gentoo.org>
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 net-misc/curl/{curl-7.74.0.ebuild => curl-7.74.0-r1.ebuild} | 1 -
 1 file changed, 1 deletion(-)

diff --git a/net-misc/curl/curl-7.74.0.ebuild 
b/net-misc/curl/curl-7.74.0-r1.ebuild
similarity index 99%
rename from net-misc/curl/curl-7.74.0.ebuild
rename to net-misc/curl/curl-7.74.0-r1.ebuild
index 7f1d8cea7d1..49f1ca41252 100644
--- a/net-misc/curl/curl-7.74.0.ebuild
+++ b/net-misc/curl/curl-7.74.0-r1.ebuild
@@ -222,7 +222,6 @@ multilib_src_configure() {
$(use_enable progress-meter) \
--enable-proxy \
--disable-sspi \
-   --disable-socketpair \
$(use_enable static-libs static) \
$(use_enable threads threaded-resolver) \
$(use_enable threads pthreads) \



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

2020-12-10 Thread Thomas Deutschmann
commit: 4a64386f94d2884fef6eeb7e782e8b323ae5ba52
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 23:46:06 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 23:46:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a64386f

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

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

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

diff --git a/net-misc/curl/curl-7.74.0.ebuild b/net-misc/curl/curl-7.74.0.ebuild
index d89d5d9531c..7f1d8cea7d1 100644
--- a/net-misc/curl/curl-7.74.0.ebuild
+++ b/net-misc/curl/curl-7.74.0.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: xfce-base/libxfce4ui/

2020-12-10 Thread Michał Górny
commit: ff7be8ebaf08d6f692f1546ce787a510d29b2772
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 10 22:25:51 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 10 23:21:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff7be8eb

xfce-base/libxfce4ui: Bump to 4.15.6

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

 xfce-base/libxfce4ui/Manifest |  1 +
 xfce-base/libxfce4ui/libxfce4ui-4.15.6.ebuild | 73 +++
 xfce-base/libxfce4ui/metadata.xml |  1 +
 3 files changed, 75 insertions(+)

diff --git a/xfce-base/libxfce4ui/Manifest b/xfce-base/libxfce4ui/Manifest
index b8648f4a1ed..7ae4e520ae3 100644
--- a/xfce-base/libxfce4ui/Manifest
+++ b/xfce-base/libxfce4ui/Manifest
@@ -2,3 +2,4 @@ DIST libxfce4ui-4.14.1.tar.bz2 756175 BLAKE2B 
d487cc0a04b6053ead6670eeb83cafe1c4
 DIST libxfce4ui-4.15.3.tar.bz2 756530 BLAKE2B 
ca2a9d5aae80d22a97b2fe932248756c9f34f71a13342670cdc0ad1c5393eb62d4f5bed8b21a45a60c762a83ebf1458deb7ef629c4dd3c894468ecf16a821dcf
 SHA512 
a0e5a60c54df811fa2815238f9fe506700f6df8a6baa8172a6f8c68f005b54ba94ee31aba87d635fb506700da9c77e25f8c57268018fc8cfa5577f29aab58a6b
 DIST libxfce4ui-4.15.4.tar.bz2 825895 BLAKE2B 
46687dea72d17a3693c31f69bd4d1961397bf00d9395935778c8c5b90e6e56585fa2e64fe4be817ad44994841218d7cce98ade033914c56ea82a04ae7e1b70e7
 SHA512 
af2545f6d72df1a13d926a52b5124c52f34fbee0b2db6664292f74bcc3d93cb42263eab57beb9f882be42b6530649b2c7e42d496817f1b34b7d2b67b29e6deb1
 DIST libxfce4ui-4.15.5.tar.bz2 813220 BLAKE2B 
5925ea1e25abf485e04902b47da6e09d228297b7137dbeedb8c60655e2005ded37138d12482f8321928994f2bfb8d351bb18f2eb47f288d810f58ce75e378c06
 SHA512 
daa666826e2b4d876025a3c93b6caf40b063b456660116f5c4c8b2beb9a9eb26d6228785cc7e6435d2a38b68c15261fc872a8cf3e03af0969342e3396a6b2a49
+DIST libxfce4ui-4.15.6.tar.bz2 823475 BLAKE2B 
11193a72be188dc205ad24d7ea06ac21f93679d58bed273d78ff04180226eab14fd211bd2feba9b3ade20539364f90229bdfe226c2b1e4b6f6a17f7444feb26d
 SHA512 
608daf350b8fb43ae4eb70b6d7e684528bcc90360f6d29b182da4f04bc51f5c191e27369dfa1554b6840dbdefbe132cfc66935b6f2d88dcc62f67f929b9423ec

diff --git a/xfce-base/libxfce4ui/libxfce4ui-4.15.6.ebuild 
b/xfce-base/libxfce4ui/libxfce4ui-4.15.6.ebuild
new file mode 100644
index 000..ba60530e9b5
--- /dev/null
+++ b/xfce-base/libxfce4ui/libxfce4ui-4.15.6.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils vala
+
+DESCRIPTION="Unified widget and session management libs for Xfce"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="LGPL-2+ GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="debug glade introspection startup-notification system-info vala"
+REQUIRED_USE="vala? ( introspection )"
+
+RDEPEND=">=dev-libs/glib-2.50:2
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libICE
+   x11-libs/libSM
+   >=xfce-base/libxfce4util-4.12:=[introspection?]
+   >=xfce-base/xfconf-4.12:=
+   glade? ( dev-util/glade:3.10 )
+   introspection? ( dev-libs/gobject-introspection:= )
+   startup-notification? ( x11-libs/startup-notification )
+   system-info? (
+   dev-libs/libgudev
+   gnome-base/libgtop
+   media-libs/libepoxy
+   )"
+DEPEND="${RDEPEND}"
+BDEPEND="dev-lang/perl
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+   vala? ( $(vala_depend) )"
+
+src_prepare() {
+   # stupid vala.eclass...
+   default
+}
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable system-info glibtop)
+   $(use_enable system-info epoxy)
+   $(use_enable system-info gudev)
+   $(use_enable startup-notification)
+   $(use_enable vala)
+   $(use_enable glade gladeui2)
+   --with-vendor-info=Gentoo
+   )
+
+   use vala && vala_src_prepare
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   emake -j1 DESTDIR="${D}" install
+
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}

diff --git a/xfce-base/libxfce4ui/metadata.xml 
b/xfce-base/libxfce4ui/metadata.xml
index b16ea0c2efb..b44a362a8f7 100644
--- a/xfce-base/libxfce4ui/metadata.xml
+++ b/xfce-base/libxfce4ui/metadata.xml
@@ -9,5 +9,6 @@
 Build support for Glade 3's GtkBuilder 
implementation
 Build deprecated GTK+2 libxfce4ui-1 library.
 Enable system information via 
gnome-base/libgtop.
+Enable system information in xfce4-about.
   
 



[gentoo-commits] repo/proj/guru:dev commit in: net-misc/megasync/

2020-12-10 Thread Theo Anderson
commit: 17b1a1064a770fde8b4f8a8b9a9e9d57312268d1
Author: Theo Anderson  posteo  de>
AuthorDate: Thu Dec 10 23:03:23 2020 +
Commit: Theo Anderson  posteo  de>
CommitDate: Thu Dec 10 23:03:23 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=17b1a106

net-misc/megasync: fix 

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Theo Anderson  posteo.de>

 net-misc/megasync/megasync-4.3.7.ebuild | 11 ++-
 net-misc/megasync/megasync-.ebuild  |  9 +
 2 files changed, 11 insertions(+), 9 deletions(-)

diff --git a/net-misc/megasync/megasync-4.3.7.ebuild 
b/net-misc/megasync/megasync-4.3.7.ebuild
index 390ce338..61ef362c 100644
--- a/net-misc/megasync/megasync-4.3.7.ebuild
+++ b/net-misc/megasync/megasync-4.3.7.ebuild
@@ -3,9 +3,7 @@
 
 EAPI=7
 
-inherit autotools cmake desktop qmake-utils
-
-MEGA_SDK_REV="ba4834cb6c22f4e996f328db3aa5b82ef20eed3e" # commit of 
src/MEGASync/mega submodule
+inherit autotools desktop qmake-utils xdg cmake
 
 DESCRIPTION="The official Qt-based program for syncing your MEGA account in 
your PC"
 HOMEPAGE="http://mega.co.nz;
@@ -14,6 +12,7 @@ if [[ ${PV} ==  ]];then
inherit git-r3
EGIT_REPO_URI="https://github.com/meganz/MEGAsync;
 else
+   MEGA_SDK_REV="ba4834cb6c22f4e996f328db3aa5b82ef20eed3e" # commit of 
src/MEGASync/mega submodule
SRC_URI="

https://github.com/meganz/MEGAsync/archive/v${PV}.0_Linux.tar.gz -> ${P}.tar.gz
https://github.com/meganz/sdk/archive/${MEGA_SDK_REV}.tar.gz -> 
${PN}-sdk-${PV}.tar.gz
@@ -71,8 +70,10 @@ BDEPEND="
 DOCS=( CREDITS.md README.md )
 
 src_prepare() {
-   rmdir src/MEGASync/mega
-   mv "${WORKDIR}"/sdk-${MEGA_SDK_REV} src/MEGASync/mega
+   if [[ ${PV} !=  ]]; then
+   rmdir src/MEGASync/mega
+   mv "${WORKDIR}"/sdk-${MEGA_SDK_REV} src/MEGASync/mega
+   fi
default
cd src/MEGASync/mega
eautoreconf

diff --git a/net-misc/megasync/megasync-.ebuild 
b/net-misc/megasync/megasync-.ebuild
index 5a8311e0..61ef362c 100644
--- a/net-misc/megasync/megasync-.ebuild
+++ b/net-misc/megasync/megasync-.ebuild
@@ -5,8 +5,6 @@ EAPI=7
 
 inherit autotools desktop qmake-utils xdg cmake
 
-MEGA_SDK_REV="ba4834cb6c22f4e996f328db3aa5b82ef20eed3e" # commit of 
src/MEGASync/mega submodule
-
 DESCRIPTION="The official Qt-based program for syncing your MEGA account in 
your PC"
 HOMEPAGE="http://mega.co.nz;
 
@@ -14,6 +12,7 @@ if [[ ${PV} ==  ]];then
inherit git-r3
EGIT_REPO_URI="https://github.com/meganz/MEGAsync;
 else
+   MEGA_SDK_REV="ba4834cb6c22f4e996f328db3aa5b82ef20eed3e" # commit of 
src/MEGASync/mega submodule
SRC_URI="

https://github.com/meganz/MEGAsync/archive/v${PV}.0_Linux.tar.gz -> ${P}.tar.gz
https://github.com/meganz/sdk/archive/${MEGA_SDK_REV}.tar.gz -> 
${PN}-sdk-${PV}.tar.gz
@@ -71,8 +70,10 @@ BDEPEND="
 DOCS=( CREDITS.md README.md )
 
 src_prepare() {
-   rmdir src/MEGASync/mega
-   mv "${WORKDIR}"/sdk-${MEGA_SDK_REV} src/MEGASync/mega
+   if [[ ${PV} !=  ]]; then
+   rmdir src/MEGASync/mega
+   mv "${WORKDIR}"/sdk-${MEGA_SDK_REV} src/MEGASync/mega
+   fi
default
cd src/MEGASync/mega
eautoreconf



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

2020-12-10 Thread Piotr Karbowski
commit: 52c8478c204c534faf1a511acb0442f627d529a1
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Thu Dec 10 22:18:55 2020 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Thu Dec 10 22:23:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52c8478c

media-gfx/feh: 3.6 version bump

Signed-off-by: Piotr Karbowski  gentoo.org>

 media-gfx/feh/Manifest   |  1 +
 media-gfx/feh/feh-3.6.ebuild | 70 
 2 files changed, 71 insertions(+)

diff --git a/media-gfx/feh/Manifest b/media-gfx/feh/Manifest
index bcdea483dfd..d5ba44f1e6f 100644
--- a/media-gfx/feh/Manifest
+++ b/media-gfx/feh/Manifest
@@ -2,3 +2,4 @@ DIST feh-3.3.tar.bz2 2112880 BLAKE2B 
56042367c0acce966e115e77f3afa1acd3f942a956b
 DIST feh-3.4.1.tar.bz2 2114441 BLAKE2B 
c24e5f54762439cfbb031b4b24ded03f1c0c9c75233ae5b6dc66a7a56922902c672606a1b36fef9b30789c09946c8ccc5f9a60fe201db07e70bcf0ce0638c0c1
 SHA512 
d674d3134819cf6731aebf8af87a2f890d54dd7f8c64071e8816a032aeeb95c31f56752bb3477be0dfb653f813872b32dc2daf4e0514fed03e3f6bba36896c66
 DIST feh-3.4.tar.bz2 2114146 BLAKE2B 
0bc65db77c67c42b693122b877417c3dc4db7a0551cdf62723b3f7c134e5f2bb73ee6d0aa5a0c81402cf5a5f723ceb29a45fb5e4aef1911dc643aeb82c3ef17d
 SHA512 
50cb7fd33b583ee802cbbba8ed7a74e9eb72a141ffa28ab998a196f9f8d030a8192420fc084136f699cb33b1b8c4d8c2c111fa90695dd82a1366330a428383ce
 DIST feh-3.5.tar.bz2 2115162 BLAKE2B 
8300cfc0e480afb070d40e35390edb30dc451dc5581add5f377a370bf606f7e7730a99c8a4773accb38b01a4e9b47fe5c95d8e9c2dcf9d71e96a71c4fd11a388
 SHA512 
69b4c73a8009c5b5e031bdf3c6a628da2f3cd71927d6c546ba2b2cfb6d10912e4a44e5d0de93704645a4dd33d71f1445749abe03383cc2298fa10c2d5d88fb5e
+DIST feh-3.6.tar.bz2 2116101 BLAKE2B 
8ad47c6b456746d951728fd8a0ba1a2fed4ceb4a7e15554f68b4de071da7b3f4e9e16a10b1a05e51291b8b4127bab98f2b96231298fd181d8dc544bc089a772f
 SHA512 
1df017adcf0650ff2cdc26556cbea5a6b8c9dad1dd4412879312334d0140ab9e5c9c8bac7249dcfbdd7985ae75d847752eadad14216102d8ab7bcb2c42c7

diff --git a/media-gfx/feh/feh-3.6.ebuild b/media-gfx/feh/feh-3.6.ebuild
new file mode 100644
index 000..7d87a35ace6
--- /dev/null
+++ b/media-gfx/feh/feh-3.6.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit toolchain-funcs xdg-utils
+
+DESCRIPTION="A fast, lightweight imageviewer using imlib2"
+HOMEPAGE="https://feh.finalrewind.org/;
+SRC_URI="https://feh.finalrewind.org/${P}.tar.bz2;
+
+LICENSE="feh"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
+IUSE="debug curl exif test xinerama"
+RESTRICT="!test? ( test )"
+
+COMMON_DEPEND="media-libs/imlib2[X]
+   >=media-libs/libpng-1.2:0=
+   x11-libs/libX11
+   curl? ( net-misc/curl )
+   exif? ( media-libs/libexif )
+   xinerama? ( x11-libs/libXinerama )"
+RDEPEND="${COMMON_DEPEND}
+   virtual/jpeg:0"
+DEPEND="${COMMON_DEPEND}
+   x11-base/xorg-proto
+   x11-libs/libXt
+   test? (
+   >=dev-lang/perl-5.10
+   dev-perl/Test-Command
+   media-libs/imlib2[gif,jpeg,png]
+   )"
+
+PATCHES=( "${FILESDIR}"/${PN}-3.2-debug-cflags.patch )
+
+pkg_setup() {
+   use_feh() { usex $1 1 0; }
+
+   fehopts=(
+   DESTDIR="${D}"
+   PREFIX="${EPREFIX}"/usr
+   doc_dir='${main_dir}'/share/doc/${PF}
+   example_dir='${main_dir}'/share/doc/${PF}/examples
+   curl=$(use_feh curl)
+   debug=$(use_feh debug)
+   xinerama=$(use_feh xinerama)
+   exif=$(use_feh exif)
+   )
+}
+
+src_compile() {
+   tc-export CC
+   emake "${fehopts[@]}"
+}
+
+src_install() {
+   emake "${fehopts[@]}" install
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_mimeinfo_database_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_mimeinfo_database_update
+   xdg_desktop_database_update
+}



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

2020-12-10 Thread Piotr Karbowski
commit: 031e7666dad3d8caacc7181403ac8553c50faa3b
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Thu Dec 10 22:23:35 2020 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Thu Dec 10 22:23:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=031e7666

dev-python/jikanpy: 4.2.2 version bump

Signed-off-by: Piotr Karbowski  gentoo.org>

 dev-python/jikanpy/Manifest |  1 +
 dev-python/jikanpy/jikanpy-4.2.2.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-python/jikanpy/Manifest b/dev-python/jikanpy/Manifest
index b6be52db905..22105430962 100644
--- a/dev-python/jikanpy/Manifest
+++ b/dev-python/jikanpy/Manifest
@@ -1 +1,2 @@
 DIST jikanpy-4.2.1.tar.gz 536588 BLAKE2B 
f6bf531cc57814d2740e1d325bc521dc92651a1a467b65277086130d9c00de7b592e81a7f82e12cb35ac8d8c7f1bcc6201f945ab9c49befb8b89093e627eacc1
 SHA512 
7f690745a790836ddae95aaffdaa59ea60d0c2b2d9c64be7548372719c826239d3d650931652ca75d8e35f1d4354c0b80ebf0d7e80a4fa4b65ec3bbd4bef1cd5
+DIST jikanpy-4.2.2.tar.gz 536658 BLAKE2B 
b8f34f506aa93c68586d59d0ba37e1731e509f8ce2e0cd4f157b6ea5ae8b333271f528992998c92c19e08358ca14508a2bfae6fa167a750bb732fbcd3ccb13d3
 SHA512 
117aed3c968214aae659437b795cd4e326e0d94a536005861edad861b6e08d50be346063d1d75c3874ae2d1b3670cfa2ab566e340aa58ff6137a94dbd6369bed

diff --git a/dev-python/jikanpy/jikanpy-4.2.2.ebuild 
b/dev-python/jikanpy/jikanpy-4.2.2.ebuild
new file mode 100644
index 000..a901c883c33
--- /dev/null
+++ b/dev-python/jikanpy/jikanpy-4.2.2.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+inherit distutils-r1
+
+DESCRIPTION="Python wrapper for jikan.moe API."
+HOMEPAGE="https://pypi.org/project/jikanpy/;
+SRC_URI="https://github.com/abhinavk99/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-python/aiohttp[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/simplejson[${PYTHON_USEDEP}]
+"



[gentoo-commits] repo/gentoo:master commit in: net-p2p/nicotine+/

2020-12-10 Thread Piotr Karbowski
commit: 0b1d212e2082ca3da53e78e063a0d9fdfebcc60c
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Thu Dec 10 22:20:48 2020 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Thu Dec 10 22:23:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b1d212e

net-p2p/nicotine+: 2.2.0 version bump

Signed-off-by: Piotr Karbowski  gentoo.org>

 net-p2p/nicotine+/Manifest   |  1 +
 net-p2p/nicotine+/nicotine+-2.2.0.ebuild | 43 
 2 files changed, 44 insertions(+)

diff --git a/net-p2p/nicotine+/Manifest b/net-p2p/nicotine+/Manifest
index e23909a1f9b..9783919d1e0 100644
--- a/net-p2p/nicotine+/Manifest
+++ b/net-p2p/nicotine+/Manifest
@@ -1,2 +1,3 @@
 DIST nicotine+-2.0.1.tar.gz 5140065 BLAKE2B 
01af7eb58ea6800c17042ef73b9caa8b3d5712e33226486e648fee824c0d0934440ee51f659199a5276f6a460005df89359b282b09aa07941c70e29bddc97a26
 SHA512 
0a16c0c289a4f4d54eba773ad40952baadf7ea4a6b4a4524cc500d007f6de0bdd7a847e3f68978a3247c9bc4a6eab3b77db34605fda79da34c352e89a1b9
 DIST nicotine+-2.1.2.tar.gz 5091941 BLAKE2B 
2fcfcc25645a194e1161502c1836d075732a833e1cca1f16cb939e960371c9a656c0044427ca381e8fb3d76de139af1f495b3c5ff208fe931571cfbe5ab0d219
 SHA512 
dc5ae656cb24efdd252475eefa63d471e44f9652650ca834acb358c195337c46c07ef5da873419d66235a8fbb3d2e290347aa47416c0017bea54423b485225c9
+DIST nicotine+-2.2.0.tar.gz 3382047 BLAKE2B 
64e83aee32f16ff8fcd298a4f876eca1903a37879918bdf3d1e4684d17b1815caf991ffc0264273fb3b84ab77a300382050039b3c5977a38d1e94ba060f7b58e
 SHA512 
1a3aa24fe09564dbd2cd454e081eb5198279a968a4ab8df0b7f42ea1da63b24ac28ea4000fabf4cf00c6b37d4395b927321d27c1502de3447001285d0c942439

diff --git a/net-p2p/nicotine+/nicotine+-2.2.0.ebuild 
b/net-p2p/nicotine+/nicotine+-2.2.0.ebuild
new file mode 100644
index 000..96b50ea7f31
--- /dev/null
+++ b/net-p2p/nicotine+/nicotine+-2.2.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit distutils-r1 xdg-utils
+
+DESCRIPTION="A fork of nicotine, a Soulseek client in Python"
+HOMEPAGE="https://github.com/Nicotine-Plus/nicotine-plus;
+SRC_URI="https://github.com/Nicotine-Plus/nicotine-plus/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="GPL-3 LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="${PYTHON_DEPS}"
+RDEPEND="
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pytaglib[${PYTHON_USEDEP}]
+   media-libs/mutagen[${PYTHON_USEDEP}]
+   x11-libs/gtk+:3[introspection]
+   ${DEPEND}
+"
+
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/nicotine-plus-${PV}"
+
+src_install() {
+   distutils-r1_src_install
+   mv "${ED}/usr/share/doc/nicotine" "${ED}/usr/share/doc/${PF}" || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/mergerfs/

2020-12-10 Thread Piotr Karbowski
commit: 973f417bbc0b8d64a402c3742029fa245fd82d61
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Thu Dec 10 22:15:17 2020 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Thu Dec 10 22:23:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=973f417b

sys-fs/mergerfs: 2.32.0 version bump

Signed-off-by: Piotr Karbowski  gentoo.org>

 sys-fs/mergerfs/Manifest   |  1 +
 sys-fs/mergerfs/mergerfs-2.32.0.ebuild | 52 ++
 2 files changed, 53 insertions(+)

diff --git a/sys-fs/mergerfs/Manifest b/sys-fs/mergerfs/Manifest
index 3ea05b48e92..f32ab21fce2 100644
--- a/sys-fs/mergerfs/Manifest
+++ b/sys-fs/mergerfs/Manifest
@@ -2,3 +2,4 @@ DIST mergerfs-2.28.3.tar.gz 294065 BLAKE2B 
2e59e00726aec53438d5a5df143ca20406979
 DIST mergerfs-2.29.0.tar.gz 302391 BLAKE2B 
a7d051c63b12a95af2868d8b3be9b32aa1be3d9c4cc4e359914b07e18ed30dadece80861ad559d5cdd85b375f565b9e70dac9ad3e34b98c054dd54822897c1a6
 SHA512 
2c21dedffc2f261c6c8427af59cffcacacc9b67bce7bb9989bd5946aa645c68bac0f56250ec19710e586a00892f7198853390bea3ff5981035d5a492ae4569a2
 DIST mergerfs-2.30.0.tar.gz 316560 BLAKE2B 
7e6be39cfa5f085aabbc928e1da9c0bf1f6442be1de4ccef1868832c852d138901071129cf7feff19b13dd5939c5fff56520c5292473b92c71a85430818ab25c
 SHA512 
6914c5efa783d66293ebcce0a6a493267eedfa45ac058cd24b2024aea15a866b997f4474363e4ababa4af59d302466c5f8c6b9f07ee42f7661b335d4701315b4
 DIST mergerfs-2.31.0.tar.gz 314286 BLAKE2B 
595dd05e7bd4e6b2fbc2b1901a0d752710c6efea9957c400b394594e5586607a88899bf9966a9406ca0a57e0059af214ce30b06d87db5871aa42b5443a872cdb
 SHA512 
c4504a8f585ffc7f58b11df441755db821611d9754a630ec211aaf611657df82c72120737ba2a2480e1ebebcb0af05adef2e4b8c463b97f4fd98ab5630890253
+DIST mergerfs-2.32.0.tar.gz 314388 BLAKE2B 
8f009d8328702c48ec134e2dc80e65c88aa684dac541b9c09d0adaf81f3a013848d826e809fca9fed9d0b68917300f3dd65c5ba687f349006e950c7935b6adab
 SHA512 
a25d075afcd0afb589ebf0306fb25bf8d170ab293047e1501128dcda1941abdce84b5513d9725c06aea3cb003f8abb4573826e81d11cfe90e4a2825ef75887ca

diff --git a/sys-fs/mergerfs/mergerfs-2.32.0.ebuild 
b/sys-fs/mergerfs/mergerfs-2.32.0.ebuild
new file mode 100644
index 000..5d1e3ec0e4c
--- /dev/null
+++ b/sys-fs/mergerfs/mergerfs-2.32.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="A featureful union filesystem"
+HOMEPAGE="https://github.com/trapexit/mergerfs;
+
+SRC_URI="https://github.com/trapexit/mergerfs/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+
+# Vendorized libfuse that's bundled is under LGPL-2.1.
+LICENSE="ISC LGPL-2.1"
+SLOT="0"
+IUSE="+xattr"
+
+DEPEND="
+   xattr? ( sys-apps/attr )
+"
+
+RDEPEND="${DEPEND}"
+
+BDEPEND="sys-devel/gettext"
+
+src_prepare() {
+   default
+
+   # Hand made build system at it's finest.
+   echo -e "#!/bin/sh\ntrue" >tools/update-version || die
+   echo "#pragma once" >src/version.hpp || die
+   echo "static const char MERGERFS_VERSION[] = \"${PV}\";" 
>>src/version.hpp || die
+
+   if ! use xattr; then
+   sed 's%USE_XATTR = 1%USE_XATTR = 0%g' -i Makefile || die
+   fi
+}
+
+src_compile() {
+   # https://bugs.gentoo.org/725978
+   tc-export AR
+
+   default
+}
+
+src_install() {
+   dobin build/mergerfs
+   dosym mergerfs /usr/bin/mount.mergerfs
+   dodoc README.md
+   doman man/mergerfs.1
+}



[gentoo-commits] repo/proj/guru:dev commit in: net-misc/megasync/

2020-12-10 Thread Theo Anderson
commit: 4f8fa2320d6fb0b8b66c28f70d9080f258179f82
Author: Theo Anderson  posteo  de>
AuthorDate: Thu Dec 10 21:47:24 2020 +
Commit: Theo Anderson  posteo  de>
CommitDate: Thu Dec 10 21:59:58 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4f8fa232

net-misc/megasync: bump to 4.3.7; update live ebuild

- uses tag archives instead of the git repo
- removed multilib (was it even used?)
- libressl support
- general ebuild cleanup

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Theo Anderson  posteo.de>

 net-misc/megasync/Manifest |   2 +
 ...{megasync-.ebuild => megasync-4.3.7.ebuild} | 122 ++---
 net-misc/megasync/megasync-.ebuild | 122 ++---
 3 files changed, 118 insertions(+), 128 deletions(-)

diff --git a/net-misc/megasync/Manifest b/net-misc/megasync/Manifest
new file mode 100644
index ..2e3f9444
--- /dev/null
+++ b/net-misc/megasync/Manifest
@@ -0,0 +1,2 @@
+DIST megasync-4.3.7.tar.gz 16020207 BLAKE2B 
f38b40594c0cb1ed3e93715842f3c161e09ef66deb017d2e5fa03d9d0ac2863ba02b88d1fe779960c07664b19250fa29115a87d62d0934157370c1faa85345a5
 SHA512 
6852390e05da13effd059a5e0dc7fe400f3456668925fbed5e34bc5018b3664d72aebd78847dfdb4f6dda39fe615a79e5c0eb99e72a401fb833d4eba8216010c
+DIST megasync-sdk-4.3.7.tar.gz 3362032 BLAKE2B 
36ab643252d27475f34c7a5ee0e71a6470f2c830ea5c8331a094b79da5cd751699390c36e107cb0da06e6f46932e10e5fefbfc8eec3e8645ba84c365835088f3
 SHA512 
45dcc285c194cc347d9d562638658d2f0dd8099371e7408995cad68811e720905ad6f9810b24079c1112d16bfb87f7986cf3180520dc7edd611e703c251b182a

diff --git a/net-misc/megasync/megasync-.ebuild 
b/net-misc/megasync/megasync-4.3.7.ebuild
similarity index 60%
copy from net-misc/megasync/megasync-.ebuild
copy to net-misc/megasync/megasync-4.3.7.ebuild
index a1edfca1..390ce338 100644
--- a/net-misc/megasync/megasync-.ebuild
+++ b/net-misc/megasync/megasync-4.3.7.ebuild
@@ -3,27 +3,54 @@
 
 EAPI=7
 
-inherit eutils multilib qmake-utils autotools git-r3 desktop cmake-multilib
+inherit autotools cmake desktop qmake-utils
+
+MEGA_SDK_REV="ba4834cb6c22f4e996f328db3aa5b82ef20eed3e" # commit of 
src/MEGASync/mega submodule
 
 DESCRIPTION="The official Qt-based program for syncing your MEGA account in 
your PC"
 HOMEPAGE="http://mega.co.nz;
-RTAG="_Linux"
-if [[ ${PV} == ** ]];then
+
+if [[ ${PV} ==  ]];then
+   inherit git-r3
EGIT_REPO_URI="https://github.com/meganz/MEGAsync;
-   KEYWORDS=""
-   EGIT_SUBMODULES=( '*' )
 else
-   EGIT_REPO_URI="https://github.com/meganz/MEGAsync;
-   EGIT_COMMIT="v${PV}.0${RTAG}"
-   EGIT_SUBMODULES=( '*' )
+   SRC_URI="
+   
https://github.com/meganz/MEGAsync/archive/v${PV}.0_Linux.tar.gz -> ${P}.tar.gz
+   https://github.com/meganz/sdk/archive/${MEGA_SDK_REV}.tar.gz -> 
${PN}-sdk-${PV}.tar.gz
+   "
KEYWORDS="~amd64 ~x86"
+   S="${WORKDIR}"/MEGAsync-${PV}.0_Linux
 fi
 
 LICENSE="MEGA"
 SLOT="0"
-IUSE="dolphin nautilus thunar +cryptopp +sqlite +zlib +curl freeimage readline 
examples threads java php python gnome"
+IUSE="+cryptopp +curl +sqlite +zlib dolphin examples freeimage java libressl 
nautilus php python readline threads thunar"
 
-CDEPEND="
+RDEPEND="
+   app-arch/xz-utils
+   dev-libs/libgcrypt
+   dev-libs/libsodium
+   dev-libs/libuv
+   media-libs/libpng
+   net-dns/c-ares
+   x11-themes/hicolor-icon-theme
+   cryptopp? ( dev-libs/crypto++ )
+   curl? (
+   !libressl? ( net-misc/curl[ssl,curl_ssl_openssl] )
+   libressl? ( net-misc/curl[ssl,curl_ssl_libressl] )
+   )
+   dolphin? ( kde-apps/dolphin )
+   freeimage? ( media-libs/freeimage )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   nautilus? ( >=gnome-base/nautilus-3 )
+   readline? ( sys-libs/readline:0 )
+   sqlite? ( dev-db/sqlite:3 )
+   thunar? ( xfce-base/thunar )
+   zlib? ( sys-libs/zlib )
+"
+DEPEND="
+   ${RDEPEND}
media-libs/libmediainfo
media-libs/libraw
dev-qt/qtcore:5
@@ -35,57 +62,24 @@ CDEPEND="
dev-qt/qtimageformats:5
dev-qt/qtsvg:5
 "
-
-BDEPEND="${CDEPEND}
-   dev-lang/swig
+BDEPEND="
app-doc/doxygen
+   dev-lang/swig
dev-qt/linguist-tools
 "
 
-RDEPEND="${CDEPEND}
-   x11-themes/hicolor-icon-theme
-   dev-libs/openssl
-   dev-libs/libgcrypt
-   media-libs/libpng
-   net-dns/c-ares
-   cryptopp? ( dev-libs/crypto++ )
-   app-arch/xz-utils
-   dev-libs/libuv
-   sqlite? ( dev-db/sqlite:3 )
-   dev-libs/libsodium
-   zlib? ( sys-libs/zlib )
-   curl? ( net-misc/curl[ssl,curl_ssl_openssl] )
-   freeimage? ( media-libs/freeimage )
-   readline? ( sys-libs/readline:0 )
-   dolphin? ( kde-apps/dolphin )
-   nautilus? ( >=gnome-base/nautilus-3 )
-   thunar? ( 

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

2020-12-10 Thread Thomas Deutschmann
commit: 2bff729e4a407f85e82ef3eebcc4333b84f60ba8
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 22:02:44 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 22:04:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bff729e

x11-terms/alacritty: x86 keyworded (bug #758083)

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

 x11-terms/alacritty/alacritty-0.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/alacritty/alacritty-0.6.0.ebuild 
b/x11-terms/alacritty/alacritty-0.6.0.ebuild
index dfced84f732..dd6d892993a 100644
--- a/x11-terms/alacritty/alacritty-0.6.0.ebuild
+++ b/x11-terms/alacritty/alacritty-0.6.0.ebuild
@@ -275,7 +275,7 @@ if [ ${PV} == "" ] ; then
 else
SRC_URI="https://github.com/alacritty/${PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz
$(cargo_crate_uris ${CRATES})"
-   KEYWORDS="~amd64 ~arm64 ~ppc64"
+   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 fi
 
 LICENSE="Apache-2.0 Apache-2.0-with-LLVM-exceptions Boost-1.0 BSD BSD-2 
CC0-1.0 FTL ISC MIT MPL-2.0 Unlicense WTFPL-2 ZLIB"



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

2020-12-10 Thread Thomas Deutschmann
commit: 5593ab7c3968c85e6522b9c78f1fd2090487ad41
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 22:03:33 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 22:04:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5593ab7c

dev-python/grpcio: x86 stable (bug #758518)

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

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

diff --git a/dev-python/grpcio/grpcio-1.32.0-r1.ebuild 
b/dev-python/grpcio/grpcio-1.32.0-r1.ebuild
index 6a709cdf780..a45873f7318 100644
--- a/dev-python/grpcio/grpcio-1.32.0-r1.ebuild
+++ b/dev-python/grpcio/grpcio-1.32.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 
 RDEPEND="
>=dev-libs/openssl-1.0.2:0=[-bindist]



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

2020-12-10 Thread Thomas Deutschmann
commit: 1bf67ffdd6a1952f53caa8106130968fdabf6ff6
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 22:03:45 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 22:04:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bf67ffd

dev-python/yappi: x86 stable (bug #758605)

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

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

diff --git a/dev-python/yappi/yappi-1.3.0.ebuild 
b/dev-python/yappi/yappi-1.3.0.ebuild
index 6b63a3df849..ad3b69aae52 100644
--- a/dev-python/yappi/yappi-1.3.0.ebuild
+++ b/dev-python/yappi/yappi-1.3.0.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${PN}-${COMMIT_HASH}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 x86"
 
 #RDEPEND="
 #  $(python_gen_cond_dep 'dev-python/contextvars[${PYTHON_USEDEP}]' 
'python3_6')



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

2020-12-10 Thread Thomas Deutschmann
commit: 2d41a34663190ac04517276b456b5fff92d0d598
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 22:03:02 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 22:04:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d41a346

media-gfx/argyllcms: x86 stable (bug #759322)

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

 media-gfx/argyllcms/argyllcms-2.1.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/argyllcms/argyllcms-2.1.2-r1.ebuild 
b/media-gfx/argyllcms/argyllcms-2.1.2-r1.ebuild
index 25461f6d175..d6e7916dc59 100644
--- a/media-gfx/argyllcms/argyllcms-2.1.2-r1.ebuild
+++ b/media-gfx/argyllcms/argyllcms-2.1.2-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://www.argyllcms.com/${MY_P}_src.zip;
 
 LICENSE="AGPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~hppa ~x86"
+KEYWORDS="~amd64 ~arm64 ~hppa x86"
 IUSE="doc libressl"
 
 RDEPEND="



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

2020-12-10 Thread Thomas Deutschmann
commit: ad4284142e0d3e7222ed3603afa2d876f7005e7c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 22:03:13 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 22:04:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad428414

dev-python/cheetah3: x86 stable (bug #758542)

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

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

diff --git a/dev-python/cheetah3/cheetah3-3.2.6.ebuild 
b/dev-python/cheetah3/cheetah3-3.2.6.ebuild
index fecc1a523dd..ab5b0c42ce4 100644
--- a/dev-python/cheetah3/cheetah3-3.2.6.ebuild
+++ b/dev-python/cheetah3/cheetah3-3.2.6.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="http://www.cheetahtemplate.org/ 
https://pypi.org/project/Cheetah3/;
 SRC_URI="https://github.com/CheetahTemplate3/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="MIT"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 x86"
 SLOT="0"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/

2020-12-10 Thread Andreas K. Hüttel
commit: c9ae50a3def564d0aa28719dcc244c211c1fdd8c
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Dec 10 21:57:57 2020 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Dec 10 21:57:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9ae50a3

app-office/libreoffice: Contribute to global warming

When USE=custom-cflags is set, do not manipulate CFLAGS at all.
The build may well fail halfway through, but hey, it's just entropy.

Closes: https://bugs.gentoo.org/756697
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 app-office/libreoffice/libreoffice-7.0.3.1.ebuild  | 1 -
 app-office/libreoffice/libreoffice-7.0..ebuild | 1 -
 app-office/libreoffice/libreoffice-.ebuild | 1 -
 3 files changed, 3 deletions(-)

diff --git a/app-office/libreoffice/libreoffice-7.0.3.1.ebuild 
b/app-office/libreoffice/libreoffice-7.0.3.1.ebuild
index c2fe022a62a..2d3f699e1f9 100644
--- a/app-office/libreoffice/libreoffice-7.0.3.1.ebuild
+++ b/app-office/libreoffice/libreoffice-7.0.3.1.ebuild
@@ -418,7 +418,6 @@ src_configure() {
if use custom-cflags ; then
elog "USE=custom-cflags has been selected. You are on your own 
to make sure that"
elog "the build succeeds. Good luck!"
-   strip-unsupported-flags
else
strip-flags
fi

diff --git a/app-office/libreoffice/libreoffice-7.0..ebuild 
b/app-office/libreoffice/libreoffice-7.0..ebuild
index b9e826f9b40..ac7501070b5 100644
--- a/app-office/libreoffice/libreoffice-7.0..ebuild
+++ b/app-office/libreoffice/libreoffice-7.0..ebuild
@@ -414,7 +414,6 @@ src_configure() {
if use custom-cflags ; then
elog "USE=custom-cflags has been selected. You are on your own 
to make sure that"
elog "the build succeeds. Good luck!"
-   strip-unsupported-flags
else
strip-flags
fi

diff --git a/app-office/libreoffice/libreoffice-.ebuild 
b/app-office/libreoffice/libreoffice-.ebuild
index 500abaa157c..f1d212b63e4 100644
--- a/app-office/libreoffice/libreoffice-.ebuild
+++ b/app-office/libreoffice/libreoffice-.ebuild
@@ -414,7 +414,6 @@ src_configure() {
if use custom-cflags ; then
elog "USE=custom-cflags has been selected. You are on your own 
to make sure that"
elog "the build succeeds. Good luck!"
-   strip-unsupported-flags
else
strip-flags
fi



[gentoo-commits] proj/gcc-multilib-bootstrap:master commit in: /

2020-12-10 Thread Andreas K. Hüttel
commit: 267a90cc590e35c6cd2cc72f0aabcf0c235827a6
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Dec 10 21:44:12 2020 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Dec 10 21:44:12 2020 +
URL:
https://gitweb.gentoo.org/proj/gcc-multilib-bootstrap.git/commit/?id=267a90cc

Update Readme

Signed-off-by: Andreas K. Hüttel  gentoo.org>

 README | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README b/README
index 0507d79..83ffebc 100644
--- a/README
+++ b/README
@@ -14,7 +14,7 @@ How was this tarball generated?
   to amd64 
 
   The full list of directory names is:
-  amd64  n32  n64  o32  ppc  ppc64  s390  s390x  x32  x86
+  amd64  ilp32 ilp32d lp64 lp64d n32  n64  o32  ppc  ppc64  s390  s390x  x32  
x86
 
 * At the end run ./Cleanup to remove everything that is not needed
 



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

2020-12-10 Thread Thomas Deutschmann
commit: 464449dc271e035aa50b3b574dbade9d447007f9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:35:32 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:35:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=464449dc

x11-misc/x11vnc: x86 stable (bug #756841)

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

 x11-misc/x11vnc/x11vnc-0.9.16-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/x11vnc/x11vnc-0.9.16-r4.ebuild 
b/x11-misc/x11vnc/x11vnc-0.9.16-r4.ebuild
index 9eb9afc5033..716a9a98d66 100644
--- a/x11-misc/x11vnc/x11vnc-0.9.16-r4.ebuild
+++ b/x11-misc/x11vnc/x11vnc-0.9.16-r4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/LibVNC/x11vnc/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2+-with-openssl-exception"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="crypt fbcon libressl ssl +xcomposite +xdamage +xfixes xinerama +xrandr 
zeroconf"
 
 COMMON_DEPEND="



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

2020-12-10 Thread Thomas Deutschmann
commit: fb4fb5d828585f01994940fa132495ae15d86e3f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:36:26 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:36:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb4fb5d8

dev-libs/zziplib: x86 stable (bug #759178)

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

 dev-libs/zziplib/zziplib-0.13.71_p20201021.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/zziplib/zziplib-0.13.71_p20201021.ebuild 
b/dev-libs/zziplib/zziplib-0.13.71_p20201021.ebuild
index 2c92b124db8..5422a0631a7 100644
--- a/dev-libs/zziplib/zziplib-0.13.71_p20201021.ebuild
+++ b/dev-libs/zziplib/zziplib-0.13.71_p20201021.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/gdraheim/${PN}/archive/${MY_COMMIT}.tar.gz -> ${P}.t
 
 LICENSE="|| ( LGPL-2.1 MPL-1.1 )"
 SLOT="0/13"
-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="sdl static-libs"
 
 # Tests require internet access



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

2020-12-10 Thread Thomas Deutschmann
commit: 99b777aa57a29079d98da521a05d53f1de8b32fb
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:35:58 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:35:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99b777aa

net-analyzer/zabbix: x86 stable (bug #759193)

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

 net-analyzer/zabbix/zabbix-4.0.26-r1.ebuild | 2 +-
 net-analyzer/zabbix/zabbix-5.0.5-r1.ebuild  | 2 +-
 net-analyzer/zabbix/zabbix-5.2.1-r1.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-analyzer/zabbix/zabbix-4.0.26-r1.ebuild 
b/net-analyzer/zabbix/zabbix-4.0.26-r1.ebuild
index c097176110e..d7ad8e740a5 100644
--- a/net-analyzer/zabbix/zabbix-4.0.26-r1.ebuild
+++ b/net-analyzer/zabbix/zabbix-4.0.26-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://cdn.zabbix.com/${PN}/sources/stable/4.0/${P}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0/$(ver_cut 1-2)"
 WEBAPP_MANUAL_SLOT="yes"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="+agent java curl frontend ipv6 xmpp ldap libxml2 mysql openipmi oracle 
+postgres proxy server ssh ssl snmp sqlite odbc static"
 REQUIRED_USE="|| ( agent frontend proxy server )
proxy? ( ^^ ( mysql oracle postgres sqlite odbc ) )

diff --git a/net-analyzer/zabbix/zabbix-5.0.5-r1.ebuild 
b/net-analyzer/zabbix/zabbix-5.0.5-r1.ebuild
index b95dbdcff0c..7fdc79246f1 100644
--- a/net-analyzer/zabbix/zabbix-5.0.5-r1.ebuild
+++ b/net-analyzer/zabbix/zabbix-5.0.5-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://cdn.zabbix.com/${PN}/sources/stable/$(ver_cut 1-2)/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0/$(ver_cut 1-2)"
 WEBAPP_MANUAL_SLOT="yes"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="+agent java curl frontend ipv6 ldap libxml2 mysql openipmi oracle 
+postgres proxy server ssh ssl snmp sqlite odbc static"
 REQUIRED_USE="|| ( agent frontend proxy server )
proxy? ( ^^ ( mysql oracle postgres sqlite odbc ) )

diff --git a/net-analyzer/zabbix/zabbix-5.2.1-r1.ebuild 
b/net-analyzer/zabbix/zabbix-5.2.1-r1.ebuild
index b95dbdcff0c..7fdc79246f1 100644
--- a/net-analyzer/zabbix/zabbix-5.2.1-r1.ebuild
+++ b/net-analyzer/zabbix/zabbix-5.2.1-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://cdn.zabbix.com/${PN}/sources/stable/$(ver_cut 1-2)/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0/$(ver_cut 1-2)"
 WEBAPP_MANUAL_SLOT="yes"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="+agent java curl frontend ipv6 ldap libxml2 mysql openipmi oracle 
+postgres proxy server ssh ssl snmp sqlite odbc static"
 REQUIRED_USE="|| ( agent frontend proxy server )
proxy? ( ^^ ( mysql oracle postgres sqlite odbc ) )



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

2020-12-10 Thread Thomas Deutschmann
commit: ac36e65bab336a9124639660b884ecaffc861b20
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:34:14 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:34:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac36e65b

dev-python/pycryptodome: x86 stable (bug #758563)

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

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

diff --git a/dev-python/pycryptodome/pycryptodome-3.9.9.ebuild 
b/dev-python/pycryptodome/pycryptodome-3.9.9.ebuild
index 2ded5c9319b..bbb4c4aebfc 100644
--- a/dev-python/pycryptodome/pycryptodome-3.9.9.ebuild
+++ b/dev-python/pycryptodome/pycryptodome-3.9.9.ebuild
@@ -18,7 +18,7 @@ SRC_URI="
 
 LICENSE="BSD-2 Unlicense"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~ppc-aix ~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 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND="



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

2020-12-10 Thread Thomas Deutschmann
commit: 8602120beaa4d9506728536cea0fda701a6d1a01
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:35:40 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:35:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8602120b

dev-util/ydiff: x86 stable (bug #759103)

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

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

diff --git a/dev-util/ydiff/ydiff-1.2.ebuild b/dev-util/ydiff/ydiff-1.2.ebuild
index 0a40380559e..cdfe106fd62 100644
--- a/dev-util/ydiff/ydiff-1.2.ebuild
+++ b/dev-util/ydiff/ydiff-1.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="sys-apps/less"
 



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

2020-12-10 Thread Thomas Deutschmann
commit: c4b3caba8c16b49dbc2bf9dc8026457737f91f41
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:33:41 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:33:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4b3caba

dev-python/psycopg: x86 stable (bug #758566)

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

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

diff --git a/dev-python/psycopg/psycopg-2.8.6-r1.ebuild 
b/dev-python/psycopg/psycopg-2.8.6-r1.ebuild
index a4838603e14..95cc55f299a 100644
--- a/dev-python/psycopg/psycopg-2.8.6-r1.ebuild
+++ b/dev-python/psycopg/psycopg-2.8.6-r1.ebuild
@@ -17,7 +17,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="LGPL-3+"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="debug test"
 RESTRICT="!test? ( test )"
 



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

2020-12-10 Thread Thomas Deutschmann
commit: ca0fadea17935cfe623323b5df86760c73c199dc
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:35:03 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:35:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca0fadea

net-dns/unbound: x86 stable (bug #758974)

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

 net-dns/unbound/unbound-1.13.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/unbound/unbound-1.13.0.ebuild 
b/net-dns/unbound/unbound-1.13.0.ebuild
index bd4fc88d4d2..c37b3aa8c5e 100644
--- a/net-dns/unbound/unbound-1.13.0.ebuild
+++ b/net-dns/unbound/unbound-1.13.0.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://nlnetlabs.nl/downloads/unbound/${MY_P}.tar.gz;
 
 LICENSE="BSD GPL-2"
 SLOT="0/8" # ABI version of libunbound.so
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 x86"
 IUSE="debug dnscrypt dnstap +ecdsa ecs gost +http2 libressl python redis 
selinux static-libs systemd test threads"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 RESTRICT="!test? ( test )"



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

2020-12-10 Thread Thomas Deutschmann
commit: 97e1b6bc73404f63b391053b6fa6417ce60077f9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:33:12 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:33:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97e1b6bc

dev-db/pgagent: x86 stable (bug #759274)

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

 dev-db/pgagent/pgagent-4.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/pgagent/pgagent-4.0.0-r1.ebuild 
b/dev-db/pgagent/pgagent-4.0.0-r1.ebuild
index fe9014a136f..588908c4b24 100644
--- a/dev-db/pgagent/pgagent-4.0.0-r1.ebuild
+++ b/dev-db/pgagent/pgagent-4.0.0-r1.ebuild
@@ -8,7 +8,7 @@ inherit cmake-utils user
 
 MY_PN=${PN/a/A}
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 DESCRIPTION="${MY_PN} is a job scheduler for PostgreSQL"
 HOMEPAGE="https://www.pgadmin.org/download/pgagent-source-code/;



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

2020-12-10 Thread Thomas Deutschmann
commit: c47978117d1d9b2456c36ffd2d2f22decc44150a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:29:13 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:29:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4797811

dev-libs/libressl: x86 stable (bug #759175)

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

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

diff --git a/dev-libs/libressl/libressl-3.1.5.ebuild 
b/dev-libs/libressl/libressl-3.1.5.ebuild
index ab31f204168..1df45e25a73 100644
--- a/dev-libs/libressl/libressl-3.1.5.ebuild
+++ b/dev-libs/libressl/libressl-3.1.5.ebuild
@@ -14,7 +14,7 @@ LICENSE="ISC openssl"
 # we'll try to use the max of either. However, if either change between
 # versions, we have to change the subslot to trigger rebuild of consumers.
 SLOT="0/48"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~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 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="+asm static-libs test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="test? ( static-libs )"



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

2020-12-10 Thread Thomas Deutschmann
commit: f15952ff7d4cfd4559c8d9f1afb1d18b2352ff77
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:34:31 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:34:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f15952ff

dev-java/tomcat-servlet-api: x86 stable (bug #758338)

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

 dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.60.ebuild | 2 +-
 dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.40.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.60.ebuild 
b/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.60.ebuild
index ffa23dfbfdf..9c4ab53070a 100644
--- a/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.60.ebuild
+++ b/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.60.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="mirror://apache/tomcat/tomcat-8/v${PV}/src/${MY_P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="3.1"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/jdk-1.8"

diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.40.ebuild 
b/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.40.ebuild
index 03de50ee0b2..ee865deda9a 100644
--- a/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.40.ebuild
+++ b/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.40.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="mirror://apache/tomcat/tomcat-9/v${PV}/src/${MY_P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="4.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/jdk-1.8"



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

2020-12-10 Thread Thomas Deutschmann
commit: d82e503fb3c4b1ba166b16c57a73527e66cdac9f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:33:05 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:33:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d82e503f

sys-process/parallel: x86 stable (bug #758824)

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

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

diff --git a/sys-process/parallel/parallel-20201022.ebuild 
b/sys-process/parallel/parallel-20201022.ebuild
index 16e66e2a9dc..ffdc913dcf6 100644
--- a/sys-process/parallel/parallel-20201022.ebuild
+++ b/sys-process/parallel/parallel-20201022.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm arm64 ~ppc64 x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="dev-lang/perl:=
dev-perl/Devel-Size



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

2020-12-10 Thread Thomas Deutschmann
commit: b51070d1a2c09d6532c254950b55b2a394a4fd46
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:29:32 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:29:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b51070d1

media-libs/libmediainfo: x86 stable (bug #730272)

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

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

diff --git a/media-libs/libmediainfo/libmediainfo-20.09.ebuild 
b/media-libs/libmediainfo/libmediainfo-20.09.ebuild
index 5328831bc1b..5ec625856e5 100644
--- a/media-libs/libmediainfo/libmediainfo-20.09.ebuild
+++ b/media-libs/libmediainfo/libmediainfo-20.09.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://mediaarea.net/download/source/${PN}/${PV}/${P/-/_}.tar.xz;
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="curl doc mms static-libs"
 
 RDEPEND="sys-libs/zlib



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

2020-12-10 Thread Thomas Deutschmann
commit: 94281fdebd053152fcad8a7bec5d54e9d537273d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:32:44 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:32:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94281fde

dev-libs/openssl: x86 stable (bug #759079)

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

 dev-libs/openssl/openssl-1.1.1i.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/openssl/openssl-1.1.1i.ebuild 
b/dev-libs/openssl/openssl-1.1.1i.ebuild
index 2fd38642961..52fa5d828e3 100644
--- a/dev-libs/openssl/openssl-1.1.1i.ebuild
+++ b/dev-libs/openssl/openssl-1.1.1i.ebuild
@@ -27,7 +27,7 @@ SRC_URI="mirror://openssl/source/${MY_P}.tar.gz
 LICENSE="openssl"
 SLOT="0/1.1" # .so version of libssl/libcrypto
 [[ "${PV}" = *_pre* ]] || \
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 sparc ~x86 ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 sparc x86 ~x86-linux"
 IUSE="+asm bindist elibc_musl rfc3779 sctp cpu_flags_x86_sse2 sslv3 
static-libs test tls-heartbeat vanilla zlib"
 RESTRICT="!bindist? ( bindist )
!test? ( test )"



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

2020-12-10 Thread Thomas Deutschmann
commit: 99a73c6e047e837f5658448c42d6300a70c91c3b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:32:13 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:32:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99a73c6e

dev-python/numpy: x86 stable (bug #758575)

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

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

diff --git a/dev-python/numpy/numpy-1.19.4.ebuild 
b/dev-python/numpy/numpy-1.19.4.ebuild
index ae379ca781e..c9b4392b079 100644
--- a/dev-python/numpy/numpy-1.19.4.ebuild
+++ b/dev-python/numpy/numpy-1.19.4.ebuild
@@ -24,7 +24,7 @@ SRC_URI="
)"
 LICENSE="BSD"
 SLOT="0"
-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 ~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 ~x64-solaris ~x86-solaris"
 IUSE="doc lapack"
 
 RDEPEND="



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

2020-12-10 Thread Thomas Deutschmann
commit: e3ffdc6ccaf7b6a79cc8dc9a53d7fd202f601850
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:29:54 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:29:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3ffdc6c

app-shells/mksh: x86 stable (bug #759214)

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

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

diff --git a/app-shells/mksh/mksh-59.ebuild b/app-shells/mksh/mksh-59.ebuild
index cecf0104378..49b54d78db4 100644
--- a/app-shells/mksh/mksh-59.ebuild
+++ b/app-shells/mksh/mksh-59.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]] ; then
ECVS_AUTH="ext"
 else
SRC_URI="https://www.mirbsd.org/MirOS/dist/mir/mksh/${PN}-R${PV}.tgz;
-   KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~sparc x86 ~amd64-linux ~x86-linux"
 fi
 
 DESCRIPTION="MirBSD Korn Shell"



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

2020-12-10 Thread Thomas Deutschmann
commit: b81de8b1062cc9d42981a0ca9c4c0a3e0fcd643a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:31:10 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:31:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b81de8b1

dev-cpp/nlohmann_json: x86 stable (bug #758836)

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

 dev-cpp/nlohmann_json/nlohmann_json-3.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/nlohmann_json/nlohmann_json-3.9.1.ebuild 
b/dev-cpp/nlohmann_json/nlohmann_json-3.9.1.ebuild
index 691afb13f9c..cbfe14e3ebf 100644
--- a/dev-cpp/nlohmann_json/nlohmann_json-3.9.1.ebuild
+++ b/dev-cpp/nlohmann_json/nlohmann_json-3.9.1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/json-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 x86"
 IUSE="doc test"
 #RESTRICT="!test? ( test )"
 # Need to report failing tests upstream



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

2020-12-10 Thread Thomas Deutschmann
commit: 5bdb793272b01797b65b64f29ade8aa1018dcaf8
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:30:56 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:30:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bdb7932

net-misc/networkmanager: x86 stable (bug #759028)

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

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

diff --git a/net-misc/networkmanager/networkmanager-1.26.4.ebuild 
b/net-misc/networkmanager/networkmanager-1.26.4.ebuild
index 97f5b8ad96b..86e8f5a06f9 100644
--- a/net-misc/networkmanager/networkmanager-1.26.4.ebuild
+++ b/net-misc/networkmanager/networkmanager-1.26.4.ebuild
@@ -27,7 +27,7 @@ REQUIRED_USE="
?? ( elogind systemd )
 "
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 # gobject-introspection-0.10.3 is needed due to gnome bug 642300
 # wpa_supplicant-0.7.3-r3 is needed due to bug 359271



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

2020-12-10 Thread Thomas Deutschmann
commit: e661b8c4b27f95feeda6e019bd93f88e7ed22159
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:31:38 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:31:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e661b8c4

x11-misc/notification-daemon: x86 stable (bug #758851)

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

 x11-misc/notification-daemon/notification-daemon-3.20.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/notification-daemon/notification-daemon-3.20.0-r1.ebuild 
b/x11-misc/notification-daemon/notification-daemon-3.20.0-r1.ebuild
index 136f1965fa1..ea50f052101 100644
--- a/x11-misc/notification-daemon/notification-daemon-3.20.0-r1.ebuild
+++ b/x11-misc/notification-daemon/notification-daemon-3.20.0-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/notification-daemon/;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 
 RDEPEND="
>=dev-libs/glib-2.28:2



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

2020-12-10 Thread Thomas Deutschmann
commit: 126025cf3ef5576cdc3989491f0afcf044650ffb
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:27:52 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:27:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=126025cf

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

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  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 5b12a3493a5..30bb1f102a9 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: media-video/mediainfo/

2020-12-10 Thread Thomas Deutschmann
commit: 036c27d2170fa3c323ac37da13566b103c27b82f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:29:23 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:29:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=036c27d2

media-video/mediainfo: x86 stable (bug #730272)

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

 media-video/mediainfo/mediainfo-20.09.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/mediainfo/mediainfo-20.09.ebuild 
b/media-video/mediainfo/mediainfo-20.09.ebuild
index dd829ed7df4..a79f1f18270 100644
--- a/media-video/mediainfo/mediainfo-20.09.ebuild
+++ b/media-video/mediainfo/mediainfo-20.09.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://mediaarea.net/download/source/${PN}/${PV}/${P/-/_}.tar.xz;
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="curl mms wxwidgets"
 
 RDEPEND="sys-libs/zlib



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice-bin/

2020-12-10 Thread Thomas Deutschmann
commit: e7cae48cb6856d8d70e0c918486c21ab0ba891c6
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:28:43 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:28:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7cae48c

app-office/libreoffice-bin: x86 stable (bug #756178)

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

 app-office/libreoffice-bin/libreoffice-bin-6.4.7.2_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/libreoffice-bin/libreoffice-bin-6.4.7.2_p1.ebuild 
b/app-office/libreoffice-bin/libreoffice-bin-6.4.7.2_p1.ebuild
index 66793b0fe6a..289853c6428 100644
--- a/app-office/libreoffice-bin/libreoffice-bin-6.4.7.2_p1.ebuild
+++ b/app-office/libreoffice-bin/libreoffice-bin-6.4.7.2_p1.ebuild
@@ -51,7 +51,7 @@ SRC_URI="
 IUSE="gnome java kde"
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
+KEYWORDS="-* ~amd64 x86"
 
 BIN_COMMON_DEPEND="
app-text/hunspell:0/1.7



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice-bin-debug/

2020-12-10 Thread Thomas Deutschmann
commit: b42624553a492822ceea9360fac13864e8ea67ef
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:28:50 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:28:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4262455

app-office/libreoffice-bin-debug: x86 stable (bug #756178)

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

 .../libreoffice-bin-debug/libreoffice-bin-debug-6.4.7.2_p1.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/app-office/libreoffice-bin-debug/libreoffice-bin-debug-6.4.7.2_p1.ebuild 
b/app-office/libreoffice-bin-debug/libreoffice-bin-debug-6.4.7.2_p1.ebuild
index 6e24ae1fb03..30233996c36 100644
--- a/app-office/libreoffice-bin-debug/libreoffice-bin-debug-6.4.7.2_p1.ebuild
+++ b/app-office/libreoffice-bin-debug/libreoffice-bin-debug-6.4.7.2_p1.ebuild
@@ -46,7 +46,7 @@ SRC_URI="
 IUSE="gnome java kde"
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
+KEYWORDS="-* ~amd64 x86"
 
 RDEPEND="~app-office/${PN/-debug}-${PV}[gnome=,java=,kde=]"
 



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

2020-12-10 Thread Thomas Deutschmann
commit: c2d73be297c4acdd2d39a161a0a484cdd05f4520
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:28:17 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:28:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2d73be2

www-apache/libapreq2: x86 stable (bug #755164)

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

 www-apache/libapreq2/libapreq2-2.15-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apache/libapreq2/libapreq2-2.15-r1.ebuild 
b/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
index 84e5b1b4d38..d4159965df2 100644
--- a/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
+++ b/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://httpd.apache.org/apreq/;
 
 LICENSE="Apache-2.0"
 SLOT="2"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 x86"
 IUSE="perl test"
 RESTRICT="!test? ( test )"
 



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

2020-12-10 Thread Thomas Deutschmann
commit: 547c48da19d2507e78684242bcaa2bb636546b44
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:27:30 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:27:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=547c48da

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

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  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 a76260745fe..7e4c5488c4a 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: media-gfx/imageworsener/

2020-12-10 Thread Thomas Deutschmann
commit: b4fb23a71f844ab3b57360ff79c0bd23e792716d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 10 21:28:00 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 21:28:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4fb23a7

media-gfx/imageworsener: x86 stable (bug #758920)

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

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

diff --git a/media-gfx/imageworsener/imageworsener-1.3.3.ebuild 
b/media-gfx/imageworsener/imageworsener-1.3.3.ebuild
index c51206e3f3e..6daf2941587 100644
--- a/media-gfx/imageworsener/imageworsener-1.3.3.ebuild
+++ b/media-gfx/imageworsener/imageworsener-1.3.3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://entropymine.com/${PN}/${P}.tar.gz;
 
 LICENSE="MIT-with-advertising"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="jpeg png static-libs test webp zlib"
 
 DEPEND="png? ( media-libs/libpng:0 )



[gentoo-commits] proj/gcc-multilib-bootstrap:master commit in: /, lp64/, ilp32d/, lp64d/, ilp32/

2020-12-10 Thread Andreas K. Hüttel
commit: a8380e2ab1c35a88663cf502c9ded7ea364b3d09
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Dec 10 21:40:47 2020 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Dec 10 21:40:47 2020 +
URL:
https://gitweb.gentoo.org/proj/gcc-multilib-bootstrap.git/commit/?id=a8380e2a

Add riscv files, gcc-10.2

Signed-off-by: Andreas K. Hüttel  gentoo.org>

 README|   1 +
 ilp32/crtbegin.o  | Bin 0 -> 2184 bytes
 ilp32/crtbeginS.o | Bin 0 -> 2464 bytes
 ilp32/crtbeginT.o | Bin 0 -> 2840 bytes
 ilp32/crtend.o| Bin 0 -> 876 bytes
 ilp32/crtendS.o   | Bin 0 -> 876 bytes
 ilp32/crti.o  | Bin 0 -> 356 bytes
 ilp32/crtn.o  | Bin 0 -> 356 bytes
 ilp32/libgcc.a| Bin 0 -> 2673860 bytes
 ilp32/libgcc_eh.a | Bin 0 -> 795064 bytes
 ilp32/libgcc_s.so |   4 
 ilp32/libgcc_s.so.1   | Bin 0 -> 91572 bytes
 ilp32d/crtbegin.o | Bin 0 -> 2184 bytes
 ilp32d/crtbeginS.o| Bin 0 -> 2464 bytes
 ilp32d/crtbeginT.o| Bin 0 -> 2840 bytes
 ilp32d/crtend.o   | Bin 0 -> 876 bytes
 ilp32d/crtendS.o  | Bin 0 -> 876 bytes
 ilp32d/crti.o | Bin 0 -> 356 bytes
 ilp32d/crtn.o | Bin 0 -> 356 bytes
 ilp32d/libgcc.a   | Bin 0 -> 2214880 bytes
 ilp32d/libgcc_eh.a| Bin 0 -> 796180 bytes
 ilp32d/libgcc_s.so|   4 
 ilp32d/libgcc_s.so.1  | Bin 0 -> 83308 bytes
 lp64/crtbegin.o   | Bin 0 -> 3360 bytes
 lp64/crtbeginS.o  | Bin 0 -> 3760 bytes
 lp64/crtbeginT.o  | Bin 0 -> 4432 bytes
 lp64/crtend.o | Bin 0 -> 1264 bytes
 lp64/crtendS.o| Bin 0 -> 1264 bytes
 lp64/crti.o   | Bin 0 -> 512 bytes
 lp64/crtn.o   | Bin 0 -> 512 bytes
 lp64/libgcc.a | Bin 0 -> 3507880 bytes
 lp64/libgcc_eh.a  | Bin 0 -> 1313500 bytes
 lp64/libgcc_s.so  |   4 
 lp64/libgcc_s.so.1| Bin 0 -> 84248 bytes
 lp64d/crtbegin.o  | Bin 0 -> 3360 bytes
 lp64d/crtbeginS.o | Bin 0 -> 3760 bytes
 lp64d/crtbeginT.o | Bin 0 -> 4432 bytes
 lp64d/crtend.o| Bin 0 -> 1264 bytes
 lp64d/crtendS.o   | Bin 0 -> 1264 bytes
 lp64d/crti.o  | Bin 0 -> 512 bytes
 lp64d/crtn.o  | Bin 0 -> 512 bytes
 lp64d/libcc1.so   |   1 +
 lp64d/libcc1.so.0 |   1 +
 lp64d/libcc1.so.0.0.0 | Bin 0 -> 102464 bytes
 lp64d/libgcc.a| Bin 0 -> 2824564 bytes
 lp64d/libgcc_eh.a | Bin 0 -> 1314860 bytes
 lp64d/libgcc_s.so |   4 
 lp64d/libgcc_s.so.1   | Bin 0 -> 75944 bytes
 48 files changed, 19 insertions(+)

diff --git a/README b/README
index c5a3fd9..0507d79 100644
--- a/README
+++ b/README
@@ -21,6 +21,7 @@ How was this tarball generated?
 
 Current status: 
 
+* lp64d, lp64, ilp32d, ilp32: Files from gcc-10.2
 * amd64, x86, ppc, ppc64: Files from gcc-9.3
 * x32: Files from gcc-6.4
 * s390, s390x: Files from gcc-5.4 (does this work?)

diff --git a/ilp32/crtbegin.o b/ilp32/crtbegin.o
new file mode 100644
index 000..f0bbca1
Binary files /dev/null and b/ilp32/crtbegin.o differ

diff --git a/ilp32/crtbeginS.o b/ilp32/crtbeginS.o
new file mode 100644
index 000..f1f0ab6
Binary files /dev/null and b/ilp32/crtbeginS.o differ

diff --git a/ilp32/crtbeginT.o b/ilp32/crtbeginT.o
new file mode 100644
index 000..5275f5e
Binary files /dev/null and b/ilp32/crtbeginT.o differ

diff --git a/ilp32/crtend.o b/ilp32/crtend.o
new file mode 100644
index 000..df49891
Binary files /dev/null and b/ilp32/crtend.o differ

diff --git a/ilp32/crtendS.o b/ilp32/crtendS.o
new file mode 100644
index 000..099b20f
Binary files /dev/null and b/ilp32/crtendS.o differ

diff --git a/ilp32/crti.o b/ilp32/crti.o
new file mode 100644
index 000..480b1bc
Binary files /dev/null and b/ilp32/crti.o differ

diff --git a/ilp32/crtn.o b/ilp32/crtn.o
new file mode 100644
index 000..e2f3438
Binary files /dev/null and b/ilp32/crtn.o differ

diff --git a/ilp32/libgcc.a b/ilp32/libgcc.a
new file mode 100644
index 000..b01fb26
Binary files /dev/null and b/ilp32/libgcc.a differ

diff --git a/ilp32/libgcc_eh.a b/ilp32/libgcc_eh.a
new file mode 100644
index 000..baa825a
Binary files /dev/null and b/ilp32/libgcc_eh.a differ

diff --git a/ilp32/libgcc_s.so b/ilp32/libgcc_s.so
new file mode 100644
index 000..c8e9224
--- /dev/null
+++ b/ilp32/libgcc_s.so
@@ -0,0 +1,4 @@
+/* GNU ld script
+   Use the shared library, but some functions are only in
+   the static library.  */
+GROUP ( libgcc_s.so.1 -lgcc )

diff --git a/ilp32/libgcc_s.so.1 b/ilp32/libgcc_s.so.1
new file mode 100644
index 000..b254031
Binary files /dev/null and b/ilp32/libgcc_s.so.1 differ

diff --git a/ilp32d/crtbegin.o b/ilp32d/crtbegin.o
new file mode 100644
index 000..1e71de3
Binary files /dev/null and b/ilp32d/crtbegin.o differ

diff --git a/ilp32d/crtbeginS.o b/ilp32d/crtbeginS.o
new file mode 100644
index 000..b6b94a8
Binary files /dev/null and b/ilp32d/crtbeginS.o differ

diff --git a/ilp32d/crtbeginT.o b/ilp32d/crtbeginT.o
new file mode 100644
index 000..1359ef6
Binary 

[gentoo-commits] proj/gcc-multilib-bootstrap:master commit in: ppc64/, /

2020-12-10 Thread Andreas K. Hüttel
commit: 515855cf23fbd0a55e17f4179817475950efed6c
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Dec 10 21:31:04 2020 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Dec 10 21:31:04 2020 +
URL:
https://gitweb.gentoo.org/proj/gcc-multilib-bootstrap.git/commit/?id=515855cf

Update ppc64 files to gcc-9.3

Signed-off-by: Andreas K. Hüttel  gentoo.org>

 README|   3 +--
 ppc64/crtbegin.o  | Bin 3344 -> 2912 bytes
 ppc64/crtbeginS.o | Bin 3768 -> 3360 bytes
 ppc64/crtbeginT.o | Bin 3936 -> 3624 bytes
 ppc64/crtend.o| Bin 1144 -> 1040 bytes
 ppc64/crtendS.o   | Bin 1144 -> 1040 bytes
 ppc64/libcc1.so.0.0.0 | Bin 135288 -> 201552 bytes
 ppc64/libgcc.a| Bin 709340 -> 835598 bytes
 ppc64/libgcc_eh.a | Bin 57588 -> 59156 bytes
 ppc64/libgcc_s.so.1   | Bin 133984 -> 134008 bytes
 10 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/README b/README
index 9cbdcac..c5a3fd9 100644
--- a/README
+++ b/README
@@ -21,8 +21,7 @@ How was this tarball generated?
 
 Current status: 
 
-* amd64, x86, ppc: Files from gcc-9.3
+* amd64, x86, ppc, ppc64: Files from gcc-9.3
 * x32: Files from gcc-6.4
 * s390, s390x: Files from gcc-5.4 (does this work?)
-* ppc64: no files, since only gcc-4.9 available
 * n32, n64, o32: last mips stages are years old, not useful

diff --git a/ppc64/crtbegin.o b/ppc64/crtbegin.o
index b9f1ba9..8e240cb 100644
Binary files a/ppc64/crtbegin.o and b/ppc64/crtbegin.o differ

diff --git a/ppc64/crtbeginS.o b/ppc64/crtbeginS.o
index a6bdd48..134ce66 100644
Binary files a/ppc64/crtbeginS.o and b/ppc64/crtbeginS.o differ

diff --git a/ppc64/crtbeginT.o b/ppc64/crtbeginT.o
index 06442e6..fb0828d 100644
Binary files a/ppc64/crtbeginT.o and b/ppc64/crtbeginT.o differ

diff --git a/ppc64/crtend.o b/ppc64/crtend.o
index ad36513..292173f 100644
Binary files a/ppc64/crtend.o and b/ppc64/crtend.o differ

diff --git a/ppc64/crtendS.o b/ppc64/crtendS.o
index ad36513..292173f 100644
Binary files a/ppc64/crtendS.o and b/ppc64/crtendS.o differ

diff --git a/ppc64/libcc1.so.0.0.0 b/ppc64/libcc1.so.0.0.0
index 8563088..9d1d1d0 100755
Binary files a/ppc64/libcc1.so.0.0.0 and b/ppc64/libcc1.so.0.0.0 differ

diff --git a/ppc64/libgcc.a b/ppc64/libgcc.a
index 6b7bdf1..803d0b0 100644
Binary files a/ppc64/libgcc.a and b/ppc64/libgcc.a differ

diff --git a/ppc64/libgcc_eh.a b/ppc64/libgcc_eh.a
index f017c14..968accc 100644
Binary files a/ppc64/libgcc_eh.a and b/ppc64/libgcc_eh.a differ

diff --git a/ppc64/libgcc_s.so.1 b/ppc64/libgcc_s.so.1
index fa1ee7e..efbfef2 100644
Binary files a/ppc64/libgcc_s.so.1 and b/ppc64/libgcc_s.so.1 differ



[gentoo-commits] proj/gcc-multilib-bootstrap:master commit in: ppc/, /

2020-12-10 Thread Andreas K. Hüttel
commit: 61a0d7980c5cbea37f2e5a543cb8630709aeaa56
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Dec 10 21:23:04 2020 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Dec 10 21:23:04 2020 +
URL:
https://gitweb.gentoo.org/proj/gcc-multilib-bootstrap.git/commit/?id=61a0d798

Update ppc files to gcc-9.3

Signed-off-by: Andreas K. Hüttel  gentoo.org>

 README  |   4 ++--
 ppc/crtbegin.o  | Bin 1724 -> 1492 bytes
 ppc/crtbeginS.o | Bin 2160 -> 1904 bytes
 ppc/crtbeginT.o | Bin 2076 -> 1896 bytes
 ppc/crtend.o| Bin 852 -> 784 bytes
 ppc/crtendS.o   | Bin 852 -> 784 bytes
 ppc/libcc1.so.0.0.0 | Bin 132964 -> 198784 bytes
 ppc/libgcc.a| Bin 499394 -> 653560 bytes
 ppc/libgcc_eh.a | Bin 47360 -> 49892 bytes
 ppc/libgcc_s.so.1   | Bin 132584 -> 132540 bytes
 10 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README b/README
index dd5b364..9cbdcac 100644
--- a/README
+++ b/README
@@ -21,8 +21,8 @@ How was this tarball generated?
 
 Current status: 
 
-* amd64, x86: Files from gcc-9.3
+* amd64, x86, ppc: Files from gcc-9.3
 * x32: Files from gcc-6.4
 * s390, s390x: Files from gcc-5.4 (does this work?)
-* ppc, ppc64: no files, since only gcc-4.9 available
+* ppc64: no files, since only gcc-4.9 available
 * n32, n64, o32: last mips stages are years old, not useful

diff --git a/ppc/crtbegin.o b/ppc/crtbegin.o
index bb8c1fd..e5e6bfd 100644
Binary files a/ppc/crtbegin.o and b/ppc/crtbegin.o differ

diff --git a/ppc/crtbeginS.o b/ppc/crtbeginS.o
index 3ff5f35..da97cb8 100644
Binary files a/ppc/crtbeginS.o and b/ppc/crtbeginS.o differ

diff --git a/ppc/crtbeginT.o b/ppc/crtbeginT.o
index f7ae830..5ecaddc 100644
Binary files a/ppc/crtbeginT.o and b/ppc/crtbeginT.o differ

diff --git a/ppc/crtend.o b/ppc/crtend.o
index fa5ff76..59716a6 100644
Binary files a/ppc/crtend.o and b/ppc/crtend.o differ

diff --git a/ppc/crtendS.o b/ppc/crtendS.o
index faed194..3b653af 100644
Binary files a/ppc/crtendS.o and b/ppc/crtendS.o differ

diff --git a/ppc/libcc1.so.0.0.0 b/ppc/libcc1.so.0.0.0
index 145ab70..00f3f95 100755
Binary files a/ppc/libcc1.so.0.0.0 and b/ppc/libcc1.so.0.0.0 differ

diff --git a/ppc/libgcc.a b/ppc/libgcc.a
index 56e2711..5939484 100644
Binary files a/ppc/libgcc.a and b/ppc/libgcc.a differ

diff --git a/ppc/libgcc_eh.a b/ppc/libgcc_eh.a
index 4ee4401..ae87b40 100644
Binary files a/ppc/libgcc_eh.a and b/ppc/libgcc_eh.a differ

diff --git a/ppc/libgcc_s.so.1 b/ppc/libgcc_s.so.1
index 14ddc0f..fc1a394 100644
Binary files a/ppc/libgcc_s.so.1 and b/ppc/libgcc_s.so.1 differ



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

2020-12-10 Thread Michał Górny
commit: b05d1f62c97fc744017f69c5ee7a0cf3f3fc3523
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 10 20:02:19 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 10 21:22:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b05d1f62

dev-python/chardet: Bump to 4.0.0

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

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

diff --git a/dev-python/chardet/Manifest b/dev-python/chardet/Manifest
index ab52c6066e0..1fa67aa0c09 100644
--- a/dev-python/chardet/Manifest
+++ b/dev-python/chardet/Manifest
@@ -1 +1,2 @@
 DIST chardet-3.0.4.tar.gz 1872214 BLAKE2B 
b93e2d3e0b5a5c35affa5e3ee661323029f79837a1222d8f69db72911301d9490c9788d2effc577eeeb2a50334cc855afc4bdf4b8dbafb143fcc411d93b824a9
 SHA512 
b433ea0e15e200df968e6d61c671c42fbd77e519eb033035c4a5c241e1f98e1dfaea6747af632788507583b3ef85b00d510b3f6ef5cf58589ceca1b3a088b357
+DIST chardet-4.0.0.tar.gz 1923933 BLAKE2B 
10dce34cbe6f01536a526931510ed625bc5062335e9419e24c9e48d5697ebbe70dcc54ffaa976ec153340cc74c3086627a3b1dd9e34be32c89a9a81e83fd70d0
 SHA512 
cb0e052fdd9fec251ebc6eb3f31ca95ece017f2bfa99122997f989286988058ed9688e49d00631c63d8e4e52da1050e23f02b28d0e739aee7302b24c8808370e

diff --git a/dev-python/chardet/chardet-4.0.0.ebuild 
b/dev-python/chardet/chardet-4.0.0.ebuild
new file mode 100644
index 000..fbe6454adc1
--- /dev/null
+++ b/dev-python/chardet/chardet-4.0.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Universal encoding detector"
+HOMEPAGE="https://github.com/chardet/chardet https://pypi.org/project/chardet/;
+SRC_URI="https://github.com/chardet/chardet/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+# SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+# PyPI tarball is missing test.py: https://github.com/chardet/chardet/pull/118
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos ~x86-macos 
~x64-solaris"
+
+DEPEND="
+   test? ( dev-python/hypothesis[${PYTHON_USEDEP}] )
+"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-pytest-4.patch
+)
+
+distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: games-arcade/cdogs-sdl/files/, games-arcade/cdogs-sdl/

2020-12-10 Thread James Le Cuirot
commit: 41863e453687ebc1a83991166d16461f0d191936
Author: William Breathitt Gray  gmail  com>
AuthorDate: Thu Dec 10 12:11:17 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Thu Dec 10 21:16:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41863e45

games-arcade/cdogs-sdl: Remove -Werror for build

Closes: https://bugs.gentoo.org/759289
Signed-off-by: William Breathitt Gray  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18594
Signed-off-by: James Le Cuirot  gentoo.org>

 games-arcade/cdogs-sdl/cdogs-sdl-0.10.1.ebuild |  1 +
 ...0.1-Remove-Winline-and-Werror-definitions.patch | 24 ++
 2 files changed, 25 insertions(+)

diff --git a/games-arcade/cdogs-sdl/cdogs-sdl-0.10.1.ebuild 
b/games-arcade/cdogs-sdl/cdogs-sdl-0.10.1.ebuild
index 63957cdb3af..f5fb5dcdeb1 100644
--- a/games-arcade/cdogs-sdl/cdogs-sdl-0.10.1.ebuild
+++ b/games-arcade/cdogs-sdl/cdogs-sdl-0.10.1.ebuild
@@ -23,6 +23,7 @@ RDEPEND="${DEPEND}"
 
 PATCHES=(
"${FILESDIR}/${P}-Add-BUILD_EDITOR-option.patch"
+   "${FILESDIR}/${P}-Remove-Winline-and-Werror-definitions.patch"
 )
 
 src_prepare() {

diff --git 
a/games-arcade/cdogs-sdl/files/cdogs-sdl-0.10.1-Remove-Winline-and-Werror-definitions.patch
 
b/games-arcade/cdogs-sdl/files/cdogs-sdl-0.10.1-Remove-Winline-and-Werror-definitions.patch
new file mode 100644
index 000..acd9a4e8576
--- /dev/null
+++ 
b/games-arcade/cdogs-sdl/files/cdogs-sdl-0.10.1-Remove-Winline-and-Werror-definitions.patch
@@ -0,0 +1,24 @@
+From 2b55a76518e0492d7003af9af798bd9769f0b586 Mon Sep 17 00:00:00 2001
+From: William Breathitt Gray 
+Date: Thu, 10 Dec 2020 07:07:33 -0500
+Subject: [PATCH] Remove -Winline and -Werror definitions
+
+---
+ CMakeLists.txt | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 510e4802..ed2872b5 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -123,7 +123,6 @@ else()
+   endif()
+   endif()
+   if(NOT BEOS AND NOT HAIKU)
+-  add_definitions(-Winline -Werror)
+   set(EXTRA_LIBRARIES "m")
+   endif()
+ endif()
+-- 
+2.29.2
+



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

2020-12-10 Thread James Le Cuirot
commit: 306373b953e1e68b6f2c14ee4ea58abe35035bac
Author: James Le Cuirot  gentoo  org>
AuthorDate: Thu Dec 10 20:48:35 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Thu Dec 10 21:16:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=306373b9

www-client/vivaldi: Drop old 3.4.2066.106_p1

Package-Manager: Portage-3.0.12, Repoman-3.0.1
Signed-off-by: James Le Cuirot  gentoo.org>

 www-client/vivaldi/Manifest   |   4 -
 www-client/vivaldi/vivaldi-3.4.2066.106_p1.ebuild | 115 --
 2 files changed, 119 deletions(-)

diff --git a/www-client/vivaldi/Manifest b/www-client/vivaldi/Manifest
index b8341cac109..7189d9a9107 100644
--- a/www-client/vivaldi/Manifest
+++ b/www-client/vivaldi/Manifest
@@ -1,7 +1,3 @@
-DIST vivaldi-3.4.2066.106_p1-amd64.deb 75692172 BLAKE2B 
6311f405833e99652d3905c08591535bd09ae2f290bf6cc147011f6e7e6099975c355ef44bd99488950cbd09b85aa2dd17448c1337942c18077fbea57c77984f
 SHA512 
da3db40bda4cb709f24764531fab9c1e13c00fc4eda22a27a3f06320d5b3f85aa6b49aa35df8cd1aa17ca27d2019ac74151d504fe3c23bef50cdcd0771aca613
-DIST vivaldi-3.4.2066.106_p1-arm64.deb 68074616 BLAKE2B 
90677ffe9f7b76a45a686dc1953c4eccb956a438c1c5afccf8e7af2fbdf3a22b5446fb4932c309c57ada545af2844f45a4c4fb3ec9c5731c7fe6ca29ba96aa27
 SHA512 
a8c44bcb0643f5282de37935161dad0e0cd278ead1ea1bcd4ee7a907ab630c41e5d88bb271c4221e3e8ca87fd5de0df9a902121ed7cd7266dc9f6942eb1d4f95
-DIST vivaldi-3.4.2066.106_p1-armhf.deb 67022536 BLAKE2B 
5ee874dc41c484aa2130ca20a1a68b48178f7a55db1c56c010b4319448aada2c0c4e0b2d7ab36dd85d37cf4f789e25ec57679a3b6ea87c086e537025ab56199f
 SHA512 
3fc1f20dcf7c0baa2c7a021b5e9d3480f62a04eb65697712df1481f85ef7afdc019a94e2873964ffba870bda525d5b84dbf3201a7e660428576e00c4770c067e
-DIST vivaldi-3.4.2066.106_p1-i386.deb 72096496 BLAKE2B 
6728eaefa74d4ee061d75d510817ccd7196455bd1e1f0347c90f7528358c33c7f81bd6e46edaafd94e0da1880e633dcf0aeee795eaeee3b88497a06f3ba9533b
 SHA512 
cac85271513bbcc4af08c5e53c2652b4ac616ce7a11b5896af1c856879cd354298243314fb3ae535d059145cd412f66177b93d9e28f63a741411e04db4030ad7
 DIST vivaldi-stable_3.5.2115.73-1_amd64.deb 76802208 BLAKE2B 
1421a38a20fc1c25c5e8cebe5eeddf4a991759c325675538c2fc31c2d0001a9846a31a785f8f3f508a6cabc5e52d4365feb2e0a58d60d4cf160b86fc0333eae3
 SHA512 
f43ac8ebe8c86e244366160bcd5c2c33d22d0cd44602eaa8a4fa512cfc255ee0cfefd6e865eb12ed0f711c182d0f4313836e865cde416890bc694c2835e21bf7
 DIST vivaldi-stable_3.5.2115.73-1_arm64.deb 69054028 BLAKE2B 
fc17e2d84900d101d5a716fa79990cd6501e741c2e3c80889e3b4b5c057a2ea0dad29b9b22fc71768a14ad75677666ab6755ca3babd29cd9babbf72b15b3830d
 SHA512 
af84e3d1719cfa0f19ccae17af48c375a03e676e68be92a8ab5babb6bec3d36d6cd1ce4b13daeeffd5f0117e2614d4c1da53f5c2690c7f373003cf805b7ca99d
 DIST vivaldi-stable_3.5.2115.73-1_armhf.deb 68138412 BLAKE2B 
22c061ac3112d2e8f81b3b9ad0e6fb3d852245f5ba15ca24a6a914d5fe5e8216e973b22e80cb3c94812eb7b02ed7a3b165390bd7651498c9149bfee07994664b
 SHA512 
e1997250bec3f1591000b88a3e08446a8e2d1ffea057cb5faf101e048a1adad1db5d240ee6e12d959ad8d5172de8710ef969c407363b1693b9da83cd39091799

diff --git a/www-client/vivaldi/vivaldi-3.4.2066.106_p1.ebuild 
b/www-client/vivaldi/vivaldi-3.4.2066.106_p1.ebuild
deleted file mode 100644
index f807af0fd17..000
--- a/www-client/vivaldi/vivaldi-3.4.2066.106_p1.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-CHROMIUM_LANGS="
-   af am ar be bg bn ca cs da de de-CH el en-GB en-US eo es es-419 es-PE 
et eu
-   fa fi fil fr fy gd gl gu he hi hr hu hy id io is it ja jbo ka kn ko ku 
lt
-   lv mk ml mr ms nb nl nn pl pt-BR pt-PT ro ru sc sk sl sq sr sv sw ta te 
th
-   tr uk vi zh-CN zh-TW
-"
-inherit chromium-2 multilib unpacker toolchain-funcs xdg
-
-#VIVALDI_BRANCH="snapshot"
-
-VIVALDI_PN="${PN}-${VIVALDI_BRANCH:-stable}"
-VIVALDI_BIN="${PN}${VIVALDI_BRANCH/snapshot/-snapshot}"
-VIVALDI_HOME="opt/${VIVALDI_BIN}"
-DESCRIPTION="A browser for our friends"
-HOMEPAGE="https://vivaldi.com/;
-VIVALDI_BASE_URI="https://downloads.${PN}.com/${VIVALDI_BRANCH:-stable}/${VIVALDI_PN}_${PV/_p/-}_;
-SRC_URI="
-   amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb )
-   arm64? ( ${VIVALDI_BASE_URI}arm64.deb -> ${P}-arm64.deb )
-   arm? ( ${VIVALDI_BASE_URI}armhf.deb -> ${P}-armhf.deb )
-   x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb )
-"
-
-LICENSE="Vivaldi"
-SLOT="0"
-KEYWORDS="-* amd64 ~arm ~arm64 x86"
-RESTRICT="bindist mirror"
-
-DEPEND="
-   virtual/libiconv
-"
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   media-libs/speex
-   net-print/cups
-   sys-apps/dbus
-   sys-libs/libcap
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-  

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

2020-12-10 Thread James Le Cuirot
commit: 8be01090f872ca39511cfbf02ee2c93f91d0274e
Author: James Le Cuirot  gentoo  org>
AuthorDate: Thu Dec 10 20:48:03 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Thu Dec 10 21:16:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8be01090

www-client/vivaldi: Stabilise 3.5.2115.73

Package-Manager: Portage-3.0.12, Repoman-3.0.1
Signed-off-by: James Le Cuirot  gentoo.org>

 www-client/vivaldi/vivaldi-3.5.2115.73.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/vivaldi/vivaldi-3.5.2115.73.ebuild 
b/www-client/vivaldi/vivaldi-3.5.2115.73.ebuild
index f69da1d681b..9915e12fccf 100644
--- a/www-client/vivaldi/vivaldi-3.5.2115.73.ebuild
+++ b/www-client/vivaldi/vivaldi-3.5.2115.73.ebuild
@@ -101,7 +101,7 @@ SRC_URI="
 
 LICENSE="Vivaldi"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="-* amd64 ~arm ~arm64 x86"
 IUSE="proprietary-codecs widevine"
 RESTRICT="bindist mirror"
 



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

2020-12-10 Thread Brian Evans
commit: e21a907e02d119c49196b7a350e44269d92ce6fa
Author: Brian Evans  gentoo  org>
AuthorDate: Thu Dec 10 20:57:11 2020 +
Commit: Brian Evans  gentoo  org>
CommitDate: Thu Dec 10 20:57:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e21a907e

dev-php/agavi: Modify xmlrpc default to silence warning

This package is abandoned upstream since 2016.
Consideration for cleaning may come soon

Signed-off-by: Brian Evans  gentoo.org>

 dev-php/agavi/agavi-1.0.8.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/agavi/agavi-1.0.8.ebuild b/dev-php/agavi/agavi-1.0.8.ebuild
index 3edb056ec78..3b7ac5c7ebe 100644
--- a/dev-php/agavi/agavi-1.0.8.ebuild
+++ b/dev-php/agavi/agavi-1.0.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="examples +executable iconv session soap xmlrpc"
 
-RDEPEND="dev-lang/php[iconv?,session?,soap?,xml,xmlrpc?]
+RDEPEND="dev-lang/php[iconv?,session?,soap?,xml,xmlrpc(-)?]
executable? ( dev-php/phing )"
 
 DOCS=(



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

2020-12-10 Thread Brian Evans
commit: d887adcf968231942ec3ccb95f3c18033de2ec54
Author: Brian Evans  gentoo  org>
AuthorDate: Thu Dec 10 21:12:04 2020 +
Commit: Brian Evans  gentoo  org>
CommitDate: Thu Dec 10 21:12:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d887adcf

dev-php/php-redmine-api: Set json USE as default on for PHP 8

Signed-off-by: Brian Evans  gentoo.org>

 dev-php/php-redmine-api/php-redmine-api-1.5.16.ebuild | 2 +-
 dev-php/php-redmine-api/php-redmine-api-1.5.9.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/php-redmine-api/php-redmine-api-1.5.16.ebuild 
b/dev-php/php-redmine-api/php-redmine-api-1.5.16.ebuild
index 74bf4b9df94..a49c9672f80 100644
--- a/dev-php/php-redmine-api/php-redmine-api-1.5.16.ebuild
+++ b/dev-php/php-redmine-api/php-redmine-api-1.5.16.ebuild
@@ -13,7 +13,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 
-RDEPEND="dev-lang/php:*[curl,json,simplexml]"
+RDEPEND="dev-lang/php:*[curl,json(+),simplexml]"
 BDEPEND="test? ( ${RDEPEND} 

[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-gui/, gnustep-base/gnustep-gui/files/

2020-12-10 Thread Bernard Cafarelli
commit: 89f1225543db769277015aab351e720d4a0b31ca
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Dec 10 20:50:26 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Dec 10 20:50:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89f12255

gnustep-base/gnustep-gui: fix compilation with dev-libs/icu-68

Thanks Luis Cáceres  gmail.com> for bug report and patch

Closes: https://bugs.gentoo.org/759202
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Bernard Cafarelli  gentoo.org>

 .../gnustep-gui/files/gnustep-gui-0.28.0-icu68.patch  | 15 +++
 gnustep-base/gnustep-gui/gnustep-gui-0.28.0.ebuild|  2 ++
 2 files changed, 17 insertions(+)

diff --git a/gnustep-base/gnustep-gui/files/gnustep-gui-0.28.0-icu68.patch 
b/gnustep-base/gnustep-gui/files/gnustep-gui-0.28.0-icu68.patch
new file mode 100644
index 000..5bda307b951
--- /dev/null
+++ b/gnustep-base/gnustep-gui/files/gnustep-gui-0.28.0-icu68.patch
@@ -0,0 +1,15 @@
+--- a/Headers/Additions/GNUstepGUI/GSCharacterPanel.h.old
 b/Headers/Additions/GNUstepGUI/GSCharacterPanel.h
+@@ -26,6 +26,12 @@
+Free Software Foundation, 51 Franklin Street, Fifth Floor, 
+Boston, MA 02110-1301, USA.
+ */ 
++#ifndef TRUE
++#define TRUE 1
++#endif
++#ifndef FALSE
++#define FALSE 0
++#endif
+ 
+ #ifndef _GNUstep_H_GSCharacterPanel
+ #define _GNUstep_H_GSCharacterPanel

diff --git a/gnustep-base/gnustep-gui/gnustep-gui-0.28.0.ebuild 
b/gnustep-base/gnustep-gui/gnustep-gui-0.28.0.ebuild
index 9671dea9928..4b7effe4b8f 100644
--- a/gnustep-base/gnustep-gui/gnustep-gui-0.28.0.ebuild
+++ b/gnustep-base/gnustep-gui/gnustep-gui-0.28.0.ebuild
@@ -27,6 +27,8 @@ DEPEND="${GNUSTEP_CORE_DEPEND}
speech? ( app-accessibility/flite )"
 RDEPEND="${DEPEND}"
 
+PATCHES=( "${FILESDIR}"/${P}-icu68.patch )
+
 src_prepare() {
gnustep-base_src_prepare
 



[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-base/files/, gnustep-base/gnustep-base/

2020-12-10 Thread Bernard Cafarelli
commit: 091ceaaa1be63d498cff9f287f1f60028aeba22e
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Dec 10 20:40:45 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Dec 10 20:50:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=091ceaaa

gnustep-base/gnustep-base: fix compilation with dev-libs/icu-68

Bug: https://bugs.gentoo.org/759202
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Bernard Cafarelli  gentoo.org>

 .../files/gnustep-base-1.27.0-icu68.patch  | 31 ++
 .../gnustep-base/gnustep-base-1.27.0.ebuild|  5 +++-
 2 files changed, 35 insertions(+), 1 deletion(-)

diff --git a/gnustep-base/gnustep-base/files/gnustep-base-1.27.0-icu68.patch 
b/gnustep-base/gnustep-base/files/gnustep-base-1.27.0-icu68.patch
new file mode 100644
index 000..2374d8e2497
--- /dev/null
+++ b/gnustep-base/gnustep-base/files/gnustep-base-1.27.0-icu68.patch
@@ -0,0 +1,31 @@
+From 06fa7792a51cb970e5d010a393cb88eb127830d7 Mon Sep 17 00:00:00 2001
+From: Frederik Seiffert 
+Date: Thu, 12 Nov 2020 17:18:09 +0100
+Subject: [PATCH] Fix compilation with ICU 68.
+
+---
+ Source/GSICUString.h | 11 +++
+ 1 file changed, 11 insertions(+)
+
+diff --git a/Source/GSICUString.h b/Source/GSICUString.h
+index a82447a51..15c21491d 100644
+--- a/Source/GSICUString.h
 b/Source/GSICUString.h
+@@ -2,6 +2,17 @@
+ #import 
+ #include 
+ 
++/*
++ * Define TRUE/FALSE to be used with UBool parameters, as these are no longer
++ * defined in ICU as of ICU 68.
++ */
++#ifndef TRUE
++#define TRUE 1
++#endif
++#ifndef FALSE
++#define FALSE 0
++#endif
++
+ /**
+  * Initialises a UText structure with an NSString.  If txt is NULL, then this
+  * allocates a new structure on the heap, otherwise it fills in the existing

diff --git a/gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild 
b/gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild
index 5c08a364b2a..00a2ef6a004 100644
--- a/gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild
+++ b/gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild
@@ -28,7 +28,10 @@ RDEPEND="${GNUSTEP_CORE_DEPEND}
 DEPEND="${RDEPEND}
virtual/pkgconfig"
 
-PATCHES=( "${FILESDIR}"/${PN}-1.26.0-no_compress_man.patch )
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.26.0-no_compress_man.patch
+   "${FILESDIR}"/${P}-icu68.patch
+)
 
 src_configure() {
egnustep_env



[gentoo-commits] repo/proj/prefix:master commit in: dev-lang/python/files/, dev-lang/python/

2020-12-10 Thread Fabian Groffen
tils-OO-build.patch dev-lang/python/files/python-3.5.4-libffi-pkgconfig.patch 
dev-lang/python/files/python-3.5.5-hash-unaligned.patch 
dev-lang/python/files/python-3.5.5-libressl-compatibility.patch 
dev-lang/python/files/python-3.6.5-hash-unaligned.patch 
dev-lang/python/files/python-3.6.5-libressl-compatibility.patch 
dev-lang/python/python-3.6.8.ebuild dev-lang/python/python-3.8.5.ebuild 
dev-lang/python/python-3.8.6.ebuild
X-VCS-Directories: dev-lang/python/files/ dev-lang/python/
X-VCS-Committer: grobian
X-VCS-Committer-Name: Fabian Groffen
X-VCS-Revision: bba0a3b1196af251652b4a679828aa59ceb171c9
X-VCS-Branch: master
Date: Thu, 10 Dec 2020 20:46:26 + (UTC)

commit: bba0a3b1196af251652b4a679828aa59ceb171c9
Author: Fabian Groffen  gentoo  org>
AuthorDate: Thu Dec 10 20:45:27 2020 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Thu Dec 10 20:46:19 2020 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=bba0a3b1

dev-lang/python: sync with gx86, cleanup, fix for darwin9

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

 dev-lang/python/Manifest   |   7 +-
 dev-lang/python/files/2.7-disable-nis.patch|  21 --
 dev-lang/python/files/3.4-getentropy-linux.patch   |  40 ---
 dev-lang/python/files/3.5-secondary-targets.patch  |  19 --
 dev-lang/python/files/3.5.1-cross-compile.patch|  75 --
 dev-lang/python/files/3.6-blake2.patch |  37 ---
 dev-lang/python/files/3.6-disable-nis.patch|  21 --
 dev-lang/python/files/3.6.5-disable-nis.patch  |  11 -
 dev-lang/python/files/CVE-2013-4238_py27.patch | 247 --
 dev-lang/python/files/CVE-2013-4238_py33.patch | 241 -
 .../files/python-2.5.2-cygwin-find_library.patch   |  34 ---
 .../files/python-2.7-aix-dlopen-soname.patch   |  63 -
 dev-lang/python/files/python-2.7-issue16248.patch  |  19 --
 dev-lang/python/files/python-2.7-issue17919.patch  |  54 
 dev-lang/python/files/python-2.7-issue18235.patch  |  45 
 dev-lang/python/files/python-2.7-issue18851.patch  | 287 -
 .../python/files/python-2.7-libffi-pkgconfig.patch |  44 
 .../files/python-2.7-libressl-compatibility.patch  |  92 ---
 .../python/files/python-2.7.10-semaphore-pid.patch |  51 
 .../files/python-2.7.10-semaphore-urandom.patch|  38 ---
 .../python/files/python-2.7.5-library-path.patch   |  25 --
 .../files/python-2.7.5-re_unsigned_ptrdiff.patch   |  23 --
 ...ython-2.7.6-recvfrom_into_buffer_overflow.patch |  17 --
 .../python/files/python-3.2-CVE-2013-2099.patch|  51 
 .../python/files/python-3.2-CVE-2014-1912.patch|  51 
 .../python/files/python-3.2-CVE-2014-4616.patch|  39 ---
 dev-lang/python/files/python-3.2-issue16248.patch  |  19 --
 dev-lang/python/files/python-3.2-issue17919.patch  |  74 --
 dev-lang/python/files/python-3.2-issue18235.patch  |  45 
 dev-lang/python/files/python-3.2-issue19521.patch  |  87 ---
 dev-lang/python/files/python-3.2-issue19529.patch  |  14 -
 .../python/files/python-3.2-libffi-pkgconfig.patch |  44 
 .../python/files/python-3.3-CVE-2013-2099.patch|  51 
 dev-lang/python/files/python-3.3-issue17919.patch  | 112 
 dev-lang/python/files/python-3.3-issue18235.patch  |  35 ---
 dev-lang/python/files/python-3.3-issue21811.patch  |  46 
 dev-lang/python/files/python-3.4-gcc-5.patch   |  37 ---
 .../files/python-3.4.3-ncurses-pkg-config.patch|  13 -
 dev-lang/python/files/python-3.4.5-cross.patch |  11 -
 .../files/python-3.5-distutils-OO-build.patch  |  80 --
 .../files/python-3.5.4-libffi-pkgconfig.patch  |  44 
 .../python/files/python-3.5.5-hash-unaligned.patch |  43 ---
 .../python-3.5.5-libressl-compatibility.patch  |  69 -
 .../python/files/python-3.6.5-hash-unaligned.patch |  42 ---
 .../python-3.6.5-libressl-compatibility.patch  | 114 
 dev-lang/python/python-3.8.5.ebuild|   1 -
 .../{python-3.6.8.ebuild => python-3.8.6.ebuild}   | 227 
 47 files changed, 106 insertions(+), 2754 deletions(-)

diff --git a/dev-lang/python/Manifest b/dev-lang/python/Manifest
index 0727452c09..790642a69d 100644
--- a/dev-lang/python/Manifest
+++ b/dev-lang/python/Manifest
@@ -1,15 +1,14 @@
 DIST Python-2.7.16.tar.xz 12752104 BLAKE2B 
7d6b5b853f9974d44e04dd35ecdffaab87511e183b4b01dd4f8f4ee109c4b4ab208f045708f69717be9d3a706aa078b71438ed482c062c0b89c12730eae074ae
 SHA512 
16e814e8dcffc707b595ca2919bd2fa3db0d15794c63d977364652c4a5b92e90e72b8c9e1cc83b5020398bd90a1b397dbdd7cb931c49f1aa4af6ef95414b43e0
-DIST Python-3.6.8.tar.xz 17212420 BLAKE2B 
e104b49a35492b622080ab81a446c0cdd1223e8ddf95c4e1b262762a027664b59f3e4deeda4ba7177115d780e48b6764a053acef640a645327df428d2e4820cd
 SHA512 
b17867e451ebe662f50df83ed112d3656c089e7d750651ea640052b01b713b58e66aac9e082f71fd16f5b5510bc9b797f5ccd30f5399581e9aa406197f02938a
 DIST 

[gentoo-commits] repo/proj/prefix:master commit in: dev-lang/python/, scripts/

2020-12-10 Thread Fabian Groffen
commit: 4a166370fa9dc6c75c3ea9ebafdabd8877ad46e5
Author: Fabian Groffen  gentoo  org>
AuthorDate: Thu Dec 10 20:24:51 2020 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Thu Dec 10 20:46:09 2020 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=4a166370

scripts/bootstrap-prefix: bump bootstrap python for darwin9

Signed-off-by: Fabian Groffen  gentoo.org>

 dev-lang/python/python-3.8.5.ebuild |  1 +
 scripts/bootstrap-prefix.sh | 26 --
 2 files changed, 13 insertions(+), 14 deletions(-)

diff --git a/dev-lang/python/python-3.8.5.ebuild 
b/dev-lang/python/python-3.8.5.ebuild
index 32c823df81..9f83f7cd5c 100644
--- a/dev-lang/python/python-3.8.5.ebuild
+++ b/dev-lang/python/python-3.8.5.ebuild
@@ -107,6 +107,7 @@ src_prepare() {
sed -i \
-e 's/KQUEUE/KQUEUE_DISABLED/' \
configure.ac configure || die
+   eapply "${FILESDIR}"/${PN}-3.8.5-darwin9.patch
fi
 
# side-effect of disabling scproxy (see below), make sure we don't

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 20748bde66..bd518bfcbc 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -330,6 +330,11 @@ configure_toolchain() {
compiler_stage1=${compiler_stage1/" 
dev-libs/mpfr "/" &1)
+   case "${nmout}" in
+   */dev/null*)  :;;  
# apparently GNU
+   *)export NM="$(type -P nm) -p" ;;  
# Solaris nm
+   esac
;;
*-*-aix*)
linker=sys-devel/native-cctools
@@ -970,10 +975,8 @@ bootstrap_gnu() {
 
 PYTHONMAJMIN=3.8   # keep this number in line with PV below for stage1,2
 bootstrap_python() {
-   PV=3.8.5
+   PV=3.8.6
A=Python-${PV}.tar.xz
-   patch=true
-
einfo "Bootstrapping ${A%-*}"
 
# don't really want to put this on the mirror, since they are
@@ -986,9 +989,9 @@ bootstrap_python() {
mkdir -p "${S}"
cd "${S}"
case ${A} in
-   *bz2) bzip2 -dc "${DISTDIR}"/${A} | tar -xf - ;;
-   *xz) xz -dc "${DISTDIR}"/${A} | tar -xf - ;;
-   *) einfo "Don't know to unpack ${A}" ;;
+   *bz2) bzip2 -dc "${DISTDIR}"/${A} | tar -xf - ;;
+   *xz)  xz -dc "${DISTDIR}"/${A} | tar -xf -;;
+   *)einfo "Don't know to unpack ${A}"   ;;
esac
[[ ${PIPESTATUS[*]} == '0 0' ]] || return 1
S="${S}"/Python-${PV}
@@ -996,13 +999,6 @@ bootstrap_python() {
rm -rf Modules/_ctypes/libffi* || return 1
rm -rf Modules/zlib || return 1
 
-   if ${patch}; then
-   # This patch is critical and needs to be applied even
-   # when using the otherwise unpatched sources.
-   efetch 
"http://dev.gentoo.org/~grobian/distfiles/python-3.6-02_all_disable_modules_and_ssl.patch;
-   patch -p0 < 
"${DISTDIR}"/python-3.6-02_all_disable_modules_and_ssl.patch
-   fi
-
case ${CHOST} in
(*-*-cygwin*)
# apply patches from cygwinports much like the ebuild does
@@ -1044,6 +1040,9 @@ bootstrap_python() {
sed -i \
-e 's/KQUEUE/KQUEUE_DISABLED/' \
configure
+   # fixup thread id detection
+   efetch 
"http://dev.gentoo.org/~grobian/distfiles/python-3.8.6-darwin9.patch;
+   patch -p1 < "${DISTDIR}"/python-3.8.6-darwin9.patch
;;
esac
 
@@ -1109,7 +1108,6 @@ bootstrap_python() {
export HOME="${S}"
 
export PYTHON_DISABLE_MODULES="_bsddb bsddb bsddb185 bz2 crypt 
_ctypes_test _curses _curses_panel dbm _elementtree gdbm _locale nis pyexpat 
readline _sqlite3 _tkinter"
-   export PYTHON_DISABLE_SSL=1
export OPT="${CFLAGS}"
 
einfo "Compiling ${A%-*}"



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

2020-12-10 Thread Ulrich Müller
commit: 233562d771e24e722fbef1e45711895efe58d4a4
Author: Ulrich Müller  gentoo  org>
AuthorDate: Thu Dec 10 20:35:04 2020 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Thu Dec 10 20:35:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=233562d7

net-im/zoom: Extract official icon from the binary.

Bug: https://bugs.gentoo.org/759253
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Ulrich Müller  gentoo.org>

 net-im/zoom/zoom-5.4.56259.1207-r1.ebuild | 144 ++
 1 file changed, 144 insertions(+)

diff --git a/net-im/zoom/zoom-5.4.56259.1207-r1.ebuild 
b/net-im/zoom/zoom-5.4.56259.1207-r1.ebuild
new file mode 100644
index 000..7387cd5dde5
--- /dev/null
+++ b/net-im/zoom/zoom-5.4.56259.1207-r1.ebuild
@@ -0,0 +1,144 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop eapi8-dosym readme.gentoo-r1 wrapper xdg-utils
+
+DESCRIPTION="Video conferencing and web conferencing service"
+HOMEPAGE="https://zoom.us/;
+SRC_URI="https://zoom.us/client/${PV}/${PN}_x86_64.tar.xz -> 
${P}_x86_64.tar.xz"
+S="${WORKDIR}/${PN}"
+
+LICENSE="all-rights-reserved"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+IUSE="bundled-libjpeg-turbo +bundled-qt pulseaudio wayland"
+RESTRICT="mirror bindist strip"
+
+RDEPEND="!games-engines/zoom
+   dev-libs/glib:2
+   dev-libs/quazip
+   media-libs/fontconfig
+   media-libs/freetype
+   media-sound/mpg123
+   sys-apps/dbus
+   sys-apps/util-linux
+   virtual/opengl
+   x11-libs/libX11
+   x11-libs/libxcb
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libxkbcommon[X]
+   x11-libs/libXrender
+   x11-libs/libXtst
+   x11-libs/xcb-util-image
+   x11-libs/xcb-util-keysyms
+   pulseaudio? ( media-sound/pulseaudio )
+   !pulseaudio? ( media-libs/alsa-lib )
+   wayland? ( dev-libs/wayland )
+   !bundled-libjpeg-turbo? ( >=media-libs/libjpeg-turbo-2.0.5 )
+   !bundled-qt? (
+   dev-libs/icu
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtdeclarative:5[widgets]
+   dev-qt/qtdiag:5
+   dev-qt/qtgraphicaleffects:5
+   dev-qt/qtgui:5
+   dev-qt/qtlocation:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtquickcontrols:5[widgets]
+   dev-qt/qtquickcontrols2:5
+   dev-qt/qtscript:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+   wayland? ( dev-qt/qtwayland )
+   )"
+
+BDEPEND="dev-util/bbe"
+
+QA_PREBUILT="opt/zoom/*"
+
+src_prepare() {
+   default
+
+   # The tarball doesn't contain an icon, so extract it from the binary
+   bbe -s -b '/\n/' -e 'J 1;D' zoom >zoom.svg \
+   && [[ -s zoom.svg ]] || die "Extraction of icon failed"
+
+   if ! use pulseaudio; then
+   # For some strange reason, zoom cannot use any ALSA sound 
devices if
+   # it finds libpulse. This causes breakage if 
media-sound/apulse[sdk]
+   # is installed. So, force zoom to ignore libpulse.
+   bbe -e 's/libpulse.so/IgNoRePuLsE/' zoom >zoom.tmp || die
+   mv zoom.tmp zoom || die
+   fi
+}
+
+src_install() {
+   insinto /opt/zoom
+   exeinto /opt/zoom
+   doins -r json ringtone sip timezones translations
+   doins *.pcm *.sh Embedded.properties version.txt
+   doexe zoom zoom.sh zopen ZoomLauncher
+   dosym8 -r {"/usr/$(get_libdir)",/opt/zoom}/libmpg123.so
+   dosym8 -r {"/usr/$(get_libdir)",/opt/zoom}/libquazip.so
+
+   if use bundled-libjpeg-turbo; then
+   doexe libturbojpeg.so
+   else
+   dosym8 -r {"/usr/$(get_libdir)",/opt/zoom}/libturbojpeg.so
+   fi
+
+   if use bundled-qt; then
+   doexe libicu*.so.56 libQt5*.so.5
+   doins qt.conf
+
+   local dirs="Qt* generic iconengines imageformats \
+   platforminputcontexts platforms wayland* 
xcbglintegrations"
+   doins -r ${dirs}
+   find ${dirs} -type f '(' -name '*.so' -o -name '*.so.*' ')' \
+   -printf '/opt/zoom/%p\0' | xargs -0 -r fperms 0755 || 
die
+
+   (   # Remove libs and plugins with unresolved soname 
dependencies
+   cd "${ED}"/opt/zoom || die
+   rm -r Qt/labs/location QtQml/RemoteObjects \
+   QtQuick/LocalStorage QtQuick/Particles.2 
QtQuick/Scene2D \
+   QtQuick/Scene3D QtQuick/Shapes 
QtQuick/XmlListModel \
+   platforms/libqeglfs.so platforms/libqlinuxfb.so 
|| die
+   use wayland || rm -r libQt5Wayland*.so* QtWayland 
wayland* \
+   platforms/libqwayland*.so || die
+   )
+   fi
+

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

2020-12-10 Thread Brian Evans
commit: 1b57634b33a38ba7f7c2bfb4115dbf02c61d1640
Author: Brian Evans  gentoo  org>
AuthorDate: Thu Dec 10 18:45:31 2020 +
Commit: Brian Evans  gentoo  org>
CommitDate: Thu Dec 10 20:26:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b57634b

dev-php/pecl-geoip: Drop old targets

Signed-off-by: Brian Evans  gentoo.org>

 dev-php/pecl-geoip/pecl-geoip-1.1.1-r4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/pecl-geoip/pecl-geoip-1.1.1-r4.ebuild 
b/dev-php/pecl-geoip/pecl-geoip-1.1.1-r4.ebuild
index 956d2192df6..9b8d00516a8 100644
--- a/dev-php/pecl-geoip/pecl-geoip-1.1.1-r4.ebuild
+++ b/dev-php/pecl-geoip/pecl-geoip-1.1.1-r4.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
 PHP_EXT_NAME="geoip"
 DOCS="README ChangeLog"
-USE_PHP="php5-6 php7-0 php7-1 php7-2 php7-3 php7-4"
+USE_PHP="php7-2 php7-3 php7-4"
 
 inherit php-ext-pecl-r3
 



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

2020-12-10 Thread Brian Evans
commit: 7e56db0e7f412b313ec7fccbf456740ba23c36ba
Author: Brian Evans  gentoo  org>
AuthorDate: Thu Dec 10 20:24:54 2020 +
Commit: Brian Evans  gentoo  org>
CommitDate: Thu Dec 10 20:26:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e56db0e

dev-php/pecl-yaml: Drop old

Signed-off-by: Brian Evans  gentoo.org>

 dev-php/pecl-yaml/Manifest   |  2 --
 dev-php/pecl-yaml/pecl-yaml-2.0.4.ebuild | 44 
 dev-php/pecl-yaml/pecl-yaml-2.1.0.ebuild | 44 
 3 files changed, 90 deletions(-)

diff --git a/dev-php/pecl-yaml/Manifest b/dev-php/pecl-yaml/Manifest
index 55ade3d709c..cb30afe6736 100644
--- a/dev-php/pecl-yaml/Manifest
+++ b/dev-php/pecl-yaml/Manifest
@@ -1,3 +1 @@
-DIST yaml-2.0.4.tgz 39071 BLAKE2B 
3a5dba0f6a16087909f4673543d64946e5929a5ef4cc616df6a4225aa2d274b2b5492b00ab0e95ed93f808bc2a4dd0a2f6d60c8c2ded078af35c4499042488d6
 SHA512 
138e5b4566800fc7d624baf71bc585d6d432755046e598ae9f4099fa565727e04d79bb171289a53eb9e5daa416ffee1b0fb4967c84976ac6cd6fc01b0a05fbae
-DIST yaml-2.1.0.tgz 39439 BLAKE2B 
76cab7fe0c5cf4140b70dc86333a6a79c6f1684cef9e609b905d626e95cdf5542ef0a95a4e3b7e6b663adc81e240515c4d23b5f029c5519fa88e7178762171b9
 SHA512 
3731ca2b84e80599d7fae4f58efdd11e9920c672ea6e62ff6b0d57d721d3f6f12ca86efe88f63c324d4ad2b73d6947a21f6e5a47263538ca0d5e822b8fc7b8bd
 DIST yaml-2.2.0.tgz 40716 BLAKE2B 
ef8e4082cf7aa3c6996d878f04b57438fc5fa4eb6672617685b3fd3ba535581329e8bb8d6b0644b97b2d64e951aea2d46d4e702acf02ac283d8e2b43fc82acba
 SHA512 
3af6a0f2bcbab7d0ea21b81c2914a8c65393156b5a974448645ca079edbd616b5f46564e5f55a83d556f8e3fc38573a869f79c9eb3c2449e1c3d410ae32a6fb5

diff --git a/dev-php/pecl-yaml/pecl-yaml-2.0.4.ebuild 
b/dev-php/pecl-yaml/pecl-yaml-2.0.4.ebuild
deleted file mode 100644
index 3a1a1abfdb9..000
--- a/dev-php/pecl-yaml/pecl-yaml-2.0.4.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PV="${PV/_rc/RC}"
-PHP_EXT_PECL_FILENAME="yaml-${MY_PV}.tgz"
-PHP_EXT_NAME="yaml"
-PHP_EXT_INI="yes"
-PHP_EXT_ZENDEXT="no"
-DOCS=( CREDITS README )
-
-USE_PHP="php7-0 php7-1 php7-2 php7-3 php7-4 php5-6"
-
-inherit php-ext-pecl-r3
-
-S="${WORKDIR}/yaml-${MY_PV}"
-PHP_EXT_S="${S}"
-USE_PHP="php7-0 php7-1 php7-2 php7-3 php7-4"
-
-KEYWORDS="~amd64 ~x86"
-
-DESCRIPTION="YAML 1.1 (YAML Ain't Markup Language) serialization for PHP"
-LICENSE="MIT"
-SLOT="7"
-IUSE=""
-
-DEPEND=">=dev-libs/libyaml-0.1.0"
-RDEPEND="${DEPEND} php_targets_php5-6? ( 
dev-php/pecl-yaml:0[php_targets_php5-6] )"
-PHP_EXT_ECONF_ARGS=""
-
-src_prepare() {
-   if use php_targets_php7-0 || use php_targets_php7-1 || use 
php_targets_php7-2 || use php_targets_php7-3 || use php_targets_php7-4 ; then
-   php-ext-source-r3_src_prepare
-   else
-   default_src_prepare
-   fi
-}
-
-src_install() {
-   if use php_targets_php7-0 || use php_targets_php7-1 || use 
php_targets_php7-2 || use php_targets_php7-3 || use php_targets_php7-4 ; then
-   php-ext-pecl-r3_src_install
-   fi
-}

diff --git a/dev-php/pecl-yaml/pecl-yaml-2.1.0.ebuild 
b/dev-php/pecl-yaml/pecl-yaml-2.1.0.ebuild
deleted file mode 100644
index c9fc1d4dc0b..000
--- a/dev-php/pecl-yaml/pecl-yaml-2.1.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PV="${PV/_rc/RC}"
-PHP_EXT_PECL_FILENAME="yaml-${MY_PV}.tgz"
-PHP_EXT_NAME="yaml"
-PHP_EXT_INI="yes"
-PHP_EXT_ZENDEXT="no"
-DOCS=( CREDITS README )
-
-USE_PHP="php7-0 php7-1 php7-2 php7-3 php7-4 php5-6"
-
-inherit php-ext-pecl-r3
-
-S="${WORKDIR}/yaml-${MY_PV}"
-PHP_EXT_S="${S}"
-USE_PHP="php7-0 php7-1 php7-2 php7-3 php7-4"
-
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-DESCRIPTION="YAML 1.1 (YAML Ain't Markup Language) serialization for PHP"
-LICENSE="MIT"
-SLOT="7"
-IUSE=""
-
-DEPEND=">=dev-libs/libyaml-0.1.0"
-RDEPEND="${DEPEND} php_targets_php5-6? ( 
dev-php/pecl-yaml:0[php_targets_php5-6] )"
-PHP_EXT_ECONF_ARGS=""
-
-src_prepare() {
-   if use php_targets_php7-0 || use php_targets_php7-1 || use 
php_targets_php7-2 || use php_targets_php7-3 || use php_targets_php7-4 ; then
-   php-ext-source-r3_src_prepare
-   else
-   default_src_prepare
-   fi
-}
-
-src_install() {
-   if use php_targets_php7-0 || use php_targets_php7-1 || use 
php_targets_php7-2 || use php_targets_php7-3 || use php_targets_php7-4 ; then
-   php-ext-pecl-r3_src_install
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-geoip/, dev-php/pecl-geoip/files/

2020-12-10 Thread Brian Evans
commit: d6f189df76c27bcf91b32562154453ef519f4587
Author: Brian Evans  gentoo  org>
AuthorDate: Thu Dec 10 18:40:57 2020 +
Commit: Brian Evans  gentoo  org>
CommitDate: Thu Dec 10 20:26:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6f189df

dev-php/pecl-geoip: Revbump for PHP 8 support

Signed-off-by: Brian Evans  gentoo.org>

 dev-php/pecl-geoip/files/php8-support-1.1.1.patch | 93 +++
 dev-php/pecl-geoip/pecl-geoip-1.1.1-r5.ebuild | 25 ++
 2 files changed, 118 insertions(+)

diff --git a/dev-php/pecl-geoip/files/php8-support-1.1.1.patch 
b/dev-php/pecl-geoip/files/php8-support-1.1.1.patch
new file mode 100644
index 000..50c53d1a94a
--- /dev/null
+++ b/dev-php/pecl-geoip/files/php8-support-1.1.1.patch
@@ -0,0 +1,93 @@
+--- a/geoip.c  2020/10/30 12:04:28 351081
 b/geoip.c  2020/10/30 12:51:07 351082
+@@ -34,41 +34,72 @@
+ #include "ext/standard/info.h"
+ #include "php_geoip.h"
+ 
+-
++/* For PHP 8 */
++#ifndef TSRMLS_CC
++#define TSRMLS_CC
++#endif
+ 
+ ZEND_DECLARE_MODULE_GLOBALS(geoip)
+ 
++ZEND_BEGIN_ARG_INFO_EX(arginfo_geoip_void, 0, 0, 0)
++ZEND_END_ARG_INFO()
++
++ZEND_BEGIN_ARG_INFO_EX(arginfo_geoip_database_opt, 0, 0, 0)
++  ZEND_ARG_INFO(0, database)
++ZEND_END_ARG_INFO()
++
++ZEND_BEGIN_ARG_INFO_EX(arginfo_geoip_database, 0, 0, 1)
++  ZEND_ARG_INFO(0, database)
++ZEND_END_ARG_INFO()
++
++ZEND_BEGIN_ARG_INFO_EX(arginfo_geoip_host, 0, 0, 1)
++  ZEND_ARG_INFO(0, host)
++ZEND_END_ARG_INFO()
++
++ZEND_BEGIN_ARG_INFO_EX(arginfo_geoip_region, 0, 0, 2)
++  ZEND_ARG_INFO(0, country_code)
++  ZEND_ARG_INFO(0, region_code)
++ZEND_END_ARG_INFO()
++
++ZEND_BEGIN_ARG_INFO_EX(arginfo_geoip_directory, 0, 0, 1)
++  ZEND_ARG_INFO(0, directory)
++ZEND_END_ARG_INFO()
++
+ static int le_geoip;
+ 
+ /* {{{ */
+ zend_function_entry geoip_functions[] = {
+-  PHP_FE(geoip_database_info,   NULL)   
++  PHP_FE(geoip_database_info,   arginfo_geoip_database_opt)   
+ #define GEOIPDEF(php_func, c_func, db_type) \
+-  PHP_FE(php_func,NULL)
++  PHP_FE(php_func,  arginfo_geoip_host)
+ #include "geoip.def"
+ #undef GEOIPDEF
+-  PHP_FE(geoip_continent_code_by_name,   NULL)
+-  PHP_FE(geoip_org_by_name,   NULL)
+-  PHP_FE(geoip_record_by_name,   NULL)
+-  PHP_FE(geoip_id_by_name,   NULL)
+-  PHP_FE(geoip_region_by_name,   NULL)
+-  PHP_FE(geoip_isp_by_name,   NULL)
+-  PHP_FE(geoip_db_avail,  NULL)
+-  PHP_FE(geoip_db_get_all_info,   NULL)
+-  PHP_FE(geoip_db_filename,   NULL)
++  PHP_FE(geoip_continent_code_by_name,   arginfo_geoip_host)
++  PHP_FE(geoip_org_by_name,  arginfo_geoip_host)
++  PHP_FE(geoip_record_by_name,   arginfo_geoip_host)
++  PHP_FE(geoip_id_by_name,   arginfo_geoip_host)
++  PHP_FE(geoip_region_by_name,   arginfo_geoip_host)
++  PHP_FE(geoip_isp_by_name,  arginfo_geoip_host)
++  PHP_FE(geoip_db_avail, arginfo_geoip_database)
++  PHP_FE(geoip_db_get_all_info,  arginfo_geoip_void)
++  PHP_FE(geoip_db_filename,  arginfo_geoip_database)
+ #if LIBGEOIP_VERSION >= 1004001
+-  PHP_FE(geoip_region_name_by_code,   NULL)
+-  PHP_FE(geoip_time_zone_by_country_and_region,   NULL)
++  PHP_FE(geoip_region_name_by_code,  arginfo_geoip_region)
++  PHP_FE(geoip_time_zone_by_country_and_region,   arginfo_geoip_region)
+ #endif
+ #ifdef HAVE_CUSTOM_DIRECTORY
+-PHP_FE(geoip_setup_custom_directory,  NULL)
++PHP_FE(geoip_setup_custom_directory,   arginfo_geoip_directory)
+ #endif
+-  PHP_FE(geoip_asnum_by_name,   NULL)
+-  PHP_FE(geoip_domain_by_name,   NULL)
++  PHP_FE(geoip_asnum_by_name,arginfo_geoip_host)
++  PHP_FE(geoip_domain_by_name,   arginfo_geoip_host)
+ #if LIBGEOIP_VERSION >= 1004008
+-  PHP_FE(geoip_netspeedcell_by_name, NULL)
++  PHP_FE(geoip_netspeedcell_by_name, arginfo_geoip_host)
+ #endif
++#ifdef PHP_FE_END
++  PHP_FE_END
++#else
+   {NULL, NULL, NULL}
++#endif
+ };
+ /* }}} */
+ 

diff --git a/dev-php/pecl-geoip/pecl-geoip-1.1.1-r5.ebuild 
b/dev-php/pecl-geoip/pecl-geoip-1.1.1-r5.ebuild
new file mode 100644
index 000..f5bbf1f2403
--- /dev/null
+++ b/dev-php/pecl-geoip/pecl-geoip-1.1.1-r5.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PHP_EXT_NAME="geoip"
+DOCS="README ChangeLog"
+USE_PHP="php7-2 php7-3 php7-4 php8-0"
+
+inherit php-ext-pecl-r3
+
+KEYWORDS="~amd64 ~x86"
+
+DESCRIPTION="PHP extension to map IP address to geographic places"
+LICENSE="PHP-3"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-libs/geoip"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+   "${FILESDIR}/fix-failing-tests-1.1.1.patch"
+   "${FILESDIR}/php8-support-1.1.1.patch"
+)



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

2020-12-10 Thread Brian Evans
commit: c2b533f6ce46621555a8a6f7f3392abb042814ce
Author: Brian Evans  gentoo  org>
AuthorDate: Thu Dec 10 20:16:54 2020 +
Commit: Brian Evans  gentoo  org>
CommitDate: Thu Dec 10 20:26:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2b533f6

dev-php/pecl-yaml: Version bump for 2.2.0

Signed-off-by: Brian Evans  gentoo.org>

 dev-php/pecl-yaml/Manifest   |  1 +
 dev-php/pecl-yaml/pecl-yaml-2.2.0.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/dev-php/pecl-yaml/Manifest b/dev-php/pecl-yaml/Manifest
index 1a6b1e831e0..55ade3d709c 100644
--- a/dev-php/pecl-yaml/Manifest
+++ b/dev-php/pecl-yaml/Manifest
@@ -1,2 +1,3 @@
 DIST yaml-2.0.4.tgz 39071 BLAKE2B 
3a5dba0f6a16087909f4673543d64946e5929a5ef4cc616df6a4225aa2d274b2b5492b00ab0e95ed93f808bc2a4dd0a2f6d60c8c2ded078af35c4499042488d6
 SHA512 
138e5b4566800fc7d624baf71bc585d6d432755046e598ae9f4099fa565727e04d79bb171289a53eb9e5daa416ffee1b0fb4967c84976ac6cd6fc01b0a05fbae
 DIST yaml-2.1.0.tgz 39439 BLAKE2B 
76cab7fe0c5cf4140b70dc86333a6a79c6f1684cef9e609b905d626e95cdf5542ef0a95a4e3b7e6b663adc81e240515c4d23b5f029c5519fa88e7178762171b9
 SHA512 
3731ca2b84e80599d7fae4f58efdd11e9920c672ea6e62ff6b0d57d721d3f6f12ca86efe88f63c324d4ad2b73d6947a21f6e5a47263538ca0d5e822b8fc7b8bd
+DIST yaml-2.2.0.tgz 40716 BLAKE2B 
ef8e4082cf7aa3c6996d878f04b57438fc5fa4eb6672617685b3fd3ba535581329e8bb8d6b0644b97b2d64e951aea2d46d4e702acf02ac283d8e2b43fc82acba
 SHA512 
3af6a0f2bcbab7d0ea21b81c2914a8c65393156b5a974448645ca079edbd616b5f46564e5f55a83d556f8e3fc38573a869f79c9eb3c2449e1c3d410ae32a6fb5

diff --git a/dev-php/pecl-yaml/pecl-yaml-2.2.0.ebuild 
b/dev-php/pecl-yaml/pecl-yaml-2.2.0.ebuild
new file mode 100644
index 000..9a2570bbf2c
--- /dev/null
+++ b/dev-php/pecl-yaml/pecl-yaml-2.2.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PV="${PV/_rc/RC}"
+PHP_EXT_PECL_FILENAME="yaml-${MY_PV}.tgz"
+PHP_EXT_NAME="yaml"
+PHP_EXT_INI="yes"
+PHP_EXT_ZENDEXT="no"
+DOCS=( CREDITS README )
+
+USE_PHP="php7-2 php7-3 php7-4 php8-0"
+
+inherit php-ext-pecl-r3
+
+S="${WORKDIR}/yaml-${MY_PV}"
+PHP_EXT_S="${S}"
+
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+DESCRIPTION="YAML 1.1 (YAML Ain't Markup Language) serialization for PHP"
+LICENSE="MIT"
+SLOT="7"
+IUSE=""
+
+DEPEND=">=dev-libs/libyaml-0.1.0"
+RDEPEND="${DEPEND}"
+PHP_EXT_ECONF_ARGS=()



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

2020-12-10 Thread Brian Evans
commit: 2e77f55270338507fcfb66fe1a01c54d8f50be68
Author: Brian Evans  gentoo  org>
AuthorDate: Thu Dec 10 19:47:38 2020 +
Commit: Brian Evans  gentoo  org>
CommitDate: Thu Dec 10 20:26:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e77f552

dev-php/pecl-raphf: Revbump to current targets

Signed-off-by: Brian Evans  gentoo.org>

 dev-php/pecl-raphf/pecl-raphf-2.0.1-r1.ebuild | 21 +
 1 file changed, 21 insertions(+)

diff --git a/dev-php/pecl-raphf/pecl-raphf-2.0.1-r1.ebuild 
b/dev-php/pecl-raphf/pecl-raphf-2.0.1-r1.ebuild
new file mode 100644
index 000..7c2efe5219c
--- /dev/null
+++ b/dev-php/pecl-raphf/pecl-raphf-2.0.1-r1.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PHP_EXT_NAME="raphf"
+PHP_EXT_INI="yes"
+PHP_EXT_ZENDEXT="no"
+PHP_EXT_ECONF_ARGS=""
+PHP_INI_NAME="30-${PHP_EXT_NAME}"
+
+USE_PHP="php7-2 php7-3 php7-4 php8-0"
+
+inherit php-ext-pecl-r3
+
+KEYWORDS="~amd64 ~x86"
+
+DESCRIPTION="A reusable, persistent handle and resource factory API"
+LICENSE="BSD-2"
+SLOT="7"
+IUSE=""



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

2020-12-10 Thread Brian Evans
commit: d28674007f0a0c168d3190be922f87a3f4b6ee22
Author: Brian Evans  gentoo  org>
AuthorDate: Thu Dec 10 20:23:52 2020 +
Commit: Brian Evans  gentoo  org>
CommitDate: Thu Dec 10 20:26:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2867400

dev-php/pecl-http: Add PHP 8 support in new slot

Signed-off-by: Brian Evans  gentoo.org>

 dev-php/pecl-http/Manifest |  1 +
 dev-php/pecl-http/pecl-http-3.2.3-r1.ebuild| 72 ++
 dev-php/pecl-http/pecl-http-4.0.0_beta1.ebuild | 70 +
 3 files changed, 143 insertions(+)

diff --git a/dev-php/pecl-http/Manifest b/dev-php/pecl-http/Manifest
index ae6d032c2f2..eb018948dc4 100644
--- a/dev-php/pecl-http/Manifest
+++ b/dev-php/pecl-http/Manifest
@@ -1,2 +1,3 @@
 DIST pecl_http-3.2.1.tgz 221244 BLAKE2B 
b6581829fb8a800e24ccedd4d0f3efbaf558850bdc356d27a6e1d1097a8e2cfc61963a1daccd1d0f269a7cef5b243d45cdfaff5138321fe20df615dde44d19e3
 SHA512 
e67d4b32ba6f524e3fcf65f5497b94275e1a4a14fce97c57afe366369f368b3acdbedf364ed73cf983fb2c5f57f498adaa1100e7c936f11cbc5de1caedad7b51
 DIST pecl_http-3.2.3.tgz 220204 BLAKE2B 
2a712dc8f69a8a80f6f8c306883df580fdff4a0d4cb0ac06cc004f8622b30b8e2f5d373276381fd3ad67657a80cc929be81745f200a98b6ed5e475de5639dfc5
 SHA512 
e955e3246db9a9172081dd9a077154139c585bfce546e91839052bbab4d0db9d0695122574a66891ceba5c0b7e8a8f0768274e1516521ccb95cd19504dc13666
+DIST pecl_http-4.0.0beta1.tgz 219277 BLAKE2B 
184ea0a92fc514f24fd31aaec7824ba80293a52d168d11b3b3a9cea410df1bc9a6a819c45f301b357a3d19246e3c36b56f238c264579509eadf00fb42ae32d91
 SHA512 
d3e487d10e18e8af1a750d171e4432dd30562e1fb8d8ae7cbb33a379e3d385d27a6ce1896ed8f727802eae1045505254cb68840395098310e22f6dc640c5c616

diff --git a/dev-php/pecl-http/pecl-http-3.2.3-r1.ebuild 
b/dev-php/pecl-http/pecl-http-3.2.3-r1.ebuild
new file mode 100644
index 000..209edf1ed14
--- /dev/null
+++ b/dev-php/pecl-http/pecl-http-3.2.3-r1.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PHP_EXT_NAME="http"
+PHP_EXT_PECL_PKG="pecl_http"
+PHP_EXT_INI="yes"
+PHP_EXT_ZENDEXT="no"
+PHP_INI_NAME="50-http"
+
+USE_PHP="php7-2 php7-3 php7-4 php8-0"
+
+inherit php-ext-pecl-r3
+
+USE_PHP="php7-2 php7-3 php7-4"
+
+KEYWORDS="~amd64 ~x86"
+
+DESCRIPTION="Extended HTTP Support for PHP"
+LICENSE="BSD-2 MIT"
+SLOT="7"
+IUSE="ssl curl_ssl_gnutls curl_ssl_libressl curl_ssl_nss +curl_ssl_openssl"
+
+COMMON_DEPEND="app-arch/brotli:=
+   dev-libs/libevent
+   
dev-php/pecl-propro:7[php_targets_php7-2(-)?,php_targets_php7-3(-)?,php_targets_php7-4(-)?]
+   
>=dev-php/pecl-raphf-2.0.1:7[php_targets_php7-2(-)?,php_targets_php7-3(-)?,php_targets_php7-4(-)?]
+   net-dns/libidn2
+   sys-libs/zlib
+   ssl? ( 
net-misc/curl[ssl,curl_ssl_gnutls=,curl_ssl_libressl=,curl_ssl_nss=,curl_ssl_openssl=]
 )
+   !ssl? ( net-misc/curl[-ssl] )
+"
+DEPEND="
+   php_targets_php7-2? ( ${COMMON_DEPEND} 
dev-lang/php:7.2[hash,session,iconv] )
+   php_targets_php7-3? ( ${COMMON_DEPEND} 
dev-lang/php:7.3[hash,session,iconv] )
+   php_targets_php7-4? ( ${COMMON_DEPEND} dev-lang/php:7.4[session,iconv] 
)"
+RDEPEND="${DEPEND}
+   php_targets_php8-0? ( dev-php/pecl-http:8[php_targets_php8-0(-)] )"
+
+PHP_EXT_ECONF_ARGS=( --with-http --without-http-shared-deps 
--without-http-libidn-dir )
+
+src_prepare() {
+   if use php_targets_php7-2 || use php_targets_php7-3 || use 
php_targets_php7-4 ; then
+   php-ext-source-r3_src_prepare
+   else
+   default_src_prepare
+   fi
+}
+
+src_install() {
+   if use php_targets_php7-2 || use php_targets_php7-3 || use 
php_targets_php7-4 ; then
+   php-ext-pecl-r3_src_install
+   fi
+}
+
+src_test() {
+   # Cannot use eclass function due to required modules
+   # All tests SKIP otherwise
+   for slot in $(php_get_slots); do
+   php_init_slot_env "${slot}"
+   # Link in required modules for testing
+   ln -s "${EXT_DIR}/propro.so" "modules/propro.so" || die
+   ln -s "${EXT_DIR}/raphf.so" "modules/raphf.so" || die
+   sed -i \
+   
's/PHP_TEST_SHARED_EXTENSIONS)/PHP_TEST_SHARED_EXTENSIONS) -d 
extension=propro.so -d extension=raphf.so/' \
+   Makefile || die
+   SKIP_ONLINE_TESTS=yes NO_INTERACTION="yes" emake test
+   # Clean up testing links
+   rm modules/propro.so modules/raphf.so || die
+   done
+}

diff --git a/dev-php/pecl-http/pecl-http-4.0.0_beta1.ebuild 
b/dev-php/pecl-http/pecl-http-4.0.0_beta1.ebuild
new file mode 100644
index 000..af5bbf3e0b5
--- /dev/null
+++ b/dev-php/pecl-http/pecl-http-4.0.0_beta1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PHP_EXT_NAME="http"

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

2020-12-10 Thread Matt Turner
commit: 8c4872c4ebcbcb94b917e495111ad2b4ff39a56a
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec 10 20:21:27 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec 10 20:21:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c4872c4

media-video/ffmpeg: Keyword 4.3.1 alpha, #728558

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

 media-video/ffmpeg/ffmpeg-4.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/ffmpeg/ffmpeg-4.3.1.ebuild 
b/media-video/ffmpeg/ffmpeg-4.3.1.ebuild
index 7c722389ec2..2fd3ea1ba4c 100644
--- a/media-video/ffmpeg/ffmpeg-4.3.1.ebuild
+++ b/media-video/ffmpeg/ffmpeg-4.3.1.ebuild
@@ -59,7 +59,7 @@ LICENSE="
samba? ( GPL-3 )
 "
 if [ "${PV#}" = "${PV}" ] ; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc 
x86 ~amd64-linux ~x86-linux"
 fi
 
 # Options to use as use_enable in the foo[:bar] form.



[gentoo-commits] repo/proj/prefix:master commit in: dev-lang/ruby/files/2.4/, dev-lang/ruby/files/, dev-lang/ruby/files/2.7/, ...

2020-12-10 Thread Sam James
commit: 792a99abf12ba28bcc3c572e24586b32ad6fc363
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec 10 20:19:12 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec 10 20:19:24 2020 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=792a99ab

dev-lang/ruby: moved to ::gentoo

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

 dev-lang/ruby/Manifest |   5 -
 dev-lang/ruby/files/2.4/002_windows_crossdev.patch |  64 
 dev-lang/ruby/files/2.4/005_no-undefined-ext.patch |  11 -
 dev-lang/ruby/files/2.4/009_no-gems.patch  | 112 ---
 dev-lang/ruby/files/2.4/010-libressl_2.7.patch |  15 -
 dev-lang/ruby/files/2.4/011-gcc8.patch |  64 
 dev-lang/ruby/files/2.4/012-openssl_1.1.patch  | 339 -
 ...-ia64-specific-code-to-use-execution-cont.patch |  67 
 dev-lang/ruby/files/2.5/005_no-undefined-ext.patch |  11 -
 dev-lang/ruby/files/2.5/009_no-gems.patch  |  95 --
 dev-lang/ruby/files/2.5/010-libressl_2.7.patch |  15 -
 dev-lang/ruby/files/2.5/011-no-gems.patch  |  85 --
 dev-lang/ruby/files/2.6/005_no-undefined-ext.patch |  11 -
 dev-lang/ruby/files/2.6/009_no-gems.patch  |  39 ---
 .../ruby/files/2.6/010-default-gem-location.patch  |  20 --
 .../ruby/files/2.7/010-default-gem-location.patch  |  20 --
 dev-lang/ruby/files/auto_gem.rb|  10 -
 dev-lang/ruby/files/ruby-1.8.6-memory-leak.diff|  60 
 dev-lang/ruby/files/ruby-1.8.6-uclibc-udp.patch|  21 --
 .../ruby/files/ruby-1.8.6_p36-only-ncurses.patch   |  10 -
 dev-lang/ruby/files/ruby-1.8.6_p36-prefix.patch|  11 -
 .../files/ruby-1.8.7-darwin9-getsetcontext.patch   |  33 --
 .../ruby-1.8.7-glibc-2.14-fclose-behaviour.patch   |  38 ---
 dev-lang/ruby/files/ruby-1.8.7_p160-solaris.patch  |  15 -
 .../files/ruby-1.8.7_p249-pthread-linking.patch|  27 --
 .../ruby/files/ruby-1.8.7_p370-mint-sha2.patch | 123 
 dev-lang/ruby/files/ruby-1.8.7_p370-mint.patch |  14 -
 dev-lang/ruby/files/ruby-1.9.1-only-ncurses.patch  |  11 -
 dev-lang/ruby/files/ruby-1.9.1-prefix.patch|  22 --
 dev-lang/ruby/files/ruby-mkconfig.patch|  14 -
 .../ruby/files/ruby18-mkmf-parallel-install.patch  |  14 -
 dev-lang/ruby/metadata.xml |  13 -
 dev-lang/ruby/ruby-2.4.10.ebuild   | 242 ---
 dev-lang/ruby/ruby-2.5.8-r1.ebuild | 236 --
 dev-lang/ruby/ruby-2.6.6-r2.ebuild | 248 ---
 dev-lang/ruby/ruby-2.7.1-r2.ebuild | 251 ---
 dev-lang/ruby/ruby-2.7.2.ebuild| 251 ---
 37 files changed, 2637 deletions(-)

diff --git a/dev-lang/ruby/Manifest b/dev-lang/ruby/Manifest
deleted file mode 100644
index f031e77a67..00
--- a/dev-lang/ruby/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-DIST ruby-2.4.10.tar.xz 10100664 BLAKE2B 
7301f34b94bb6d88c0d049eed4220ddb290c877b130e90c86bc454b3e72c90ae151db0e828068c8fe02b21cd41c8f3cd43d4e95ab688d2cd6f3f3840ea9d
 SHA512 
11c7a9ea1353f752763b189815ac34674cc8ebf7141517838b7f040823e892780d94ec3091c1f5d1415f9bc1b838b7f6f9de13a706df7bef80ce3b146a7d6660
-DIST ruby-2.5.8.tar.xz 11298404 BLAKE2B 
3256c0448e72b63c0bd89f89a27fa9c09c8feed54d42cd79899b7d5cfe9dbc29ca708d12c630b3f52ff85b0c6a4011ae7ff0483d64b2fd445700a72a91028035
 SHA512 
2886be764a454425c5beef2777c64a70ee0d048b07896b327633d904f5077fea4299526689f9e2ac4dcd2fc4811cf9a6c8ce75367ed35d29dfe1a54222872e0d
-DIST ruby-2.6.6.tar.xz 11567284 BLAKE2B 
45e910dd9b128c46bff3003834c4fdcbbc2e2e4d3e44f298ff4356a285de2c375d6b6021a3aa28d89336b32a1655fa4a7c086d07f4a0f6bcd578a11dd4a894da
 SHA512 
86caf93dbf61d03781767ab5375a7edf4761f13ba08ccfefe16c0a7550499237e7390c2f72a95d42670d4fe76b2401b4218936187c62ec1572799e9e04c50d62
-DIST ruby-2.7.1.tar.xz 12003684 BLAKE2B 
90a35c3e246cfe982a146be29a3d121d6e2c251ed96703dbc46b98c21e0e43e5445132e6119e584ae35f7193f063ff1b14822f947a4e07037c37fbba5e4038da
 SHA512 
79f98b1ea98e0b10ec79da1883e8fc84d48ffe5c09ae945cbebde94365e35a589d919aac965f74d70ca7e21370ecee631ac5a8f9c4eac61d62f5aa629f27bf31
-DIST ruby-2.7.2.tar.xz 12037052 BLAKE2B 
a4ad22295b3fed4e8064fc6e77adb8642d1fa7ae1f4ef912d7bde19c735cb25b1a3e3aefba53dad944046d844d608bcefba61c314cf1e52747f50d7d91f4c436
 SHA512 
7972278b096aa768c7adf2befd26003e18781a29ca317640317d30d93d6e963ded197724c8e2f1dfe1e838c5647176d414a74732a62e931fb50d6f2e0f777349

diff --git a/dev-lang/ruby/files/2.4/002_windows_crossdev.patch 
b/dev-lang/ruby/files/2.4/002_windows_crossdev.patch
deleted file mode 100644
index 7e290d434f..00
--- a/dev-lang/ruby/files/2.4/002_windows_crossdev.patch
+++ /dev/null
@@ -1,64 +0,0 @@
-Bug: https://bugs.gentoo.org/show_bug.cgi?id=618878
-
-A few patches to make crossdev for mingw-w64 play nice with ruby's ebuilds.
-Basic gist is that without the following patch to configure.in ruby-2.4.1
-hardcodes 240 into the shared, static, and import 

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

2020-12-10 Thread Sam James
commit: 1467a4b2351876cd1dae77116a79920c6022a9f2
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec 10 20:12:34 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec 10 20:18:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1467a4b2

profiles/prefix/package.use.mask: mask dev-lang/ruby[systemtap]

It's currently forcibly disabled in the ::prefix ebuilds
and I'd like to get those dropped and synced with the main
tree.

We can return to this and drop the mask later, but adding
it now lets us simplify the logic without having to test
multiple things at once.

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

 profiles/prefix/package.use.mask | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/profiles/prefix/package.use.mask b/profiles/prefix/package.use.mask
index 87169c7c52c..e256f5fbba1 100644
--- a/profiles/prefix/package.use.mask
+++ b/profiles/prefix/package.use.mask
@@ -1,6 +1,12 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Sam James  (2020-12-10)
+# Disable systemtap for now to be consistent
+# with ::prefix pre-merge.
+# Not yet tested so we may be able to drop this later.
+dev-lang/ruby systemtap
+
 # Fabian Groffen  (2020-06-07)
 # installing kernels has no business in Prefix
 sys-apps/debianutils installkernel



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

2020-12-10 Thread Sam James
commit: 3d04bd8b66343bafae37a6a15dbc8c141f6218f3
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec  8 22:41:04 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec 10 20:18:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d04bd8b

dev-lang/ruby: sync with prefix changes

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

 dev-lang/ruby/ruby-2.5.8-r1.ebuild | 26 +-
 dev-lang/ruby/ruby-2.6.6-r2.ebuild | 26 +-
 dev-lang/ruby/ruby-2.7.2.ebuild| 26 +-
 3 files changed, 75 insertions(+), 3 deletions(-)

diff --git a/dev-lang/ruby/ruby-2.5.8-r1.ebuild 
b/dev-lang/ruby/ruby-2.5.8-r1.ebuild
index ab80427fda6..6c1a64eaf33 100644
--- a/dev-lang/ruby/ruby-2.5.8-r1.ebuild
+++ b/dev-lang/ruby/ruby-2.5.8-r1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://www.ruby-lang.org/;
 SRC_URI="https://cache.ruby-lang.org/pub/ruby/${SLOT}/${MY_P}.tar.xz;
 
 LICENSE="|| ( Ruby-BSD BSD-2 )"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="berkdb debug doc examples gdbm ipv6 jemalloc libressl +rdoc rubytests 
socks5 +ssl static-libs systemtap tk xemacs"
 
 RDEPEND="
@@ -73,6 +73,23 @@ src_prepare() {
einfo "Removing bundled libraries..."
rm -fr ext/fiddle/libffi-3.2.1 || die
 
+   if use prefix ; then
+   # Fix hardcoded SHELL var in mkmf library
+   sed -i -e "s#\(SHELL = \).*#\1${EPREFIX}/bin/sh#" lib/mkmf.rb 
|| die
+
+   if [[ ${CHOST} == *darwin* ]] ; then
+   # avoid symlink loop on Darwin (?!)
+   sed -i \
+   -e 
'/LIBRUBY_ALIASES=/s/lib$(RUBY_INSTALL_NAME).$(SOEXT)//' \
+   configure.ac || die
+
+   # make ar/libtool hack for Darwin work
+   sed -i \
+   -e 
"s/ac_cv_prog_ac_ct_AR='libtool/ac_cv_prog_AR='${CHOST}-libtool/" \
+   configure.ac || die
+   fi
+   fi
+
eapply_user
 
eautoreconf
@@ -123,6 +140,7 @@ src_configure() {
INSTALL="${EPREFIX}/usr/bin/install -c" LIBPATHENV="" econf \
--program-suffix=${MY_SUFFIX} \
--with-soname=ruby${MY_SUFFIX} \
+   --with-readline-dir="${EPREFIX}"/usr \
--enable-shared \
--enable-pthread \
--disable-rpath \
@@ -174,6 +192,12 @@ src_install() {
local MINIRUBY=$(echo -e 'include Makefile\ngetminiruby:\n\t@echo 
$(MINIRUBY)'|make -f - getminiruby)
 

LD_LIBRARY_PATH="${S}:${ED}/usr/$(get_libdir)${LD_LIBRARY_PATH+:}${LD_LIBRARY_PATH}"
+
+   if [[ ${CHOST} == *darwin* ]] ; then
+   
DYLD_LIBRARY_PATH="${S}:${ED}/usr/$(get_libdir)${DYLD_LIBRARY_PATH+:}${DYLD_LIBRARY_PATH}"
+   export DYLD_LIBRARY_PATH
+   fi
+
RUBYLIB="${S}:${ED}/usr/$(get_libdir)/ruby/${RUBYVERSION}"
for d in $(find "${S}/ext" -type d) ; do
RUBYLIB="${RUBYLIB}:$d"

diff --git a/dev-lang/ruby/ruby-2.6.6-r2.ebuild 
b/dev-lang/ruby/ruby-2.6.6-r2.ebuild
index 7482975836e..e8e8f2b88b6 100644
--- a/dev-lang/ruby/ruby-2.6.6-r2.ebuild
+++ b/dev-lang/ruby/ruby-2.6.6-r2.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://www.ruby-lang.org/;
 SRC_URI="https://cache.ruby-lang.org/pub/ruby/${SLOT}/${MY_P}.tar.xz;
 
 LICENSE="|| ( Ruby-BSD BSD-2 )"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~mips ppc ppc64 ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~mips ppc ppc64 ~s390 sparc x86 ~ppc-aix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="berkdb debug doc examples gdbm ipv6 jemalloc jit libressl +rdoc 
rubytests socks5 +ssl static-libs systemtap tk xemacs"
 
 RDEPEND="
@@ -76,6 +76,23 @@ src_prepare() {
einfo "Removing bundled libraries..."
rm -fr ext/fiddle/libffi-3.2.1 || die
 
+   if use prefix ; then
+   # Fix hardcoded SHELL var in mkmf library
+   sed -i -e "s#\(SHELL = \).*#\1${EPREFIX}/bin/sh#" lib/mkmf.rb 
|| die
+
+   if [[ ${CHOST} == *darwin* ]] ; then
+   # avoid symlink loop on Darwin (?!)
+   sed -i \
+   -e 
'/LIBRUBY_ALIASES=/s/lib$(RUBY_INSTALL_NAME).$(SOEXT)//' \
+   configure.ac || die
+
+   # make ar/libtool hack for Darwin work
+   sed -i \
+   -e 
"s/ac_cv_prog_ac_ct_AR='libtool/ac_cv_prog_AR='${CHOST}-libtool/" \
+   

[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-nextpvr/

2020-12-10 Thread Craig Andrews
commit: 58088c56dd31eb49059aba52a197a70d42748571
Author: Craig Andrews  gentoo  org>
AuthorDate: Thu Dec 10 19:57:37 2020 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Thu Dec 10 19:58:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58088c56

media-plugins/kodi-pvr-nextpvr: 8.0.2 version bump

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

 media-plugins/kodi-pvr-nextpvr/Manifest|  1 +
 .../kodi-pvr-nextpvr/kodi-pvr-nextpvr-8.0.2.ebuild | 37 ++
 2 files changed, 38 insertions(+)

diff --git a/media-plugins/kodi-pvr-nextpvr/Manifest 
b/media-plugins/kodi-pvr-nextpvr/Manifest
index 92815c0b41e..10e257ad510 100644
--- a/media-plugins/kodi-pvr-nextpvr/Manifest
+++ b/media-plugins/kodi-pvr-nextpvr/Manifest
@@ -4,3 +4,4 @@ DIST kodi-pvr-nextpvr-7.1.0.tar.gz 145632 BLAKE2B 
048e006df0817390037d79c3c1f428
 DIST kodi-pvr-nextpvr-7.1.1.tar.gz 147599 BLAKE2B 
0091182e313d9ca052f08cf9615dfaca51e1354d54f58685e23a767cc8ada532c531ff67f198f74f84d5252b61f2bc1a2c06d8ffe92ff771730a2a54c7841c3d
 SHA512 
7a387c9d42e3044c99125292da7d399bfd138d5126904daa5acb3612b46e54adb1ba890d8a90dc20af8cf9b9dbc152531fdbaa8f38d4f7faf208176379542752
 DIST kodi-pvr-nextpvr-8.0.0.tar.gz 147610 BLAKE2B 
22928f16d9b9b2af7d5226137a0768e321ed2490b9f06046a232a9b906b98690b5f96aac32e5843e0163ac8836250fdbef535b06ee93792f6752719ece7d54ec
 SHA512 
66f92a6b9239729017cc87dc75842e545b5bed711298231366238d0c56e4154944819a4607bd1e1bfc49721a41ca0644721304c9fb037a6cab034ae51dde3349
 DIST kodi-pvr-nextpvr-8.0.1.tar.gz 147804 BLAKE2B 
ae1489eb5b8c72a635dd59c94f9aa45626cd49fad1bc897fde0c8868009bc9f3b5d43eafef2ce378060a1061848b7d798ce015f4d156a11b10cb89e109ab5d85
 SHA512 
91d0a6d8f3c21d55e11e116b4bca4832f17e06a2ab7b45963739109575a33e037cf73258aae3ec26ab1b3746c0c5777800ef3d266c170859ea393423ad031a35
+DIST kodi-pvr-nextpvr-8.0.2.tar.gz 148511 BLAKE2B 
058464e3144216dd0b36bdaf7f124933b5fed3e5cd4672b79b6226cf727bc9ec7434e63855484069d364e34e97da0c1a62cd234b3b15411dcac7fff43cc83617
 SHA512 
951cce79233a0606fb12669f52ba7fe24381cfc9d56213dcfed5a928ab41ec974d919713a530ef5d465a31f5d7da175594c28790a55cfc9e144473903d79c49b

diff --git a/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-8.0.2.ebuild 
b/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-8.0.2.ebuild
new file mode 100644
index 000..46d49f2ab86
--- /dev/null
+++ b/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-8.0.2.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake kodi-addon
+
+DESCRIPTION="Kodi's NextPVR client addon"
+HOMEPAGE="https://github.com/kodi-pvr/pvr.nextpvr;
+SRC_URI=""
+
+case ${PV} in
+)
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.nextpvr.git;
+   inherit git-r3
+   ;;
+*)
+   CODENAME="Matrix"
+   KEYWORDS="~amd64 ~x86"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.nextpvr/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.nextpvr-${PV}-${CODENAME}"
+   ;;
+esac
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+   =media-tv/kodi-19*
+   dev-libs/tinyxml2
+   "
+
+RDEPEND="
+   ${DEPEND}
+   "



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-nextpvr/

2020-12-10 Thread Craig Andrews
commit: 378f86860f217d079e9a5babf399a0a002fd0b6a
Author: Craig Andrews  gentoo  org>
AuthorDate: Thu Dec 10 19:58:27 2020 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Thu Dec 10 19:58:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=378f8686

media-plugins/kodi-pvr-nextpvr: Cleanup old versions

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

 media-plugins/kodi-pvr-nextpvr/Manifest|  6 
 .../kodi-pvr-nextpvr/kodi-pvr-nextpvr-7.0.0.ebuild | 38 --
 .../kodi-pvr-nextpvr/kodi-pvr-nextpvr-7.0.2.ebuild | 38 --
 .../kodi-pvr-nextpvr/kodi-pvr-nextpvr-7.1.0.ebuild | 37 -
 .../kodi-pvr-nextpvr/kodi-pvr-nextpvr-7.1.1.ebuild | 37 -
 .../kodi-pvr-nextpvr/kodi-pvr-nextpvr-8.0.0.ebuild | 37 -
 .../kodi-pvr-nextpvr/kodi-pvr-nextpvr-8.0.1.ebuild | 37 -
 7 files changed, 230 deletions(-)

diff --git a/media-plugins/kodi-pvr-nextpvr/Manifest 
b/media-plugins/kodi-pvr-nextpvr/Manifest
index 10e257ad510..14ea36b8bac 100644
--- a/media-plugins/kodi-pvr-nextpvr/Manifest
+++ b/media-plugins/kodi-pvr-nextpvr/Manifest
@@ -1,7 +1 @@
-DIST kodi-pvr-nextpvr-7.0.0.tar.gz 145031 BLAKE2B 
01d8583d74111dfcb59a139987dc30cc900a41742ea28d4a0fcec11864cb6fc505dd200cf7b61c9dc3d7338ac500d014cc6a312ed8b26be6387604a7969aa9d1
 SHA512 
b7ede2d9f2a384816c48c19078583aa996f8d08671842444abc93a02e7d3cea9669deb67c26429aa68d3875b6644c29f467bc925768a336916b6b6a7d0894cc9
-DIST kodi-pvr-nextpvr-7.0.2.tar.gz 146987 BLAKE2B 
751e08334f29f447b6abd665c782cee9ddc7a1b40a6600296a68d131827feecac3c71622aa1fc61c30d6aafa799b82f7197528c2fdd764a8a66f263493bca2a7
 SHA512 
8e3d0f127379263b55e565a5eafc062a265a354e23f3c184093e4f6a3ffbccf0acddb89321165f7c7242c6c55d22b2a033e4d52bb5cd9e48baef91d15a08
-DIST kodi-pvr-nextpvr-7.1.0.tar.gz 145632 BLAKE2B 
048e006df0817390037d79c3c1f4286c8309630c21931842f52b152c389e356fb7297799fcb1eba04a11029ae55e2c88d637acfa933279f9b3b7488fc823256c
 SHA512 
1d4fa70b1ad4988b9b7b6cf04b992c5bf5f6c7ea469dcb4c745e90b6b09d2de52ec1ec785c30dcb7cdf1703aef9fbedc2ad2b43d1bcc7c7480daef4b1fc50e26
-DIST kodi-pvr-nextpvr-7.1.1.tar.gz 147599 BLAKE2B 
0091182e313d9ca052f08cf9615dfaca51e1354d54f58685e23a767cc8ada532c531ff67f198f74f84d5252b61f2bc1a2c06d8ffe92ff771730a2a54c7841c3d
 SHA512 
7a387c9d42e3044c99125292da7d399bfd138d5126904daa5acb3612b46e54adb1ba890d8a90dc20af8cf9b9dbc152531fdbaa8f38d4f7faf208176379542752
-DIST kodi-pvr-nextpvr-8.0.0.tar.gz 147610 BLAKE2B 
22928f16d9b9b2af7d5226137a0768e321ed2490b9f06046a232a9b906b98690b5f96aac32e5843e0163ac8836250fdbef535b06ee93792f6752719ece7d54ec
 SHA512 
66f92a6b9239729017cc87dc75842e545b5bed711298231366238d0c56e4154944819a4607bd1e1bfc49721a41ca0644721304c9fb037a6cab034ae51dde3349
-DIST kodi-pvr-nextpvr-8.0.1.tar.gz 147804 BLAKE2B 
ae1489eb5b8c72a635dd59c94f9aa45626cd49fad1bc897fde0c8868009bc9f3b5d43eafef2ce378060a1061848b7d798ce015f4d156a11b10cb89e109ab5d85
 SHA512 
91d0a6d8f3c21d55e11e116b4bca4832f17e06a2ab7b45963739109575a33e037cf73258aae3ec26ab1b3746c0c5777800ef3d266c170859ea393423ad031a35
 DIST kodi-pvr-nextpvr-8.0.2.tar.gz 148511 BLAKE2B 
058464e3144216dd0b36bdaf7f124933b5fed3e5cd4672b79b6226cf727bc9ec7434e63855484069d364e34e97da0c1a62cd234b3b15411dcac7fff43cc83617
 SHA512 
951cce79233a0606fb12669f52ba7fe24381cfc9d56213dcfed5a928ab41ec974d919713a530ef5d465a31f5d7da175594c28790a55cfc9e144473903d79c49b

diff --git a/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-7.0.0.ebuild 
b/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-7.0.0.ebuild
deleted file mode 100644
index 75598935558..000
--- a/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-7.0.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake kodi-addon
-
-DESCRIPTION="Kodi's NextPVR client addon"
-HOMEPAGE="https://github.com/kodi-pvr/pvr.nextpvr;
-SRC_URI=""
-
-case ${PV} in
-)
-   SRC_URI=""
-   EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.nextpvr.git;
-   inherit git-r3
-   ;;
-*)
-   CODENAME="Matrix"
-   KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-pvr/pvr.nextpvr/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
-   S="${WORKDIR}/pvr.nextpvr-${PV}-${CODENAME}"
-   ;;
-esac
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-DEPEND="
-   =media-tv/kodi-19*
-   =dev-libs/libplatform-2*
-   dev-libs/tinyxml2
-   "
-
-RDEPEND="
-   ${DEPEND}
-   "

diff --git a/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-7.0.2.ebuild 
b/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-7.0.2.ebuild
deleted file mode 100644
index 75598935558..000
--- a/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-7.0.2.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License 

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

2020-12-10 Thread Matt Turner
commit: 7c338fc7b6fa1c7058cb06ca240642b33933a33b
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec 10 19:33:31 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec 10 19:53:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c338fc7

media-libs/mesa: Remove classic OSMesa support

Was removed upstream in commit ee802372180a (mesa: Retire classic
OSMesa.). media-libs/mesa[osmesa] now requires USE=gallium, and it is
recommended to enable USE=llvm for better performance.

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

 media-libs/mesa/mesa-.ebuild | 17 +
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index 2e217a5233a..5c410fcd981 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -43,6 +43,7 @@ REQUIRED_USE="
d3d9?   ( dri3 || ( video_cards_iris video_cards_r300 video_cards_r600 
video_cards_radeonsi video_cards_nouveau video_cards_vmware ) )
gles1?  ( egl )
gles2?  ( egl )
+   osmesa? ( gallium )
vulkan? ( dri3
  video_cards_radeonsi? ( llvm ) )
vulkan-overlay? ( vulkan )
@@ -316,6 +317,10 @@ pkg_pretend() {
if ! use llvm; then
use opencl && ewarn "Ignoring USE=opencl since USE does 
not contain llvm"
fi
+
+   if use osmesa && ! use llvm; then
+   ewarn "OSMesa will be slow without enabling USE=llvm"
+   fi
 }
 
 python_check_deps() {
@@ -346,6 +351,8 @@ multilib_src_configure() {
local emesonargs=()
 
if use classic; then
+   dri_driver_enable !gallium swrast
+
# Intel code
dri_driver_enable video_cards_i915 i915
dri_driver_enable video_cards_i965 i965
@@ -437,6 +444,7 @@ multilib_src_configure() {
gallium_enable -- kmsro
fi
 
+   gallium_enable -- swrast
gallium_enable video_cards_lima lima
gallium_enable video_cards_panfrost panfrost
gallium_enable video_cards_v3d v3d
@@ -481,14 +489,6 @@ multilib_src_configure() {
vulkan_enable video_cards_v3d broadcom
fi
 
-   if use gallium; then
-   gallium_enable -- swrast
-   emesonargs+=( -Dosmesa=$(usex osmesa gallium none) )
-   else
-   dri_driver_enable -- swrast
-   emesonargs+=( -Dosmesa=$(usex osmesa classic none) )
-   fi
-
driver_list() {
local drivers="$(sort -u <<< "${1// /$'\n'}")"
echo "${drivers//$'\n'/,}"
@@ -503,6 +503,7 @@ multilib_src_configure() {
$(meson_feature gbm)
$(meson_feature gles1)
$(meson_feature gles2)
+   $(meson_use osmesa)
$(meson_use selinux)
$(meson_feature zstd)
-Dvalgrind=$(usex valgrind auto false)



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

2020-12-10 Thread Thomas Deutschmann
commit: bcec778fe190845b5bfa79a3979306c537d0b6fa
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Dec  6 21:49:31 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 19:52:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcec778f

net-proxy/haproxy: introduce subslots

While we still don't support installing multiple net-proxy/haproxy
versions simultaneously, we need slots to support proper targeting in
GLSAs.

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/18540
Signed-off-by: Thomas Deutschmann  gentoo.org>

 net-proxy/haproxy/{haproxy-1.8.27.ebuild => haproxy-1.8.27-r1.ebuild}   | 2 +-
 .../haproxy/{haproxy-2.0.14-r1.ebuild => haproxy-2.0.14-r2.ebuild}  | 2 +-
 net-proxy/haproxy/{haproxy-2.1.10.ebuild => haproxy-2.0.19-r1.ebuild}   | 2 +-
 net-proxy/haproxy/haproxy-2.0..ebuild   | 2 +-
 net-proxy/haproxy/{haproxy-2.0.19.ebuild => haproxy-2.1.10-r1.ebuild}   | 2 +-
 net-proxy/haproxy/{haproxy-2.1.4-r1.ebuild => haproxy-2.1.4-r2.ebuild}  | 2 +-
 net-proxy/haproxy/haproxy-2.1..ebuild   | 2 +-
 net-proxy/haproxy/{haproxy-2.2.5.ebuild => haproxy-2.2.5-r1.ebuild} | 2 +-
 net-proxy/haproxy/{haproxy-2.2.6.ebuild => haproxy-2.2.6-r1.ebuild} | 2 +-
 net-proxy/haproxy/haproxy-2.2..ebuild   | 2 +-
 net-proxy/haproxy/{haproxy-2.3.2.ebuild => haproxy-2.3.2-r1.ebuild} | 2 +-
 net-proxy/haproxy/haproxy-2.3..ebuild   | 2 +-
 12 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/net-proxy/haproxy/haproxy-1.8.27.ebuild 
b/net-proxy/haproxy/haproxy-1.8.27-r1.ebuild
similarity index 99%
rename from net-proxy/haproxy/haproxy-1.8.27.ebuild
rename to net-proxy/haproxy/haproxy-1.8.27-r1.ebuild
index 2c5c63d0d07..598b9437c2a 100644
--- a/net-proxy/haproxy/haproxy-1.8.27.ebuild
+++ b/net-proxy/haproxy/haproxy-1.8.27-r1.ebuild
@@ -19,7 +19,7 @@ else
 fi
 
 LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
+SLOT="0/$(ver_cut 1-2)"
 IUSE="+crypt doc examples libressl slz net_ns +pcre pcre-jit pcre2 pcre2-jit 
ssl
 systemd +threads tools vim-syntax +zlib lua device-atlas 51degrees wurfl"
 REQUIRED_USE="pcre-jit? ( pcre )

diff --git a/net-proxy/haproxy/haproxy-2.0.14-r1.ebuild 
b/net-proxy/haproxy/haproxy-2.0.14-r2.ebuild
similarity index 99%
rename from net-proxy/haproxy/haproxy-2.0.14-r1.ebuild
rename to net-proxy/haproxy/haproxy-2.0.14-r2.ebuild
index 17aa93cde06..6670f6b38cb 100644
--- a/net-proxy/haproxy/haproxy-2.0.14-r1.ebuild
+++ b/net-proxy/haproxy/haproxy-2.0.14-r2.ebuild
@@ -19,7 +19,7 @@ else
 fi
 
 LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
+SLOT="0/$(ver_cut 1-2)"
 IUSE="+crypt doc examples libressl slz +net_ns +pcre pcre-jit pcre2 pcre2-jit 
prometheus-exporter
 ssl systemd +threads tools vim-syntax +zlib lua device-atlas 51degrees wurfl"
 REQUIRED_USE="pcre-jit? ( pcre )

diff --git a/net-proxy/haproxy/haproxy-2.1.10.ebuild 
b/net-proxy/haproxy/haproxy-2.0.19-r1.ebuild
similarity index 99%
rename from net-proxy/haproxy/haproxy-2.1.10.ebuild
rename to net-proxy/haproxy/haproxy-2.0.19-r1.ebuild
index d1c45681b56..ff5a7fefefd 100644
--- a/net-proxy/haproxy/haproxy-2.1.10.ebuild
+++ b/net-proxy/haproxy/haproxy-2.0.19-r1.ebuild
@@ -19,7 +19,7 @@ else
 fi
 
 LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
+SLOT="0/$(ver_cut 1-2)"
 IUSE="+crypt doc examples libressl slz +net_ns +pcre pcre-jit pcre2 pcre2-jit 
prometheus-exporter
 ssl systemd +threads tools vim-syntax +zlib lua device-atlas 51degrees wurfl"
 REQUIRED_USE="pcre-jit? ( pcre )

diff --git a/net-proxy/haproxy/haproxy-2.0..ebuild 
b/net-proxy/haproxy/haproxy-2.0..ebuild
index 7e2cb38725c..5b03cdb50b5 100644
--- a/net-proxy/haproxy/haproxy-2.0..ebuild
+++ b/net-proxy/haproxy/haproxy-2.0..ebuild
@@ -19,7 +19,7 @@ else
 fi
 
 LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
+SLOT="0/$(ver_cut 1-2)"
 IUSE="+crypt doc examples libressl slz +net_ns +pcre pcre-jit pcre2 pcre2-jit 
prometheus-exporter
 ssl systemd +threads tools vim-syntax +zlib lua device-atlas 51degrees wurfl"
 REQUIRED_USE="pcre-jit? ( pcre )

diff --git a/net-proxy/haproxy/haproxy-2.0.19.ebuild 
b/net-proxy/haproxy/haproxy-2.1.10-r1.ebuild
similarity index 99%
rename from net-proxy/haproxy/haproxy-2.0.19.ebuild
rename to net-proxy/haproxy/haproxy-2.1.10-r1.ebuild
index d1c45681b56..ff5a7fefefd 100644
--- a/net-proxy/haproxy/haproxy-2.0.19.ebuild
+++ b/net-proxy/haproxy/haproxy-2.1.10-r1.ebuild
@@ -19,7 +19,7 @@ else
 fi
 
 LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
+SLOT="0/$(ver_cut 1-2)"
 IUSE="+crypt doc examples libressl slz +net_ns +pcre pcre-jit pcre2 pcre2-jit 
prometheus-exporter
 ssl systemd +threads tools vim-syntax +zlib lua device-atlas 51degrees wurfl"
 REQUIRED_USE="pcre-jit? ( pcre )

diff --git a/net-proxy/haproxy/haproxy-2.1.4-r1.ebuild 
b/net-proxy/haproxy/haproxy-2.1.4-r2.ebuild
similarity index 99%
rename 

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

2020-12-10 Thread Thomas Deutschmann
commit: 81dcee6c66d746b40e715815ded1346aaa84d8f4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Dec  6 21:45:09 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec 10 19:52:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81dcee6c

net-proxy/haproxy: drop old

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

 net-proxy/haproxy/Manifest |   8 --
 net-proxy/haproxy/haproxy-1.8.26.ebuild| 169 ---
 net-proxy/haproxy/haproxy-2.0.14-r1.ebuild |   2 +-
 net-proxy/haproxy/haproxy-2.0.14.ebuild| 176 
 net-proxy/haproxy/haproxy-2.0.17.ebuild| 180 -
 net-proxy/haproxy/haproxy-2.0.18.ebuild| 180 -
 net-proxy/haproxy/haproxy-2.1.4-r1.ebuild  |   2 +-
 net-proxy/haproxy/haproxy-2.1.4.ebuild | 176 
 net-proxy/haproxy/haproxy-2.1.8.ebuild | 180 -
 net-proxy/haproxy/haproxy-2.1.9.ebuild | 180 -
 net-proxy/haproxy/haproxy-2.2.0.ebuild | 180 -
 net-proxy/haproxy/haproxy-2.2.3.ebuild | 180 -
 net-proxy/haproxy/haproxy-2.2.4.ebuild | 180 -
 13 files changed, 2 insertions(+), 1791 deletions(-)

diff --git a/net-proxy/haproxy/Manifest b/net-proxy/haproxy/Manifest
index d0e81d1e3ce..4c981b67d3f 100644
--- a/net-proxy/haproxy/Manifest
+++ b/net-proxy/haproxy/Manifest
@@ -1,16 +1,8 @@
-DIST haproxy-1.8.26.tar.gz 2205531 BLAKE2B 
87aaeb3df6668752ec9242bda86b9b28339ad6926ee3ad16c606239693daa0d957271a76e270bf7d2d64102024121d4e9c1458da0f2e1d9bb8188856c0f68949
 SHA512 
a88f1fab0c234140e949ca12a87a09d7be1e0888bf2022a19c971727af08e579e3e6318d87411772915df6d73880710e6afdab842b622b6c0fa02020fa5c9425
 DIST haproxy-1.8.27.tar.gz 2209243 BLAKE2B 
31d83f41fd5e8f77ec28a7c168661c7e8a24b51890cbc8336fd45668b031fca87a3533c9f78ee18302394e54e58b89786300a32506dadf0d7275c84e62b0f395
 SHA512 
d8b36787ea75cb3a8332b1b95fc154d6e83a52ffd91548d1d0bacab62a069d3c05e859e2e40ddb65c1a37d0a30cc6a29a07c8260ce69413a3e80c83b4143dd8a
 DIST haproxy-2.0.14.tar.gz 2651320 BLAKE2B 
dd5aed78e52b3d3dd295f3883d45adf8795efac93cf6c23fbe39be031f29d19adad0afb400e8041281413f4570bc074f06d9cd88bee672789311e56f57b258d0
 SHA512 
6b63b713a1009eff59a2622fa93462deb8794c910685840f142711a61be88ea228c7cb2ec7ca50bba0803288625e1a65b2d2f87ffbcedfd23debf5d96993
-DIST haproxy-2.0.17.tar.gz 2676783 BLAKE2B 
ee17afdf3b34bc28fe810746709ef5cb07cbcc3d7508ab13349f67b59584dfd53d6f2f926615b87095b6f130560a529c480957d62e2943bc0936e1b905896fa9
 SHA512 
edcd061534ef9a6d7eab9692dccbb22fb7a3bf145cbf555646763c0fd72f7f13d41482744072286327a48951397a11822f1708b26be24b7bc5a327f516ca8816
-DIST haproxy-2.0.18.tar.gz 2679168 BLAKE2B 
dbc591223f640524bc898b5c2261c4092ddee0b245fcf96ea0ab45fdbdadb2880b870ced6141b6325ad5bb7765951d15b0325d3343bea7e90a138db0c68b
 SHA512 
67245c375541b6004667831aaecb38e59429363f45f24fd0c4c36a28fa59dc24d66fe54b093e6b52d6029b6de8b3c86cda19e15f5f438119669bca9d70d4c0a3
 DIST haproxy-2.0.19.tar.gz 2682426 BLAKE2B 
6e14842bfcc23167414e2f4e222708bc2d08947b0c420b758b5eaf35a5145c1d013b376a2e84df77802277fe8cc2fd5a14ed9cab3232a74590ec76813fa06952
 SHA512 
6484c14e7296f4600a1b7a2123809097cac563767dc79c1cbcd29d5fc0e580926b4701d3d095fe146c1de334e5ec50502d2f97fcdd0b711889711e806720fa2f
 DIST haproxy-2.1.10.tar.gz 2721955 BLAKE2B 
b7fb27aac039cc52a35afc2710c83200727fb8fad570980ed92e68ec4e0be002d4c0e792ce2636b6470a81cd5b6c1e80be9ea53490034d67a173522801cd7315
 SHA512 
923db1b5374e5026304f593d939e905c72a9850dd7199f655ec250ce9e81bf8b712895d7eafaf5f248885d138b31d3dda679fb92bd8a9536ed681f2a09acded6
 DIST haproxy-2.1.4.tar.gz 2684568 BLAKE2B 
0618e069e6cf6fd20eb9fad0cfcb5ca1714d4001a794e20ce60d812741f4f65d44088c46599e4181cb79536566a940d748030552d0bd010ba14d1552cf7156f4
 SHA512 
fd029ac1ec877fa89a9410944439b66795b1392b6c8416aaa7978943170530c3826ba50ea706366f3f7785b7cffed58497cb362fc2480dd6920a99af4f920d98
-DIST haproxy-2.1.8.tar.gz 2715203 BLAKE2B 
fdf0896c8ee7a10268f422058f5a75c2b245da1bffed765dc618f24d18c95704724022f229b82e8df0cf2220dd3b9aa295825a7a6087009123841bead071974f
 SHA512 
6aaf1822e88189344dadc0ab64ccba3268a913a8676a375039cbe5447d5f54957668b23f1314bf68f97c195400f5817a08dd898318368075f73c1a2cca366a78
-DIST haproxy-2.1.9.tar.gz 2720185 BLAKE2B 
bdc93093f0bd7b7652376dfb65f5ea373c6420e53c0180ee07c644fe26bcf3c4fb2724624ce5f68504ca89b9c82f52de47a7da42e88e7ee3dc72b9780fab9d69
 SHA512 
acd0a4f49f67ceba4474223fab098b3f65897f9863bc91bc84af3f78945ad925cf12b2a261ccc4839f0b059557537899879a3929f05c6bb42b025bdb444f345a
-DIST haproxy-2.2.0.tar.gz 2866916 BLAKE2B 
176234efefee72beb1b46e7e8bb2455edc4135323b834a73870e30ca7a439b24cbb62568cb2aacd9d6b4d5c2234ebe7524de119a3ac2ec1c1f701de03a174933
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: dev-python/cython/files/, dev-python/cython/

2020-12-10 Thread Sam James
commit: 706b09d472b952afaf73e32d29956af68567b272
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec 10 19:38:36 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec 10 19:41:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=706b09d4

dev-python/cython: fix usage on Darwin

macOS now defaults to the 'spawn' multiprocessing
method which Cython isn't written for.

Let's use a single thread if we're in the spawn case.

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

 dev-python/cython/cython-0.29.21.ebuild|  1 +
 .../cython-0.29.21-spawn-multiprocessing.patch | 29 ++
 2 files changed, 30 insertions(+)

diff --git a/dev-python/cython/cython-0.29.21.ebuild 
b/dev-python/cython/cython-0.29.21.ebuild
index e3ada54d8df..2a1a1e79155 100644
--- a/dev-python/cython/cython-0.29.21.ebuild
+++ b/dev-python/cython/cython-0.29.21.ebuild
@@ -31,6 +31,7 @@ BDEPEND="${RDEPEND}
 
 PATCHES=(
"${FILESDIR}/cython-0.29.14-sphinx-update.patch"
+   "${FILESDIR}/cython-0.29.21-spawn-multiprocessing.patch"
 )
 
 SITEFILE=50cython-gentoo.el

diff --git a/dev-python/cython/files/cython-0.29.21-spawn-multiprocessing.patch 
b/dev-python/cython/files/cython-0.29.21-spawn-multiprocessing.patch
new file mode 100644
index 000..0aa7212b9a3
--- /dev/null
+++ b/dev-python/cython/files/cython-0.29.21-spawn-multiprocessing.patch
@@ -0,0 +1,29 @@
+Needed to prevent a loop while calling cythonize on macOS - or any platform
+defaulting to the 'spawn' method, as Python 3.8 does on Darwin.
+
+https://github.com/cython/cython/pull/3263
+From 15ae78bb74a856836dd64828326f4f0812d36520 Mon Sep 17 00:00:00 2001
+From: Marcel Bargull 
+Date: Fri, 6 Dec 2019 18:21:19 +0100
+Subject: [PATCH] Disable parallel cythonization for "spawn" start method.
+
+---
+ Cython/Build/Dependencies.py | 5 +
+ 1 file changed, 5 insertions(+)
+
+diff --git a/Cython/Build/Dependencies.py b/Cython/Build/Dependencies.py
+index 593e00a6ef..f9b9c15bc5 100644
+--- a/Cython/Build/Dependencies.py
 b/Cython/Build/Dependencies.py
+@@ -1073,6 +1073,11 @@ def copy_to_build_dir(filepath, root=os.getcwd()):
+ 
+ if N <= 1:
+ nthreads = 0
++if nthreads:
++import multiprocessing
++if multiprocessing.get_start_method() == 'spawn':
++print('Disabling parallel cythonization for "spawn" process start 
method.')
++nthreads = 0
+ if nthreads:
+ import multiprocessing
+ pool = multiprocessing.Pool(



[gentoo-commits] proj/gcc-multilib-bootstrap:master commit in: /

2020-12-10 Thread Andreas K. Hüttel
commit: e79960746b103fc73e55091f1171f79f26335381
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Dec 10 19:38:09 2020 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Dec 10 19:38:09 2020 +
URL:
https://gitweb.gentoo.org/proj/gcc-multilib-bootstrap.git/commit/?id=e7996074

Update README

Signed-off-by: Andreas K. Hüttel  gentoo.org>

 README | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/README b/README
index 436387f..dd5b364 100644
--- a/README
+++ b/README
@@ -21,7 +21,8 @@ How was this tarball generated?
 
 Current status: 
 
-* amd64, x32, x86: Files from gcc-6.4
+* amd64, x86: Files from gcc-9.3
+* x32: Files from gcc-6.4
 * s390, s390x: Files from gcc-5.4 (does this work?)
 * ppc, ppc64: no files, since only gcc-4.9 available
 * n32, n64, o32: last mips stages are years old, not useful



[gentoo-commits] repo/gentoo:master commit in: app-text/liblangtag/files/, app-text/liblangtag/

2020-12-10 Thread Andreas K. Hüttel
commit: af6bb6155c9f960330a0989a533703315e63c602
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Dec 10 19:31:42 2020 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Dec 10 19:31:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af6bb615

app-text/liblangtag: Add patch by Anon Emuss for >=gtk-doc-1.32

Closes: https://bugs.gentoo.org/727880
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 .../liblangtag-0.6.3-fix-for-gtk-doc-1.32.patch| 28 ++
 app-text/liblangtag/liblangtag-0.6.3.ebuild|  4 
 2 files changed, 32 insertions(+)

diff --git 
a/app-text/liblangtag/files/liblangtag-0.6.3-fix-for-gtk-doc-1.32.patch 
b/app-text/liblangtag/files/liblangtag-0.6.3-fix-for-gtk-doc-1.32.patch
new file mode 100644
index 000..86d7a651bbb
--- /dev/null
+++ b/app-text/liblangtag/files/liblangtag-0.6.3-fix-for-gtk-doc-1.32.patch
@@ -0,0 +1,28 @@
+Fix build with gtk-doc-1.32
+
+This bug was reported here:
+https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=939956
+
+The issue is that gtk-doc-1.32 no longer generates empty tree_index
+files.  The recommendation is that liblangtag be modified to no longer
+reference what used to be an empty tree_index, but is now a missing
+file.  The same bug report contained the patch implemented here, which
+removes the reference to a now-missing tree_index file.
+
+The fix should already be provided in newer versions of liblangtag.
+
+diff --git a/docs/liblangtag-docs.sgml b/docs/liblangtag-docs.sgml
+index 1234567..1234567 100644
+--- a/docs/liblangtag-docs.sgml
 b/docs/liblangtag-docs.sgml
+@@ -58,10 +58,6 @@
+ 
+ 
+   
+-  
+-Object Hierarchy
+- 
+-  
+   
+ API Index
+ 

diff --git a/app-text/liblangtag/liblangtag-0.6.3.ebuild 
b/app-text/liblangtag/liblangtag-0.6.3.ebuild
index cbc05a8ccc1..fd3c9a30603 100644
--- a/app-text/liblangtag/liblangtag-0.6.3.ebuild
+++ b/app-text/liblangtag/liblangtag-0.6.3.ebuild
@@ -31,6 +31,10 @@ DEPEND="${RDEPEND}
 # Upstream expect liblangtag to be installed when one runs tests...
 RESTRICT="test"
 
+PATCHES=(
+   "${FILESDIR}/${P}-fix-for-gtk-doc-1.32.patch"
+)
+
 src_prepare() {
default
xdg_environment_reset



  1   2   3   >