[gentoo-commits] repo/gentoo:master commit in: app-backup/rear/

2020-10-04 Thread Joonas Niilola
commit: 1b61bc9294c710dfd12b10b59a643bb2755709d8
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Oct  5 05:45:54 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Oct  5 05:46:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b61bc92

app-backup/rear: remove redundant USE flags from 2.6

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

 app-backup/rear/rear-2.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-backup/rear/rear-2.6.ebuild b/app-backup/rear/rear-2.6.ebuild
index 5c7e1c9a80f..9c624b9cbc3 100644
--- a/app-backup/rear/rear-2.6.ebuild
+++ b/app-backup/rear/rear-2.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 LICENSE="GPL-3+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="libressl udev samba"
+IUSE="udev"
 
 RDEPEND="
app-shells/bash



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

2020-10-04 Thread Joonas Niilola
commit: 3d002a389dc3e77943ce1d689e85aa3548793dc6
Author: Luke Dashjr  utopios  org>
AuthorDate: Tue Sep 29 14:16:17 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Oct  5 05:46:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d002a38

dev-libs/libbase58: Add multilib support to 0.1.4

Also adds a missing dependency on libgcrypt for test & USE=tools

Signed-off-by: Luke Dashjr  utopios.org>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/libbase58/libbase58-0.1.4-r1.ebuild | 48 
 1 file changed, 48 insertions(+)

diff --git a/dev-libs/libbase58/libbase58-0.1.4-r1.ebuild 
b/dev-libs/libbase58/libbase58-0.1.4-r1.ebuild
new file mode 100644
index 000..6d58a9ccec7
--- /dev/null
+++ b/dev-libs/libbase58/libbase58-0.1.4-r1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools multilib-minimal
+
+DESCRIPTION="C implementation of Bitcoin's base58 encoding"
+HOMEPAGE="https://github.com/luke-jr/libbase58;
+LICENSE="MIT"
+
+SRC_URI="https://github.com/luke-jr/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SLOT="0/0"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86"
+IUSE="test tools"
+RESTRICT="!test? ( test )"
+
+# NOTE: If not testing, we don't need non-native libgcrypt
+RDEPEND="tools? ( dev-libs/libgcrypt )"
+DEPEND="${RDEPEND}
+   test? ( dev-libs/libgcrypt[${MULTILIB_USEDEP}] )
+"
+
+src_prepare() {
+   eapply_user
+   eautoreconf
+
+   # NOTE: Needed because test suite uses srcdir instead of builddir to 
set PATH
+   multilib_copy_sources
+}
+
+multilib_src_configure() {
+   local myeconf=(
+   --disable-static
+   LIBGCRYPT_CONFIG="${EPREFIX}/usr/bin/${CHOST}-libgcrypt-config"
+   )
+   if multilib_is_native_abi && use tools; then
+   myeconf+=( --enable-tool )
+   elif use test; then
+   myeconf+=( --enable-tool --bindir='/TRASH' )
+   else
+   myeconf+=( --disable-tool )
+   fi
+   econf "${myeconf[@]}"
+}
+
+multilib_src_install_all() {
+   rm -rf "${ED}/TRASH" || die
+}



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

2020-10-04 Thread Joonas Niilola
commit: 085cfe1e5e62f8c5d3836bec5ac3f0b8af8d05c9
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Oct  5 05:38:46 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Oct  5 05:46:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=085cfe1e

dev-libs/libbase58: conditionalize 'rm' in 0.1.4

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

 dev-libs/libbase58/libbase58-0.1.4-r1.ebuild | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libbase58/libbase58-0.1.4-r1.ebuild 
b/dev-libs/libbase58/libbase58-0.1.4-r1.ebuild
index 6d58a9ccec7..3cdcfde18b5 100644
--- a/dev-libs/libbase58/libbase58-0.1.4-r1.ebuild
+++ b/dev-libs/libbase58/libbase58-0.1.4-r1.ebuild
@@ -2,6 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+
 inherit autotools multilib-minimal
 
 DESCRIPTION="C implementation of Bitcoin's base58 encoding"
@@ -24,7 +25,8 @@ src_prepare() {
eapply_user
eautoreconf
 
-   # NOTE: Needed because test suite uses srcdir instead of builddir to 
set PATH
+   # NOTE: Needed because test suite uses srcdir instead of builddir to 
set PATH and for 
+   # multilib support.
multilib_copy_sources
 }
 
@@ -44,5 +46,7 @@ multilib_src_configure() {
 }
 
 multilib_src_install_all() {
-   rm -rf "${ED}/TRASH" || die
+   if use test; then
+   rm -r "${ED}/TRASH" || die
+   fi
 }



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

2020-10-04 Thread Joonas Niilola
commit: 72f6c0ab4330b6a6c0355808a87809a48eac4a7a
Author: Luke Dashjr  utopios  org>
AuthorDate: Thu Aug 27 23:27:54 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Oct  5 05:46:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72f6c0ab

net-libs/libblkmaker: Bump to 0.6.0

Signed-off-by: Luke Dashjr  utopios.org>
Closes: https://bugs.gentoo.org/696520
Closes: https://github.com/gentoo/gentoo/pull/17289
Signed-off-by: Joonas Niilola  gentoo.org>

 net-libs/libblkmaker/Manifest |  1 +
 net-libs/libblkmaker/libblkmaker-0.6.0.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/net-libs/libblkmaker/Manifest b/net-libs/libblkmaker/Manifest
index b72411b8b23..471906d0f89 100644
--- a/net-libs/libblkmaker/Manifest
+++ b/net-libs/libblkmaker/Manifest
@@ -1,3 +1,4 @@
 DIST libblkmaker-0.3.2.tgz 17893 BLAKE2B 
390ed56c7d77b904ec52d52cfa9dfff4e5c01c1662e0f5a5f17f92eb7b3d79619bd6ee64cfa28bbff5750db7cbc31d1cd5662b11a86ef63882063ddcb72cfb6b
 SHA512 
e45c50c11676995171f6fb27346a42843a2c035c391ab84b5e565f5fff109a4ced6cdafb6c662572eb7243b25d2014400e9516cdbbd0d65f4ea31da7d0e74bdf
 DIST libblkmaker-0.4.3-github.tgz 13712 BLAKE2B 
4c93b8a74d25b5833371e2db78062f35c726b6ac89b8b22420a61d15a1d37cf0784b001e7061da4274ed34691021d5e92a27ce04260621cfdac6b4c7c49ce69f
 SHA512 
a8686fc0cd757a214e24476c2fc8bac4511e6522ba977134150c0084dd2a3d7620f3378f4c454dcefb675840b71597f37d5b696a74ad0251b5d3921082c23285
 DIST libblkmaker-0.5.3-github.tgz 14161 BLAKE2B 
c8da4f7e3e2811cc88a03537ceb2e145ba3bb796520f4330d190e5935c13b73769cba73612d321f5c63b636bbd821e334b5a72ab893bd765edbcf49ce374f789
 SHA512 
57edcd583879d6abea716b6817a99dc345485392d149ddc6bb2ff9bac76d22f84cd960dc0746852e7c944a10b85d26c57fb107eac79680f77829c9bbc03c202d
+DIST libblkmaker-0.6.0-github.tgz 28907 BLAKE2B 
31b64604040a514ae844564d19e884932fbaa0640d0491cda5ec9e922b0714c89e8810f1da3d0057625633555ea486c15e20f2a32d8528a6795be52e692d4e4f
 SHA512 
3e9028c7c4664491274c241020d507ba6d736b9e9048562434d27d92f6cdd58ec167fae060bc355ee6a7f010a6a8a6ccff1660ecfc616c705c5deb3ed95c5e69

diff --git a/net-libs/libblkmaker/libblkmaker-0.6.0.ebuild 
b/net-libs/libblkmaker/libblkmaker-0.6.0.ebuild
new file mode 100644
index 000..3a9c7429f91
--- /dev/null
+++ b/net-libs/libblkmaker/libblkmaker-0.6.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools multilib-minimal
+
+DESCRIPTION="C implementation of Bitcoin's getblocktemplate interface"
+HOMEPAGE="https://github.com/bitcoin/libblkmaker;
+LICENSE="MIT"
+
+SRC_URI="https://github.com/bitcoin/${PN}/archive/v${PV}.tar.gz -> 
${P}-github.tgz"
+SLOT="0/7"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-libs/jansson-2.0.0[${MULTILIB_USEDEP}]
+   dev-libs/libbase58[${MULTILIB_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   test? ( dev-libs/libgcrypt[${MULTILIB_USEDEP}] )
+"
+
+ECONF_SOURCE="${S}"
+
+src_prepare() {
+   default
+   eautoreconf
+}



[gentoo-commits] repo/gentoo:master commit in: app-backup/rear/files/, app-backup/rear/

2020-10-04 Thread Joonas Niilola
commit: 6eacc715e06b282225caf3d50e0f5269d8e425e3
Author: Martin Dummer  gmx  net>
AuthorDate: Sun Aug  2 21:14:26 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Oct  5 05:46:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eacc715

app-backup/rear: version bump to 2.6

re-introduce udev rule for backup start on backup disc connect
add proxy-maintainership

Closes: https://bugs.gentoo.org/696678
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Martin Dummer  gmx.net>
Closes: https://github.com/gentoo/gentoo/pull/17487
Signed-off-by: Joonas Niilola  gentoo.org>

 app-backup/rear/Manifest  |  1 +
 app-backup/rear/files/rear-2.6-Makefile.patch | 34 +++
 app-backup/rear/metadata.xml  | 10 -
 app-backup/rear/rear-2.6.ebuild   | 60 +++
 4 files changed, 104 insertions(+), 1 deletion(-)

diff --git a/app-backup/rear/Manifest b/app-backup/rear/Manifest
index 8ae2cae8ecf..07cafa56e62 100644
--- a/app-backup/rear/Manifest
+++ b/app-backup/rear/Manifest
@@ -1 +1,2 @@
 DIST rear-2.4.tar.gz 611731 BLAKE2B 
f7cb6955302e0be6178393a678f050729b827f822df91d28245655d414892f225e25125f7e3bfad080e139ddc9c728121894b4ebde48c4dff2a8071fb4a5d46e
 SHA512 
8a20c0ffd913b1b4c27f6125c1ca31404daaceccb2bfff7932f1ea402806657252afc3f6719c75dcab2de18b7975f83544dac92f43a742654f90494454d7c088
+DIST rear-2.6.tar.gz 750866 BLAKE2B 
de803951c040bb85d4659fc81ffb9264b2771a45675aca4eb0a6318201802475014c2b760415ac61ab734286f5e1e84b0c858df166b9be356384a243a7badb78
 SHA512 
0b6deac8f1b4adc3bcfcd19e82b5e5719df1c1c2347e3dde9bb47b6086856ebf5d08e485b876633190bb6f92a0e1c567bb65a30554205a32eec4b929e5815a6c

diff --git a/app-backup/rear/files/rear-2.6-Makefile.patch 
b/app-backup/rear/files/rear-2.6-Makefile.patch
new file mode 100644
index 000..800dcf69cee
--- /dev/null
+++ b/app-backup/rear/files/rear-2.6-Makefile.patch
@@ -0,0 +1,34 @@
+--- rear-2.6/Makefile.orig 2020-09-09 20:04:39.35785 +0200
 rear-2.6/Makefile  2020-09-09 20:06:12.537313922 +0200
+@@ -84,7 +84,7 @@
+ clean:
+   rm -Rf dist build
+   rm -f build-stamp
+-  make -C doc clean
++  $(MAKE) -C doc clean
+ 
+ ### You can call 'make validate' directly from your .git/hooks/pre-commit 
script
+ validate:
+@@ -107,11 +107,11 @@
+ 
+ man:
+   @echo -e "\033[1m== Prepare manual ==\033[0;0m"
+-  make -C doc man
++  $(MAKE) -C doc man
+ 
+ doc:
+   @echo -e "\033[1m== Prepare documentation ==\033[0;0m"
+-  make -C doc docs
++  $(MAKE) -C doc docs
+ 
+ install-config:
+   @echo -e "\033[1m== Installing configuration ==\033[0;0m"
+@@ -144,7 +144,7 @@
+ 
+ install-doc:
+   @echo -e "\033[1m== Installing documentation ==\033[0;0m"
+-  make -C doc install
++  $(MAKE) -C doc install
+   sed -i -e 's,/etc,$(sysconfdir),' \
+   -e 's,/usr/sbin,$(sbindir),' \
+   -e 's,/usr/share,$(datadir),' \

diff --git a/app-backup/rear/metadata.xml b/app-backup/rear/metadata.xml
index 5d24f38283d..ccfd9c81bce 100644
--- a/app-backup/rear/metadata.xml
+++ b/app-backup/rear/metadata.xml
@@ -1,7 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   martin.dum...@gmx.net
+   Martin Dummer
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

Relax and Recover (Rear) is the leading Open Source disaster 
recovery solution, and successor to mkcdrec. It comprises of a modular 
framework and ready-to-go workflows for many common situations to produce a 
bootable image and restore from backup using this image. As a benefit, it 
allows to restore to different hardware and can therefore be used as a 
migration tool as well.

@@ -10,5 +17,6 @@


rear
+   rear/rear

 

diff --git a/app-backup/rear/rear-2.6.ebuild b/app-backup/rear/rear-2.6.ebuild
new file mode 100644
index 000..5c7e1c9a80f
--- /dev/null
+++ b/app-backup/rear/rear-2.6.ebuild
@@ -0,0 +1,60 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit optfeature udev
+
+DESCRIPTION="Relax-and-Recover is a setup-and-forget bare metal disaster 
recovery solution"
+HOMEPAGE="http://relax-and-recover.org/ https://github.com/rear/rear/;
+SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="libressl udev samba"
+
+RDEPEND="
+   app-shells/bash
+   net-dialup/mingetty
+   net-fs/nfs-utils
+   sys-apps/gawk
+   sys-apps/iproute2
+   sys-apps/lsb-release
+   sys-apps/sed
+   sys-apps/util-linux
+   sys-block/parted
+   sys-boot/syslinux
+   virtual/cdrtools
+   udev? ( virtual/udev )
+"
+
+PATCHES=(
+   "${FILESDIR}/${P}-Makefile.patch"
+)
+

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

2020-10-04 Thread Hans de Graaff
commit: 8f25aa0adb395885037e545154f5dd6c54baa6ca
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Oct  5 05:16:50 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Oct  5 05:16:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f25aa0a

net-analyzer/sslscan: add 2.0.2

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Hans de Graaff  gentoo.org>

 net-analyzer/sslscan/Manifest |  1 +
 net-analyzer/sslscan/sslscan-2.0.2.ebuild | 50 +++
 2 files changed, 51 insertions(+)

diff --git a/net-analyzer/sslscan/Manifest b/net-analyzer/sslscan/Manifest
index 1e4420a9a40..9f2468cfc2d 100644
--- a/net-analyzer/sslscan/Manifest
+++ b/net-analyzer/sslscan/Manifest
@@ -2,4 +2,5 @@ DIST sslscan-1.11.13-rbsec-openssl.tar.gz 5523256 BLAKE2B 
d8f5aa8bf748310fe1186e
 DIST sslscan-1.11.13-rbsec.tar.gz 57006 BLAKE2B 
ea5e2754f5a8218ee1f3aba26e7efe2394fa87b79137955705edc4600d67139f2641ac7b4e7a92f7273878f5b150e3e1b159114c833dc180049688563cf5095b
 SHA512 
51477e5b29a2fc87e2d6c8d76430eeb2a6feb388d47392938b9e2c572acc5926534a19dc249080a066256a1a6cbfe08b162e9f3839386c86116352e5eb57c544
 DIST sslscan-2.0.0.tar.gz 109677 BLAKE2B 
728ca5f59e7d46cf6bf4ac03fce8eb8b7183f9984da58985c3964a3d82c2b5ba6e1f90361cb7c504db3555ff0d6edb739a97aa2b6b4c90970ababd1bf2faa9cd
 SHA512 
faebf7014738a991be4d1d78fe0e9523f24a00c4154c19862fb46c3cc1674d5f8c3ab03e58975401e3265c9e2ada0cab9898d17c0f089dd3a20ba44b4fbf78ab
 DIST sslscan-2.0.1.tar.gz 109709 BLAKE2B 
d0aabebe208529122d9d4d63d39b13c3cc9128dce552cc773b32e02ade87fcb91d5ad7e13a5dfd4883f73153d3ec19b91b16166a756c38df92c96a2f9e8606bb
 SHA512 
d8e9b66b110d7a76ffa7cc3b52f6f5614998ab08e91d12aa92d604ff3320dff6bec0e9a9017ab9c2dea204d9f51b5c729215836fd8f0dce0c5817e28b2eef63f
+DIST sslscan-2.0.2.tar.gz 109798 BLAKE2B 
4ed599578a3ee1bd0296c237f8f751aa9f95b96ab7592d0d8f7d117879e7058a92f28d5361658e144eb461fd1bb11739e79e2ae030ac9fb0430924ecca53dfd6
 SHA512 
ffe12315942c9b9a5f28766768c2202ef09d82977a42c5d114ba2bb7354e694df6262377288ca788e185e0b9423a78c9ebe2fcc02923bd8522c0b9b98df43453
 DIST sslscan-OpenSSL_1_1_1g.tar.gz 9975550 BLAKE2B 
22efa4ffe5d56a861bc4e2e1bc9a558e79265a3789acd9ca65d0a1162a1808a089a92a234e88c951f2a3cdabd3b1908ac7fe6d5f2b5fe554f229a22c11ab185b
 SHA512 
bc8d24d7fc93542a8d77e13a57768de242ef679ef4db93c1b6b981a15a60646a5c5d869d066248448f3eb1ab2012e3ddc80bf301f486c0574d469a3f7db7b8d4

diff --git a/net-analyzer/sslscan/sslscan-2.0.2.ebuild 
b/net-analyzer/sslscan/sslscan-2.0.2.ebuild
new file mode 100644
index 000..874d6c6593b
--- /dev/null
+++ b/net-analyzer/sslscan/sslscan-2.0.2.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# sslscan builds against a static openssl library to allow weak ciphers
+# to be enabled so that they can be tested.
+OPENSSL_RELEASE_TAG="OpenSSL_1_1_1g"
+
+inherit toolchain-funcs
+
+DESCRIPTION="Fast SSL configuration scanner"
+HOMEPAGE="https://github.com/rbsec/sslscan;
+#MY_FORK="rbsec"
+#SRC_URI="https://github.com/${MY_FORK}/${PN}/archive/${PV}-${MY_FORK}.tar.gz 
-> ${P}-${MY_FORK}.tar.gz
+#  
https://github.com/PeterMosmans/openssl/archive/${MOSMANS_OPENSSL_COMMIT}.tar.gz
 -> ${P}-${MY_FORK}-openssl.tar.gz"
+SRC_URI="https://github.com/rbsec/sslscan/archive/${PV}.tar.gz -> ${P}.tar.gz
+
https://github.com/openssl/openssl/archive/${OPENSSL_RELEASE_TAG}.tar.gz -> 
${PN}-${OPENSSL_RELEASE_TAG}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-libs/openssl:*"
+RDEPEND="${DEPEND}"
+
+# Requires a docker environment
+RESTRICT="test"
+
+# S="${WORKDIR}/${P}-${MY_FORK}"
+
+src_prepare() {
+   ln -s ../openssl-${OPENSSL_RELEASE_TAG} openssl || die
+   touch .openssl_is_fresh || die
+   sed -i -e '/openssl\/.git/,/fi/d' \
+   -e '/openssl test/d' Makefile || die
+
+   default
+}
+
+src_compile() {
+   emake static
+}
+
+src_install() {
+   DESTDIR="${D}" emake install
+
+   dodoc Changelog README.md
+}



[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/

2020-10-04 Thread Michał Górny
commit: a29f9c3c23a78508e32cd2f89ccb4f4530322d05
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Sun Oct  4 20:18:15 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct  5 03:00:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a29f9c3c

app-eselect/eselect-repository: python3_9

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/17772
Signed-off-by: Michał Górny  gentoo.org>

 app-eselect/eselect-repository/eselect-repository-8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-8.ebuild 
b/app-eselect/eselect-repository/eselect-repository-8.ebuild
index f0bf9cebf26..a3157c1971f 100644
--- a/app-eselect/eselect-repository/eselect-repository-8.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-8.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{3_6,3_7,3_8} )
+PYTHON_COMPAT=( python{3_6,3_7,3_8,3_9} )
 inherit python-single-r1
 
 DESCRIPTION="Manage repos.conf via eselect"



[gentoo-commits] repo/gentoo:master commit in: app-i18n/yaskkserv/

2020-10-04 Thread Michał Górny
commit: fb257ae5d883b40f014bb76305ccad5679365419
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct  5 02:42:13 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct  5 02:42:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb257ae5

app-i18n/yaskkserv: Replace virtual/udev[systemd] dep

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

 .../yaskkserv/{yaskkserv-1.1.1.ebuild => yaskkserv-1.1.1-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/yaskkserv/yaskkserv-1.1.1.ebuild 
b/app-i18n/yaskkserv/yaskkserv-1.1.1-r1.ebuild
similarity index 97%
rename from app-i18n/yaskkserv/yaskkserv-1.1.1.ebuild
rename to app-i18n/yaskkserv/yaskkserv-1.1.1-r1.ebuild
index 2ddbb09ee7f..0049ea15069 100644
--- a/app-i18n/yaskkserv/yaskkserv-1.1.1.ebuild
+++ b/app-i18n/yaskkserv/yaskkserv-1.1.1-r1.ebuild
@@ -20,7 +20,7 @@ RDEPEND="app-i18n/skk-jisyo
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
)
-   systemd? ( virtual/udev[systemd] )"
+   systemd? ( sys-apps/systemd )"
 DEPEND="${RDEPEND}
dev-lang/perl"
 



[gentoo-commits] repo/gentoo:master commit in: virtual/udev/

2020-10-04 Thread Michał Górny
commit: fda90a215017c0cf98ffbfa391663f91755c2317
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct  5 02:38:49 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct  5 02:42:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fda90a21

virtual/udev: Actually remove the flag

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

 virtual/udev/{udev-217-r1.ebuild => udev-217-r2.ebuild} | 1 -
 1 file changed, 1 deletion(-)

diff --git a/virtual/udev/udev-217-r1.ebuild b/virtual/udev/udev-217-r2.ebuild
similarity index 96%
rename from virtual/udev/udev-217-r1.ebuild
rename to virtual/udev/udev-217-r2.ebuild
index afec47f87dd..be7ba701e2d 100644
--- a/virtual/udev/udev-217-r1.ebuild
+++ b/virtual/udev/udev-217-r2.ebuild
@@ -6,7 +6,6 @@ EAPI=7
 DESCRIPTION="Virtual to select between different udev daemon providers"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
-IUSE="systemd"
 
 RDEPEND="
|| (



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

2020-10-04 Thread Georgy Yakovlev
commit: 801e1926501d203432401cf01e49a87e5aef119e
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Oct  5 00:30:22 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Oct  5 01:11:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=801e1926

dev-python/pypy-exe: backport ppc64 patch to 3.7.2

Patches already upstream, fixes segfault in bootstrap.
https://foss.heptapod.net/pypy/pypy/-/issues/3309

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

 .../pypy-exe/files/pypy-7.3.2-ppc64-segfault.patch | 64 ++
 dev-python/pypy-exe/pypy-exe-7.3.2.ebuild  |  4 ++
 2 files changed, 68 insertions(+)

diff --git a/dev-python/pypy-exe/files/pypy-7.3.2-ppc64-segfault.patch 
b/dev-python/pypy-exe/files/pypy-7.3.2-ppc64-segfault.patch
new file mode 100644
index 000..c143a3765cd
--- /dev/null
+++ b/dev-python/pypy-exe/files/pypy-7.3.2-ppc64-segfault.patch
@@ -0,0 +1,64 @@
+From 913e0dae8ac7ce8219a5f31126fee8a794cc314c Mon Sep 17 00:00:00 2001
+From: Armin Rigo 
+Date: Sat, 26 Sep 2020 09:26:24 +0200
+Subject: [PATCH] oops, fix for test_gc_indexed_box_plus_large_offset
+
+---
+ rpython/jit/backend/ppc/opassembler.py | 16 +++-
+ rpython/jit/backend/ppc/regalloc.py|  4 ++--
+ 2 files changed, 13 insertions(+), 7 deletions(-)
+
+diff --git a/rpython/jit/backend/ppc/opassembler.py 
b/rpython/jit/backend/ppc/opassembler.py
+index b79b18e530..4bbfbba93a 100644
+--- a/rpython/jit/backend/ppc/opassembler.py
 b/rpython/jit/backend/ppc/opassembler.py
+@@ -755,13 +755,19 @@ class FieldOpAssembler(object):
+ def _apply_offset(self, index_loc, ofs_loc):
+ # If offset != 0 then we have to add it here.  Note that
+ # mc.addi() would not be valid with operand r0.
+-assert ofs_loc.is_imm()# must be an immediate...
+-assert _check_imm_arg(ofs_loc.getint())   # ...that fits 16 bits
+ assert index_loc.is_core_reg()
+ assert index_loc is not r.SCRATCH2
+-# (simplified version of _apply_scale())
+-if ofs_loc.value > 0:
+-self.mc.addi(r.SCRATCH2.value, index_loc.value, ofs_loc.value)
++if ofs_loc.is_imm():
++# if it is an immediate, it must fit into 16 bits
++assert _check_imm_arg(ofs_loc.getint())
++# (simplified version of _apply_scale())
++if ofs_loc.value != 0:
++self.mc.addi(r.SCRATCH2.value, index_loc.value, ofs_loc.value)
++index_loc = r.SCRATCH2
++else:
++# larger immediates are loaded into a register in regalloc.py
++assert ofs_loc.is_core_reg()
++self.mc.add(r.SCRATCH2.value, index_loc.value, ofs_loc.value)
+ index_loc = r.SCRATCH2
+ return index_loc
+ 
+diff --git a/rpython/jit/backend/ppc/regalloc.py 
b/rpython/jit/backend/ppc/regalloc.py
+index f3ee1129e4..827953cf12 100644
+--- a/rpython/jit/backend/ppc/regalloc.py
 b/rpython/jit/backend/ppc/regalloc.py
+@@ -771,7 +771,7 @@ class Regalloc(BaseRegalloc, VectorRegalloc):
+ value_loc = self.ensure_reg(op.getarg(2))
+ assert op.getarg(3).getint() == 1# scale
+ ofs_loc = self.ensure_reg_or_16bit_imm(op.getarg(4))
+-assert ofs_loc.is_imm()  # the arg(4) should always be a small 
constant
++# the arg(4) is often a small constant, but it may be too large
+ size_loc = self.ensure_reg_or_any_imm(op.getarg(5))
+ return [base_loc, index_loc, value_loc, ofs_loc, size_loc]
+ 
+@@ -780,7 +780,7 @@ class Regalloc(BaseRegalloc, VectorRegalloc):
+ index_loc = self.ensure_reg(op.getarg(1))
+ assert op.getarg(2).getint() == 1# scale
+ ofs_loc = self.ensure_reg_or_16bit_imm(op.getarg(3))
+-assert ofs_loc.is_imm()  # the arg(3) should always be a small 
constant
++# the arg(3) is often a small constant, but it may be too large
+ self.free_op_vars()
+ res_loc = self.force_allocate_reg(op)
+ size_box = op.getarg(4)
+-- 
+GitLab
+

diff --git a/dev-python/pypy-exe/pypy-exe-7.3.2.ebuild 
b/dev-python/pypy-exe/pypy-exe-7.3.2.ebuild
index c0dee5cf1c6..5f8b73f349d 100644
--- a/dev-python/pypy-exe/pypy-exe-7.3.2.ebuild
+++ b/dev-python/pypy-exe/pypy-exe-7.3.2.ebuild
@@ -59,6 +59,10 @@ check_env() {
check-reqs_pkg_pretend
 }
 
+PATCHES=(
+   "${FILESDIR}"/pypy-7.3.2-ppc64-segfault.patch
+)
+
 pkg_pretend() {
[[ ${MERGE_TYPE} != binary ]] && check_env
 }



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

2020-10-04 Thread Georgy Yakovlev
commit: b7f0b35fe999748b088df5dd168e8b8fad7b2ff2
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Oct  5 00:37:29 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Oct  5 01:11:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7f0b35f

dev-python/pypy3-exe: backport ppc64 patch to 3.7.2

Patches already upstream, fixes segfault on ppc64
https://foss.heptapod.net/pypy/pypy/-/issues/3309

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

 .../files/pypy3-7.3.2-ppc64-segfault.patch | 64 ++
 dev-python/pypy3-exe/pypy3-exe-7.3.2-r1.ebuild |  1 +
 dev-python/pypy3-exe/pypy3-exe-7.3.2_p37-r1.ebuild |  1 +
 3 files changed, 66 insertions(+)

diff --git a/dev-python/pypy3-exe/files/pypy3-7.3.2-ppc64-segfault.patch 
b/dev-python/pypy3-exe/files/pypy3-7.3.2-ppc64-segfault.patch
new file mode 100644
index 000..c143a3765cd
--- /dev/null
+++ b/dev-python/pypy3-exe/files/pypy3-7.3.2-ppc64-segfault.patch
@@ -0,0 +1,64 @@
+From 913e0dae8ac7ce8219a5f31126fee8a794cc314c Mon Sep 17 00:00:00 2001
+From: Armin Rigo 
+Date: Sat, 26 Sep 2020 09:26:24 +0200
+Subject: [PATCH] oops, fix for test_gc_indexed_box_plus_large_offset
+
+---
+ rpython/jit/backend/ppc/opassembler.py | 16 +++-
+ rpython/jit/backend/ppc/regalloc.py|  4 ++--
+ 2 files changed, 13 insertions(+), 7 deletions(-)
+
+diff --git a/rpython/jit/backend/ppc/opassembler.py 
b/rpython/jit/backend/ppc/opassembler.py
+index b79b18e530..4bbfbba93a 100644
+--- a/rpython/jit/backend/ppc/opassembler.py
 b/rpython/jit/backend/ppc/opassembler.py
+@@ -755,13 +755,19 @@ class FieldOpAssembler(object):
+ def _apply_offset(self, index_loc, ofs_loc):
+ # If offset != 0 then we have to add it here.  Note that
+ # mc.addi() would not be valid with operand r0.
+-assert ofs_loc.is_imm()# must be an immediate...
+-assert _check_imm_arg(ofs_loc.getint())   # ...that fits 16 bits
+ assert index_loc.is_core_reg()
+ assert index_loc is not r.SCRATCH2
+-# (simplified version of _apply_scale())
+-if ofs_loc.value > 0:
+-self.mc.addi(r.SCRATCH2.value, index_loc.value, ofs_loc.value)
++if ofs_loc.is_imm():
++# if it is an immediate, it must fit into 16 bits
++assert _check_imm_arg(ofs_loc.getint())
++# (simplified version of _apply_scale())
++if ofs_loc.value != 0:
++self.mc.addi(r.SCRATCH2.value, index_loc.value, ofs_loc.value)
++index_loc = r.SCRATCH2
++else:
++# larger immediates are loaded into a register in regalloc.py
++assert ofs_loc.is_core_reg()
++self.mc.add(r.SCRATCH2.value, index_loc.value, ofs_loc.value)
+ index_loc = r.SCRATCH2
+ return index_loc
+ 
+diff --git a/rpython/jit/backend/ppc/regalloc.py 
b/rpython/jit/backend/ppc/regalloc.py
+index f3ee1129e4..827953cf12 100644
+--- a/rpython/jit/backend/ppc/regalloc.py
 b/rpython/jit/backend/ppc/regalloc.py
+@@ -771,7 +771,7 @@ class Regalloc(BaseRegalloc, VectorRegalloc):
+ value_loc = self.ensure_reg(op.getarg(2))
+ assert op.getarg(3).getint() == 1# scale
+ ofs_loc = self.ensure_reg_or_16bit_imm(op.getarg(4))
+-assert ofs_loc.is_imm()  # the arg(4) should always be a small 
constant
++# the arg(4) is often a small constant, but it may be too large
+ size_loc = self.ensure_reg_or_any_imm(op.getarg(5))
+ return [base_loc, index_loc, value_loc, ofs_loc, size_loc]
+ 
+@@ -780,7 +780,7 @@ class Regalloc(BaseRegalloc, VectorRegalloc):
+ index_loc = self.ensure_reg(op.getarg(1))
+ assert op.getarg(2).getint() == 1# scale
+ ofs_loc = self.ensure_reg_or_16bit_imm(op.getarg(3))
+-assert ofs_loc.is_imm()  # the arg(3) should always be a small 
constant
++# the arg(3) is often a small constant, but it may be too large
+ self.free_op_vars()
+ res_loc = self.force_allocate_reg(op)
+ size_box = op.getarg(4)
+-- 
+GitLab
+

diff --git a/dev-python/pypy3-exe/pypy3-exe-7.3.2-r1.ebuild 
b/dev-python/pypy3-exe/pypy3-exe-7.3.2-r1.ebuild
index 73313264113..26077ca69aa 100644
--- a/dev-python/pypy3-exe/pypy3-exe-7.3.2-r1.ebuild
+++ b/dev-python/pypy3-exe/pypy3-exe-7.3.2-r1.ebuild
@@ -37,6 +37,7 @@ BDEPEND="
 
 PATCHES=(
"${FILESDIR}"/pypy3-7.3.2-sethostname-bytes.patch
+   "${FILESDIR}"/pypy3-7.3.2-ppc64-segfault.patch
 )
 
 check_env() {

diff --git a/dev-python/pypy3-exe/pypy3-exe-7.3.2_p37-r1.ebuild 
b/dev-python/pypy3-exe/pypy3-exe-7.3.2_p37-r1.ebuild
index 592f395defc..4fe37f8704e 100644
--- a/dev-python/pypy3-exe/pypy3-exe-7.3.2_p37-r1.ebuild
+++ b/dev-python/pypy3-exe/pypy3-exe-7.3.2_p37-r1.ebuild
@@ -38,6 +38,7 @@ BDEPEND="
 
 PATCHES=(
"${FILESDIR}"/pypy3-7.3.2-sethostname-bytes.patch
+   

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

2020-10-04 Thread Georgy Yakovlev
commit: 9965ea6823ee21924b62dbaeeca888929a416cee
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Oct  5 00:07:05 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Oct  5 00:07:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9965ea68

dev-python/fqdn: bump to 1.5.0

upstream switched tests to pytest
add py3.9 and pypy targets, drop py3.6

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

 dev-python/fqdn/Manifest  |  1 +
 dev-python/fqdn/fqdn-1.5.0.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-python/fqdn/Manifest b/dev-python/fqdn/Manifest
index 04484d55d49..da6d5ab9362 100644
--- a/dev-python/fqdn/Manifest
+++ b/dev-python/fqdn/Manifest
@@ -1,2 +1,3 @@
 DIST fqdn-1.2.0.tar.gz 12275 BLAKE2B 
0bc862863ee3b196ea08a1f4f50f98dca88e8b81f37d2cb97bd3fd74ef9844157ea7a9f38707047fad17b95fb95c2f0e7ace8ad2c2310171cba6ff43471ae63d
 SHA512 
ddfcfd82860d597075fd2d989d4bb1cd8c1dc79b711da432732bf786032e78b9356e04851a491c5299b336dcde173a66ddae0e23aea59b67c758d997554b494e
 DIST fqdn-1.4.0.tar.gz 12962 BLAKE2B 
76b7bd7f2ebfd77b2bba04f7e07cdab42f0ff6c7ad5967f52e4c108fc3c3345c88a220b9f0330d998dc5abc53909d5768b1b52e08e48bc1e16009fa39f3afa16
 SHA512 
e2a67e97bc832526e234bbf19600af2e7eda8f7ede13ba33ec8c736888d19693727eded4b895efd4c88ab2e232db768d42761f44a479e615e13da8ddbf6d03a3
+DIST fqdn-1.5.0.tar.gz 14630 BLAKE2B 
021b4e53c42830a5523964961cde9857bea9eb700cd2030331b05006ec4a8b7e05a9f2330748b0d84531526e17d81ade73fb04e65db381417f2d7f618138f09a
 SHA512 
3940955df50bcd0bbd5cae82f148e9a8ef64b6db84dc867fbfbfbdd661fcc42208a7506f931209347f9115722c00e330fc03c5bdd459cb4a98d0df59af48c492

diff --git a/dev-python/fqdn/fqdn-1.5.0.ebuild 
b/dev-python/fqdn/fqdn-1.5.0.ebuild
new file mode 100644
index 000..9e8e8158b78
--- /dev/null
+++ b/dev-python/fqdn/fqdn-1.5.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 2018-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="RFC-compliant FQDN validation and manipulation for Python"
+HOMEPAGE="https://github.com/guyhughes/fqdn;
+SRC_URI="https://github.com/guyhughes/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+
+RDEPEND="dev-python/cached-property[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs



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

2020-10-04 Thread Georgy Yakovlev
commit: a20ae8d02ccaf8d85f3fbccf3a6cea9744e61587
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Oct  5 00:04:14 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Oct  5 00:07:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a20ae8d0

dev-python/cached-property: add pypy3 target

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

 dev-python/cached-property/cached-property-1.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cached-property/cached-property-1.5.2.ebuild 
b/dev-python/cached-property/cached-property-1.5.2.ebuild
index 819cd6b14eb..d41a5a60d54 100644
--- a/dev-python/cached-property/cached-property-1.5.2.ebuild
+++ b/dev-python/cached-property/cached-property-1.5.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6..9} )
+PYTHON_COMPAT=( python3_{6..9} pypy3 )
 
 inherit distutils-r1
 



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

2020-10-04 Thread Sam James
commit: 464aea9cf66268eb0a009cd20b5e63b5725f08db
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 23:44:42 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 23:44:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=464aea9c

dev-python/libtmux: Stabilize 0.8.3 amd64, #742833

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

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

diff --git a/dev-python/libtmux/libtmux-0.8.3.ebuild 
b/dev-python/libtmux/libtmux-0.8.3.ebuild
index 628783d9c6c..c646300855d 100644
--- a/dev-python/libtmux/libtmux-0.8.3.ebuild
+++ b/dev-python/libtmux/libtmux-0.8.3.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/tmux-python/${PN}/archive/v${PV}.tar.gz -> ${PN}-v${
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
 
 RDEPEND=">=app-misc/tmux-3.0a"
 



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

2020-10-04 Thread Sam James
commit: ddab510f9bba79d652651b0702c7d6755ad83296
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 23:43:08 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 23:43:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddab510f

dev-libs/protobuf: Stabilize 3.12.2 amd64, #741272

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

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

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



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

2020-10-04 Thread Sam James
commit: e28dbd71d6932f310ee8421683f587d30db61333
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 23:43:08 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 23:43:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e28dbd71

dev-python/protobuf-python: Stabilize 3.12.2-r1 amd64, #741272

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

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

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



[gentoo-commits] repo/gentoo:master commit in: media-gfx/zgv/, media-gfx/zgv/files/

2020-10-04 Thread Sam James
commit: 92286876cdcb2909101096daf5cd5b1515d89f40
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 23:20:20 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 23:20:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92286876

media-gfx/zgv: port to EAPI 7

Closes: https://bugs.gentoo.org/746023
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James  gentoo.org>

 media-gfx/zgv/files/zgv-5.9-Makefile-QA.patch  |  5 ++--
 media-gfx/zgv/files/zgv-5.9-cmyk-yccl-fix.diff |  4 +--
 media-gfx/zgv/files/zgv-5.9-libpng15.patch |  4 +--
 media-gfx/zgv/zgv-5.9.ebuild   | 40 ++
 4 files changed, 28 insertions(+), 25 deletions(-)

diff --git a/media-gfx/zgv/files/zgv-5.9-Makefile-QA.patch 
b/media-gfx/zgv/files/zgv-5.9-Makefile-QA.patch
index e4569547d17..6d3a1341ecb 100644
--- a/media-gfx/zgv/files/zgv-5.9-Makefile-QA.patch
+++ b/media-gfx/zgv/files/zgv-5.9-Makefile-QA.patch
@@ -1,6 +1,5 @@
-diff -NrU5 zgv-5.9.original/src/Makefile zgv-5.9/src/Makefile
 zgv-5.9.original/src/Makefile  2009-09-28 15:31:29.0 -0600
-+++ zgv-5.9/src/Makefile   2009-09-28 15:56:26.0 -0600
+--- a/src/Makefile 2009-09-28 15:31:29.0 -0600
 b/src/Makefile 2009-09-28 15:56:26.0 -0600
 @@ -45,11 +45,11 @@
readbmp.o readtga.o readpng.o readpcx.o \
readxvpic.o readmrf.o readxbm.o readxpm.o \

diff --git a/media-gfx/zgv/files/zgv-5.9-cmyk-yccl-fix.diff 
b/media-gfx/zgv/files/zgv-5.9-cmyk-yccl-fix.diff
index e510a4ba9ec..662838c57ee 100644
--- a/media-gfx/zgv/files/zgv-5.9-cmyk-yccl-fix.diff
+++ b/media-gfx/zgv/files/zgv-5.9-cmyk-yccl-fix.diff
@@ -1,5 +1,5 @@
 zgv-5.9/src/readjpeg.c Sun Oct 31 14:54:26 2004
-+++ zgv/src/readjpeg.c Wed Sep 21 21:03:22 2005
+--- a/src/readjpeg.c   Sun Oct 31 14:54:26 2004
 b/src/readjpeg.c   Wed Sep 21 21:03:22 2005
 @@ -92,11 +92,13 @@
int *real_width,int *real_height)
  {

diff --git a/media-gfx/zgv/files/zgv-5.9-libpng15.patch 
b/media-gfx/zgv/files/zgv-5.9-libpng15.patch
index 2f12532831d..3d7e4ecb5df 100644
--- a/media-gfx/zgv/files/zgv-5.9-libpng15.patch
+++ b/media-gfx/zgv/files/zgv-5.9-libpng15.patch
@@ -1,7 +1,7 @@
 http://bugs.gentoo.org/389591
 
 src/readpng.c
-+++ src/readpng.c
+--- a/src/readpng.c
 b/src/readpng.c
 @@ -63,7 +63,7 @@
  use_errmsg=1;
  

diff --git a/media-gfx/zgv/zgv-5.9.ebuild b/media-gfx/zgv/zgv-5.9.ebuild
index c5761d43e5f..c22ba876d4a 100644
--- a/media-gfx/zgv/zgv-5.9.ebuild
+++ b/media-gfx/zgv/zgv-5.9.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
-inherit eutils toolchain-funcs
+EAPI=7
+
+inherit toolchain-funcs
 
 DESCRIPTION="A svgalib console image viewer"
 HOMEPAGE="http://www.svgalib.org/rus/zgv/;
@@ -11,24 +12,27 @@ SRC_URI="http://www.svgalib.org/rus/zgv/${P}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="x86"
-IUSE=""
 
-RDEPEND=">=media-libs/svgalib-1.4.2
-   virtual/jpeg
+RDEPEND="
media-libs/libpng
+   >=media-libs/svgalib-1.4.2
>=media-libs/tiff-3.5.5
+   sys-apps/gawk
>=sys-libs/zlib-1.1.4
-   sys-apps/gawk"
+   virtual/jpeg
+"
 DEPEND="${RDEPEND}"
 
+PATCHES=(
+   "${FILESDIR}"/${P}-Makefile-QA.patch
+   "${FILESDIR}"/${P}-cmyk-yccl-fix.diff
+   "${FILESDIR}"/${P}-libpng15.patch
+)
+
 src_prepare() {
sed -i -e "/^CFLAGS=/s:=.*:=${CFLAGS}:" config.mk || die
sed -i -e 's:$(RM):echo:' doc/Makefile || die
-
-   epatch \
-   "${FILESDIR}"/${P}-Makefile-QA.patch \
-   "${FILESDIR}"/${P}-cmyk-yccl-fix.diff \
-   "${FILESDIR}"/${P}-libpng15.patch
+   default
 }
 
 src_compile() {
@@ -39,18 +43,18 @@ src_install() {
dodir /usr/bin /usr/share/info /usr/share/man/man1
 
emake \
-   PREFIX="${D}"/usr \
-   INFODIR="${D}"/usr/share/info \
-   MANDIR="${D}"/usr/share/man/man1 \
+   PREFIX="${ED}"/usr \
+   INFODIR="${ED}"/usr/share/info \
+   MANDIR="${ED}"/usr/share/man/man1 \
install
 
dodoc AUTHORS ChangeLog INSTALL NEWS README* SECURITY TODO
 
# Fix info files
cd "${D}"/usr/share/info
-   rm dir*
-   mv zgv zgv.info
+   rm dir* || die
+   mv zgv zgv.info || die
for i in 1 2 3 4 ; do
-   mv zgv-$i zgv.info-$i
+   mv zgv-$i zgv.info-$i || die
done
 }



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

2020-10-04 Thread Sam James
commit: f6abfedb98eedfa63d0838426b0cf3ebecf89bbf
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 23:07:34 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 23:07:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6abfedb

profiles/updates/4Q-2015: fix OldPackageUpdate

kde-apps/libkgeomap has just been removed from the tree.

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

 profiles/updates/4Q-2015 | 1 -
 1 file changed, 1 deletion(-)

diff --git a/profiles/updates/4Q-2015 b/profiles/updates/4Q-2015
index 3a427b971b0..0640fe75b8f 100644
--- a/profiles/updates/4Q-2015
+++ b/profiles/updates/4Q-2015
@@ -3,7 +3,6 @@ move sys-apps/cv sys-apps/progress
 slotmove =dev-ruby/recog-2.0.6 2 2.0.6
 slotmove =dev-ruby/recog-2.0.12 2 2.0.12
 slotmove =dev-ruby/recog-2.0.14 2 2.0.14
-move media-libs/libkgeomap kde-apps/libkgeomap
 slotmove =dev-python/pyfltk-1.3.3 1 0
 move kde-apps/oxygen-icons kde-frameworks/oxygen-icons
 slotmove =dev-ruby/rack-cache-1.3.0 1.3 1.2



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/hpl/, sys-cluster/hpl/files/

2020-10-04 Thread Sam James
commit: 543ea3b73fdbbc3f4717dfecc2db3c8f46d772f5
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 22:55:24 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 22:55:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=543ea3b7

sys-cluster/hpl: bump to 2.3

Closes: https://bugs.gentoo.org/525714
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James  gentoo.org>

 sys-cluster/hpl/Manifest   |  1 +
 sys-cluster/hpl/files/hpl-2.3-respect-AR.patch | 13 +++
 sys-cluster/hpl/hpl-2.3.ebuild | 52 ++
 3 files changed, 66 insertions(+)

diff --git a/sys-cluster/hpl/Manifest b/sys-cluster/hpl/Manifest
index 17816b32976..378d5054dd0 100644
--- a/sys-cluster/hpl/Manifest
+++ b/sys-cluster/hpl/Manifest
@@ -1 +1,2 @@
 DIST hpl-2.0.tar.gz 591087 BLAKE2B 
d3fd738c40f89916c7a5a7cbb561d30c8b9defd08d552b6aeea707f2b6b87a4774d6dce4b9fd7983ee12b112f319e574b89fd8158a381e997dfb86a3572d5f95
 SHA512 
3aa76144526b01ec40d940cae50d47e480e2760a36d1e95bc6e431b216407db190946fc3d99a6a7caf7b61bcc76d805d28da3ef0b141ff467854e1cdf10bb274
+DIST hpl-2.3.tar.gz 660871 BLAKE2B 
c1f02a21d5ebcea1140e619a29fbaa70a7fe219e06ea26bd77ca49b95fabde413c4f09cd1670d0d628baf032d009a606a14c4d0ba66afce37e505a435db17753
 SHA512 
954297b6464e3f9d9315d2f1ce0c87b8486d3d60da92e6847e74b16fdf9fc6d73eb0b85317416c2fc088e72e81b8b3a3eb0148c14edcf575557cd86541d0d8cb

diff --git a/sys-cluster/hpl/files/hpl-2.3-respect-AR.patch 
b/sys-cluster/hpl/files/hpl-2.3-respect-AR.patch
new file mode 100644
index 000..e7b112380c5
--- /dev/null
+++ b/sys-cluster/hpl/files/hpl-2.3-respect-AR.patch
@@ -0,0 +1,13 @@
+diff --git a/configure.ac b/configure.ac
+index eb91dc5..cc10681 100644
+--- a/configure.ac
 b/configure.ac
+@@ -8,6 +8,8 @@ AX_PROG_CC_MPI
+ 
+ AC_PROG_RANLIB
+ 
++AM_PROG_AR
++
+ AC_PROG_INSTALL
+ 
+ AM_INIT_AUTOMAKE([subdir-objects])

diff --git a/sys-cluster/hpl/hpl-2.3.ebuild b/sys-cluster/hpl/hpl-2.3.ebuild
new file mode 100644
index 000..6ed3d0fbd20
--- /dev/null
+++ b/sys-cluster/hpl/hpl-2.3.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools toolchain-funcs
+
+DESCRIPTION="Portable Implementation of the Linpack Benchmark for 
Distributed-Memory Clusters"
+HOMEPAGE="http://www.netlib.org/benchmark/hpl/;
+SRC_URI="http://www.netlib.org/benchmark/hpl/hpl-${PV}.tar.gz;
+
+SLOT="0"
+LICENSE="HPL"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND="
+   virtual/blas
+   virtual/lapack
+   virtual/mpi"
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-2.3-respect-AR.patch"
+)
+
+src_prepare() {
+   default
+
+   # Needed for the AR patch
+   eautoreconf
+}
+
+src_install() {
+   default
+
+   doman man/man3/*.3
+   dodoc testing/ptest/HPL.dat
+
+   if use doc; then
+   docinto html
+   dodoc -r www/*
+   fi
+}
+
+pkg_postinst() {
+   einfo "Remember to copy (+ extract) 
${EROOT}/usr/share/${PF}/HPL.dat.bzip2 to your working directory"
+   einfo "before running xhpl. Typically one may run hpl by executing:"
+   einfo "\"mpiexec -np 4 ${EROOT}/usr/bin/xhpl\""
+   einfo "where -np specifies the number of processes."
+}



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

2020-10-04 Thread Sam James
commit: 58f23b8c52b496150e70c679fdb314572cbb0a72
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 22:33:30 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 22:55:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58f23b8c

sys-cluster/hpl: port to EAPI 7

Closes: https://bugs.gentoo.org/740930
Closes: https://bugs.gentoo.org/725808
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James  gentoo.org>

 .../hpl/{hpl-2.0-r3.ebuild => hpl-2.0-r4.ebuild}   | 24 ++
 1 file changed, 15 insertions(+), 9 deletions(-)

diff --git a/sys-cluster/hpl/hpl-2.0-r3.ebuild 
b/sys-cluster/hpl/hpl-2.0-r4.ebuild
similarity index 79%
rename from sys-cluster/hpl/hpl-2.0-r3.ebuild
rename to sys-cluster/hpl/hpl-2.0-r4.ebuild
index d706f2b63d6..dab8670c739 100644
--- a/sys-cluster/hpl/hpl-2.0-r3.ebuild
+++ b/sys-cluster/hpl/hpl-2.0-r4.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
+EAPI=7
 
-inherit eutils multilib toolchain-funcs
+inherit toolchain-funcs
 
 DESCRIPTION="Portable Implementation of the Linpack Benchmark for 
Distributed-Memory Clusters"
 HOMEPAGE="http://www.netlib.org/benchmark/hpl/;
@@ -14,12 +14,12 @@ LICENSE="HPL"
 KEYWORDS="~amd64 ~x86"
 IUSE="doc"
 
+BDEPEND="virtual/pkgconfig"
 RDEPEND="
virtual/blas
virtual/lapack
virtual/mpi"
-DEPEND="${DEPEND}
-   virtual/pkgconfig"
+DEPEND="${RDEPEND}"
 
 src_prepare() {
local a=""
@@ -38,28 +38,34 @@ src_prepare() {
-e '/^CC\>/s,= .*,= mpicc,' \
-e '/^CCFLAGS\>/s|= .*|= $(HPL_DEFS) ${CFLAGS}|' \
-e "/^LINKFLAGS\>/s|= .*|= ${LDFLAGS}|" \
+   -e "/^ARCHIVER\>/s|= .*|= $(tc-getAR)|" \
Make.gentoo_hpl_fblas_x86 || die
+
+   default
 }
 
 src_compile() {
# parallel make failure bug #321539
-   HOME=${WORKDIR} emake -j1 arch=gentoo_hpl_fblas_x86
+   HOME="${WORKDIR}" emake -j1 arch=gentoo_hpl_fblas_x86
 }
 
 src_install() {
dobin bin/gentoo_hpl_fblas_x86/xhpl
-   dolib lib/gentoo_hpl_fblas_x86/libhpl.a
+   dolib.a lib/gentoo_hpl_fblas_x86/libhpl.a
+
dodoc INSTALL BUGS COPYRIGHT HISTORY README TUNING \
bin/gentoo_hpl_fblas_x86/HPL.dat
doman man/man3/*.3
+
if use doc; then
-   dohtml -r www/*
+   docinto html
+   dodoc -r www/*
fi
 }
 
 pkg_postinst() {
-   einfo "Remember to copy /usr/share/hpl/HPL.dat to your working 
directory"
+   einfo "Remember to copy ${EROOT}/usr/share/hpl/HPL.dat to your working 
directory"
einfo "before running xhpl.  Typically one may run hpl by executing:"
-   einfo "\"mpiexec -np 4 /usr/bin/xhpl\""
+   einfo "\"mpiexec -np 4 ${EROOT}/usr/bin/xhpl\""
einfo "where -np specifies the number of processes."
 }



[gentoo-commits] repo/gentoo:master commit in: virtual/udev/

2020-10-04 Thread Michał Górny
commit: c789c4f7beb6eb5ade12bb6e352999c5bc7aec87
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Oct  4 20:55:33 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Oct  4 21:17:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c789c4f7

virtual/udev: Remove USE=systemd

The 'systemd' USE flag has been introduced in 2014 to workaround an old
bug in Portage.  Over 6 years later, even if somebody still used Portage
this old, it will not be able to upgrade because of new EAPI.  Let's
remove it and let people use whichever udev provider they like,
including genuine systemd-udevd on top of OpenRC.

Signed-off-by: Michał Górny  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/17776
Signed-off-by: Michał Górny  gentoo.org>

 virtual/udev/udev-217-r1.ebuild | 17 +
 1 file changed, 17 insertions(+)

diff --git a/virtual/udev/udev-217-r1.ebuild b/virtual/udev/udev-217-r1.ebuild
new file mode 100644
index 000..afec47f87dd
--- /dev/null
+++ b/virtual/udev/udev-217-r1.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Virtual to select between different udev daemon providers"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+IUSE="systemd"
+
+RDEPEND="
+   || (
+   >=sys-fs/eudev-2.1.1
+   >=sys-fs/udev-217
+   >=sys-apps/systemd-217
+   )
+"



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

2020-10-04 Thread Michał Górny
commit: 95d119c088358af3ee8757a9bae425650a47d87b
Author: Martin Dummer  gmx  net>
AuthorDate: Sun Oct  4 18:58:36 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Oct  4 21:14:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95d119c0

dev-python/pyelftools: add Python3.9 compatibility

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Martin Dummer  gmx.net>
Closes: https://github.com/gentoo/gentoo/pull/17542
Signed-off-by: Michał Górny  gentoo.org>

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

diff --git a/dev-python/pyelftools/pyelftools-0.26.ebuild 
b/dev-python/pyelftools/pyelftools-0.26.ebuild
index 9a5e25ae815..57900663cfb 100644
--- a/dev-python/pyelftools/pyelftools-0.26.ebuild
+++ b/dev-python/pyelftools/pyelftools-0.26.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 inherit distutils-r1
 
 DESCRIPTION="pure-Python library for analyzing ELF files and DWARF debugging 
information"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pypy3-exe-bin/

2020-10-04 Thread Michał Górny
commit: 7bd9cffa6e11c6f697fce54f1395a55215a11a55
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Oct  4 21:11:40 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Oct  4 21:14:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bd9cffa

dev-python/pypy3-exe-bin: Rebuild with sethostname() patch

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

 dev-python/pypy3-exe-bin/Manifest | 8 
 .../{pypy3-exe-bin-7.3.2.ebuild => pypy3-exe-bin-7.3.2-r1.ebuild} | 2 +-
 ...exe-bin-7.3.2_p37.ebuild => pypy3-exe-bin-7.3.2_p37-r1.ebuild} | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-python/pypy3-exe-bin/Manifest 
b/dev-python/pypy3-exe-bin/Manifest
index 93e0dff7783..0a31df41925 100644
--- a/dev-python/pypy3-exe-bin/Manifest
+++ b/dev-python/pypy3-exe-bin/Manifest
@@ -1,6 +1,6 @@
 DIST pypy3-exe-7.3.1-1.amd64.xpak 11657579 BLAKE2B 
1a037b447c7a73ac37bd7c33f4009442dabaf082a844744093dbb0f835b71abad48a6bfb28ebed0b02bb8a86f59f11b351768f152fd5db8b31ee010b14ffde79
 SHA512 
ee03ac675e6967d306136e79cbbb1554c44a32a21a0756b09dd7c1af84a9b3cb7e69a0094431bf6427271cf2fb1840e62935f53580e8d3eedef54d9bef2994e2
 DIST pypy3-exe-7.3.1-1.x86.xpak 8983621 BLAKE2B 
00ea3210e040dd72f169eb2f162f032eb3ddadefd5f114cb4fdb052b40640235f866fc26f577eb22ff64025d2b4234a194529cbac6350aeffa17bb662e98c5b0
 SHA512 
caa6e4e08c61e3101aa7e971b2aeae04b41c57206327baefeee4a077d09b5bef28ca3518e6823bdf9907ccd4a8ee2b843369ffd87ef0bcb95a66f21ddd87c61e
-DIST pypy3-exe-7.3.2-1.amd64.xpak 11747236 BLAKE2B 
5421ad051d2af6f88875591c99e801eab3991aa4a6936c0661f7fe131b13ec5cf9a261774f4ce6cae6202a9b0087265a457e2bdefe50110ce12c71e56885992a
 SHA512 
6cdf308a12d2dffc44335b06e8e6212e559f329f0045fdfb8e3b5fe127d62b8881eaf8231a3b7f9ad7f628ac059a1e68a9bb2b43d677e59cfc81ea202ebf0898
-DIST pypy3-exe-7.3.2-1.x86.xpak 9043236 BLAKE2B 
0c07e5bba6d4c227e63dea02c390254b809a2c14a4b9faefa080e32a86849c354971eb4f1d13331e00e2af7e79d108a6f69fed1cdec0faf70ed8320b6c64
 SHA512 
8040abb95b2bd4144a456f429fad39492672b6f225951f93d138609a7265bdadff9d2ea0b4cf7b481cd9a16fa1017bdcce0f7a3afda27ab60c094cc2a0ba2a92
-DIST pypy3-exe-7.3.2_p37-1.amd64.xpak 11873959 BLAKE2B 
e9fcb007b18d5880955bca5828285d8eb6b258f41ade7f53c2aa77c0bd65bb4884501dd093a6d19e694315cc20423ad05eaffcf78f62815b783a311220989805
 SHA512 
59fea7fe0670fed68c1748c9a763c754261b05f25f0ce251088908f79b73b9d468aa2777b0c5cda394474db04e0e754999b49677051ba00a94f4dfe6fca7e4a5
-DIST pypy3-exe-7.3.2_p37-1.x86.xpak 9127420 BLAKE2B 
23c7382980339ec4bb476acf99e587e7ff6128cc421bdd1758c6b922ec0cc1fb98c4895d28788d1184f3b6fb00e1954e517f58d33c3c10470c8d8c236fd43024
 SHA512 
f6680fca7a39b27117ea6aa680fc0fe78cec836413777860ff1adda21934ca6d0330364c7e3d97e9ab9f92fb3160e021cbfd016de89af6009526865164433f0e
+DIST pypy3-exe-7.3.2-r1-1.amd64.xpak 11745754 BLAKE2B 
16b6b078609b6c6fb9f87c8d6fe477ec29d9e3c51d68996b782cf2e908f46759a42b32dfd8e64a32bfe2488849ce57255cc9a299231f4f6f2dd52a5c11e30367
 SHA512 
6e4d73b11cd67ad50d01e0db1a800567f723752abaa20bae7e950f3c2cecafd6e2065bd47e69e2b8d96b9ecbb396ed46a21a315d685a0e712bee17aa549a15e9
+DIST pypy3-exe-7.3.2-r1-1.x86.xpak 9030835 BLAKE2B 
8fe13acd6bb93a60ed3f4268c1c53e7bb0101c7f68a58ddda4f7cec8fc5d4b3df463de2fbb585adbfb04349a96807a6c34246ceab76e001bfedabaddba90750b
 SHA512 
ab463d5df575b1b8a01fa129f96b1317de37d2a0de83d124d411be63add0a241700a918885ed7128221cadfbb0d3b0d49d32d57ec25c59ec45e26e5bb1c4c0c0
+DIST pypy3-exe-7.3.2_p37-r1-1.amd64.xpak 11864985 BLAKE2B 
69fe7b080ec4fe6cf3d0e06c0d7c00c17627259d57ff02a1dc0629374f92f425889a3e40b075f48687af47e97b2504252369bd106011961337fe1708d6e35561
 SHA512 
673de3083be18d9f62e9586eb0daae3e1a041f245ffb17fabb0b88ee6262cdd3ffd7dc723e6b72eb42057d0bbffbcc82a5c2864e585c5a1b184983445269500e
+DIST pypy3-exe-7.3.2_p37-r1-1.x86.xpak 9126391 BLAKE2B 
e8b68a1ce9ada6cf9a27dfcac78564d8a3020575ce9d1db7460c8aec8097abb6624bbce594d84556525253de8c620cb8acaf7e381af48d71b97bfdcfc5759a05
 SHA512 
29172e3d99775af10507167cd84f120677bfa752747b8d11f5434b16aea7eac9aa06bc820949cac132a2bd6e3c69df4da8a8a6bbba9cf4fe01db6cf1b0f725c6

diff --git a/dev-python/pypy3-exe-bin/pypy3-exe-bin-7.3.2.ebuild 
b/dev-python/pypy3-exe-bin/pypy3-exe-bin-7.3.2-r1.ebuild
similarity index 97%
rename from dev-python/pypy3-exe-bin/pypy3-exe-bin-7.3.2.ebuild
rename to dev-python/pypy3-exe-bin/pypy3-exe-bin-7.3.2-r1.ebuild
index 345dafd4e82..c7525e5712c 100644
--- a/dev-python/pypy3-exe-bin/pypy3-exe-bin-7.3.2.ebuild
+++ b/dev-python/pypy3-exe-bin/pypy3-exe-bin-7.3.2-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 inherit pax-utils
 
-MY_P=pypy3-exe-${PV}-1
+MY_P=pypy3-exe-${PV}-r1-1
 DESCRIPTION="PyPy3 executable (pre-built version)"
 HOMEPAGE="https://pypy.org/;
 SRC_URI="

diff --git a/dev-python/pypy3-exe-bin/pypy3-exe-bin-7.3.2_p37.ebuild 
b/dev-python/pypy3-exe-bin/pypy3-exe-bin-7.3.2_p37-r1.ebuild
similarity index 97%
rename from dev-python/pypy3-exe-bin/pypy3-exe-bin-7.3.2_p37.ebuild
rename to 

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

2020-10-04 Thread Michał Górny
commit: f0e786f0096b75d886fca041c479e936fb27e0b9
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Oct  4 19:40:32 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Oct  4 21:14:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0e786f0

dev-python/pypy3-exe: Backport sethostname() fix

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

 .../files/pypy3-7.3.2-sethostname-bytes.patch  | 61 ++
 ...-exe-7.3.2.ebuild => pypy3-exe-7.3.2-r1.ebuild} |  4 ++
 2_p37.ebuild => pypy3-exe-7.3.2_p37-r1.ebuild} |  4 ++
 3 files changed, 69 insertions(+)

diff --git a/dev-python/pypy3-exe/files/pypy3-7.3.2-sethostname-bytes.patch 
b/dev-python/pypy3-exe/files/pypy3-7.3.2-sethostname-bytes.patch
new file mode 100644
index 000..68025600b1f
--- /dev/null
+++ b/dev-python/pypy3-exe/files/pypy3-7.3.2-sethostname-bytes.patch
@@ -0,0 +1,61 @@
+From 5ee2925459372a8af805e952f433acd75e426325 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
+Date: Sun, 4 Oct 2020 15:46:23 +0200
+Subject: [PATCH] Fix sethostname() failure when passed bytes
+
+My implementation of sethostname() was broken and failed when passed
+bytes on Python 3. Update the implementation to match CPython -- that
+is, use bytes if provided, or fsencode() when str is provided.
+
+--HG--
+branch : py3.6
+---
+ pypy/module/_socket/interp_func.py|  8 +++-
+ pypy/module/_socket/test/test_sock_app.py | 12 
+ 2 files changed, 19 insertions(+), 1 deletion(-)
+
+diff --git a/pypy/module/_socket/interp_func.py 
b/pypy/module/_socket/interp_func.py
+index bdc4f1293f..1727e51d51 100644
+--- a/pypy/module/_socket/interp_func.py
 b/pypy/module/_socket/interp_func.py
+@@ -392,7 +392,13 @@ if hasattr(rsocket, 'sethostname'):
+ 
+ Set the host name.
+ """
+-hostname = space.text_w(w_hostname)
++if space.isinstance_w(w_hostname, space.w_bytes):
++hostname = space.bytes_w(w_hostname)
++elif space.isinstance_w(w_hostname, space.w_unicode):
++hostname = space.fsencode_w(w_hostname)
++else:
++raise oefmt(space.w_TypeError,
++"sethostname() argument 1 must be str or bytes")
+ try:
+ res = rsocket.sethostname(hostname)
+ except SocketError as e:
+diff --git a/pypy/module/_socket/test/test_sock_app.py 
b/pypy/module/_socket/test/test_sock_app.py
+index fe3efec8e3..355fb8a2a9 100644
+--- a/pypy/module/_socket/test/test_sock_app.py
 b/pypy/module/_socket/test/test_sock_app.py
+@@ -210,6 +210,18 @@ def test_getaddrinfo(space, w_socket):
+ assert space.unwrap(w_l) == True
+ 
+ 
++def test_sethostname(space, w_socket):
++space.raises_w(space.w_OSError, space.appexec,
++   [w_socket],
++   "(_socket): _socket.sethostname(_socket.gethostname())")
++
++
++def test_sethostname_bytes(space, w_socket):
++space.raises_w(space.w_OSError, space.appexec,
++   [w_socket],
++   "(_socket): 
_socket.sethostname(_socket.gethostname().encode())")
++
++
+ def test_unknown_addr_as_object(space, ):
+ from pypy.module._socket.interp_socket import addr_as_object
+ c_addr = lltype.malloc(rsocket._c.sockaddr, flavor='raw', 
track_allocation=False)
+-- 
+GitLab
+

diff --git a/dev-python/pypy3-exe/pypy3-exe-7.3.2.ebuild 
b/dev-python/pypy3-exe/pypy3-exe-7.3.2-r1.ebuild
similarity index 98%
rename from dev-python/pypy3-exe/pypy3-exe-7.3.2.ebuild
rename to dev-python/pypy3-exe/pypy3-exe-7.3.2-r1.ebuild
index a8648c1e6ea..73313264113 100644
--- a/dev-python/pypy3-exe/pypy3-exe-7.3.2.ebuild
+++ b/dev-python/pypy3-exe/pypy3-exe-7.3.2-r1.ebuild
@@ -35,6 +35,10 @@ BDEPEND="
)
)"
 
+PATCHES=(
+   "${FILESDIR}"/pypy3-7.3.2-sethostname-bytes.patch
+)
+
 check_env() {
if use low-memory; then
CHECKREQS_MEMORY="1750M"

diff --git a/dev-python/pypy3-exe/pypy3-exe-7.3.2_p37.ebuild 
b/dev-python/pypy3-exe/pypy3-exe-7.3.2_p37-r1.ebuild
similarity index 98%
rename from dev-python/pypy3-exe/pypy3-exe-7.3.2_p37.ebuild
rename to dev-python/pypy3-exe/pypy3-exe-7.3.2_p37-r1.ebuild
index 5992fb3e87e..592f395defc 100644
--- a/dev-python/pypy3-exe/pypy3-exe-7.3.2_p37.ebuild
+++ b/dev-python/pypy3-exe/pypy3-exe-7.3.2_p37-r1.ebuild
@@ -36,6 +36,10 @@ BDEPEND="
)
)"
 
+PATCHES=(
+   "${FILESDIR}"/pypy3-7.3.2-sethostname-bytes.patch
+)
+
 check_env() {
if use low-memory; then
CHECKREQS_MEMORY="1750M"



[gentoo-commits] repo/gentoo:master commit in: dev-embedded/esptool/

2020-10-04 Thread Michał Górny
commit: 41f3fc9371b2208bbcbc11f6eea80e89d4a701d7
Author: Martin Dummer  gmx  net>
AuthorDate: Mon Sep 14 19:30:57 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Oct  4 21:14:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41f3fc93

dev-embedded/esptool: add python3.[89] + new maintainer

successfully tested with python3.8 and 3.9
remove maintainer-needed, add proxy maintainer

Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Martin Dummer  gmx.net>
Signed-off-by: Michał Górny  gentoo.org>

 dev-embedded/esptool/esptool-2.8-r1.ebuild | 41 ++
 dev-embedded/esptool/metadata.xml  | 10 +++-
 2 files changed, 50 insertions(+), 1 deletion(-)

diff --git a/dev-embedded/esptool/esptool-2.8-r1.ebuild 
b/dev-embedded/esptool/esptool-2.8-r1.ebuild
new file mode 100644
index 000..3c6a1359415
--- /dev/null
+++ b/dev-embedded/esptool/esptool-2.8-r1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8,9} ) # apps work with 3_9 but test depend is 
not fulfilled
+DISTUTILS_SINGLE_IMPL=1
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Utility to communicate with the ROM bootloader in Espressif 
ESP8266 and ESP32"
+HOMEPAGE="https://github.com/espressif/esptool;
+SRC_URI="https://github.com/espressif/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   $(python_gen_cond_dep '
+   dev-python/ecdsa[${PYTHON_MULTI_USEDEP}]
+   dev-python/pyaes[${PYTHON_MULTI_USEDEP}]
+   >=dev-python/pyserial-3.0[${PYTHON_MULTI_USEDEP}]
+   ')
+"
+BDEPEND="
+   test? ( $(python_gen_cond_dep 
'dev-python/pyelftools[${PYTHON_MULTI_USEDEP}]') )
+"
+
+src_prepare() {
+   rm -rf pyaes/ ecdsa/ || die "unable to remove bundled modules"
+   default
+}
+
+python_test() {
+   ${EPYTHON} test/test_imagegen.py || die "imagegen test failed with 
${EPYTHON}"
+   ${EPYTHON} test/test_espsecure.py || die "espsecure test failed with 
${EPYTHON}"
+}

diff --git a/dev-embedded/esptool/metadata.xml 
b/dev-embedded/esptool/metadata.xml
index c8023306d2d..5d0a40ebda0 100644
--- a/dev-embedded/esptool/metadata.xml
+++ b/dev-embedded/esptool/metadata.xml
@@ -1,7 +1,15 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   martin.dum...@gmx.net
+   Martin Dummer
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   

espressif/esptool




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

2020-10-04 Thread Thomas Deutschmann
commit: 26924a4d82822fc1d87931d4157cfc68db28a3d4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Oct  4 20:37:07 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Oct  4 20:38:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26924a4d

media-gfx/imagemagick: rollover stable keywords

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

 media-gfx/imagemagick/imagemagick-6.9.11.31.ebuild | 2 +-
 media-gfx/imagemagick/imagemagick-7.0.10.31.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/imagemagick/imagemagick-6.9.11.31.ebuild 
b/media-gfx/imagemagick/imagemagick-6.9.11.31.ebuild
index 02b0c9655fe..f37a0010b4c 100644
--- a/media-gfx/imagemagick/imagemagick-6.9.11.31.ebuild
+++ b/media-gfx/imagemagick/imagemagick-6.9.11.31.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://imagemagick/${MY_P}.tar.xz"
 
 LICENSE="imagemagick"
 SLOT="0/6.9.11"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~ppc-aix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="bzip2 corefonts +cxx djvu fftw fontconfig fpx graphviz hdri heif jbig 
jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 
q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
 
 REQUIRED_USE="corefonts? ( truetype )

diff --git a/media-gfx/imagemagick/imagemagick-7.0.10.31.ebuild 
b/media-gfx/imagemagick/imagemagick-7.0.10.31.ebuild
index ac9609f64ef..f54a5b0369e 100644
--- a/media-gfx/imagemagick/imagemagick-7.0.10.31.ebuild
+++ b/media-gfx/imagemagick/imagemagick-7.0.10.31.ebuild
@@ -13,7 +13,7 @@ else
MY_PV="$(ver_rs 3 '-')"
MY_P="ImageMagick-${MY_PV}"
SRC_URI="mirror://imagemagick/${MY_P}.tar.xz"
-   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 
~sparc-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 
~sparc-solaris ~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="A collection of tools and libraries for many image formats"



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

2020-10-04 Thread Thomas Deutschmann
commit: a920d7932446b62478ddaf3495e8d02d79bf2e48
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Oct  4 20:38:12 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Oct  4 20:38:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a920d793

media-gfx/imagemagick: drop old

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

 media-gfx/imagemagick/Manifest |   2 -
 media-gfx/imagemagick/imagemagick-6.9.11.28.ebuild | 255 
 media-gfx/imagemagick/imagemagick-7.0.10.28.ebuild | 268 -
 3 files changed, 525 deletions(-)

diff --git a/media-gfx/imagemagick/Manifest b/media-gfx/imagemagick/Manifest
index 8c64b03a127..31e1895d76a 100644
--- a/media-gfx/imagemagick/Manifest
+++ b/media-gfx/imagemagick/Manifest
@@ -1,4 +1,2 @@
-DIST ImageMagick-6.9.11-28.tar.xz 9315628 BLAKE2B 
8ece7dae4d8c7de695e85b832e5c15c1474e00c9027aeb251a279dc9b51a02f5fd1e96f48987377cd6d937a126e5750e9aef9a11caf64603267b81e6a874f205
 SHA512 
e2954d1a55a37fa339dd0cbc0ca753e4f783cd77858277e287c033a53ac5f2e96bc5329d069016fc3841d07dc9e8f5b1bb08ecf9ed0224bbc675843132749fdd
 DIST ImageMagick-6.9.11-31.tar.xz 9225744 BLAKE2B 
0a540862ac6cf3504e0ad081748c5e6a99b8858ed52e145b8be142a3294a5e354ee8453987c9783deb924a69fe2dbf340d88e9bc7bcdb14b98f33a6bf18e3039
 SHA512 
11a33d75c2e9ff35ff5e8d0c40a470874dcbe39350f84f7816c536798af0be5da78cd28416ce74e6f045a4cfdb0f70e1f7fb58dd7bf88465a744fb587c098ee4
-DIST ImageMagick-7.0.10-28.tar.xz 9705324 BLAKE2B 
0fe890a23b9fc97ceb5253e24ab8236135f4a4f48c1480ad5577c6a2535bf350fcea062b8897fc5e7993ab86716b1e280fabcf664442e3fe9d209e8c2806ea2d
 SHA512 
fcfdacec893bb0a39c4a3caae1ade5ea7d3f6b8909cc73f218260f9f9b354ebe77aecedb2be2e2a64011eceb895c1ecb2fa0f349361387d56fb0f3cde657e158
 DIST ImageMagick-7.0.10-31.tar.xz 9653808 BLAKE2B 
14c02ed0be35d817ebc2ccb0fcd436e34a7350dbe459ec3acd1a6ed94e46b181b5f713c9e8b5260e08287d5feb34c7a23b4e57bda0752a8206352c10b5379825
 SHA512 
0f6a2e098706186e43be3b91f10ac243aef4d96ce8943e88709243f9673205ec2261502c623f10af4f8fa126d8b4d5e3f636c9820790e5d730e54c5e634a61b3

diff --git a/media-gfx/imagemagick/imagemagick-6.9.11.28.ebuild 
b/media-gfx/imagemagick/imagemagick-6.9.11.28.ebuild
deleted file mode 100644
index f37a0010b4c..000
--- a/media-gfx/imagemagick/imagemagick-6.9.11.28.ebuild
+++ /dev/null
@@ -1,255 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit eapi7-ver eutils flag-o-matic libtool perl-functions toolchain-funcs 
multilib
-
-MY_PV="$(ver_rs 3 '-')"
-MY_P="ImageMagick-${MY_PV}"
-
-DESCRIPTION="A collection of tools and libraries for many image formats"
-HOMEPAGE="https://www.imagemagick.org/;
-SRC_URI="mirror://imagemagick/${MY_P}.tar.xz"
-
-LICENSE="imagemagick"
-SLOT="0/6.9.11"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~ppc-aix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
-IUSE="bzip2 corefonts +cxx djvu fftw fontconfig fpx graphviz hdri heif jbig 
jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 
q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
-
-REQUIRED_USE="corefonts? ( truetype )
-   test? ( corefonts )"
-
-RESTRICT="perl? ( userpriv )
-   !test? ( test )"
-
-RDEPEND="
-   dev-libs/libltdl:0
-   bzip2? ( app-arch/bzip2 )
-   corefonts? ( media-fonts/corefonts )
-   djvu? ( app-text/djvu )
-   fftw? ( sci-libs/fftw:3.0 )
-   fontconfig? ( media-libs/fontconfig )
-   fpx? ( >=media-libs/libfpx-1.3.0-r1 )
-   graphviz? ( media-gfx/graphviz )
-   heif? ( media-libs/libheif:= )
-   jbig? ( >=media-libs/jbigkit-2:= )
-   jpeg? ( virtual/jpeg:0 )
-   jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 )
-   lcms? ( media-libs/lcms:2= )
-   lqr? ( media-libs/liblqr )
-   opencl? ( virtual/opencl )
-   openexr? ( media-libs/openexr:0= )
-   pango? ( x11-libs/pango )
-   perl? ( >=dev-lang/perl-5.8.8:0= )
-   png? ( media-libs/libpng:0= )
-   postscript? ( app-text/ghostscript-gpl )
-   raw? ( media-libs/libraw:= )
-   svg? (
-   gnome-base/librsvg
-   media-gfx/potrace
-   )
-   tiff? ( media-libs/tiff:0= )
-   truetype? (
-   media-fonts/urw-fonts
-   >=media-libs/freetype-2
-   )
-   webp? ( media-libs/libwebp:0= )
-   wmf? ( media-libs/libwmf )
-   X? (
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libXext
-   x11-libs/libXt
-   )
-   xml? ( dev-libs/libxml2:= )
-   lzma? ( app-arch/xz-utils )
-   zlib? ( sys-libs/zlib:= )"
-DEPEND="${RDEPEND}
-   !media-gfx/graphicsmagick[imagemagick]
-   virtual/pkgconfig
-   X? ( x11-base/xorg-proto )"
-

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

2020-10-04 Thread Georgy Yakovlev
commit: 89bc0ef126407bbc0e28f3f453d7882b97a71700
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun Oct  4 20:14:05 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Oct  4 20:15:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89bc0ef1

sys-apps/opal-utils: add postinst message about /dev and opal-prd

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

 sys-apps/opal-utils/opal-utils-6.5.2.ebuild | 11 +++
 sys-apps/opal-utils/opal-utils-6.6.2.ebuild | 11 +++
 sys-apps/opal-utils/opal-utils-6.6.3.ebuild | 11 +++
 3 files changed, 33 insertions(+)

diff --git a/sys-apps/opal-utils/opal-utils-6.5.2.ebuild 
b/sys-apps/opal-utils/opal-utils-6.5.2.ebuild
index 9479de387f7..805fc46be85 100644
--- a/sys-apps/opal-utils/opal-utils-6.5.2.ebuild
+++ b/sys-apps/opal-utils/opal-utils-6.5.2.ebuild
@@ -78,3 +78,14 @@ src_install() {
fi
einstalldocs
 }
+
+pkg_postinst() {
+   if systemd_is_booted || has_version sys-apps/systemd; then
+   echo
+   ewarn "With systemd opal-prd.service will fail to start"
+   ewarn "with 'mmap failed: Operation not permitted' error"
+   ewarn "if /dev filesystem is mounted with 'noexec' option"
+   ewarn "see https://github.com/open-power/skiboot/issues/258;
+   echo
+   fi
+}

diff --git a/sys-apps/opal-utils/opal-utils-6.6.2.ebuild 
b/sys-apps/opal-utils/opal-utils-6.6.2.ebuild
index 22d57ef7a34..c683ec843d8 100644
--- a/sys-apps/opal-utils/opal-utils-6.6.2.ebuild
+++ b/sys-apps/opal-utils/opal-utils-6.6.2.ebuild
@@ -90,3 +90,14 @@ src_test() {
emake V=1 -C external/pflash check
emake V=1 -C external/ffspart check
 }
+
+pkg_postinst() {
+   if systemd_is_booted || has_version sys-apps/systemd; then
+   echo
+   ewarn "With systemd opal-prd.service will fail to start"
+   ewarn "with 'mmap failed: Operation not permitted' error"
+   ewarn "if /dev filesystem is mounted with 'noexec' option"
+   ewarn "see https://github.com/open-power/skiboot/issues/258;
+   echo
+   fi
+}

diff --git a/sys-apps/opal-utils/opal-utils-6.6.3.ebuild 
b/sys-apps/opal-utils/opal-utils-6.6.3.ebuild
index 823783f6fa3..b7976592cb2 100644
--- a/sys-apps/opal-utils/opal-utils-6.6.3.ebuild
+++ b/sys-apps/opal-utils/opal-utils-6.6.3.ebuild
@@ -90,3 +90,14 @@ src_test() {
emake V=1 -C external/pflash check
emake V=1 -C external/ffspart check
 }
+
+pkg_postinst() {
+   if systemd_is_booted || has_version sys-apps/systemd; then
+   echo
+   ewarn "With systemd opal-prd.service will fail to start"
+   ewarn "with 'mmap failed: Operation not permitted' error"
+   ewarn "if /dev filesystem is mounted with 'noexec' option"
+   ewarn "see https://github.com/open-power/skiboot/issues/258;
+   echo
+   fi
+}



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

2020-10-04 Thread Fabian Groffen
commit: 1278e75ff758df9e3a7f11d57d36dc378461fe2e
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Oct  4 20:14:05 2020 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Oct  4 20:14:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1278e75f

app-portage/portage-utils-0.90: version bump for qlop fixes

Closes: https://bugs.gentoo.org/745798
Closes: https://bugs.gentoo.org/731122
Closes: https://bugs.gentoo.org/713536
Closes: https://bugs.gentoo.org/705748
Closes: https://bugs.gentoo.org/701968
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Fabian Groffen  gentoo.org>

 app-portage/portage-utils/Manifest |  2 +-
 ...portage-utils-0.88.ebuild => portage-utils-0.90.ebuild} | 14 --
 2 files changed, 1 insertion(+), 15 deletions(-)

diff --git a/app-portage/portage-utils/Manifest 
b/app-portage/portage-utils/Manifest
index 26e9608deff..9b4dc1f0425 100644
--- a/app-portage/portage-utils/Manifest
+++ b/app-portage/portage-utils/Manifest
@@ -1,3 +1,3 @@
 DIST portage-utils-0.87.tar.xz 1772956 BLAKE2B 
b1487d89303b524ffa9e6030feba181fcad73a6f38febf29f63b1f7bcd7a5080ddb1f907ca217040d064427f2060bb3885a61c30663594428be475a5bf7253f0
 SHA512 
a29f2d1fc85aea1c2b4c8b16fca0e9b559a980951f79cb10d7fd836d99ec65a904f2cbc54a949150ce490ba5d705b0aa5aa39f56365968b3dd591cb3d7c5eb21
-DIST portage-utils-0.88.tar.xz 1776100 BLAKE2B 
5165c99f163a39e2d8e9d503a43982999e70ff647af16acaae84279d17c327e78c2722fa9f332c570e8bfed7647ebb7f96281c3ed2c42948234fb23192e73ca5
 SHA512 
f5bddd170b66753bf3abd870add6f893e31ae971cc15f3b34366fbbd6d69848aa8aa301bbf3e4185f152ce110e890178828f867e64d8ede74c17e819c2961562
 DIST portage-utils-0.89.tar.xz 1775088 BLAKE2B 
6218cd3a5a435622366550857753529b38a8c2c9dbc2c9d72d3ce8517679fb782caded843807cebd606294a5ecb6dd110311e8da95d54626126b091ee902ab1d
 SHA512 
c285901f1200f0ee81a4cd12840f5b4938fa525ce3611458287d6f5439c78b9ecf5ec0dc40d759fe5e6a848d4fd13b6d9ac38222ebf2c4453a60f9fdb842a55c
+DIST portage-utils-0.90.tar.xz 1776636 BLAKE2B 
bbacc05aa97c77705ae4fbdb5efde5f1d49a99ac8ed259e026c9a997f43a86551b3a10a397e0c5f1da161d2c0d88afe88e22870705ca39d911c4a98ad13f4928
 SHA512 
2077061dd7dfd444d4ad38faf5a87aa44392d7747f71d7283b5e2775ce3d714773cd642ea085aea3dd34a715f2c446d42fd64ba42fa99e716e8d843aae3d9682

diff --git a/app-portage/portage-utils/portage-utils-0.88.ebuild 
b/app-portage/portage-utils/portage-utils-0.90.ebuild
similarity index 82%
rename from app-portage/portage-utils/portage-utils-0.88.ebuild
rename to app-portage/portage-utils/portage-utils-0.90.ebuild
index 30461bad45e..aa5f157c1b9 100644
--- a/app-portage/portage-utils/portage-utils-0.88.ebuild
+++ b/app-portage/portage-utils/portage-utils-0.90.ebuild
@@ -69,17 +69,3 @@ src_configure() {
$(use_enable openmp) \
$(use_enable static)
 }
-
-pkg_postinst() {
-   local pvr
-   local doshow=
-   for pvr in ${REPLACING_VERSIONS} ; do
-   [[ ${pvr} != "0.8"[012]* ]] && doshow=true
-   done
-
-   if [[ ${doshow} == true ]] ; then
-   elog "This version of Portage utils has undergone significant 
changes."
-   elog "Please read the elog manpages for applets like qlop(1) 
and"
-   elog "qfile(1) where argument options have changed."
-   fi
-}



[gentoo-commits] proj/portage-utils: New tag: v0.90

2020-10-04 Thread Fabian Groffen
commit: 
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Oct  4 20:07:49 2020 +

New tag: v0.90




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

2020-10-04 Thread Louis Sautier
commit: 495f3ea6bcc303293fd02a2663abf96e2ea931fb
Author: Louis Sautier  gentoo  org>
AuthorDate: Sun Oct  4 20:02:01 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Sun Oct  4 20:02:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=495f3ea6

dev-python/sphinxcontrib-spelling: add doc to metadata

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Louis Sautier  gentoo.org>

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

diff --git a/dev-python/sphinxcontrib-spelling/metadata.xml 
b/dev-python/sphinxcontrib-spelling/metadata.xml
index 7aba5451291..62fb22904fc 100644
--- a/dev-python/sphinxcontrib-spelling/metadata.xml
+++ b/dev-python/sphinxcontrib-spelling/metadata.xml
@@ -8,5 +8,6 @@

sphinxcontrib-spelling
sphinx-contrib/spelling
+   https://sphinxcontrib-spelling.readthedocs.io/

 



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

2020-10-04 Thread Louis Sautier
commit: 3479f388aec9341ce35abf68211fd483ff3a5e52
Author: Louis Sautier  gentoo  org>
AuthorDate: Sun Oct  4 19:57:50 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Sun Oct  4 19:59:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3479f388

dev-python/sphinxcontrib-spelling: remove broken doc from 5.3.0 too

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.3.0.ebuild 
b/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.3.0.ebuild
index 57a76276a01..f253d611a1a 100644
--- a/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.3.0.ebuild
+++ b/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.3.0.ebuild
@@ -33,7 +33,7 @@ BDEPEND="
)
 "
 
-distutils_enable_sphinx docs/source --no-autodoc
+# The doc can only be built from a git repository
 distutils_enable_tests pytest
 
 RDEPEND+="



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

2020-10-04 Thread Louis Sautier
commit: c3b319f59bb9a1b4feea2a0c2690c06d26a551c6
Author: Louis Sautier  gentoo  org>
AuthorDate: Sun Oct  4 19:41:33 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Sun Oct  4 19:59:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3b319f5

dev-python/sphinxcontrib-spelling: bump to 5.4.0, remove broken doc

Also update dependencies (remove the unused ones and fix setuptools and pbr
which are not used at runtime).

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/sphinxcontrib-spelling/Manifest |  1 +
 .../sphinxcontrib-spelling-5.4.0.ebuild| 52 ++
 2 files changed, 53 insertions(+)

diff --git a/dev-python/sphinxcontrib-spelling/Manifest 
b/dev-python/sphinxcontrib-spelling/Manifest
index 93f723547f3..5fd72d6b1ec 100644
--- a/dev-python/sphinxcontrib-spelling/Manifest
+++ b/dev-python/sphinxcontrib-spelling/Manifest
@@ -1,2 +1,3 @@
 DIST sphinxcontrib-spelling-5.1.2.tar.gz 22962 BLAKE2B 
c7b15289b4b6dce5e6c5fb529c4be2cd7c1f41d8bfc6ac86daf1a982f711bd2c426d9b3a615471538fe221197b64ccd907efd4620ea2440f6ec07b2a078d6bee
 SHA512 
4a0398b7c79a035e12d9ae96100fcaa4df42aeae07a01a73f7d875ba04fbbeb3d7441c9debe77491876d78b0a3753677cff4cb3a575e3490364fe5780f5a70b2
 DIST sphinxcontrib-spelling-5.3.0.tar.gz 45665 BLAKE2B 
c44c8c2621aecd74734c6137e1344a763e99fb61b3ce882c8ea70364df17a7e2fac49acc8878753cab1b70df2cf084de5087bed77f8b1bffe311410ecec3504d
 SHA512 
8f3c4718877e55b0ebcd3d8c0f078a6c06c27c2cdd3cc557fd2e0e990f0c8956179fd9a8b3135b280973e45c0c8657f71372746ef4b55319078db8f16c7e00e9
+DIST sphinxcontrib-spelling-5.4.0.tar.gz 46823 BLAKE2B 
8303a97b87d953a37db4548d895559baf93969c11f8417aafeb67804ec537f9ea028bcbf6a56eb3290f13871a782dcde142b1927865a6f9eefd5a20dc53061b1
 SHA512 
7e0fe6289f9482982825a1204c926490a1e31dc85e25e6418ba47f5575430875e3df5f77202ad458044b810bc2a29f989e6bc6f0c9b4934af938716a4ab887f0

diff --git 
a/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.4.0.ebuild 
b/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.4.0.ebuild
new file mode 100644
index 000..0865671ed3f
--- /dev/null
+++ b/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.4.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Sphinx spelling extension"
+HOMEPAGE="https://github.com/sphinx-contrib/spelling;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux"
+
+RDEPEND="
+   $(python_gen_cond_dep '
+   >=dev-python/importlib_metadata-1.7.0[${PYTHON_USEDEP}]
+   ' python3_{6,7})
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/pbr[${PYTHON_USEDEP}]
+   test? (
+   app-dicts/myspell-en
+   )
+"
+
+# The doc can only be built from a git repository
+distutils_enable_tests pytest
+
+# We don't want distutils_enable_tests to add the namespace
+# package to BDEPEND under "test?". Therefore we add it to RDEPEND
+# after running distutils_enable_tests.
+RDEPEND+="
+   dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]
+"
+
+python_prepare_all() {
+   # Needs to be run from a git repository
+   sed -i 's/test_contributors/_&/' \
+   sphinxcontrib/spelling/tests/test_filter.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+   find "${ED}" -name '*.pth' -delete || die
+}



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

2020-10-04 Thread Sergei Trofimovich
commit: 655e6c7a82dc4b16abcd66fb2fdc182dcdc35f54
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Oct  4 19:30:36 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Oct  4 19:49:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=655e6c7a

dev-python/hypothesis: keyworded 5.29.4 for hppa, bug #737618

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

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

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



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

2020-10-04 Thread Sergei Trofimovich
commit: 98aa1317d073ea2d52d346d052151be3da16970f
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Oct  4 19:25:48 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Oct  4 19:49:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98aa1317

dev-python/pytest-aiohttp: keyworded 0.3.0-r1 for hppa, bug #737618

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

 dev-python/pytest-aiohttp/pytest-aiohttp-0.3.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pytest-aiohttp/pytest-aiohttp-0.3.0-r1.ebuild 
b/dev-python/pytest-aiohttp/pytest-aiohttp-0.3.0-r1.ebuild
index 1965fe66186..b8b9bcc5d03 100644
--- a/dev-python/pytest-aiohttp/pytest-aiohttp-0.3.0-r1.ebuild
+++ b/dev-python/pytest-aiohttp/pytest-aiohttp-0.3.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
 IUSE=""
 
 RDEPEND="



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

2020-10-04 Thread Sergei Trofimovich
commit: b46c8b30335b4f1c110b9222b90e04800c9dc215
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Oct  4 18:13:24 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Oct  4 19:49:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b46c8b30

dev-python/blockdiag: keyworded 2.0.1 for hppa, bug #737618

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

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

diff --git a/dev-python/blockdiag/blockdiag-2.0.1.ebuild 
b/dev-python/blockdiag/blockdiag-2.0.1.ebuild
index 5aff478f965..3791bfc178d 100644
--- a/dev-python/blockdiag/blockdiag-2.0.1.ebuild
+++ b/dev-python/blockdiag/blockdiag-2.0.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ppc ~ppc64 sparc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-10-04 Thread Sergei Trofimovich
commit: 5de8720e6670883beac402b8257fda62caefb3ca
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Oct  4 18:24:41 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Oct  4 19:49:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5de8720e

dev-python/sphinxcontrib-blockdiag: mark 2.0.0 ~hppa, bug #737618

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

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

diff --git 
a/dev-python/sphinxcontrib-blockdiag/sphinxcontrib-blockdiag-2.0.0.ebuild 
b/dev-python/sphinxcontrib-blockdiag/sphinxcontrib-blockdiag-2.0.0.ebuild
index 011fa2fdffd..f5d64fb96d1 100644
--- a/dev-python/sphinxcontrib-blockdiag/sphinxcontrib-blockdiag-2.0.0.ebuild
+++ b/dev-python/sphinxcontrib-blockdiag/sphinxcontrib-blockdiag-2.0.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/blockdiag/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86"
 
 RDEPEND="
>=dev-python/sphinx-2.0[${PYTHON_USEDEP}]



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

2020-10-04 Thread Sergei Trofimovich
commit: 56169f1e95bece186a4f9d20a2a6ee28c40f46c6
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Oct  4 19:29:59 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Oct  4 19:49:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56169f1e

dev-python/black: keyworded 20.8_beta1 for hppa, bug #737618

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

 dev-python/black/black-20.8_beta1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/black/black-20.8_beta1.ebuild 
b/dev-python/black/black-20.8_beta1.ebuild
index a9da674934f..b34899e3a77 100644
--- a/dev-python/black/black-20.8_beta1.ebuild
+++ b/dev-python/black/black-20.8_beta1.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
 IUSE="test"
 
 RDEPEND="



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

2020-10-04 Thread Sergei Trofimovich
commit: 9688b533952f180fce2df2d5fae0f553f803c820
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Oct  4 19:25:06 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Oct  4 19:49:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9688b533

dev-python/idna-ssl: keyworded 1.1.0 for hppa, bug #737618

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

 dev-python/idna-ssl/idna-ssl-1.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/idna-ssl/idna-ssl-1.1.0.ebuild 
b/dev-python/idna-ssl/idna-ssl-1.1.0.ebuild
index f7b40976b3c..3d967d14075 100644
--- a/dev-python/idna-ssl/idna-ssl-1.1.0.ebuild
+++ b/dev-python/idna-ssl/idna-ssl-1.1.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 SLOT="0"
 LICENSE="MIT"
-KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
 IUSE=""
 
 RDEPEND="dev-python/idna[${PYTHON_USEDEP}]"



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

2020-10-04 Thread Sergei Trofimovich
commit: bb4748b3f4a253aa7860471af8d6300ba076432e
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Oct  4 18:12:18 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Oct  4 19:48:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb4748b3

dev-python/sphinxcontrib-spelling: mark 5.3.0 ~hppa, bug #737618

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

 dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.3.0.ebuild 
b/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.3.0.ebuild
index 9202602394b..57a76276a01 100644
--- a/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.3.0.ebuild
+++ b/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.3.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux"
 
 RDEPEND="
$(python_gen_cond_dep '



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

2020-10-04 Thread Sergei Trofimovich
commit: 2e9c68bcb2ce450c70d40a7f1e8a469aa6876216
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Oct  4 19:28:58 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Oct  4 19:49:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e9c68bc

dev-python/async_timeout: keyworded 3.0.1 for hppa, bug #737618

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

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

diff --git a/dev-python/async_timeout/async_timeout-3.0.1.ebuild 
b/dev-python/async_timeout/async_timeout-3.0.1.ebuild
index e89294b1863..dc813583239 100644
--- a/dev-python/async_timeout/async_timeout-3.0.1.ebuild
+++ b/dev-python/async_timeout/async_timeout-3.0.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 S=${WORKDIR}/${MY_P}



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

2020-10-04 Thread Sergei Trofimovich
commit: 6bb9b7372cf34df0b4bf9716796d0597a1cb1dcf
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Oct  4 19:23:52 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Oct  4 19:49:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bb9b737

dev-python/aiohttp: keyworded 3.6.2 for hppa, bug #737618

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

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

diff --git a/dev-python/aiohttp/aiohttp-3.6.2.ebuild 
b/dev-python/aiohttp/aiohttp-3.6.2.ebuild
index cf889d96ddd..a8669798ab9 100644
--- a/dev-python/aiohttp/aiohttp-3.6.2.ebuild
+++ b/dev-python/aiohttp/aiohttp-3.6.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
 IUSE="doc test"
 RESTRICT="!test? ( test )"
 



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

2020-10-04 Thread Sergei Trofimovich
commit: 18dc676f06ef9a26f4e3aae6be289f6ecdff6cf7
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Oct  4 19:31:11 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Oct  4 19:49:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18dc676f

dev-python/hypothesis: keyworded 5.36.1 for hppa, bug #737618

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

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

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



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

2020-10-04 Thread Sergei Trofimovich
commit: a9d20ebef5ad6cf891e95aa83fce4f035ae03ad1
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Oct  4 19:43:02 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Oct  4 19:49:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9d20ebe

dev-lang/php: stable 7.4.11 for hppa/sparc, bug #745993

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

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

diff --git a/dev-lang/php/php-7.4.11.ebuild b/dev-lang/php/php-7.4.11.ebuild
index 8e69e55ee67..9d80875910a 100644
--- a/dev-lang/php/php-7.4.11.ebuild
+++ b/dev-lang/php/php-7.4.11.ebuild
@@ -21,7 +21,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 
 S="${WORKDIR}/${PN}-${MY_PV}"
 



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

2020-10-04 Thread Sergei Trofimovich
commit: 1a2a2eab5d5ccfd2e6042cd1942928d64782284d
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Oct  4 19:28:31 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Oct  4 19:49:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a2a2eab

dev-python/aiohttp-cors: keyworded 0.7.0-r1 for hppa, bug #737618

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

 dev-python/aiohttp-cors/aiohttp-cors-0.7.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/aiohttp-cors/aiohttp-cors-0.7.0-r1.ebuild 
b/dev-python/aiohttp-cors/aiohttp-cors-0.7.0-r1.ebuild
index 89ea70764b7..4dff1217045 100644
--- a/dev-python/aiohttp-cors/aiohttp-cors-0.7.0-r1.ebuild
+++ b/dev-python/aiohttp-cors/aiohttp-cors-0.7.0-r1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/aio-libs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
 RDEPEND=">=dev-python/aiohttp-1.1.1[${PYTHON_USEDEP}]"
 BDEPEND="



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

2020-10-04 Thread Sergei Trofimovich
commit: 7342936d15085e7fe47e55b02a8ce94694ab7338
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Oct  4 19:39:06 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Oct  4 19:49:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7342936d

dev-lang/php: stable 7.2.34 for hppa/sparc, bug #745993

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

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

diff --git a/dev-lang/php/php-7.2.34.ebuild b/dev-lang/php/php-7.2.34.ebuild
index 0425a3e67e5..07a447f8d2f 100644
--- a/dev-lang/php/php-7.2.34.ebuild
+++ b/dev-lang/php/php-7.2.34.ebuild
@@ -18,7 +18,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 
 # We can build the following SAPIs in the given order
 SAPIS="embed cli cgi fpm apache2 phpdbg"



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

2020-10-04 Thread Sergei Trofimovich
commit: 92653a8239b3ba5e6b98d00fb19a81e60b5b9585
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Oct  4 19:41:03 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Oct  4 19:49:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92653a82

dev-lang/php: stable 7.3.23 for hppa/sparc, bug #745993

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

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

diff --git a/dev-lang/php/php-7.3.23.ebuild b/dev-lang/php/php-7.3.23.ebuild
index c914fb7ccd1..1ce95f95c6e 100644
--- a/dev-lang/php/php-7.3.23.ebuild
+++ b/dev-lang/php/php-7.3.23.ebuild
@@ -19,7 +19,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 
 S="${WORKDIR}/${PN}-${MY_PV}"
 



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

2020-10-04 Thread Mikle Kolyada
commit: 6f3d9d11cb5e6fe29f163667c632f1673309270c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Oct  4 19:45:04 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Oct  4 19:45:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f3d9d11

sys-auth/ykpers: remove consolekit support

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Mikle Kolyada  gentoo.org>

 sys-auth/ykpers/metadata.xml|  6 --
 sys-auth/ykpers/ykpers-1.19.3-r1.ebuild | 11 +++
 sys-auth/ykpers/ykpers-1.20.0.ebuild|  9 ++---
 3 files changed, 5 insertions(+), 21 deletions(-)

diff --git a/sys-auth/ykpers/metadata.xml b/sys-auth/ykpers/metadata.xml
index 46e7a0ccd48..0263462089b 100644
--- a/sys-auth/ykpers/metadata.xml
+++ b/sys-auth/ykpers/metadata.xml
@@ -9,10 +9,4 @@
 Yubico/yubikey-personalization
 https://github.com/Yubico/yubikey-personalization/issues
   
-  
-
-  Use sys-auth/consolekit and virtual/udev
-  to allow access to the YubiKey HID device to the console user.
-
-  
 

diff --git a/sys-auth/ykpers/ykpers-1.19.3-r1.ebuild 
b/sys-auth/ykpers/ykpers-1.19.3-r1.ebuild
index fbbae20cc15..88bc388c29c 100644
--- a/sys-auth/ykpers/ykpers-1.19.3-r1.ebuild
+++ b/sys-auth/ykpers/ykpers-1.19.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ HOMEPAGE="https://github.com/Yubico/yubikey-personalization;
 KEYWORDS="amd64 x86"
 SLOT="0"
 LICENSE="BSD-2"
-IUSE="consolekit static-libs"
+IUSE="static-libs"
 
 DEPEND="
dev-libs/json-c:=
@@ -21,9 +21,7 @@ DEPEND="
 BDEPEND="
app-text/asciidoc
virtual/pkgconfig"
-RDEPEND="${DEPEND}
-   consolekit? ( sys-auth/consolekit[acl] )
-"
+RDEPEND="${DEPEND}"
 
 S="${WORKDIR}/yubikey-personalization-${PV}"
 
@@ -47,9 +45,6 @@ src_install() {
default
 
udev_dorules 69-yubikey.rules
-   if use consolekit ; then
-   udev_dorules 70-yubikey.rules
-   fi
 
find "${D}" -name '*.la' -delete || die
 }

diff --git a/sys-auth/ykpers/ykpers-1.20.0.ebuild 
b/sys-auth/ykpers/ykpers-1.20.0.ebuild
index e864d1dbc2b..d2134a08232 100644
--- a/sys-auth/ykpers/ykpers-1.20.0.ebuild
+++ b/sys-auth/ykpers/ykpers-1.20.0.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://github.com/Yubico/yubikey-personalization;
 KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 SLOT="0"
 LICENSE="BSD-2"
-IUSE="consolekit static-libs"
+IUSE="static-libs"
 
 DEPEND="
dev-libs/json-c:=
@@ -21,9 +21,7 @@ DEPEND="
 BDEPEND="
app-text/asciidoc
virtual/pkgconfig"
-RDEPEND="${DEPEND}
-   consolekit? ( sys-auth/consolekit[acl] )
-"
+RDEPEND="${DEPEND}"
 
 S="${WORKDIR}/yubikey-personalization-${PV}"
 PATCHES=(
@@ -51,9 +49,6 @@ src_install() {
default
 
udev_dorules 69-yubikey.rules
-   if use consolekit ; then
-   udev_dorules 70-yubikey.rules
-   fi
 
find "${D}" -name '*.la' -delete || die
 }



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

2020-10-04 Thread Mikle Kolyada
commit: 9637f7e59a7a5fd6a4f0a9598f1e95aa42bd2c7b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Oct  4 19:40:36 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Oct  4 19:41:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9637f7e5

sys-auth/pambase: remove consolekit support

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Mikle Kolyada  gentoo.org>

 sys-auth/pambase/metadata.xml| 5 -
 sys-auth/pambase/pambase-20200304.ebuild | 6 ++
 2 files changed, 2 insertions(+), 9 deletions(-)

diff --git a/sys-auth/pambase/metadata.xml b/sys-auth/pambase/metadata.xml
index f64b1660560..18296df5048 100644
--- a/sys-auth/pambase/metadata.xml
+++ b/sys-auth/pambase/metadata.xml
@@ -16,11 +16,6 @@
crackable. It requires the same USE flag to be enabled 
on
sys-libs/pam or system login might be 
impossible.

-   
-   Enable pam_ck_connector module on local system logins. 
This
-   allows for console logins to make use of ConsoleKit
-   authorization.
-   

Use pam_elogind module to register user sessions with 
elogind.


diff --git a/sys-auth/pambase/pambase-20200304.ebuild 
b/sys-auth/pambase/pambase-20200304.ebuild
index de4c295e21f..f7a7d2084a8 100644
--- a/sys-auth/pambase/pambase-20200304.ebuild
+++ b/sys-auth/pambase/pambase-20200304.ebuild
@@ -12,17 +12,16 @@ 
SRC_URI="https://github.com/gentoo/pambase/archive/${P}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~amd64-linux ~x86-linux"
-IUSE="caps consolekit +cracklib debug elogind minimal mktemp +nullok pam_krb5 
pam_ssh passwdqc securetty selinux +sha512 systemd"
+IUSE="caps +cracklib debug elogind minimal mktemp +nullok pam_krb5 pam_ssh 
passwdqc securetty selinux +sha512 systemd"
 
 RESTRICT="binchecks"
 
-REQUIRED_USE="?? ( consolekit elogind systemd )"
+REQUIRED_USE="?? ( elogind systemd )"
 
 MIN_PAM_REQ=1.1.3
 
 RDEPEND="
>=sys-libs/pam-${MIN_PAM_REQ}
-   consolekit? ( sys-auth/consolekit[pam] )
cracklib? ( sys-libs/pam[cracklib(+)] )
elogind? ( sys-auth/elogind[pam] )
mktemp? ( sys-auth/pam_mktemp )
@@ -65,7 +64,6 @@ src_compile() {
$(use_var LIBCAP caps) \
$(use_var cracklib) \
$(use_var passwdqc) \
-   $(use_var consolekit) \
$(use_var elogind) \
$(use_var systemd) \
$(use_var selinux) \



[gentoo-commits] proj/portage-utils:master commit in: /

2020-10-04 Thread Fabian Groffen
commit: d5579e07d763403aa8ac770a97e3c36c96f6540a
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Oct  4 19:28:06 2020 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Oct  4 19:28:06 2020 +
URL:https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=d5579e07

qlop: adapt terminating/exiting logic somewhat

It seems that exiting doesn't always come immediately (= the same
second) after terminating, so allow a small window (4s) for these to
come in sequence to treat them as a single termination.

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

 qlop.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qlop.c b/qlop.c
index 762523f..5045d17 100644
--- a/qlop.c
+++ b/qlop.c
@@ -508,7 +508,7 @@ static int do_emerge_log(
if (p[7] == 'm') {
parallel_emerge++;
} else if (parallel_emerge > 0) {
-   if (p[7] != 'e' || tstart != last_exit)
+   if (p[7] != 'e' || (tstart - 4) <= last_exit)
parallel_emerge--;
if (p[7] == 'x')
last_exit = tstart;



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

2020-10-04 Thread Zac Medico
commit: af4caea23797164effbab440282842ac15db3eef
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Oct  4 19:26:03 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Oct  4 19:26:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af4caea2

sys-apps/yarn: Bump to version 1.22.10

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

 sys-apps/yarn/Manifest|  1 +
 sys-apps/yarn/yarn-1.22.10.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/sys-apps/yarn/Manifest b/sys-apps/yarn/Manifest
index bd6c370bfed..a431fea5a5a 100644
--- a/sys-apps/yarn/Manifest
+++ b/sys-apps/yarn/Manifest
@@ -1,2 +1,3 @@
+DIST yarn-v1.22.10.tar.gz 1244965 BLAKE2B 
6a9471a6905d89481665c099f00a985daacc8c7953327ee12b3d70f3f42dc304ceca01446281964d1af7a005ecae4a12ca55df637732e52821b4ecb9cdce6418
 SHA512 
d75dccd318f280abcbfd8d78b63546e11e7a8459c5dd737d0c8da2742cd5d7e3d7a5e668ce680234b0c09e71d12878061d24c6e3ae4b6626086461e3ce25
 DIST yarn-v1.22.4.tar.gz 1244785 BLAKE2B 
1f1eeb829096eaf19a8fdb48b46fa736769d9d3c247759e434413665186e4cccb750024afa836dae8a0130fc472df3c01805d263d81346e1dd7509e1b106e88a
 SHA512 
a1833b862fe52169bd6c2a033045a07df5bc6a23595c259e675fed1b2d035ab37abe6ce309720abb6636d68f03615054b6292dc0a70da31c8697fda228b50d18
 DIST yarn-v1.22.5.tar.gz 1244837 BLAKE2B 
cf5054893c8937ceb6788c27f23005386449664b36dc31c6c0c3548438f1fdc5c5ec4b1b1642786c4d8732faf46ab58d2784d3768e12233f241b9b1c6f173734
 SHA512 
c33c040ed57eb05c04905b8996db31a34099f0c18dbf1818959c5592514abc99f1180592561ec5d3e760c084dbcf2dcdf3ebb4fe8918f082b6aa089cf10921bb

diff --git a/sys-apps/yarn/yarn-1.22.10.ebuild 
b/sys-apps/yarn/yarn-1.22.10.ebuild
new file mode 100644
index 000..706453936e7
--- /dev/null
+++ b/sys-apps/yarn/yarn-1.22.10.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_P="${PN}-v${PV}"
+
+DESCRIPTION="Fast, reliable, and secure node dependency management"
+HOMEPAGE="https://yarnpkg.com;
+SRC_URI="https://github.com/yarnpkg/yarn/releases/download/v${PV}/${MY_P}.tar.gz;
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="!dev-util/cmdtest
+   net-libs/nodejs"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   default
+   sed -i 's/"installationMethod": "tar"/"installationMethod": 
"portage"/g' "${S}/package.json" || die
+}
+
+src_install() {
+   local install_dir="/usr/$(get_libdir)/node_modules/yarn" path shebang
+   insinto "${install_dir}"
+   doins -r .
+   dosym "../$(get_libdir)/node_modules/yarn/bin/yarn.js" "/usr/bin/yarn"
+   dosym "../$(get_libdir)/node_modules/yarn/bin/yarnpkg" 
"/usr/bin/yarnpkg"
+
+   while read -r -d '' path; do
+   read -r shebang < "${ED}${path}" || die
+   [[ "${shebang}" == \#\!* ]] || continue
+   fperms +x "${path}"
+   done < <(find "${ED}" -type f -printf '/%P\0' || die)
+}



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

2020-10-04 Thread Louis Sautier
commit: 79e2fe8673b1b0703afba4ac15aa349a22efb8ed
Author: Louis Sautier  gentoo  org>
AuthorDate: Sun Oct  4 18:50:59 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Sun Oct  4 19:25:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79e2fe86

dev-python/reno: bump to 3.2.0, add Python 3.9 support+tests

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/reno/Manifest  |  1 +
 dev-python/reno/reno-3.2.0.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/reno/Manifest b/dev-python/reno/Manifest
index 346e72e4a6c..feab07451c0 100644
--- a/dev-python/reno/Manifest
+++ b/dev-python/reno/Manifest
@@ -1 +1,2 @@
 DIST reno-2.11.3.tar.gz 73296 BLAKE2B 
a09c79c12945396425f2d3a45259e15e1fe8909df107de90884a51c87a5f4ac9f425907c1f9f401417d979e8762f80f188d2e783a7ff36541c107a9497a12746
 SHA512 
8d5bfe30c7a886d295d77b3d38e7fde09a8febacfacbf984f919bd5c813d81999870684f7da5b3e77a95436c912ea8e275b68548622462218356e23ad084140c
+DIST reno-3.2.0.tar.gz 77316 BLAKE2B 
43fe83a5f4c3e812daa3d2456f6c3b0bc7ba661193187f05527108e7b182dd078ec7a26b39e2939d51efc231e60f3d503479a4729b391faf764fa1e5d941c967
 SHA512 
b0399e5472afa4c883af563949cf4083571ee6dfcc05babb9845fa44fb9cfa2d0a1be6f315915597c22e86e0504102cb4f90aee59273ccbaceb15e93ed078b65

diff --git a/dev-python/reno/reno-3.2.0.ebuild 
b/dev-python/reno/reno-3.2.0.ebuild
new file mode 100644
index 000..3a693a7bada
--- /dev/null
+++ b/dev-python/reno/reno-3.2.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Release notes manager, storing release notes in a git repo and 
building docs"
+HOMEPAGE="https://pypi.org/project/reno/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-python/pbr[${PYTHON_USEDEP}]
+   >=dev-python/pyyaml-5.3.1[${PYTHON_USEDEP}]
+   >=dev-python/dulwich-0.15.0[${PYTHON_USEDEP}]
+   >=dev-python/packaging-20.4[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/pbr[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/testtools-1.4.0[${PYTHON_USEDEP}]
+   )
+"
+
+# The doc needs to be built from a git repository
+distutils_enable_tests unittest
+
+python_prepare_all() {
+   # Some tests need to be run from a git repository
+   rm reno/tests/test_{cache,semver}.py || die
+   distutils-r1_python_prepare_all
+}



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

2020-10-04 Thread Zac Medico
commit: c2531ad46fa9fc0c9e46bdc6de497c561b0b
Author: Jonathan Davies  protonmail  com>
AuthorDate: Wed Sep 30 13:24:38 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Oct  4 19:16:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c253

dev-util/ostree: Version updated to 2020.6.

Closes: https://bugs.gentoo.org/730360
Closes: https://github.com/gentoo/gentoo/pull/17718
Signed-off-by: Jonathan Davies  protonmail.com>
Signed-off-by: Zac Medico  gentoo.org>

 dev-util/ostree/Manifest |  1 +
 dev-util/ostree/ostree-2020.6.ebuild | 90 
 2 files changed, 91 insertions(+)

diff --git a/dev-util/ostree/Manifest b/dev-util/ostree/Manifest
index 5211bf003e4..a0d1025bb60 100644
--- a/dev-util/ostree/Manifest
+++ b/dev-util/ostree/Manifest
@@ -1 +1,2 @@
 DIST ostree-2019.5.tar.xz 1972452 BLAKE2B 
a8b015118855b8b0097f535ac074aeffc599c3f6f654967043e8e4de339d2a51e85ad1b4b3f3b22e18d39235e6ad9c1973334a2c4fc9b5c694f2ff40d68ae703
 SHA512 
27150802ed9af16e698ed163f6ad235f0f99a1410df52b4b1e266585fe665880c0b9490bf245b5593cb277007b7229d808be7403dd964c58aded6e567349c912
+DIST ostree-2020.6.tar.xz 2014456 BLAKE2B 
97d84c6838993edfbabb598bce800332ab1c8b22c0431839f7129f2f57afdd71c1b8ea8b8d6c1dc2cbf8d7f6828d624394b5e8c533f7a98eb1b1c3aeedff92cf
 SHA512 
1d8f8ccaa3e543a6f494d3be2a3651ad340846f0c314e003955260b7bd1d8c0421acf102ec2ca6580379c354bf4cfac0940e4e95b724b7aaf9dc8116085aa538

diff --git a/dev-util/ostree/ostree-2020.6.ebuild 
b/dev-util/ostree/ostree-2020.6.ebuild
new file mode 100644
index 000..68c74d15f95
--- /dev/null
+++ b/dev-util/ostree/ostree-2020.6.ebuild
@@ -0,0 +1,90 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools systemd
+
+DESCRIPTION="Operating system and container binary deployment and upgrades"
+HOMEPAGE="https://ostree.readthedocs.io/en/latest/;
+SRC_URI="https://github.com/ostreedev/ostree/releases/download/v${PV}/lib${P}.tar.xz
 -> ${P}.tar.xz"
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="LGPL-2+"
+SLOT="0"
+
+IUSE="archive curl doc dracut gnutls grub http2 httpd introspection libmount 
selinux ssl soup systemd zeroconf"
+RESTRICT="test"
+REQUIRED_USE="httpd? ( || ( curl soup ) )"
+
+COMMON_DEPEND="
+   archive? ( app-arch/libarchive )
+   app-crypt/gpgme
+   app-arch/xz-utils
+   curl? ( net-misc/curl )
+   soup? ( net-libs/libsoup )
+   dev-libs/libassuan
+   dev-libs/libgpg-error
+   dev-libs/glib:2
+   dracut? ( sys-kernel/dracut )
+   grub? ( sys-boot/grub:2= )
+   introspection? ( dev-libs/gobject-introspection )
+   ssl? (
+   gnutls? ( net-libs/gnutls )
+   !gnutls? ( dev-libs/openssl:0= ) )
+   >=sys-fs/fuse-2.9.2:0
+   sys-libs/zlib
+   libmount? ( sys-apps/util-linux )
+   selinux? ( sys-libs/libselinux )
+   systemd? ( sys-apps/systemd:0= )
+   zeroconf? ( net-dns/avahi[dbus] )"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt
+   doc? ( dev-util/gtk-doc )"
+
+RDEPEND="${COMMON_DEPEND}"
+BDEPEND="
+   dev-util/glib-utils
+   sys-devel/flex
+   sys-devel/bison
+   virtual/pkgconfig"
+
+S="${WORKDIR}/lib${P}"
+
+src_prepare() {
+   sed -Ee 's:(XSLT_STYLESHEET = 
).*:\1/usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl:' \
+   -i Makefile.in Makefile-man.am || die
+
+   eautoreconf
+   default
+}
+
+src_configure() {
+   local econfargs=(
+   --enable-man
+   --enable-shared
+   $(use_with archive libarchive)
+   $(use_with curl)
+   $(use_with dracut)
+   $(use_enable doc gtk-doc)
+   $(use_enable introspection)
+   $(use_enable http2)
+   $(use_enable httpd trivial-httpd-cmdline)
+   $(use_with selinux )
+   $(use_with soup)
+   $(use_with libmount)
+   $(use ssl && { use gnutls && echo --with-crypto=gnutls || echo 
--with-crypto=openssl; })
+   $(use_with systemd libsystemd)
+   $(use_with zeroconf avahi)
+   )
+
+   unset ${!XDG_*} #657346 g-ir-scanner sandbox violation
+   econf ${econfargs[*]}
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}



[gentoo-commits] proj/portage-utils:master commit in: /

2020-10-04 Thread Fabian Groffen
commit: 1f26829eb69625e86babfdf301d1f1d3afbdaf36
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Oct  4 19:05:34 2020 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Oct  4 19:05:34 2020 +
URL:https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=1f26829e

qlop: slightly increase the average when computing ETA

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

 qlop.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/qlop.c b/qlop.c
index ad16d55..762523f 100644
--- a/qlop.c
+++ b/qlop.c
@@ -1002,6 +1002,9 @@ static int do_emerge_log(
pkg = get_set(afmt, merge_averages);
if (pkg != NULL) {
maxtime = pkg->time / pkg->cnt;
+   /* add 14% of the diff between avg and max, to 
avoid
+* frequently swapping to maxtime */
+   maxtime += (pkg->tbegin - maxtime) / 7;
if (elapsed >= maxtime) {
maxtime = pkg->tbegin;
if (elapsed >= maxtime)



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/base58/

2020-10-04 Thread Andreas Zuber
commit: 57de211b088e0a71b3ea9a8fe6c8dcc5ef0ccd96
Author: Andreas Zuber  gmx  ch>
AuthorDate: Sun Oct  4 17:59:50 2020 +
Commit: Andreas Zuber  gmx  ch>
CommitDate: Sun Oct  4 17:59:50 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=57de211b

dev-python/base58: new package

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Andreas Zuber  gmx.ch>

 dev-python/base58/Manifest|  1 +
 dev-python/base58/base58-2.0.1.ebuild | 22 ++
 dev-python/base58/metadata.xml| 11 +++
 3 files changed, 34 insertions(+)

diff --git a/dev-python/base58/Manifest b/dev-python/base58/Manifest
new file mode 100644
index ..93ef5e1d
--- /dev/null
+++ b/dev-python/base58/Manifest
@@ -0,0 +1 @@
+DIST base58-2.0.1.tar.gz 4960 BLAKE2B 
bccda786945a77001a90754590137dbd10ab5bd8997cc02334e269e86508f008f8030d36d63472b7ce01bb2e79bf3ab7c0110a202f8c308ff9bab941946dfba2
 SHA512 
c438b424cec785091189c6c93f4edfcb5fc2d1a4ed7614ce457c4ef686f1f9d9f3a08a268f1590e72b4ea918569cf0eef4c0d3301166e2542b9563d8bf2adf36

diff --git a/dev-python/base58/base58-2.0.1.ebuild 
b/dev-python/base58/base58-2.0.1.ebuild
new file mode 100644
index ..18eb08f8
--- /dev/null
+++ b/dev-python/base58/base58-2.0.1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Base58 and Base58Check implementation"
+HOMEPAGE="https://github.com/keis/base58;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="test? ( dev-python/pyhamcrest[${PYTHON_USEDEP}] )"
+BDEPEND=""
+
+distutils_enable_tests pytest

diff --git a/dev-python/base58/metadata.xml b/dev-python/base58/metadata.xml
new file mode 100644
index ..e3fbb3b3
--- /dev/null
+++ b/dev-python/base58/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+a.zu...@gmx.ch
+Andreas Zuber
+  
+  
+keis/base58
+  
+



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

2020-10-04 Thread Zac Medico
commit: 4267b9b44c593c03a16f224c560e47f2aad05f94
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Oct  4 18:46:54 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Oct  4 18:46:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4267b9b4

dev-util/ostree: Remove old versions

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

 dev-util/ostree/Manifest|   1 -
 dev-util/ostree/ostree-2018.9-r1.ebuild | 123 
 dev-util/ostree/ostree-2018.9.ebuild| 108 
 3 files changed, 232 deletions(-)

diff --git a/dev-util/ostree/Manifest b/dev-util/ostree/Manifest
index efa90df5b75..5211bf003e4 100644
--- a/dev-util/ostree/Manifest
+++ b/dev-util/ostree/Manifest
@@ -1,2 +1 @@
-DIST ostree-2018.9.tar.xz 1951732 BLAKE2B 
c6fba1321fe21bff569fe1dadd1aa649f23059a35dc906c3a0b7dcca29f7acbe8338e19541d8f7d854452bf6a6b1ac293d4350c7056a9b13b9ed1eacf358d4b3
 SHA512 
407b6b67add54e80a55fc35f08bde56561009db93ec202a10dd1ec1e66bd32b439c1d66c759e4e173e44fce6fbc2c162cae928a477c9d7abafbf007ed8f7bfb5
 DIST ostree-2019.5.tar.xz 1972452 BLAKE2B 
a8b015118855b8b0097f535ac074aeffc599c3f6f654967043e8e4de339d2a51e85ad1b4b3f3b22e18d39235e6ad9c1973334a2c4fc9b5c694f2ff40d68ae703
 SHA512 
27150802ed9af16e698ed163f6ad235f0f99a1410df52b4b1e266585fe665880c0b9490bf245b5593cb277007b7229d808be7403dd964c58aded6e567349c912

diff --git a/dev-util/ostree/ostree-2018.9-r1.ebuild 
b/dev-util/ostree/ostree-2018.9-r1.ebuild
deleted file mode 100644
index 77065eb10dd..000
--- a/dev-util/ostree/ostree-2018.9-r1.ebuild
+++ /dev/null
@@ -1,123 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools systemd
-
-DESCRIPTION="Operating system and container binary deployment and upgrades"
-HOMEPAGE="https://ostree.readthedocs.io/en/latest/;
-SRC_URI="https://github.com/ostreedev/ostree/releases/download/v${PV}/lib${P}.tar.xz
 -> ${P}.tar.xz"
-
-KEYWORDS="~amd64 ~x86"
-LICENSE="LGPL-2+"
-SLOT="0"
-
-IUSE="archive curl doc dracut gnutls grub http2 httpd introspection libmount 
selinux ssl soup systemd zeroconf"
-RESTRICT="test"
-REQUIRED_USE="httpd? ( || ( curl soup ) )"
-
-COMMON_DEPEND="
-   archive? ( app-arch/libarchive )
-   app-crypt/gpgme
-   app-arch/xz-utils
-   curl? ( net-misc/curl )
-   soup? ( net-libs/libsoup )
-   dev-libs/glib:2
-   dev-libs/libassuan
-   dev-libs/libgpg-error
-   dracut? ( sys-kernel/dracut )
-   grub? ( sys-boot/grub:2= )
-   introspection? ( dev-libs/gobject-introspection )
-   ssl? (
-   gnutls? ( net-libs/gnutls )
-   !gnutls? ( dev-libs/openssl:0= ) )
-   sys-fs/fuse:0
-   sys-libs/zlib
-   libmount? ( sys-apps/util-linux )
-   selinux? ( sys-libs/libselinux )
-   systemd? ( sys-apps/systemd:0= )
-   zeroconf? ( net-dns/avahi[dbus] )"
-
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-xsl-stylesheets
-   dev-libs/libxslt
-   doc? ( dev-util/gtk-doc )"
-
-RDEPEND="${COMMON_DEPEND}"
-BDEPEND="
-   dev-util/glib-utils
-   sys-devel/flex
-   sys-devel/bison
-   virtual/pkgconfig"
-
-S="${WORKDIR}/lib${P}"
-
-src_prepare() {
-   sed -Ee 's:(XSLT_STYLESHEET = 
).*:\1/usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl:' \
-   -i Makefile.in Makefile-man.am || die
-
-   # The ostree-finalize-staged.path file is missing in 
ostree-2018.9.tar.xz.
-   [ -e src/boot/ostree-finalize-staged.path ] && die
-   cat > src/boot/ostree-finalize-staged.path <<-EOF
-   # Copyright (C) 2018 Red Hat, Inc.
-   #
-   # This library is free software; you can redistribute it and/or
-   # modify it under the terms of the GNU Lesser General Public
-   # License as published by the Free Software Foundation; either
-   # version 2 of the License, or (at your option) any later 
version.
-   #
-   # This library is distributed in the hope that it will be 
useful,
-   # but WITHOUT ANY WARRANTY; without even the implied warranty of
-   # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
GNU
-   # Lesser General Public License for more details.
-   #
-   # You should have received a copy of the GNU Lesser General 
Public
-   # License along with this library; if not, write to the
-   # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-   # Boston, MA 02111-1307, USA.
-
-   # For some implementation discussion, see:
-   # 
https://lists.freedesktop.org/archives/systemd-devel/2018-March/040557.html
-   [Unit]
-   Description=OSTree Monitor Staged Deployment
-   Documentation=man:ostree(1)
-

[gentoo-commits] proj/portage-utils:master commit in: /

2020-10-04 Thread Fabian Groffen
commit: 10d8cc211d638832c70517f132d66c21380293d2
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Oct  4 18:45:32 2020 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Oct  4 18:45:54 2020 +
URL:https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=10d8cc21

qlop: drop accidential debug print from probe_proc

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

 qlop.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/qlop.c b/qlop.c
index 24b154c..ad16d55 100644
--- a/qlop.c
+++ b/qlop.c
@@ -1368,7 +1368,6 @@ static array_t *probe_proc(array_t *atoms)
atom->PV = NULL;
atom->PVR = NULL;
atom->PR_int = 0;
-   printf("proc: %s\n", atom_to_string(atom));
xarraypush_ptr(atoms, atom);
}
 



[gentoo-commits] proj/portage-utils:master commit in: /

2020-10-04 Thread Fabian Groffen
commit: e2cb3938176e97b6e41d1873838db35a017cf7d9
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Oct  4 18:43:17 2020 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Oct  4 18:43:17 2020 +
URL:https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=e2cb3938

qlop: fix fix for #731122, also make it work without packages specified

Bug: https://bugs.gentoo.org/745798
Bug: https://bugs.gentoo.org/731122
Signed-off-by: Fabian Groffen  gentoo.org>

 qlop.c | 13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/qlop.c b/qlop.c
index a5d8678..24b154c 100644
--- a/qlop.c
+++ b/qlop.c
@@ -1353,12 +1353,6 @@ static array_t *probe_proc(array_t *atoms)
xarraydelete_ptr(ret_atoms, j);
atom_implode(atomr);
break;
-   } else {
-   /* bug #731122: match running packages 
without
-* version */
-   atomr->PV = NULL;
-   atomr->PVR = NULL;
-   atomr->PR_int = 0;
}
}
atom_implode(atom);
@@ -1369,7 +1363,14 @@ static array_t *probe_proc(array_t *atoms)
/* ret_atoms is allocated on the stack, so copy into atoms which is
 * empty at this point */
array_for_each(ret_atoms, i, atom)
+   {
+   /* bug #731122: match running packages without version */
+   atom->PV = NULL;
+   atom->PVR = NULL;
+   atom->PR_int = 0;
+   printf("proc: %s\n", atom_to_string(atom));
xarraypush_ptr(atoms, atom);
+   }
 
xarrayfree_int(ret_atoms);
 



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

2020-10-04 Thread Zac Medico
commit: 3cc0b0745c14888facf825c93d454217b94a2b70
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Oct  4 18:39:55 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Oct  4 18:40:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cc0b074

app-portage/esearch: Remove setuptools dep

Closes: https://bugs.gentoo.org/746452
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Zac Medico  gentoo.org>

 app-portage/esearch/esearch-1.3-r3.ebuild | 1 +
 app-portage/esearch/esearch-.ebuild   | 1 +
 2 files changed, 2 insertions(+)

diff --git a/app-portage/esearch/esearch-1.3-r3.ebuild 
b/app-portage/esearch/esearch-1.3-r3.ebuild
index 026f4017bec..4fd4c76d3ac 100644
--- a/app-portage/esearch/esearch-1.3-r3.ebuild
+++ b/app-portage/esearch/esearch-1.3-r3.ebuild
@@ -5,6 +5,7 @@ EAPI=7
 
 PYTHON_COMPAT=(python3_{6..9})
 PYTHON_REQ_USE="readline(+)"
+DISTUTILS_USE_SETUPTOOLS=no
 
 inherit distutils-r1
 

diff --git a/app-portage/esearch/esearch-.ebuild 
b/app-portage/esearch/esearch-.ebuild
index cb46da61322..48967f995b5 100644
--- a/app-portage/esearch/esearch-.ebuild
+++ b/app-portage/esearch/esearch-.ebuild
@@ -5,6 +5,7 @@ EAPI=7
 
 PYTHON_COMPAT=(python3_{6..9})
 PYTHON_REQ_USE="readline(+)"
+DISTUTILS_USE_SETUPTOOLS=no
 
 inherit distutils-r1 git-r3
 



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

2020-10-04 Thread Andreas Sturmlechner
commit: 25d98aad8ea321d30f48f60ec66bb5cfda8d0696
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Oct  4 18:31:22 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct  4 18:36:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25d98aad

app-text/cutemarked: Remove last-rited package

Closes: https://bugs.gentoo.org/684678
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-text/cutemarked/Manifest   |  1 -
 app-text/cutemarked/cutemarked-0.11.3-r1.ebuild| 40 --
 .../files/cutemarked-0.11.1-respect-destdir.patch  | 24 -
 .../files/cutemarked-0.11.3-bgcolor.patch  | 12 ---
 .../files/cutemarked-0.11.3-qaction-include.patch  | 11 --
 app-text/cutemarked/metadata.xml   | 11 --
 profiles/package.mask  |  5 ---
 7 files changed, 104 deletions(-)

diff --git a/app-text/cutemarked/Manifest b/app-text/cutemarked/Manifest
deleted file mode 100644
index e255b884959..000
--- a/app-text/cutemarked/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST cutemarked-0.11.3.tar.gz 772238 BLAKE2B 
1acc7291d968f26f87a1b2fc1070ca3a61053b8bba04c57d91917ed3dea6a5893b9cab41004cef044ddb656e3d334d177d6765db7624d33f91f749d5787b23b2
 SHA512 
3b776f6453812ce4afa37532bf03adce01ad3ec2fb0d848e3a0e5f18ca30be6f1e9f6b3c815917a96c9637c722d53a5bc249d5f58b209000d7d794239626ca30

diff --git a/app-text/cutemarked/cutemarked-0.11.3-r1.ebuild 
b/app-text/cutemarked/cutemarked-0.11.3-r1.ebuild
deleted file mode 100644
index d4f1373747d..000
--- a/app-text/cutemarked/cutemarked-0.11.3-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit qmake-utils
-
-DESCRIPTION="Qt5 markdown editor"
-HOMEPAGE="https://github.com/cloose/CuteMarkEd;
-SRC_URI="https://github.com/cloose/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   app-text/discount
-   app-text/hunspell
-   dev-qt/linguist-tools:5
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtprintsupport:5
-   dev-qt/qttest:5
-   dev-qt/qtwebkit:5
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/CuteMarkEd-${PV}"
-
-PATCHES=(
-   "${FILESDIR}/${PN}"-0.11.1-respect-destdir.patch
-   "${FILESDIR}/${PN}"-0.11.3-qaction-include.patch
-   "${FILESDIR}/${PN}"-0.11.3-bgcolor.patch
-)
-
-src_configure() {
-   eqmake5 ROOT="${D}" CuteMarkEd.pro
-}

diff --git a/app-text/cutemarked/files/cutemarked-0.11.1-respect-destdir.patch 
b/app-text/cutemarked/files/cutemarked-0.11.1-respect-destdir.patch
deleted file mode 100644
index 2ce1469538f..000
--- a/app-text/cutemarked/files/cutemarked-0.11.1-respect-destdir.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -ru CuteMarkEd-0.11.1/app/app.pro CuteMarkEd-0.11.1-sane/app/app.pro
 CuteMarkEd-0.11.1/app/app.pro  2015-07-06 12:02:22.0 +0200
-+++ CuteMarkEd-0.11.1-sane/app/app.pro 2015-07-09 14:53:29.398899757 +0200
-@@ -243,7 +243,7 @@
- ## INSTALLATION
- 
- unix {
--   isEmpty(PREFIX): PREFIX = /usr
-+   isEmpty(PREFIX): PREFIX = $${ROOT}/usr
-DATADIR = $${PREFIX}/share
- 
-# install desktop file
-diff -ru CuteMarkEd-0.11.1/fontawesomeicon/fontawesomeicon.pro 
CuteMarkEd-0.11.1-sane/fontawesomeicon/fontawesomeicon.pro
 CuteMarkEd-0.11.1/fontawesomeicon/fontawesomeicon.pro  2015-07-06 
12:02:22.0 +0200
-+++ CuteMarkEd-0.11.1-sane/fontawesomeicon/fontawesomeicon.pro 2015-07-09 
14:52:45.867901697 +0200
-@@ -39,7 +39,7 @@
- 
- unix {
-# install plugin
--   target.path = $$[QT_INSTALL_PLUGINS]/iconengines
-+   target.path = $${ROOT}/$$[QT_INSTALL_PLUGINS]/iconengines
-INSTALLS += target
-message("The project will be installed in 
$$[QT_INSTALL_PLUGINS]/iconengines")
- }

diff --git a/app-text/cutemarked/files/cutemarked-0.11.3-bgcolor.patch 
b/app-text/cutemarked/files/cutemarked-0.11.3-bgcolor.patch
deleted file mode 100644
index 8cf1fe5f1c3..000
--- a/app-text/cutemarked/files/cutemarked-0.11.3-bgcolor.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git a/app/styles/markdown.css b/app/styles/markdown.css
-index 7c87385..607f025 100644
 a/app/styles/markdown.css
-+++ b/app/styles/markdown.css
-@@ -25,6 +25,7 @@ body{
- line-height: 1;
- max-width: 960px;
- padding: 30px;
-+background-color: #ff;
- }
- h1, h2, h3, h4 {
- color: #11;

diff --git a/app-text/cutemarked/files/cutemarked-0.11.3-qaction-include.patch 
b/app-text/cutemarked/files/cutemarked-0.11.3-qaction-include.patch
deleted file mode 100644
index 5e585945902..000
--- a/app-text/cutemarked/files/cutemarked-0.11.3-qaction-include.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -Nru a/app/optionsdialog.cpp b/app/optionsdialog.cpp
 a/app/optionsdialog.cpp2016-03-28 

[gentoo-commits] repo/gentoo:master commit in: kde-apps/libkgeomap/, profiles/

2020-10-04 Thread Andreas Sturmlechner
commit: 10f1e2bf7635da009445e2b820a77fafc5cd27d3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Oct  4 18:29:20 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct  4 18:36:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10f1e2bf

kde-apps/libkgeomap: Remove last-rited package

Closes: https://bugs.gentoo.org/737928
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-apps/libkgeomap/Manifest  |  1 -
 kde-apps/libkgeomap/libkgeomap-20.04.3.ebuild | 39 ---
 kde-apps/libkgeomap/metadata.xml  |  8 --
 profiles/package.mask |  5 
 4 files changed, 53 deletions(-)

diff --git a/kde-apps/libkgeomap/Manifest b/kde-apps/libkgeomap/Manifest
deleted file mode 100644
index f45524d058d..000
--- a/kde-apps/libkgeomap/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST libkgeomap-20.04.3.tar.xz 150940 BLAKE2B 
513285597a84c8863ce363d37e935056e3332083e9d90c2e9f0a0e0455c2a8f1dd2eca9c9a752639e720d3c90b87e4b1cff9daf8b7e6b58ac11b5a0e5457f66a
 SHA512 
c8673fb49f2742254793ca6bc477fab5b52bc7da462760c4eeaf58144b90f495beb4eef536ccc29b6f26675301ce3e84dadb22558ee8545b75fe65aac1d70e0b

diff --git a/kde-apps/libkgeomap/libkgeomap-20.04.3.ebuild 
b/kde-apps/libkgeomap/libkgeomap-20.04.3.ebuild
deleted file mode 100644
index 9ad9c6272f9..000
--- a/kde-apps/libkgeomap/libkgeomap-20.04.3.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-ECM_TEST="true"
-PVCUT=$(ver_cut 1-3)
-KFMIN=5.70.0
-QTMIN=5.14.2
-VIRTUALX_REQUIRED="test"
-inherit ecm kde.org
-
-DESCRIPTION="Wrapper library for world map components as marble, openstreetmap 
and googlemap"
-HOMEPAGE="https://www.digikam.org/;
-
-LICENSE="GPL-2+"
-SLOT="5"
-KEYWORDS="amd64 arm64 x86"
-IUSE=""
-
-DEPEND="
-   >=dev-qt/qtconcurrent-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwebkit-5.212.0_pre20180120:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   >=kde-apps/marble-${PVCUT}:5=[kde]
-   >=kde-frameworks/kconfig-${KFMIN}:5
-   >=kde-frameworks/kcoreaddons-${KFMIN}:5
-   >=kde-frameworks/ki18n-${KFMIN}:5
-   >=kde-frameworks/kio-${KFMIN}:5
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   use test && local mycmakeargs=( 
-DCMAKE_DISABLE_FIND_PACKAGE_KF5KExiv2=true )
-
-   ecm_src_configure
-}

diff --git a/kde-apps/libkgeomap/metadata.xml b/kde-apps/libkgeomap/metadata.xml
deleted file mode 100644
index 2fdbf33d963..000
--- a/kde-apps/libkgeomap/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   k...@gentoo.org
-   Gentoo KDE Project
-   
-

diff --git a/profiles/package.mask b/profiles/package.mask
index afef0cf072c..a9bab3f8345 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -559,11 +559,6 @@ www-plugins/freshplayerplugin
 # Upstream dead, fork available, bug #684678. Masked for removal in 30 days.
 app-text/cutemarked
 
-# Andreas Sturmlechner  (2020-09-04)
-# Depends on deprecated dev-qt/qtwebkit, no more revdeps; bug #737928
-# Masked for removal in 30 days.
-kde-apps/libkgeomap
-
 # Louis Sautier  (2020-09-04)
 # Masked for removal in 30 days, no revdeps. Dependency of
 # previously removed dev-python/flask-bootstrap



[gentoo-commits] repo/gentoo:master commit in: www-plugins/freshplayerplugin/files/, profiles/, www-plugins/freshplayerplugin/

2020-10-04 Thread Andreas Sturmlechner
commit: 200a2c952c82bd44e6ea1342de7c59696931d8c9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Oct  4 18:34:37 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct  4 18:36:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=200a2c95

www-plugins/freshplayerplugin: Remove last-rited package

Closes: https://bugs.gentoo.org/694024
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 profiles/package.mask  |  5 --
 www-plugins/freshplayerplugin/Manifest |  1 -
 .../freshplayerplugin/files/0.3.5-cmake.patch  | 70 
 .../freshplayerplugin/files/0.3.9-ioctl.patch  | 11 
 .../files/freshplayerplugin-0.3.9-ffmpeg-4.patch   | 74 -
 .../freshplayerplugin-0.3.9-r1.ebuild  | 77 --
 www-plugins/freshplayerplugin/metadata.xml | 11 
 7 files changed, 249 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 9428cd48541..fead03099da 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -549,11 +549,6 @@ www-servers/cherokee
 # Removal in ~30 days. Bug #740868.
 dev-python/mini-amf
 
-# Andreas Sturmlechner  (2020-09-04)
-# No maintainer, defunct with modern browsers, bug #694024.
-# Masked for removal in 30 days.
-www-plugins/freshplayerplugin
-
 # Louis Sautier  (2020-09-04)
 # Masked for removal in 30 days, no revdeps. Dependency of
 # previously removed dev-python/flask-bootstrap

diff --git a/www-plugins/freshplayerplugin/Manifest 
b/www-plugins/freshplayerplugin/Manifest
deleted file mode 100644
index 1a31abda533..000
--- a/www-plugins/freshplayerplugin/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST freshplayerplugin-0.3.9.tar.gz 790261 BLAKE2B 
88526c01e7a06c7b295e5a7652602eb661097f869b30c8fd0978a4e03adea9d1fa75d35e5e9c0751d786c04f0247fc292aa0c1857cf1fa575eb0b11499bec7fc
 SHA512 
999d7c223dd493e43a0fa7874371c7b781fe5273b2661fc30f814832b4aafd23f297795b644f58553107ef962ca17ce58fb39a637d1ab7bdf470cd33e0b19cf8

diff --git a/www-plugins/freshplayerplugin/files/0.3.5-cmake.patch 
b/www-plugins/freshplayerplugin/files/0.3.5-cmake.patch
deleted file mode 100644
index f925dfa31eb..000
--- a/www-plugins/freshplayerplugin/files/0.3.5-cmake.patch
+++ /dev/null
@@ -1,70 +0,0 @@
-diff -uarN a/CMakeLists.txt b/CMakeLists.txt
 a/CMakeLists.txt   2015-04-25 11:17:24.0 -0400
-+++ b/CMakeLists.txt   2015-04-26 20:14:43.152014529 -0400
-@@ -61,35 +61,36 @@
- # optional dependencies
- message(STATUS "checking for optional dependencies")
- 
--pkg_check_modules(PULSEAUDIO QUIET libpulse)
--pkg_check_modules(JACK QUIET jack)
--pkg_check_modules(SOXR QUIET soxr)
- set(WITH_PULSEAUDIO TRUE CACHE STRING "enable PulseAudio support")
- set(WITH_JACK TRUE CACHE STRING "enable JACK Audio Connection Kit")
- 
--if (PULSEAUDIO_FOUND AND WITH_PULSEAUDIO)
-+if (WITH_PULSEAUDIO)
-+pkg_check_modules(PULSEAUDIO libpulse)
-+if (NOT PULSEAUDIO_FOUND)
-+message(FATAL_ERROR "PulseAudio requested but not found.")
-+endif()
- add_definitions(-DHAVE_PULSEAUDIO=1)
--message(STATUS "  found libpulse, version ${PULSEAUDIO_VERSION} 
(optional)")
-+message(STATUS "  found libpulse, version ${PULSEAUDIO_VERSION}")
- list(APPEND REQ_LIBRARY_DIRS ${PULSEAUDIO_LIBRARY_DIRS})
- list(APPEND REQ_INCLUDE_DIRS ${PULSEAUDIO_INCLUDE_DIRS})
- list(APPEND REQ_LIBRARIES${PULSEAUDIO_LIBRARIES})
--else()
--message(STATUS "  no libpulse found (optional)")
- endif()
- 
--if (JACK_FOUND AND WITH_JACK)
--message(STATUS "  found jack, version ${JACK_VERSION} (optional)")
--if (SOXR_FOUND)
--message(STATUS "  found soxr, version ${SOXR_VERSION}")
--add_definitions(-DHAVE_JACK=1)
--list(APPEND REQ_LIBRARY_DIRS "${JACK_LIBRARY_DIRS}" 
"${SOXR_LIBRARY_DIRS}")
--list(APPEND REQ_INCLUDE_DIRS "${JACK_INCLUDE_DIRS}" 
"${SOXR_INCLUDE_DIRS}")
--list(APPEND REQ_LIBRARIES"${JACK_LIBRARIES}" "${SOXR_LIBRARIES}")
--else()
--message(STATUS "  no soxr found, JACK output disabled")
-+if (WITH_JACK)
-+pkg_check_modules(JACK QUIET jack)
-+if (NOT JACK_FOUND)
-+message(FATAL_ERROR "JACK support requested but not found.")
-+endif()
-+pkg_check_modules(SOXR QUIET soxr)
-+if (NOT SOXR_FOUND)
-+message(FATAL_ERROR "SOXR libray not found but needed for JACK 
support.")
- endif()
--else()
--message(STATUS "  no jack found (optional)")
-+message(STATUS "  found jack, version ${JACK_VERSION}")
-+message(STATUS "  found soxr, version ${SOXR_VERSION}")
-+add_definitions(-DHAVE_JACK=1)
-+list(APPEND REQ_LIBRARY_DIRS "${JACK_LIBRARY_DIRS}" 
"${SOXR_LIBRARY_DIRS}")
-+list(APPEND REQ_INCLUDE_DIRS "${JACK_INCLUDE_DIRS}" 
"${SOXR_INCLUDE_DIRS}")
-+list(APPEND REQ_LIBRARIES"${JACK_LIBRARIES}" "${SOXR_LIBRARIES}")
- endif()
- 
- list(APPEND REQ_LIBRARIES img-resources)
 

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

2020-10-04 Thread Zac Medico
commit: 00dfa58fc8bba60c9fb6469d3b919ec64b654299
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Oct  4 18:34:09 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Oct  4 18:35:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00dfa58f

app-portage/mirrorselect: Remove setuptools dep

Closes: https://bugs.gentoo.org/746464
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Zac Medico  gentoo.org>

 app-portage/mirrorselect/mirrorselect-2.2.3.ebuild| 1 +
 app-portage/mirrorselect/mirrorselect-2.2.4-r1.ebuild | 1 +
 app-portage/mirrorselect/mirrorselect-2.2.6-r1.ebuild | 1 +
 app-portage/mirrorselect/mirrorselect-.ebuild | 1 +
 4 files changed, 4 insertions(+)

diff --git a/app-portage/mirrorselect/mirrorselect-2.2.3.ebuild 
b/app-portage/mirrorselect/mirrorselect-2.2.3.ebuild
index 6cffdf27d92..34f46b227a2 100644
--- a/app-portage/mirrorselect/mirrorselect-2.2.3.ebuild
+++ b/app-portage/mirrorselect/mirrorselect-2.2.3.ebuild
@@ -5,6 +5,7 @@ EAPI="5"
 
 PYTHON_COMPAT=( python3_6 )
 PYTHON_REQ_USE="xml"
+DISTUTILS_USE_SETUPTOOLS=no
 
 inherit eutils distutils-r1 prefix
 

diff --git a/app-portage/mirrorselect/mirrorselect-2.2.4-r1.ebuild 
b/app-portage/mirrorselect/mirrorselect-2.2.4-r1.ebuild
index ff6201f9662..56da6494456 100644
--- a/app-portage/mirrorselect/mirrorselect-2.2.4-r1.ebuild
+++ b/app-portage/mirrorselect/mirrorselect-2.2.4-r1.ebuild
@@ -5,6 +5,7 @@ EAPI="7"
 
 PYTHON_COMPAT=( python3_{6,7} )
 PYTHON_REQ_USE="xml"
+DISTUTILS_USE_SETUPTOOLS=no
 
 inherit eutils distutils-r1 prefix
 

diff --git a/app-portage/mirrorselect/mirrorselect-2.2.6-r1.ebuild 
b/app-portage/mirrorselect/mirrorselect-2.2.6-r1.ebuild
index 1d8e0c30f16..8b8ad529138 100644
--- a/app-portage/mirrorselect/mirrorselect-2.2.6-r1.ebuild
+++ b/app-portage/mirrorselect/mirrorselect-2.2.6-r1.ebuild
@@ -5,6 +5,7 @@ EAPI="7"
 
 PYTHON_COMPAT=( python3_{6,7,8} )
 PYTHON_REQ_USE="xml"
+DISTUTILS_USE_SETUPTOOLS=no
 
 inherit eutils distutils-r1 prefix
 

diff --git a/app-portage/mirrorselect/mirrorselect-.ebuild 
b/app-portage/mirrorselect/mirrorselect-.ebuild
index eaf8d49e634..86426dcb91c 100644
--- a/app-portage/mirrorselect/mirrorselect-.ebuild
+++ b/app-portage/mirrorselect/mirrorselect-.ebuild
@@ -5,6 +5,7 @@ EAPI="7"
 
 PYTHON_COMPAT=( python3_{6,7,8} )
 PYTHON_REQ_USE="xml"
+DISTUTILS_USE_SETUPTOOLS=no
 
 inherit eutils distutils-r1 git-r3 prefix
 



[gentoo-commits] proj/kde:master commit in: net-firewall/plasma-firewall/

2020-10-04 Thread Andreas Sturmlechner
commit: 7f965abe81b8636104b336fda446c631d1f7b4b7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Oct  4 16:38:02 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct  4 16:38:02 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=7f965abe

net-firewall/plasma-firewall: Add missing RDEPEND="${PYTHON_DEPS}"

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

 net-firewall/plasma-firewall/plasma-firewall-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-firewall/plasma-firewall/plasma-firewall-.ebuild 
b/net-firewall/plasma-firewall/plasma-firewall-.ebuild
index a6b6c8c3b1..c2176d1b72 100644
--- a/net-firewall/plasma-firewall/plasma-firewall-.ebuild
+++ b/net-firewall/plasma-firewall/plasma-firewall-.ebuild
@@ -34,6 +34,7 @@ DEPEND="
>=kde-frameworks/plasma-${KFMIN}:5
 "
 RDEPEND="${DEPEND}
+   ${PYTHON_DEPS}
|| (
net-firewall/firewalld
net-firewall/ufw



[gentoo-commits] proj/kde:master commit in: kde-apps/kig/

2020-10-04 Thread Andreas Sturmlechner
commit: 5958753816f96ecbaaede4b4cb67f1abab9bdb6b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Oct  4 16:32:38 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct  4 16:32:38 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=59587538

kde-apps/kig: Fix PkgMetadataXmlInvalidPkgRef

sci-mathematics/geogebra has been last-rited.

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

 kde-apps/kig/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kig/metadata.xml b/kde-apps/kig/metadata.xml
index dced816a5d..2824c26914 100644
--- a/kde-apps/kig/metadata.xml
+++ b/kde-apps/kig/metadata.xml
@@ -6,7 +6,7 @@
Gentoo KDE Project


-   Support files created by 
sci-mathematics/geogebra
+   Support files created by GeoGebra
Support Python scripting

 



[gentoo-commits] repo/proj/guru:master commit in: dev-vcs/git-extras/

2020-10-04 Thread Andrew Ammerlaan
commit: 45968e08106988ad83e39e56a7d16fb9756ec300
Author: Petrus Zhao  gmail  com>
AuthorDate: Sun Oct  4 09:03:20 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Sun Oct  4 09:03:20 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=45968e08

dev-vcs/git-extras: version bump 6.10 and drop old

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Petrus Zhao  gmail.com>

 dev-vcs/git-extras/Manifest | 2 +-
 dev-vcs/git-extras/{git-extras-6.0.0.ebuild => git-extras-6.1.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/git-extras/Manifest b/dev-vcs/git-extras/Manifest
index 748da69c..47bb99cf 100644
--- a/dev-vcs/git-extras/Manifest
+++ b/dev-vcs/git-extras/Manifest
@@ -1 +1 @@
-DIST git-extras-6.0.0.tar.gz 149480 BLAKE2B 
2b9152303f3b27f343727e95100147588e941c51d3a6c09888644cdfa49e007603c5f9b4f4fccdab4497ec94e85b925519b2ca05c30f23cf7c1092aff47c1dea
 SHA512 
54ed9d12f42024eba77d2d08f0d17e72af65bd21a98bc921a556788f18e01fba9e25e250bf12248b6dfa38b93fb763fad1aa623de7dccb1dc28da7b9296fb58b
+DIST git-extras-6.1.0.tar.gz 153503 BLAKE2B 
3450edecb3116e19ffcf918b118aee04f025c06d812e29e8701f35a3c466b13d2578d41c8e1ee93327743d0019bf98bb3f397189e19435f89e3a259ff1b82747
 SHA512 
098415339177f802299d93947e2979a2fc6c2935eb2d735cd71ad76e035d5489e4c8d9009e2673c109b28e393319745be249cc195814087d59b436f4a56dabab

diff --git a/dev-vcs/git-extras/git-extras-6.0.0.ebuild 
b/dev-vcs/git-extras/git-extras-6.1.0.ebuild
similarity index 100%
rename from dev-vcs/git-extras/git-extras-6.0.0.ebuild
rename to dev-vcs/git-extras/git-extras-6.1.0.ebuild



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

2020-10-04 Thread Piotr Karbowski
commit: c3a41392c529faf2a3221c19879bc3fabef29799
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Sun Oct  4 18:01:05 2020 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Sun Oct  4 18:01:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3a41392

net-p2p/nicotine+: x11-libs/gtk+:3[introspection] dependency.

Closes: https://bugs.gentoo.org/743514
Signed-off-by: Piotr Karbowski  gentoo.org>

 net-p2p/nicotine+/nicotine+-2.0.1-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-p2p/nicotine+/nicotine+-2.0.1-r1.ebuild 
b/net-p2p/nicotine+/nicotine+-2.0.1-r1.ebuild
index 301bedcae81..5d608d8deb8 100644
--- a/net-p2p/nicotine+/nicotine+-2.0.1-r1.ebuild
+++ b/net-p2p/nicotine+/nicotine+-2.0.1-r1.ebuild
@@ -20,6 +20,7 @@ DEPEND="${PYTHON_DEPS}"
 RDEPEND="
dev-python/pygobject:3[${PYTHON_USEDEP}]
media-libs/mutagen[${PYTHON_USEDEP}]
+   x11-libs/gtk+:3[introspection]
${DEPEND}
 "
 



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

2020-10-04 Thread Sam James
commit: 3315c71b6030ba2d3af242b1e21c7634eabeb300
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 17:55:51 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 17:55:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3315c71b

dev-python/fsspec: Stabilize 0.8.0 ALLARCHES, #741254

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

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

diff --git a/dev-python/fsspec/fsspec-0.8.0.ebuild 
b/dev-python/fsspec/fsspec-0.8.0.ebuild
index 38f37978fe0..7fbcba959c8 100644
--- a/dev-python/fsspec/fsspec-0.8.0.ebuild
+++ b/dev-python/fsspec/fsspec-0.8.0.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 
 BDEPEND="
dev-python/versioneer[${PYTHON_USEDEP}]



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

2020-10-04 Thread Sam James
commit: 7b8d3e45b8f6f6b988bed18857e7cde5d748f9ab
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 17:55:16 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 17:55:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b8d3e45

dev-python/fsspec: throw in another test dep (aiohttp)

The previous error message was misleading, it was missing
both aiohttp and requests, and only mentioned the latter!

Bug: https://bugs.gentoo.org/746566
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James  gentoo.org>

 dev-python/fsspec/fsspec-0.8.0.ebuild | 1 +
 dev-python/fsspec/fsspec-0.8.2.ebuild | 1 +
 2 files changed, 2 insertions(+)

diff --git a/dev-python/fsspec/fsspec-0.8.0.ebuild 
b/dev-python/fsspec/fsspec-0.8.0.ebuild
index 30d83a35081..38f37978fe0 100644
--- a/dev-python/fsspec/fsspec-0.8.0.ebuild
+++ b/dev-python/fsspec/fsspec-0.8.0.ebuild
@@ -23,6 +23,7 @@ KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 BDEPEND="
dev-python/versioneer[${PYTHON_USEDEP}]
test? (
+   dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-vcs/git

diff --git a/dev-python/fsspec/fsspec-0.8.2.ebuild 
b/dev-python/fsspec/fsspec-0.8.2.ebuild
index c315be1c916..b26057db666 100644
--- a/dev-python/fsspec/fsspec-0.8.2.ebuild
+++ b/dev-python/fsspec/fsspec-0.8.2.ebuild
@@ -23,6 +23,7 @@ KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 BDEPEND="
dev-python/versioneer[${PYTHON_USEDEP}]
test? (
+   dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-vcs/git



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

2020-10-04 Thread Sam James
commit: ba51d57adffa7c7032555e787294be0cc72c7cd5
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 17:41:18 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 17:41:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba51d57a

dev-python/fsspec: add missing test dependency (requests)

Closes: https://bugs.gentoo.org/746566
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James  gentoo.org>

 dev-python/fsspec/fsspec-0.8.0.ebuild | 1 +
 dev-python/fsspec/fsspec-0.8.2.ebuild | 1 +
 2 files changed, 2 insertions(+)

diff --git a/dev-python/fsspec/fsspec-0.8.0.ebuild 
b/dev-python/fsspec/fsspec-0.8.0.ebuild
index a70c1f7d542..30d83a35081 100644
--- a/dev-python/fsspec/fsspec-0.8.0.ebuild
+++ b/dev-python/fsspec/fsspec-0.8.0.ebuild
@@ -24,6 +24,7 @@ BDEPEND="
dev-python/versioneer[${PYTHON_USEDEP}]
test? (
dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
dev-vcs/git
)"
 

diff --git a/dev-python/fsspec/fsspec-0.8.2.ebuild 
b/dev-python/fsspec/fsspec-0.8.2.ebuild
index 041adfc0de5..c315be1c916 100644
--- a/dev-python/fsspec/fsspec-0.8.2.ebuild
+++ b/dev-python/fsspec/fsspec-0.8.2.ebuild
@@ -24,6 +24,7 @@ BDEPEND="
dev-python/versioneer[${PYTHON_USEDEP}]
test? (
dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
dev-vcs/git
)"
 



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

2020-10-04 Thread Sam James
commit: 431eeb39a763180abaa8cafadf7661c3abbd3f44
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 17:39:10 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 17:39:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=431eeb39

media-libs/libjpeg-turbo: cleanup old

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

 media-libs/libjpeg-turbo/Manifest  |   1 -
 .../libjpeg-turbo/libjpeg-turbo-2.0.4-r1.ebuild| 117 -
 2 files changed, 118 deletions(-)

diff --git a/media-libs/libjpeg-turbo/Manifest 
b/media-libs/libjpeg-turbo/Manifest
index 7b869b81a33..e62be3c5192 100644
--- a/media-libs/libjpeg-turbo/Manifest
+++ b/media-libs/libjpeg-turbo/Manifest
@@ -1,4 +1,3 @@
 DIST libjpeg-turbo-1.5.3.tar.gz 1658672 BLAKE2B 
4d2182802aa9963fa57ec2c4fb5cf0a586847d43803e4c2d2e12cf1144c4da0ede7fdbace5965c77cd6df4547090165615960ebb65c964fd2fac823c021f50b7
 SHA512 
b611b1cc3d1ddedddad871854b42449d053a5f910ed1bdfa45c98e0270f4ecc110fde3a10111d2b876d847a826fa634f09c0bb8c357056c9c3a91c9065eb5202
-DIST libjpeg-turbo-2.0.4.tar.gz 2161812 BLAKE2B 
9be870a5bafaae279646941b848b69fdf7c95ec08a686b01674f473ef33fe5923a04ba8a2d57df84384530308ca46fc3880a404c0eff769129417a553faed3bb
 SHA512 
708c2e7418d9ed5abca313e2ff5a08f8176d79cad2127573cda6036583c201973db4cfb0eafc0fc8f57ecc7b000d2b4af95980de54de5a0aed45969e993a5bf9
 DIST libjpeg-turbo-2.0.5.tar.gz 2162983 BLAKE2B 
d9204e06f075173a420931457c3738aba57a820719fb878765114b169ebb8212df18165a5f86f22126dd7eb8f8aab03caa2ba7f55e87d19196dba094e4a959fa
 SHA512 
5bf9ecf069b43783ff24365febf36dda69ccb92d6397efec6069b2b4f359bfd7b87934a6ce4311873220fccc73acabdacef5ce0604b79209eb1912e8ba478555
 DIST libjpeg8_8d-2.debian.tar.gz 14764 BLAKE2B 
e93d12afa062da28b717b540492221f70e8d9ccf3885371647cf85a2937f938ca723d4a27d5e1c5d79c26aa25dddf69b38754558851a1704172e8b52baf8e17c
 SHA512 
8c5959fb7583a2d61e9442187f67b91b45e72d9dd30db3360d583a3b5d8e1a908db5659f760bdd455b3056e6ae3535b2fd3b847df3d58b140a1816b754003675

diff --git a/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.4-r1.ebuild 
b/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.4-r1.ebuild
deleted file mode 100644
index 45da50975b4..000
--- a/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.4-r1.ebuild
+++ /dev/null
@@ -1,117 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_ECLASS=cmake
-inherit cmake-multilib java-pkg-opt-2 libtool toolchain-funcs
-
-DESCRIPTION="MMX, SSE, and SSE2 SIMD accelerated JPEG library"
-HOMEPAGE="https://libjpeg-turbo.org/ 
https://sourceforge.net/projects/libjpeg-turbo/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
-   mirror://gentoo/libjpeg8_8d-2.debian.tar.gz"
-
-LICENSE="BSD IJG ZLIB"
-SLOT="0"
-[[ "$(ver_cut 3)" -ge 90 ]] || \
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
-IUSE="java static-libs"
-
-ASM_DEPEND="|| ( dev-lang/nasm dev-lang/yasm )"
-COMMON_DEPEND="!media-libs/jpeg:0
-   !media-libs/jpeg:62"
-RDEPEND="${COMMON_DEPEND}
-   java? ( >=virtual/jre-1.5 )"
-DEPEND="${COMMON_DEPEND}
-   amd64? ( ${ASM_DEPEND} )
-   x86? ( ${ASM_DEPEND} )
-   amd64-fbsd? ( ${ASM_DEPEND} )
-   x86-fbsd? ( ${ASM_DEPEND} )
-   amd64-linux? ( ${ASM_DEPEND} )
-   x86-linux? ( ${ASM_DEPEND} )
-   x64-macos? ( ${ASM_DEPEND} )
-   x64-cygwin? ( ${ASM_DEPEND} )
-   java? ( >=virtual/jdk-1.5 )"
-
-MULTILIB_WRAPPED_HEADERS=( /usr/include/jconfig.h )
-
-PATCHES=(
-   "${FILESDIR}"/${P}-CVE-2020-13790.patch
-)
-
-src_prepare() {
-   local FILE
-   ln -snf ../debian/extra/*.c . || die
-
-   for FILE in ../debian/extra/*.c; do
-   FILE=${FILE##*/}
-   cat >> CMakeLists.txt <> CMakeLists.txt <> CMakeLists.txt 

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

2020-10-04 Thread Sam James
commit: 3090e82542e7c97c9555f9968bc02664d99774a0
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 17:38:42 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 17:39:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3090e825

media-libs/libjpeg-turbo: security cleanup

Bug: https://bugs.gentoo.org/727010
Bug: https://bugs.gentoo.org/727910
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James  gentoo.org>

 media-libs/libjpeg-turbo/Manifest  |   1 -
 .../libjpeg-turbo/libjpeg-turbo-2.0.3.ebuild   | 100 -
 2 files changed, 101 deletions(-)

diff --git a/media-libs/libjpeg-turbo/Manifest 
b/media-libs/libjpeg-turbo/Manifest
index b8a65152bed..7b869b81a33 100644
--- a/media-libs/libjpeg-turbo/Manifest
+++ b/media-libs/libjpeg-turbo/Manifest
@@ -1,5 +1,4 @@
 DIST libjpeg-turbo-1.5.3.tar.gz 1658672 BLAKE2B 
4d2182802aa9963fa57ec2c4fb5cf0a586847d43803e4c2d2e12cf1144c4da0ede7fdbace5965c77cd6df4547090165615960ebb65c964fd2fac823c021f50b7
 SHA512 
b611b1cc3d1ddedddad871854b42449d053a5f910ed1bdfa45c98e0270f4ecc110fde3a10111d2b876d847a826fa634f09c0bb8c357056c9c3a91c9065eb5202
-DIST libjpeg-turbo-2.0.3.tar.gz 2161279 BLAKE2B 
c0def6d6d402eb2070f4861741f9579e5c360e8bc9a64924c7d53c3c65cc8d4577c01e2cf6acf8ddbe7bddc96540f605ddb47d1651a7400738638fb06928824b
 SHA512 
ca7d4dcc5b34e23831ac450b65b8f92894d35e4afba0c52ac9e0c7dc6b41d4fa2bad66eb79198245032ec02b0b2e88cef39b8c696de17b6a869e3093a6b70e36
 DIST libjpeg-turbo-2.0.4.tar.gz 2161812 BLAKE2B 
9be870a5bafaae279646941b848b69fdf7c95ec08a686b01674f473ef33fe5923a04ba8a2d57df84384530308ca46fc3880a404c0eff769129417a553faed3bb
 SHA512 
708c2e7418d9ed5abca313e2ff5a08f8176d79cad2127573cda6036583c201973db4cfb0eafc0fc8f57ecc7b000d2b4af95980de54de5a0aed45969e993a5bf9
 DIST libjpeg-turbo-2.0.5.tar.gz 2162983 BLAKE2B 
d9204e06f075173a420931457c3738aba57a820719fb878765114b169ebb8212df18165a5f86f22126dd7eb8f8aab03caa2ba7f55e87d19196dba094e4a959fa
 SHA512 
5bf9ecf069b43783ff24365febf36dda69ccb92d6397efec6069b2b4f359bfd7b87934a6ce4311873220fccc73acabdacef5ce0604b79209eb1912e8ba478555
 DIST libjpeg8_8d-2.debian.tar.gz 14764 BLAKE2B 
e93d12afa062da28b717b540492221f70e8d9ccf3885371647cf85a2937f938ca723d4a27d5e1c5d79c26aa25dddf69b38754558851a1704172e8b52baf8e17c
 SHA512 
8c5959fb7583a2d61e9442187f67b91b45e72d9dd30db3360d583a3b5d8e1a908db5659f760bdd455b3056e6ae3535b2fd3b847df3d58b140a1816b754003675

diff --git a/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.3.ebuild 
b/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.3.ebuild
deleted file mode 100644
index 3ae6b4ab219..000
--- a/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.3.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_ECLASS=cmake
-inherit cmake-multilib java-pkg-opt-2 libtool toolchain-funcs
-
-DESCRIPTION="MMX, SSE, and SSE2 SIMD accelerated JPEG library"
-HOMEPAGE="https://libjpeg-turbo.org/ 
https://sourceforge.net/projects/libjpeg-turbo/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
-   mirror://gentoo/libjpeg8_8d-2.debian.tar.gz"
-
-LICENSE="BSD IJG ZLIB"
-SLOT="0"
-[[ "$(ver_cut 3)" -ge 90 ]] || \
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
-IUSE="java static-libs"
-
-ASM_DEPEND="|| ( dev-lang/nasm dev-lang/yasm )"
-COMMON_DEPEND="!media-libs/jpeg:0
-   !media-libs/jpeg:62"
-RDEPEND="${COMMON_DEPEND}
-   java? ( >=virtual/jre-1.5 )"
-DEPEND="${COMMON_DEPEND}
-   amd64? ( ${ASM_DEPEND} )
-   x86? ( ${ASM_DEPEND} )
-   amd64-fbsd? ( ${ASM_DEPEND} )
-   x86-fbsd? ( ${ASM_DEPEND} )
-   amd64-linux? ( ${ASM_DEPEND} )
-   x86-linux? ( ${ASM_DEPEND} )
-   x64-macos? ( ${ASM_DEPEND} )
-   x64-cygwin? ( ${ASM_DEPEND} )
-   java? ( >=virtual/jdk-1.5 )"
-
-MULTILIB_WRAPPED_HEADERS=( /usr/include/jconfig.h )
-
-src_prepare() {
-   default
-
-   cmake_src_prepare
-   java-pkg-opt-2_src_prepare
-}
-
-multilib_src_configure() {
-   if multilib_is_native_abi && use java ; then
-   export JAVACFLAGS="$(java-pkg_javac-args)"
-   export JNI_CFLAGS="$(java-pkg_get-jni-cflags)"
-   fi
-
-   local mycmakeargs=(
-   -DCMAKE_INSTALL_DEFAULT_DOCDIR="${EPREFIX}/usr/share/doc/${PF}"
-   -DENABLE_STATIC="$(usex static-libs)"
-   -DWITH_JAVA="$(multilib_native_usex java)"
-   -DWITH_MEM_SRCDST=ON
-   )
-   [[ ${ABI} == "x32" ]] && mycmakeargs+=( -DREQUIRE_SIMD=OFF ) #420239
-   cmake_src_configure
-}
-
-multilib_src_compile() {
-   cmake_src_compile
-
-   if multilib_is_native_abi ; then
-   pushd "${WORKDIR}/debian/extra" &>/dev/null || die
-   emake CC="$(tc-getCC)" CFLAGS="${LDFLAGS} ${CFLAGS}"
-   popd &>/dev/null || die
-   fi
-}
-

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

2020-10-04 Thread Thomas Deutschmann
commit: d84d8a72af71413d75ac356dc62910e27ead1ba3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Oct  4 17:33:15 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Oct  4 17:33:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d84d8a72

dev-util/cbindgen: rollover stable keywords

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

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

diff --git a/dev-util/cbindgen/cbindgen-0.14.6.ebuild 
b/dev-util/cbindgen/cbindgen-0.14.6.ebuild
index bcf078abdef..4c5e62f3154 100644
--- a/dev-util/cbindgen/cbindgen-0.14.6.ebuild
+++ b/dev-util/cbindgen/cbindgen-0.14.6.ebuild
@@ -51,5 +51,5 @@ HOMEPAGE="https://github.com/eqrion/cbindgen/;
 SRC_URI="$(cargo_crate_uris ${CRATES})"
 LICENSE="MIT MPL-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
 QA_FLAGS_IGNORED="usr/bin/cbindgen"



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

2020-10-04 Thread Thomas Deutschmann
commit: f85a9c9e0f32b1cafd66a4b98f4ffa20abeb1e6d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Oct  4 17:33:31 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Oct  4 17:33:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f85a9c9e

dev-util/cbindgen: drop old

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

 dev-util/cbindgen/Manifest   |  1 -
 dev-util/cbindgen/cbindgen-0.14.4.ebuild | 55 
 2 files changed, 56 deletions(-)

diff --git a/dev-util/cbindgen/Manifest b/dev-util/cbindgen/Manifest
index 2456eb6cf3f..9aa884a1aeb 100644
--- a/dev-util/cbindgen/Manifest
+++ b/dev-util/cbindgen/Manifest
@@ -2,7 +2,6 @@ DIST ansi_term-0.11.0.crate 17087 BLAKE2B 
9bd35c045a01ce4c6c4a5db1b4f15e9412bb97
 DIST atty-0.2.13.crate 4764 BLAKE2B 
673eea1d377fc3aca792a3a8bd2a5c058f3041abc76a8760dd6acab7f19fa610f812c57d81a4dbf773675cad3df483904c66e66b45d83393402f747c6db60d89
 SHA512 
4554ca7dedb4c2e8693e5847ef1fe66161ed4cb2c19156bb03f41ce7e7ea21838369dabaf447a60d1468de8bfbb7087438c12934c4569dde63df074f168569ad
 DIST bitflags-1.2.1.crate 16745 BLAKE2B 
0fa6d3ce44aad7616d5cd02aad8c1d0b0fed4022650eb43067c4a72e6fc88da05442674fa51826e4858a47c9de233e1ba2229820af094197cd11bb416ceffb2b
 SHA512 
ad89b3798845e23737a620bba581c2ff1ff3e15bac12555c765e201d2c0b90ecea0cdbc5b5b1a3fa9858c385e8e041f8226f5acfae5bbbe9925643fff2bf3f0b
 DIST c2-chacha-0.2.3.crate 13336 BLAKE2B 
0b548907ce4c9ee502ec96307ca003d168e8bcf9007ec667661d158f33de36fc2e832cb3c36cadc2523f6ba8b9aeff4dcb16e7f95a9a34ae02e8bd5d00f65cf2
 SHA512 
302498f75d1befdb8bf8b61d0eff2762f0e86000c3909d819a377be2fec72e830bfb4530e24059906b499cef17ab56229f5627fb998ad9ba34a7c6c0de748538
-DIST cbindgen-0.14.4.crate 172123 BLAKE2B 
e86fe619d824b25884570c7a34bdb6ceb3d4906b2309a3c16b29b46284f7bd85599191a54605eaf2786ce4f570b647a469a2d02831919d9c0a17feda694f
 SHA512 
1d1dfbb159aad25ecbe77368ced803a0cf219a00238364d95b1866f371912e10932e9a6ccda7acd8541b270b1880bda4a29af095a8d83b79a792e31d1ce2bd78
 DIST cbindgen-0.14.6.crate 174606 BLAKE2B 
9b1145513b8ff468b4afc51d44e038af48bf925901e1d8b12942e6ec19aed84e984de8024f2684965c6e68d68ae3c772b2a022d1cded9495011c2210156aeac7
 SHA512 
160165c1e273b571cedde7e7911c56d81408e1fb416d6415329a7a8b4f366a0dc66ceb8974da9ccf3d5dd20af86785cc57c8b788484b17da51372810c25b01bb
 DIST cfg-if-0.1.10.crate 7933 BLAKE2B 
063a96ed176f34f788666b40adc483d147fc011dee941ab60569ddd0e57502b5dd06ed71090f4e14ce005d06e240500a286f74652615e9d068fba649610d8cf8
 SHA512 
9d22616bfb4a75770a828a0a3cddac6787297a5fdc53eb17e25811cc94de717f2de8bd66d53c5d65ba1c83d8892aefee5ae758cf56a1ef0a0c3120f70b244339
 DIST clap-2.33.0.crate 196458 BLAKE2B 
3bb62d817afc77b421a6282746b9b61367d224de6b614c7ed66bde452ce1046728077dab3368a46635b5c74d82ba3196586d87c0201478ce5b89638910dadb1a
 SHA512 
f1075031414d48e4340bfe308904a95a31b72460724773c52a0bc8c004e625a04c904a39fc5420cb8c26a633321f9b5f4f69019c7aae5ed89900b63ed8c21a91

diff --git a/dev-util/cbindgen/cbindgen-0.14.4.ebuild 
b/dev-util/cbindgen/cbindgen-0.14.4.ebuild
deleted file mode 100644
index 17e495dffdf..000
--- a/dev-util/cbindgen/cbindgen-0.14.4.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 2017-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-CRATES="
-ansi_term-0.11.0
-atty-0.2.13
-bitflags-1.2.1
-c2-chacha-0.2.3
-cbindgen-0.14.4
-cfg-if-0.1.10
-clap-2.33.0
-getrandom-0.1.13
-heck-0.3.1
-itoa-0.4.4
-libc-0.2.66
-log-0.4.8
-ppv-lite86-0.2.6
-proc-macro2-1.0.6
-quote-1.0.2
-rand-0.7.2
-rand_chacha-0.2.1
-rand_core-0.5.1
-rand_hc-0.2.0
-redox_syscall-0.1.56
-remove_dir_all-0.5.2
-ryu-1.0.2
-serde-1.0.104
-serde_derive-1.0.104
-serde_json-1.0.44
-strsim-0.8.0
-syn-1.0.11
-tempfile-3.1.0
-textwrap-0.11.0
-toml-0.5.5
-unicode-segmentation-1.6.0
-unicode-width-0.1.7
-unicode-xid-0.2.0
-vec_map-0.8.1
-wasi-0.7.0
-winapi-0.3.8
-winapi-i686-pc-windows-gnu-0.4.0
-winapi-x86_64-pc-windows-gnu-0.4.0
-"
-
-inherit cargo
-
-DESCRIPTION="A tool for generating C bindings to Rust code"
-HOMEPAGE="https://github.com/eqrion/cbindgen/;
-SRC_URI="$(cargo_crate_uris ${CRATES})"
-LICENSE="MIT MPL-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
-QA_FLAGS_IGNORED="usr/bin/cbindgen"



[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird-bin/

2020-10-04 Thread Thomas Deutschmann
commit: 58060dcc8f4eea95f7e32f48e6fa6313e5b2e14e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Oct  4 17:32:01 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Oct  4 17:32:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58060dcc

mail-client/thunderbird-bin: drop package to project

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

 mail-client/thunderbird-bin/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/mail-client/thunderbird-bin/metadata.xml 
b/mail-client/thunderbird-bin/metadata.xml
index ef031ce2dfa..1e8158dc0e0 100644
--- a/mail-client/thunderbird-bin/metadata.xml
+++ b/mail-client/thunderbird-bin/metadata.xml
@@ -1,10 +1,6 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   whi...@gentoo.org
-   Thomas Deutschmann
-   

mozi...@gentoo.org
Gentoo Mozilla Team



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/enigmail/

2020-10-04 Thread Thomas Deutschmann
commit: dc85050a2c2850fa200fd27c69f17965289e68a7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Oct  4 17:29:23 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Oct  4 17:30:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc85050a

x11-plugins/enigmail: rollover stable keywords

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

 x11-plugins/enigmail/enigmail-2.1.8.ebuild | 2 +-
 x11-plugins/enigmail/enigmail-2.2.4.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/enigmail/enigmail-2.1.8.ebuild 
b/x11-plugins/enigmail/enigmail-2.1.8.ebuild
index 665dd902895..53f90a93be8 100644
--- a/x11-plugins/enigmail/enigmail-2.1.8.ebuild
+++ b/x11-plugins/enigmail/enigmail-2.1.8.ebuild
@@ -21,7 +21,7 @@ else
SRC_URI="https://www.enigmail.net/download/beta/${P/_/-}.tar.gz;
else
SRC_URI="https://www.enigmail.net/download/source/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
+   KEYWORDS="~alpha amd64 ~arm ppc ppc64 x86 ~amd64-linux 
~x86-linux"
fi
S="${WORKDIR}/${PN}"
 fi

diff --git a/x11-plugins/enigmail/enigmail-2.2.4.ebuild 
b/x11-plugins/enigmail/enigmail-2.2.4.ebuild
index b990489fba0..3d4a1620e64 100644
--- a/x11-plugins/enigmail/enigmail-2.2.4.ebuild
+++ b/x11-plugins/enigmail/enigmail-2.2.4.ebuild
@@ -21,7 +21,7 @@ else
SRC_URI="https://www.enigmail.net/download/beta/${P/_/-}.tar.gz;
else
SRC_URI="https://www.enigmail.net/download/source/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
+   KEYWORDS="~alpha amd64 ~arm ppc ppc64 x86 ~amd64-linux 
~x86-linux"
fi
S="${WORKDIR}/${PN}"
 fi



[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird/

2020-10-04 Thread Thomas Deutschmann
commit: d61d750c8927a6a2b51d8e2ae448d48d875cc259
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Oct  4 17:11:39 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Oct  4 17:30:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d61d750c

mail-client/thunderbird: synchronize with mail-client/thunderbird-bin

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

 mail-client/thunderbird/thunderbird-78.3.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mail-client/thunderbird/thunderbird-78.3.1.ebuild 
b/mail-client/thunderbird/thunderbird-78.3.1.ebuild
index 7c0951f4674..4b20c2824a5 100644
--- a/mail-client/thunderbird/thunderbird-78.3.1.ebuild
+++ b/mail-client/thunderbird/thunderbird-78.3.1.ebuild
@@ -811,9 +811,9 @@ src_install() {
# Install system-wide preferences
local PREFS_DIR="${MOZILLA_FIVE_HOME}/defaults/pref"
insinto "${PREFS_DIR}"
-   newins "${FILESDIR}"/gentoo-default-prefs.js all-gentoo.js
+   newins "${FILESDIR}"/gentoo-default-prefs.js gentoo-prefs.js
 
-   local GENTOO_PREFS="${ED}${PREFS_DIR}/all-gentoo.js"
+   local GENTOO_PREFS="${ED}${PREFS_DIR}/gentoo-prefs.js"
 
# Set dictionary path to use system hunspell
cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set 
spellchecker.dictionary_path pref"



[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird-bin/

2020-10-04 Thread Thomas Deutschmann
commit: f98e001ece9533f84a8e18983a4ae88506f5c61c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Oct  4 16:57:23 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Oct  4 17:30:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f98e001e

mail-client/thunderbird-bin: drop USE=gmp-autoupdate

Not used by thunderbird.

Signed-off-by: Thomas Deutschmann  gentoo.org>

 mail-client/thunderbird-bin/metadata.xml   |  4 
 .../thunderbird-bin/thunderbird-bin-78.3.1.ebuild  | 28 +-
 2 files changed, 1 insertion(+), 31 deletions(-)

diff --git a/mail-client/thunderbird-bin/metadata.xml 
b/mail-client/thunderbird-bin/metadata.xml
index e679043a413..ef031ce2dfa 100644
--- a/mail-client/thunderbird-bin/metadata.xml
+++ b/mail-client/thunderbird-bin/metadata.xml
@@ -11,9 +11,5 @@


Enable crash reporter for bugs
-   
-   Allow Gecko Media Plugins (binary blobs) to be 
automatically
-   downloaded and kept up-to-date in user profiles
-   

 

diff --git a/mail-client/thunderbird-bin/thunderbird-bin-78.3.1.ebuild 
b/mail-client/thunderbird-bin/thunderbird-bin-78.3.1.ebuild
index 4c93b125747..e74b8ec605e 100644
--- a/mail-client/thunderbird-bin/thunderbird-bin-78.3.1.ebuild
+++ b/mail-client/thunderbird-bin/thunderbird-bin-78.3.1.ebuild
@@ -31,7 +31,7 @@ HOMEPAGE="https://www.thunderbird.net/;
 KEYWORDS="-* amd64 x86"
 SLOT="0/$(ver_cut 1)"
 LICENSE="MPL-2.0 GPL-2 LGPL-2.1"
-IUSE="+alsa +ffmpeg +gmp-autoupdate +pulseaudio selinux startup-notification 
wayland"
+IUSE="+alsa +ffmpeg +pulseaudio selinux startup-notification wayland"
 
 RESTRICT="strip"
 
@@ -77,12 +77,6 @@ RDEPEND="${CDEPEND}
 
 QA_PREBUILT="opt/${MOZ_PN}/*"
 
-# Allow MOZ_GMP_PLUGIN_LIST to be set in an eclass or
-# overridden in the enviromnent (advanced hackers only)
-if [[ -z "${MOZ_GMP_PLUGIN_LIST+set}" ]] ; then
-   MOZ_GMP_PLUGIN_LIST=( gmp-gmpopenh264 gmp-widevinecdm )
-fi
-
 MOZ_LANGS=(
af ar ast be bg br ca cak cs cy da de dsb el en-CA en-GB en-US
es-AR es-ES et eu fa fi fr fy-NL ga-IE gd gl he hr hsb hu hy-AM
@@ -198,16 +192,6 @@ src_install() {
 
local GENTOO_PREFS="${ED}${PREFS_DIR}/all-gentoo.js"
 
-   if ! use gmp-autoupdate ; then
-   local plugin
-   for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do
-   einfo "Disabling auto-update for ${plugin} plugin ..."
-   cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to 
disable autoupdate for ${plugin} media plugin"
-   pref("media.${plugin}.autoupdate",   false);
-   EOF
-   done
-   fi
-
# Install language packs
local langpacks=( $(find "${WORKDIR}/language_packs" -type f -name 
'*.xpi') )
if [[ -n "${langpacks}" ]] ; then
@@ -310,16 +294,6 @@ src_install() {
 pkg_postinst() {
xdg_pkg_postinst
 
-   if ! use gmp-autoupdate ; then
-   elog "USE='-gmp-autoupdate' has disabled the following plugins 
from updating or"
-   elog "installing into new profiles:"
-   local plugin
-   for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do
-   elog "\t ${plugin}"
-   done
-   elog
-   fi
-
if ! has_version 'gnome-base/gconf' || ! has_version 'gnome-base/orbit' 
\
|| ! has_version 'net-misc/curl'; then
einfo



[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird-bin/

2020-10-04 Thread Thomas Deutschmann
commit: 2e20415ec34659dacd168e155e84d7ba46a0fbb4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Oct  4 17:01:42 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Oct  4 17:30:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e20415e

mail-client/thunderbird-bin: install prefs in correct location

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

 ...underbird-bin-78.3.1.ebuild => thunderbird-bin-78.3.1-r1.ebuild} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/mail-client/thunderbird-bin/thunderbird-bin-78.3.1.ebuild 
b/mail-client/thunderbird-bin/thunderbird-bin-78.3.1-r1.ebuild
similarity index 98%
rename from mail-client/thunderbird-bin/thunderbird-bin-78.3.1.ebuild
rename to mail-client/thunderbird-bin/thunderbird-bin-78.3.1-r1.ebuild
index 4f1ebb239d2..31892aaca85 100644
--- a/mail-client/thunderbird-bin/thunderbird-bin-78.3.1.ebuild
+++ b/mail-client/thunderbird-bin/thunderbird-bin-78.3.1-r1.ebuild
@@ -181,11 +181,11 @@ src_install() {
newins "${FILESDIR}"/disable-auto-update.policy.json policies.json
 
# Install system-wide preferences
-   local PREFS_DIR="${MOZILLA_FIVE_HOME}/browser/defaults/preferences"
+   local PREFS_DIR="${MOZILLA_FIVE_HOME}/defaults/pref"
insinto "${PREFS_DIR}"
-   newins "${FILESDIR}"/gentoo-default-prefs.js all-gentoo.js
+   newins "${FILESDIR}"/gentoo-default-prefs.js gentoo-prefs.js
 
-   local GENTOO_PREFS="${ED}${PREFS_DIR}/all-gentoo.js"
+   local GENTOO_PREFS="${ED}${PREFS_DIR}/gentoo-prefs.js"
 
# Install language packs
local langpacks=( $(find "${WORKDIR}/language_packs" -type f -name 
'*.xpi') )



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/enigmail/

2020-10-04 Thread Thomas Deutschmann
commit: 641c62e3f83ebe9de3d4a3cfb1ad03a9cb363270
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Oct  4 17:29:43 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Oct  4 17:30:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=641c62e3

x11-plugins/enigmail: drop old

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

 x11-plugins/enigmail/Manifest  |  1 -
 x11-plugins/enigmail/enigmail-2.1.7.ebuild | 84 --
 2 files changed, 85 deletions(-)

diff --git a/x11-plugins/enigmail/Manifest b/x11-plugins/enigmail/Manifest
index e5be4a82cea..cd668a07c3b 100644
--- a/x11-plugins/enigmail/Manifest
+++ b/x11-plugins/enigmail/Manifest
@@ -1,4 +1,3 @@
 DIST enigmail-2.0.12.tar.gz 2614589 BLAKE2B 
3db6f595c14e02cfdc71bebc763d05926dc6e0abf4668d132fd0ce43204e681de5fce45db752c4f49b231bd7e217b75c0f23d4a7e204fa9a3a51f1c8097fb63d
 SHA512 
f9f4f1ed4c7244280be2fade0ccb2f4b5e7075dd60f53953478ffb84012e687b7ac7bad489c0b0cb2d8937916c783fe9e1841174bf1e5bdb9ab8cb58b415db74
-DIST enigmail-2.1.7.tar.gz 2851632 BLAKE2B 
8f6d1ec16b48219c75c6dbcddf4807ed57965eeec29776e7c757d5aa34da6bfdbbb58964ee3d7de2efcb65ab69fa5b020f1a8ec01cd8eee662d8195a217cdc69
 SHA512 
1b57091c8ab9aaa086f327b78d904d688c850b6d39e37e2dac82e0629c0279723eae4608ecd08a24efe9ed1bdc86fbc497e97cd800c7349a70612a42b98f3e41
 DIST enigmail-2.1.8.tar.gz 2867390 BLAKE2B 
8908705a05277b018d40260ea095d2a2d9dee9300c7c4b06a708846e93a68242f60599fd92a2dc4c6d53026723433b7548b55e9fc97fdbe667af38a526f03f8a
 SHA512 
b21867c08b5e51af4e82a9ecc6e0a7fc056fb165e6cec8fc11d8ed54fd97b30ca5597b5a23243da0803d08aa04a4a3732d56eae9454db89ecd10fcd750b0b1fb
 DIST enigmail-2.2.4.tar.gz 432157 BLAKE2B 
e6d5eab4cba2cd9ddf38f8152511606c48ce995be331551a7b403ecbd06967c22702a06e06aa89219b5c905e835ddb4d146c0fc2cb11e1a647e46854dd1f
 SHA512 
bf23f52ed61002b05e2e432a0abd1f576fe6eb97d94ab2241e17be86138cee153d668747f5759b967d9a4977be3dc901ee78ddb168347bdbbfed9229d27f786d

diff --git a/x11-plugins/enigmail/enigmail-2.1.7.ebuild 
b/x11-plugins/enigmail/enigmail-2.1.7.ebuild
deleted file mode 100644
index 53f90a93be8..000
--- a/x11-plugins/enigmail/enigmail-2.1.7.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit python-any-r1
-
-DESCRIPTION="Mozilla extension to provide GPG support in mail clients"
-HOMEPAGE="https://www.enigmail.net/;
-
-SLOT="0"
-LICENSE="MPL-2.0 GPL-3"
-IUSE=""
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://git.code.sf.net/p/enigmail/source;
-   S="${WORKDIR}/${P}"
-else
-   if [[ ${PV} = *_beta* ]] ; then
-   SRC_URI="https://www.enigmail.net/download/beta/${P/_/-}.tar.gz;
-   else
-   SRC_URI="https://www.enigmail.net/download/source/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ppc ppc64 x86 ~amd64-linux 
~x86-linux"
-   fi
-   S="${WORKDIR}/${PN}"
-fi
-
-RDEPEND="
-   ( >=app-crypt/gnupg-2.0
-   || (
-   app-crypt/pinentry[gtk(-)]
-   app-crypt/pinentry[qt5(-)]
-   )
-   )
-   !

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

2020-10-04 Thread Thomas Deutschmann
commit: 1fcbfb981896e2e5023f8ced61deb3503d70e222
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Oct  4 17:04:41 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Oct  4 17:30:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fcbfb98

www-client/firefox-bin: drop BDEPEND on dev-util/patchelf

Closes: https://bugs.gentoo.org/746500
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Thomas Deutschmann  gentoo.org>

 www-client/firefox-bin/firefox-bin-78.3.1.ebuild | 7 +--
 www-client/firefox-bin/firefox-bin-81.0.1.ebuild | 7 +--
 2 files changed, 2 insertions(+), 12 deletions(-)

diff --git a/www-client/firefox-bin/firefox-bin-78.3.1.ebuild 
b/www-client/firefox-bin/firefox-bin-78.3.1.ebuild
index 35521b62766..7c46bdb0310 100644
--- a/www-client/firefox-bin/firefox-bin-78.3.1.ebuild
+++ b/www-client/firefox-bin/firefox-bin-78.3.1.ebuild
@@ -35,12 +35,7 @@ IUSE="+alsa +ffmpeg +gmp-autoupdate +pulseaudio selinux 
wayland"
 
 RESTRICT="strip"
 
-BDEPEND="app-arch/unzip
-   alsa? (
-   !pulseaudio? (
-   dev-util/patchelf
-   )
-   )"
+BDEPEND="app-arch/unzip"
 
 CDEPEND="alsa? (
!pulseaudio? (

diff --git a/www-client/firefox-bin/firefox-bin-81.0.1.ebuild 
b/www-client/firefox-bin/firefox-bin-81.0.1.ebuild
index b9f204d3db6..78c15285fb3 100644
--- a/www-client/firefox-bin/firefox-bin-81.0.1.ebuild
+++ b/www-client/firefox-bin/firefox-bin-81.0.1.ebuild
@@ -35,12 +35,7 @@ IUSE="+alsa +ffmpeg +gmp-autoupdate +pulseaudio selinux 
wayland"
 
 RESTRICT="strip"
 
-BDEPEND="app-arch/unzip
-   alsa? (
-   !pulseaudio? (
-   dev-util/patchelf
-   )
-   )"
+BDEPEND="app-arch/unzip"
 
 CDEPEND="alsa? (
!pulseaudio? (



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/enigmail/

2020-10-04 Thread Thomas Deutschmann
commit: d8d984f9b7ae1acb54b709483281f06bbf78f9c8
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Oct  4 17:28:00 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Oct  4 17:30:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8d984f9

x11-plugins/enigmail: bump to v2.2.4

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

 x11-plugins/enigmail/Manifest  |  1 +
 ...{enigmail-.ebuild => enigmail-2.2.4.ebuild} | 30 +-
 x11-plugins/enigmail/enigmail-.ebuild  | 30 +-
 3 files changed, 25 insertions(+), 36 deletions(-)

diff --git a/x11-plugins/enigmail/Manifest b/x11-plugins/enigmail/Manifest
index d82ff32e9fd..e5be4a82cea 100644
--- a/x11-plugins/enigmail/Manifest
+++ b/x11-plugins/enigmail/Manifest
@@ -1,3 +1,4 @@
 DIST enigmail-2.0.12.tar.gz 2614589 BLAKE2B 
3db6f595c14e02cfdc71bebc763d05926dc6e0abf4668d132fd0ce43204e681de5fce45db752c4f49b231bd7e217b75c0f23d4a7e204fa9a3a51f1c8097fb63d
 SHA512 
f9f4f1ed4c7244280be2fade0ccb2f4b5e7075dd60f53953478ffb84012e687b7ac7bad489c0b0cb2d8937916c783fe9e1841174bf1e5bdb9ab8cb58b415db74
 DIST enigmail-2.1.7.tar.gz 2851632 BLAKE2B 
8f6d1ec16b48219c75c6dbcddf4807ed57965eeec29776e7c757d5aa34da6bfdbbb58964ee3d7de2efcb65ab69fa5b020f1a8ec01cd8eee662d8195a217cdc69
 SHA512 
1b57091c8ab9aaa086f327b78d904d688c850b6d39e37e2dac82e0629c0279723eae4608ecd08a24efe9ed1bdc86fbc497e97cd800c7349a70612a42b98f3e41
 DIST enigmail-2.1.8.tar.gz 2867390 BLAKE2B 
8908705a05277b018d40260ea095d2a2d9dee9300c7c4b06a708846e93a68242f60599fd92a2dc4c6d53026723433b7548b55e9fc97fdbe667af38a526f03f8a
 SHA512 
b21867c08b5e51af4e82a9ecc6e0a7fc056fb165e6cec8fc11d8ed54fd97b30ca5597b5a23243da0803d08aa04a4a3732d56eae9454db89ecd10fcd750b0b1fb
+DIST enigmail-2.2.4.tar.gz 432157 BLAKE2B 
e6d5eab4cba2cd9ddf38f8152511606c48ce995be331551a7b403ecbd06967c22702a06e06aa89219b5c905e835ddb4d146c0fc2cb11e1a647e46854dd1f
 SHA512 
bf23f52ed61002b05e2e432a0abd1f576fe6eb97d94ab2241e17be86138cee153d668747f5759b967d9a4977be3dc901ee78ddb168347bdbbfed9229d27f786d

diff --git a/x11-plugins/enigmail/enigmail-.ebuild 
b/x11-plugins/enigmail/enigmail-2.2.4.ebuild
similarity index 68%
copy from x11-plugins/enigmail/enigmail-.ebuild
copy to x11-plugins/enigmail/enigmail-2.2.4.ebuild
index 7369918278b..b990489fba0 100644
--- a/x11-plugins/enigmail/enigmail-.ebuild
+++ b/x11-plugins/enigmail/enigmail-2.2.4.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 
 inherit python-any-r1
 
@@ -33,7 +33,7 @@ RDEPEND="
app-crypt/pinentry[qt5(-)]
)
)
-   !

[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird/

2020-10-04 Thread Thomas Deutschmann
commit: b9756eb7eb82d0cde35b7fae17cc2bc007c83c8d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Oct  4 17:08:13 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Oct  4 17:30:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9756eb7

mail-client/thunderbird: drop USE=gmp-autoupdate

Not used by thunderbird.

Signed-off-by: Thomas Deutschmann  gentoo.org>

 mail-client/thunderbird/thunderbird-78.3.1.ebuild | 28 +--
 1 file changed, 1 insertion(+), 27 deletions(-)

diff --git a/mail-client/thunderbird/thunderbird-78.3.1.ebuild 
b/mail-client/thunderbird/thunderbird-78.3.1.ebuild
index ffd926e975b..7c0951f4674 100644
--- a/mail-client/thunderbird/thunderbird-78.3.1.ebuild
+++ b/mail-client/thunderbird/thunderbird-78.3.1.ebuild
@@ -53,7 +53,7 @@ KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 
 SLOT="0/$(ver_cut 1)"
 LICENSE="MPL-2.0 GPL-2 LGPL-2.1"
-IUSE="clang cpu_flags_arm_neon dbus debug eme-free +gmp-autoupdate
+IUSE="clang cpu_flags_arm_neon dbus debug eme-free
hardened jack lto +openh264 pgo pulseaudio selinux
+system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent
+system-libvpx +system-webp wayland wifi"
@@ -180,12 +180,6 @@ DEPEND="${CDEPEND}
 
 S="${WORKDIR}/${PN}-${PV%_*}"
 
-# Allow MOZ_GMP_PLUGIN_LIST to be set in an eclass or
-# overridden in the enviromnent (advanced hackers only)
-if [[ -z "${MOZ_GMP_PLUGIN_LIST+set}" ]] ; then
-   MOZ_GMP_PLUGIN_LIST=( gmp-gmpopenh264 gmp-widevinecdm )
-fi
-
 llvm_check_deps() {
if ! has_version -b "sys-devel/clang:${LLVM_SLOT}" ; then
ewarn "sys-devel/clang:${LLVM_SLOT} is missing! Cannot use LLVM 
slot ${LLVM_SLOT} ..." >&2
@@ -826,16 +820,6 @@ src_install() {
pref("spellchecker.dictionary_path",   
"${EPREFIX}/usr/share/myspell");
EOF
 
-   if ! use gmp-autoupdate ; then
-   local plugin
-   for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do
-   einfo "Disabling auto-update for ${plugin} plugin ..."
-   cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to 
disable autoupdate for ${plugin} media plugin"
-   pref("media.${plugin}.autoupdate",   false);
-   EOF
-   done
-   fi
-
# Force the graphite pref if USE=system-harfbuzz is enabled, since the 
pref cannot disable it
if use system-harfbuzz ; then
cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set 
gfx.font_rendering.graphite.enabled pref"
@@ -969,16 +953,6 @@ pkg_preinst() {
 pkg_postinst() {
xdg_pkg_postinst
 
-   if ! use gmp-autoupdate ; then
-   elog "USE='-gmp-autoupdate' has disabled the following plugins 
from updating or"
-   elog "installing into new profiles:"
-   local plugin
-   for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do
-   elog "\t ${plugin}"
-   done
-   elog
-   fi
-
if use pulseaudio && has_version ">=media-sound/apulse-0.1.12-r4" ; then
elog "Apulse was detected at merge time on this system and so 
it will always be"
elog "used for sound.  If you wish to use pulseaudio instead 
please unmerge"



[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird/

2020-10-04 Thread Thomas Deutschmann
commit: da984921dd964e7158a80121f8b08e2a37b8a343
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Oct  4 17:15:47 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Oct  4 17:30:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da984921

mail-client/thunderbird: add soft blocker on =x11-plugins/enigmail-2.2 is compatible with >=thunderbird-78.
Soft blocker should trigger upgrade or removal of incompatible version.

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

 mail-client/thunderbird/thunderbird-78.3.1.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/mail-client/thunderbird/thunderbird-78.3.1.ebuild 
b/mail-client/thunderbird/thunderbird-78.3.1.ebuild
index 4b20c2824a5..7309e36a2a4 100644
--- a/mail-client/thunderbird/thunderbird-78.3.1.ebuild
+++ b/mail-client/thunderbird/thunderbird-78.3.1.ebuild
@@ -165,7 +165,8 @@ RDEPEND="${CDEPEND}
>=media-sound/apulse-0.1.12-r4
)
)
-   selinux? ( sec-policy/selinux-mozilla )"
+   selinux? ( sec-policy/selinux-mozilla )
+   

[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird-bin/

2020-10-04 Thread Thomas Deutschmann
commit: ca8a6af2560546b75d652f181d93714dc865ec8d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Oct  4 16:58:00 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Oct  4 17:30:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca8a6af2

mail-client/thunderbird-bin: drop BDEPEND on dev-util/patchelf

Bug: https://bugs.gentoo.org/746500
Signed-off-by: Thomas Deutschmann  gentoo.org>

 mail-client/thunderbird-bin/thunderbird-bin-78.3.1.ebuild | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/mail-client/thunderbird-bin/thunderbird-bin-78.3.1.ebuild 
b/mail-client/thunderbird-bin/thunderbird-bin-78.3.1.ebuild
index e74b8ec605e..4f1ebb239d2 100644
--- a/mail-client/thunderbird-bin/thunderbird-bin-78.3.1.ebuild
+++ b/mail-client/thunderbird-bin/thunderbird-bin-78.3.1.ebuild
@@ -35,12 +35,7 @@ IUSE="+alsa +ffmpeg +pulseaudio selinux startup-notification 
wayland"
 
 RESTRICT="strip"
 
-BDEPEND="app-arch/unzip
-   alsa? (
-   !pulseaudio? (
-   dev-util/patchelf
-   )
-   )"
+BDEPEND="app-arch/unzip"
 
 CDEPEND="alsa? (
!pulseaudio? (



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

2020-10-04 Thread Piotr Karbowski
commit: bbae37d1deed6b7c13be08029c625feee980cdb6
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Sun Oct  4 17:25:07 2020 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Sun Oct  4 17:28:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbae37d1

sys-fs/mergerfs: 2.31.0 version bump

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

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

diff --git a/sys-fs/mergerfs/Manifest b/sys-fs/mergerfs/Manifest
index c11a9c9ff41..3ea05b48e92 100644
--- a/sys-fs/mergerfs/Manifest
+++ b/sys-fs/mergerfs/Manifest
@@ -1,3 +1,4 @@
 DIST mergerfs-2.28.3.tar.gz 294065 BLAKE2B 
2e59e00726aec53438d5a5df143ca204069794d68c663a130139102a19e118a54fede1c8eca99199a3e634ffa92cb21c25c30718ea0842826de8a64e876b2819
 SHA512 
5469b3515464680aa72fc393c218fb038bed31194a933e6736eec478d87a110979323308b642d7f100a5c506534ca75badf4a87a050007cdc77cd2a641217929
 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

diff --git a/sys-fs/mergerfs/mergerfs-2.31.0.ebuild 
b/sys-fs/mergerfs/mergerfs-2.31.0.ebuild
new file mode 100644
index 000..5d1e3ec0e4c
--- /dev/null
+++ b/sys-fs/mergerfs/mergerfs-2.31.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/gentoo:master commit in: media-sound/darkice/

2020-10-04 Thread Miroslav Šulc
commit: f2616e64355661652ef1d01fadc915b916bd6c36
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Oct  4 17:26:04 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Oct  4 17:26:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2616e64

media-sound/darkice: removed obsolete 1.3

Closes: https://bugs.gentoo.org/622406
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/darkice/Manifest   |  1 -
 media-sound/darkice/darkice-1.3.ebuild | 54 --
 2 files changed, 55 deletions(-)

diff --git a/media-sound/darkice/Manifest b/media-sound/darkice/Manifest
index 9b2cdf63f52..4d9969d176f 100644
--- a/media-sound/darkice/Manifest
+++ b/media-sound/darkice/Manifest
@@ -1,2 +1 @@
-DIST darkice-1.3.tar.gz 371411 BLAKE2B 
45684ba4a14dc7cc6271400af11f4aa610fe3d079d1f497f277af866fef92f58080efb6fa6d230288444e78ea93e5cd1257d441d75cbbb7a9ce1696091ed0fe0
 SHA512 
710dde580005e999e9b11981affdefab6c01868710e9de29d93fb0f40db3321dfe3ab6ed2dc1887bb22ac9a0789fe1648d948f4453c92feb312f7af97c253674
 DIST darkice-1.4.tar.gz 364782 BLAKE2B 
6097ddc022c4ac8dfba2deea2b6ab6e6ad86e49cc542d573572643faf6091a2ed2996f0e5c24045c22a60e972e4222c2ecd80342b2641fae52610778b9775aee
 SHA512 
708ab08a45e216dce350f6cd36374e10d4606f77f0cde4dfbf35675d9d0778fb7a013b49fd62d713039d5fcfb9e7d66e6b7ae14acf1e5f142685eecdf7a865bc

diff --git a/media-sound/darkice/darkice-1.3.ebuild 
b/media-sound/darkice/darkice-1.3.ebuild
deleted file mode 100644
index 20d7d39cbaf..000
--- a/media-sound/darkice/darkice-1.3.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="A live audio streamer"
-HOMEPAGE="http://www.darkice.org/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ppc sparc x86"
-IUSE="aac aacplus alsa debug jack libsamplerate mp3 opus pulseaudio twolame 
vorbis"
-
-RDEPEND="aac? ( media-libs/faac )
-   aacplus? ( >=media-libs/libaacplus-2.0.0 )
-   alsa? ( media-libs/alsa-lib )
-   jack? ( media-sound/jack-audio-connection-kit )
-   libsamplerate? ( media-libs/libsamplerate )
-   mp3? ( media-sound/lame )
-   opus? ( media-libs/opus )
-   pulseaudio? ( media-sound/pulseaudio )
-   twolame? ( media-sound/twolame )
-   vorbis? ( media-libs/libvorbis )"
-DEPEND="${RDEPEND}"
-
-REQUIRED_USE="|| ( aac aacplus mp3 opus twolame vorbis )
-   || ( alsa jack pulseaudio )"
-
-PATCHES=(
-   "${FILESDIR}/${P}-include.patch"
-)
-
-src_configure() {
-   local myeconfargs=(
-   $(use_enable debug)
-   $(use_with aac faac)
-   $(use_with aacplus)
-   $(use_with alsa)
-   $(use_with jack)
-   $(use_with libsamplerate samplerate)
-   $(use_with mp3 lame)
-   $(use_with opus)
-   $(use_with pulseaudio)
-   $(use_with twolame)
-   $(use_with vorbis)
-   )
-   econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   default
-   dodoc AUTHORS ChangeLog FAQ NEWS README TODO
-}



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

2020-10-04 Thread Sam James
commit: 20d30a2c402e75e3706d0057545d358d9101d767
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 17:21:41 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 17:22:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20d30a2c

media-sound/darkice: Stabilize 1.4 amd64, #740552

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

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

diff --git a/media-sound/darkice/darkice-1.4.ebuild 
b/media-sound/darkice/darkice-1.4.ebuild
index b7a41066988..b471a55018d 100644
--- a/media-sound/darkice/darkice-1.4.ebuild
+++ b/media-sound/darkice/darkice-1.4.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/rafael2k/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ppc sparc x86"
+KEYWORDS="amd64 ~hppa ppc sparc x86"
 IUSE="aac aacplus alsa debug jack libsamplerate mp3 opus pulseaudio twolame 
vorbis"
 
 RDEPEND="aac? ( media-libs/faac )



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

2020-10-04 Thread Steve Arnold
commit: 77a4af7c782f230e4f2aa30c1bfa8c24712ab6ce
Author: Stephen Arnold  gentoo  org>
AuthorDate: Sun Oct  4 17:17:44 2020 +
Commit: Steve Arnold  gentoo  org>
CommitDate: Sun Oct  4 17:20:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77a4af7c

dev-util/: add latest release, fix current bug

* archaic build setup incompatible with parallel make

Bug: https://bugs.gentoo.org/720714
Closes: https://bugs.gentoo.org/720714
Package-Manager: Portage-2.3.67, Repoman-2.3.17
Signed-off-by: Steve Arnold  gentoo.org>

 dev-util//Manifest |  1 +
 dev-util//-3.1.5-r1.ebuild | 25 ++
 .../{-3.1.5-r1.ebuild => -3.1.6.ebuild}| 30 --
 3 files changed, 32 insertions(+), 24 deletions(-)

diff --git a/dev-util//Manifest b/dev-util//Manifest
index 887fa77c8cf..544fb644520 100644
--- a/dev-util//Manifest
+++ b/dev-util//Manifest
@@ -1 +1,2 @@
 DIST -3.1.5.tar.gz 662760 BLAKE2B 
57817ef9a44f002c017245d7dd3b1ef97fec59b59bce465d5e5e1cc12409b5602cfd8bf7ee938e526af9bcc11398639900d26848aa4f8c7f623669159de17117
 SHA512 
61544669a75ff7bd99c6ff5bb1e6ec163f2a09f4538493fe60e8f9f95eab7ba19ad6d39b6717ae010a223b8efe48c497a4feb8ead218e350ee2ab91b9c52c969
+DIST -3.1.6.tar.gz 663731 BLAKE2B 
28c2a3c29d549bb10fb0e905a0c3397ab7fcffa5f4a0e8a7b9ab0e91cfbfffd7312891c646c00e4b7687b1fc4a5766b9c9d45fce0175dc403e816d2deab24545
 SHA512 
4966d590dd479448392611b57758a1b0378e91c505f258db643a256c3c60b9908574e22aecbc57635248694959d429de5f356328f298f1260920ef4b6fb306e4

diff --git a/dev-util//-3.1.5-r1.ebuild 
b/dev-util//-3.1.5-r1.ebuild
index 47a91aadc54..1d3cdf4bc73 100644
--- a/dev-util//-3.1.5-r1.ebuild
+++ b/dev-util//-3.1.5-r1.ebuild
@@ -35,16 +35,16 @@ src_prepare() {
 src_compile() {
tc-export CC CXX LD AS AR NM RANLIB STRIP OBJCOPY
if use debug ; then
-   DEBUG="true" emake CCC=$(tc-getCXX) CC=$(tc-getCC) 
+   DEBUG="true" emake -j1 CCC=$(tc-getCXX) CC=$(tc-getCC) 
else
-   emake CCC=$(tc-getCXX) CC=$(tc-getCC) 
+   emake -j1 CCC=$(tc-getCXX) CC=$(tc-getCC) 
fi
 
-   use apidoc && emake CCC=$(tc-getCXX) metrics docs
+   use apidoc && emake -j1 CCC=$(tc-getCXX) metrics docs
 }
 
 src_test() {
-   emake CCC=$(tc-getCXX) test
+   emake -j1 CCC=$(tc-getCXX) test
 }
 
 src_install() {
@@ -52,16 +52,19 @@ src_install() {
 
dodoc README.md
 
-   use mfc && dodoc "${FILESDIR}"/-MFC-dialect.opt
+   if use mfc ; then
+   insinto /usr/share/doc/${PF}
+   doins "${FILESDIR}"/-MFC-dialect.opt
+   fi
 
if use doc ; then
-   docinto html
-   dodoc /*.html
+   insinto /usr/share/doc/${PF}/html
+   doins /*.html || die "html docs failed"
if use apidoc ; then
-   docinto html/api
-   dodoc -r doxygen/html/.
-   docinto html/metrics
-   dodoc -r out/.
+   insinto /usr/share/doc/${PF}/html/api
+   doins -r doxygen/html/* || die "dox failed"
+   insinto /usr/share/doc/${PF}/html/metrics
+   doins out/* || die "metrics failed"
fi
fi
 }

diff --git a/dev-util//-3.1.5-r1.ebuild 
b/dev-util//-3.1.6.ebuild
similarity index 57%
copy from dev-util//-3.1.5-r1.ebuild
copy to dev-util//-3.1.6.ebuild
index 47a91aadc54..5100eea55bb 100644
--- a/dev-util//-3.1.5-r1.ebuild
+++ b/dev-util//-3.1.6.ebuild
@@ -9,15 +9,14 @@ DESCRIPTION="Source metrics (line counts, complexity, etc) 
for Java and C++"
 HOMEPAGE="http://sarnold.github.io//;
 if [[ ${PV} = * ]]; then
EGIT_REPO_URI="https://github.com/sarnold/.git;
-   EGIT_BRANCH="master"
inherit git-r3
 else
SRC_URI="https://github.com/sarnold/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos"
 fi
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="apidoc debug doc mfc"
 
 RDEPEND=""
@@ -25,6 +24,8 @@ DEPEND="${RDEPEND}
apidoc? ( app-doc/doxygen[dot] )
"
 
+PATCHES=( "${FILESDIR}/${PN}-fix-tests-for-name-swap.patch" )
+
 src_prepare() {
is-flagq -flto* && filter-flags -flto* -fuse-linker-plugin
use mfc && eapply "${FILESDIR}"/${PN}-c_dialect.patch
@@ -35,16 +36,16 @@ src_prepare() {
 src_compile() {
tc-export CC CXX LD AS AR NM RANLIB STRIP OBJCOPY
if use debug ; then
-   DEBUG="true" emake CCC=$(tc-getCXX) CC=$(tc-getCC) 
+   DEBUG="true" emake -j1 CCC=$(tc-getCXX) CC=$(tc-getCC) 
else
-  

[gentoo-commits] repo/gentoo:master commit in: media-gfx/sam2p/, media-gfx/sam2p/files/

2020-10-04 Thread David Seifert
commit: 173810552f074b83f9d0bdee1e50e5691904b9d9
Author: John Helmert III  posteo  net>
AuthorDate: Sun Oct  4 17:09:13 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Oct  4 17:09:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17381055

media-gfx/sam2p: Security bump

Bug: https://bugs.gentoo.org/631636
Bug: https://bugs.gentoo.org/636876
Bug: https://bugs.gentoo.org/649750
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: John Helmert III  posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/16286
Signed-off-by: David Seifert  gentoo.org>

 media-gfx/sam2p/Manifest  |  1 +
 media-gfx/sam2p/files/sam2p-configure-strip.patch | 30 +++
 media-gfx/sam2p/sam2p-0.49.4_p20190718.ebuild | 62 +++
 3 files changed, 93 insertions(+)

diff --git a/media-gfx/sam2p/Manifest b/media-gfx/sam2p/Manifest
index b141a11da73..d8df300a1fd 100644
--- a/media-gfx/sam2p/Manifest
+++ b/media-gfx/sam2p/Manifest
@@ -1 +1,2 @@
 DIST sam2p-0.49.3.tar.gz 2184864 BLAKE2B 
47d3ce6384c344f66e564ea9f70e89e311540c1bbaf640a70cec2830347b3767aa79d525d25c12cfc2aecc61aca676239b99b345fc7e6bb2edfac7c60bd8d674
 SHA512 
9e9c91a2cd692e49bf73e7c197a0fcbe7df96c685636d1d00456eb8b4b847de3f4848d9bb3d9246340c479c62900ddd4e0a248257aa5e6ec6e16683c5dad54f8
+DIST sam2p-0.49.4_p20190718.tar.gz 1816309 BLAKE2B 
3d97e00c2bd6b6c292c051d4eb6b73549d1c82a5bd7be3d6b718d8e9d2e96b47657c184af43fa57c0ca4b2b8c26904fb42508d17f7dda715def7d2082affa8b6
 SHA512 
1c6074fabca6146e51fe0d5a10c912ec679cf122e10aab7bead9e35e3d007e79773aedb1f627572b1b88cacefe0e7edf72efd71d32c47731723b910667220c51

diff --git a/media-gfx/sam2p/files/sam2p-configure-strip.patch 
b/media-gfx/sam2p/files/sam2p-configure-strip.patch
new file mode 100644
index 000..be78fad0f73
--- /dev/null
+++ b/media-gfx/sam2p/files/sam2p-configure-strip.patch
@@ -0,0 +1,30 @@
+diff --git a/Makefile b/Makefile
+index 1433167..b662e33 100644
+--- a/Makefile
 b/Makefile
+@@ -28,12 +28,13 @@ ifeq ($(MAKECMDGOALS),Makedep.force)
+ MAKE_DIST=000
+ endif
+ 
++GCC_STRIP ?= -s
+ BASH=bash
+ PERL_BADLANG=x
+ export PERL_BADLANG
+ 
+ CXXX=$(CXD_assert)
+-LDALL=$(LDXX) -s $(LDFLAGS) $(LIBS)
++LDALL=$(LDXX) $(GCC_STRIP) $(LDFLAGS) $(LIBS)
+ ifeq ($(ENABLE_DEBUG), no)
+ CXXX=$(CXD_no)
+ endif
+@@ -101,8 +102,8 @@ IDE_MODES := release debug
+ IDE_TARGETS_debug := $(patsubst %,%.yes, $(TARGETS))
+ IDE_TARGETS_release := $(TARGETS)
+ 
+-CXD_assert =$(CXX) -s -O2
+-CXD_no =$(CXX) -s -DNDEBUG -O3
++CXD_assert =$(CXX) $(GCC_STRIP) $(CXXFLAGS)
++CXD_no =$(CXX) $(GCC_STRIP) $(CXXFLAGS)
+ # CXD_yes=$(CXX) $(GFLAG) -lefence
+ CXD_yes=$(CXX) $(GFLAG)
+ CXD_checker=checkerg++ $(GFLAG)

diff --git a/media-gfx/sam2p/sam2p-0.49.4_p20190718.ebuild 
b/media-gfx/sam2p/sam2p-0.49.4_p20190718.ebuild
new file mode 100644
index 000..2460983318f
--- /dev/null
+++ b/media-gfx/sam2p/sam2p-0.49.4_p20190718.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools toolchain-funcs
+
+COMMIT="b953f63307c4a83fa4615a4863e3fb250205cd98"
+
+DESCRIPTION="Utility to convert raster images to EPS, PDF and many others"
+HOMEPAGE="https://github.com/pts/sam2p;
+SRC_URI="https://github.com/pts/sam2p/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~x64-macos"
+IUSE="examples gif"
+RESTRICT="test"
+
+BDEPEND="dev-lang/perl"
+
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+PATCHES=( "${FILESDIR}"/${PN}-configure-strip.patch )
+
+src_prepare() {
+   default
+
+   # configure.in files are deprecated
+   mv configure.{in,ac} || die
+
+   # upstream thinks they're being helpful by running configure with `make`
+   sed -i '/Makedep/s/ .\/configure.*//' Makefile || die
+
+   # eautoreconf is still needed or you get bad warnings
+   eautoreconf
+}
+
+src_configure() {
+   tc-export CXX
+
+   econf \
+   --enable-lzw \
+   $(use_enable gif)
+}
+
+src_compile() {
+   emake GCC_STRIP=
+}
+
+src_install() {
+   dobin sam2p
+   einstalldocs
+
+   if use examples; then
+   # clear pre-compressed files
+   rm examples/*.gz || die
+
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: www-servers/uwsgi/

2020-10-04 Thread Sam James
commit: 35c1a293684b7ff4898b18d74c68a41768b6af1f
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 17:05:58 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 17:05:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35c1a293

www-servers/uwsgi: Stabilize 2.0.19.1 amd64, #738954

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

 www-servers/uwsgi/uwsgi-2.0.19.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/uwsgi/uwsgi-2.0.19.1.ebuild 
b/www-servers/uwsgi/uwsgi-2.0.19.1.ebuild
index 10a502157c1..22d6caa9eb8 100644
--- a/www-servers/uwsgi/uwsgi-2.0.19.1.ebuild
+++ b/www-servers/uwsgi/uwsgi-2.0.19.1.ebuild
@@ -24,7 +24,7 @@ SRC_URI="https://github.com/unbit/uwsgi/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm x86 ~amd64-linux"
+KEYWORDS="amd64 ~arm x86 ~amd64-linux"
 
 UWSGI_PLUGINS_STD=( ping cache carbon nagios rpc rrdtool
http ugreen signal syslog rsyslog



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

2020-10-04 Thread Sam James
commit: 8ee7fefa496685332f7630dc1cc3ebefa1094910
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 17:03:13 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 17:03:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ee7fefa

dev-lang/php: Stabilize 7.4.11 arm, #745993

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

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

diff --git a/dev-lang/php/php-7.4.11.ebuild b/dev-lang/php/php-7.4.11.ebuild
index 3ac0d8c9ace..8e69e55ee67 100644
--- a/dev-lang/php/php-7.4.11.ebuild
+++ b/dev-lang/php/php-7.4.11.ebuild
@@ -21,7 +21,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 
 S="${WORKDIR}/${PN}-${MY_PV}"
 



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

2020-10-04 Thread Sam James
commit: d9dec58c8df98d22f4c29c18ecffba8a040be029
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 17:03:12 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 17:03:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9dec58c

dev-lang/php: Stabilize 7.2.34 arm, #745993

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

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

diff --git a/dev-lang/php/php-7.2.34.ebuild b/dev-lang/php/php-7.2.34.ebuild
index 1b2056f984d..0425a3e67e5 100644
--- a/dev-lang/php/php-7.2.34.ebuild
+++ b/dev-lang/php/php-7.2.34.ebuild
@@ -18,7 +18,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 
 # We can build the following SAPIs in the given order
 SAPIS="embed cli cgi fpm apache2 phpdbg"



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

2020-10-04 Thread Sam James
commit: 9629c55426129c85b4345e2183b10ef6b45cedc8
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 17:03:12 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 17:03:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9629c554

dev-lang/php: Stabilize 7.3.23 arm, #745993

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

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

diff --git a/dev-lang/php/php-7.3.23.ebuild b/dev-lang/php/php-7.3.23.ebuild
index 705d68d153f..c914fb7ccd1 100644
--- a/dev-lang/php/php-7.3.23.ebuild
+++ b/dev-lang/php/php-7.3.23.ebuild
@@ -19,7 +19,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 
 S="${WORKDIR}/${PN}-${MY_PV}"
 



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

2020-10-04 Thread Sam James
commit: 40103fd6b977f35bcc2b99a98906cd5bd8445046
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 16:50:39 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 16:50:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40103fd6

dev-util/cmake: Stabilize 3.17.4-r1 amd64, #726962

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

 dev-util/cmake/cmake-3.17.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/cmake/cmake-3.17.4-r1.ebuild 
b/dev-util/cmake/cmake-3.17.4-r1.ebuild
index 86c3dfd6ea3..7dea4d75538 100644
--- a/dev-util/cmake/cmake-3.17.4-r1.ebuild
+++ b/dev-util/cmake/cmake-3.17.4-r1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="https://cmake.org/files/v$(ver_cut 
1-2)/${MY_P}.tar.gz"
 LICENSE="CMake"
 SLOT="0"
 [[ "${PV}" = *_rc* ]] || \
-KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~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 ~m68k ~mips ppc ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="doc emacs ncurses qt5 test"
 RESTRICT="!test? ( test )"
 



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

2020-10-04 Thread Sam James
commit: 69a55e488bb5bdfefa03cd4f29de92ecec1e7c16
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 16:55:10 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 16:55:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69a55e48

app-crypt/jitterentropy: Stabilize 2.2.0 amd64, #737528

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

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

diff --git a/app-crypt/jitterentropy/jitterentropy-2.2.0.ebuild 
b/app-crypt/jitterentropy/jitterentropy-2.2.0.ebuild
index 41cf317760f..1ef5e8e0238 100644
--- a/app-crypt/jitterentropy/jitterentropy-2.2.0.ebuild
+++ b/app-crypt/jitterentropy/jitterentropy-2.2.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/smuellerDD/jitterentropy-library/archive/v${PV}.tar.
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~ia64 ~mips ppc ppc64 ~riscv x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~mips ppc ppc64 ~riscv x86"
 IUSE="static-libs"
 
 S="${WORKDIR}/${PN}-library-${PV}"



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

2020-10-04 Thread Sam James
commit: 72de3acd3686f5d886f0943a0306f51a36d26621
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 16:59:49 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 16:59:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72de3acd

media-sound/qastools: Stabilize 0.23.0 amd64, #740374

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

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

diff --git a/media-sound/qastools/qastools-0.23.0.ebuild 
b/media-sound/qastools/qastools-0.23.0.ebuild
index 9f055f434b6..db2a0d9e48a 100644
--- a/media-sound/qastools/qastools-0.23.0.ebuild
+++ b/media-sound/qastools/qastools-0.23.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://gitlab.com/sebholt/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 BDEPEND="



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

2020-10-04 Thread Sam James
commit: 7ad7aa9d89745957744f86f98dac06ecacd0ecec
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 16:52:36 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 16:52:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ad7aa9d

sys-libs/db: Stabilize 5.3.28-r4 amd64, #736870

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

 sys-libs/db/db-5.3.28-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/db/db-5.3.28-r4.ebuild b/sys-libs/db/db-5.3.28-r4.ebuild
index e675393c8b4..a8e4ad0ef20 100644
--- a/sys-libs/db/db-5.3.28-r4.ebuild
+++ b/sys-libs/db/db-5.3.28-r4.ebuild
@@ -29,7 +29,7 @@ done
 
 LICENSE="Sleepycat"
 SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc x86"
 IUSE="doc java cxx tcl test"
 
 REQUIRED_USE="test? ( tcl )"



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

2020-10-04 Thread Sam James
commit: 793e3612726260c49dfadde93d1e4c98d5b70bf2
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 16:59:20 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 16:59:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=793e3612

media-gfx/nomacs: Stabilize 3.16.224 amd64, #740372

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

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

diff --git a/media-gfx/nomacs/nomacs-3.16.224.ebuild 
b/media-gfx/nomacs/nomacs-3.16.224.ebuild
index 694ae3a802b..fa7e271df5e 100644
--- a/media-gfx/nomacs/nomacs-3.16.224.ebuild
+++ b/media-gfx/nomacs/nomacs-3.16.224.ebuild
@@ -13,7 +13,7 @@ plugins? ( 
https://github.com/${PN}/${PN}-plugins/archive/$(ver_cut 1-2).tar.gz
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux"
+KEYWORDS="amd64 ~arm64 ~x86 ~amd64-linux"
 IUSE="+jpeg +opencv plugins raw +tiff zip"
 
 REQUIRED_USE="



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

2020-10-04 Thread Sam James
commit: 1ea09904559058203dddf4bd56f106fad7b3ac1e
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  4 16:56:44 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  4 16:56:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ea09904

dev-libs/jansson: Stabilize 2.13.1 amd64, #737580

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

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

diff --git a/dev-libs/jansson/jansson-2.13.1.ebuild 
b/dev-libs/jansson/jansson-2.13.1.ebuild
index 5ac2bb7678b..959b6fbf266 100644
--- a/dev-libs/jansson/jansson-2.13.1.ebuild
+++ b/dev-libs/jansson/jansson-2.13.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.digip.org/jansson/releases/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86"
 IUSE="doc static-libs"
 
 # dev-libs/jansson-2.13.1[doc]: fails to build with >=sphinx-3.0, #731668



  1   2   3   >