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

2020-11-11 Thread Joonas Niilola
commit: 8e328ce69018628872eae39aab0a1953b1076b7e
Author: Jakov Smolic  sartura  hr>
AuthorDate: Fri Nov  6 07:36:18 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 12 07:51:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e328ce6

dev-cpp/sparsehash: bump to 2.0.4

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-cpp/sparsehash/Manifest|  1 +
 dev-cpp/sparsehash/sparsehash-2.0.4.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-cpp/sparsehash/Manifest b/dev-cpp/sparsehash/Manifest
index 01962c61fa6..d0657506022 100644
--- a/dev-cpp/sparsehash/Manifest
+++ b/dev-cpp/sparsehash/Manifest
@@ -1 +1,2 @@
 DIST sparsehash-2.0.3.tar.gz 322046 BLAKE2B 
3749875bfbfa0ec9b92cfe68496a318208539745ca1b76910193879cb9ac790952b390cfbd941ff6e9714bd61546844e8f2d958d9b24845efeb54743facac136
 SHA512 
bb00d0acb8eba65f7da8015ea4f6bebf8bba36ed6777881960ee215f22b7be17b069c59838d210551ce67a34baccfc7b2fed603677ec53c0c32714d8e76f5d6c
+DIST sparsehash-2.0.4.tar.gz 323154 BLAKE2B 
8e0da89a6ae684271293f048092d6c79d14818f7ab9d4fa449414b3354f9e7769d9b0cc724227c47a1be7c7357cdac5cf6f3873047a08c8f085cc457858a8826
 SHA512 
40c007bc5814dd5f2bdacd5ec884bc5424f7126f182d4c7b34371f88b674456fc193b947fdd283dbd0c7eb044d8f06baf8caec6c93e73b1b587282b9026ea877

diff --git a/dev-cpp/sparsehash/sparsehash-2.0.4.ebuild 
b/dev-cpp/sparsehash/sparsehash-2.0.4.ebuild
new file mode 100644
index 000..88d2a4fe1b8
--- /dev/null
+++ b/dev-cpp/sparsehash/sparsehash-2.0.4.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="An extremely memory-efficient hash_map implementation"
+HOMEPAGE="https://github.com/sparsehash/sparsehash;
+SRC_URI="https://github.com/sparsehash/sparsehash/archive/${P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+S=${WORKDIR}/${PN}-${P}
+
+PATCHES=( "${FILESDIR}"/${PN}-2.0.3-fix-buildsystem.patch )
+
+src_prepare() {
+   default
+   eautoreconf
+}



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

2020-11-11 Thread Joonas Niilola
commit: ca905312e94165fbda3b48ef078bb66e7da8f086
Author: Jakov Smolic  sartura  hr>
AuthorDate: Fri Nov  6 07:44:48 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 12 07:51:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca905312

dev-embedded/avra: fix CC call

Closes: https://bugs.gentoo.org/722638
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-embedded/avra/avra-1.4.1.ebuild | 10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/dev-embedded/avra/avra-1.4.1.ebuild 
b/dev-embedded/avra/avra-1.4.1.ebuild
index ae31d3fd691..f39b49bd9b5 100644
--- a/dev-embedded/avra/avra-1.4.1.ebuild
+++ b/dev-embedded/avra/avra-1.4.1.ebuild
@@ -1,8 +1,10 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
+inherit toolchain-funcs
+
 DESCRIPTION="Atmel AVR Assembler"
 HOMEPAGE="https://github.com/hsoft/avra;
 SRC_URI="https://github.com/hsoft/avra/archive/${PV}.tar.gz -> ${P}.tar.gz"
@@ -12,7 +14,11 @@ SLOT="0"
 KEYWORDS="amd64 ~ppc x86"
 
 src_compile() {
-   emake PREFIX=/usr CFLAGS="${CFLAGS} \$(CDEFS)" LDFLAGS="${LDFLAGS}"
+   emake \
+   CC=$(tc-getCC) \
+   PREFIX=/usr \
+   CFLAGS="${CFLAGS} \$(CDEFS)" \
+   LDFLAGS="${LDFLAGS}"
 }
 
 src_install() {



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

2020-11-11 Thread Joonas Niilola
commit: 6c2dc5c1486bb04299804a4d923948d983d9f54a
Author: Jakov Smolic  sartura  hr>
AuthorDate: Fri Nov  6 07:45:37 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 12 07:51:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c2dc5c1

dev-embedded/avra: bump to 1.4.2

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-embedded/avra/Manifest  |  1 +
 dev-embedded/avra/avra-1.4.2.ebuild | 27 +++
 2 files changed, 28 insertions(+)

diff --git a/dev-embedded/avra/Manifest b/dev-embedded/avra/Manifest
index 6a1d977193d..6f1901a20c6 100644
--- a/dev-embedded/avra/Manifest
+++ b/dev-embedded/avra/Manifest
@@ -1 +1,2 @@
 DIST avra-1.4.1.tar.gz 386055 BLAKE2B 
64bf96e6fac6e04869e94ae2cac81fc0c67f871abc2ad0e2728bf5530f53e8ff9ce9e0119edfc8d39187ca2e8e5a58922aa0e8d0ea7d91b730965fef365c0c25
 SHA512 
2ee5edb6f8b2a39d1197970121ce3313f99b2137c590ab963f6943958d3a761f4bb37b80d54f727e1a4a4afc62ea4ac576af9ef85a71f741739a6ce4a60a9a1c
+DIST avra-1.4.2.tar.gz 392445 BLAKE2B 
6b556583838e0e5bef0207f7291da7c5e6dad01e695d9592b3de8f528bc7a5dafc3015f75934bcc8f9e0b6baca39ff0ae13c88ee290e657868bbb522d27da068
 SHA512 
f51a43b1b28102d6180ce27e74b50642de8f3d18fa35a82904fddaac993e87e1096667f2245bebfad92e4ba3283330f6ac4b6083e486be5af9edca7b7e90e56f

diff --git a/dev-embedded/avra/avra-1.4.2.ebuild 
b/dev-embedded/avra/avra-1.4.2.ebuild
new file mode 100644
index 000..0278a2c6bc5
--- /dev/null
+++ b/dev-embedded/avra/avra-1.4.2.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Atmel AVR Assembler"
+HOMEPAGE="https://github.com/hsoft/avra;
+SRC_URI="https://github.com/hsoft/avra/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+src_compile() {
+   emake \
+   CC=$(tc-getCC) \
+   PREFIX=/usr \
+   CFLAGS="${CFLAGS} \$(CDEFS)" \
+   LDFLAGS="${LDFLAGS}"
+}
+
+src_install() {
+   emake PREFIX=/usr DESTDIR="${ED}" install
+   dodoc {AUTHORS,CHANGELOG.md,README.md,USAGE.md}
+}



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

2020-11-11 Thread Joonas Niilola
commit: 3749088393caf40bad8ba37b75b9caaa9253c897
Author: Jakov Smolic  sartura  hr>
AuthorDate: Fri Nov  6 07:46:32 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 12 07:51:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37490883

dev-embedded/avra: new maintainer

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Jakov Smolic  sartura.hr>
Closes: https://github.com/gentoo/gentoo/pull/18145
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-embedded/avra/metadata.xml | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/dev-embedded/avra/metadata.xml b/dev-embedded/avra/metadata.xml
index 0d97ee0333f..7cba2e3edc4 100644
--- a/dev-embedded/avra/metadata.xml
+++ b/dev-embedded/avra/metadata.xml
@@ -1,7 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   jakov.smo...@sartura.hr
+   Jakov Smolic
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

hsoft/avra




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

2020-11-11 Thread Joonas Niilola
commit: 5d94ad73441872e37166a5da99a7839914ec9857
Author: Jakov Smolic  sartura  hr>
AuthorDate: Fri Nov  6 07:37:18 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 12 07:51:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d94ad73

dev-cpp/sparsehash: new maintainer

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Jakov Smolic  sartura.hr>
Closes: https://github.com/gentoo/gentoo/pull/18144
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-cpp/sparsehash/metadata.xml | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/dev-cpp/sparsehash/metadata.xml b/dev-cpp/sparsehash/metadata.xml
index df31d747222..8bf56d26c16 100644
--- a/dev-cpp/sparsehash/metadata.xml
+++ b/dev-cpp/sparsehash/metadata.xml
@@ -1,7 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   jakov.smo...@sartura.hr
+   Jakov Smolic
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

sparsehash/sparsehash




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

2020-11-11 Thread Joonas Niilola
commit: 83645026d5ba64f4ab935cb5813334af6587bffe
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Nov 12 07:46:44 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 12 07:51:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83645026

dev-cpp/sparsehash: S="..." in 2.0.4

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

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

diff --git a/dev-cpp/sparsehash/sparsehash-2.0.4.ebuild 
b/dev-cpp/sparsehash/sparsehash-2.0.4.ebuild
index 88d2a4fe1b8..3f6a91f5fbd 100644
--- a/dev-cpp/sparsehash/sparsehash-2.0.4.ebuild
+++ b/dev-cpp/sparsehash/sparsehash-2.0.4.ebuild
@@ -13,7 +13,7 @@ LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 
-S=${WORKDIR}/${PN}-${P}
+S="${WORKDIR}/${PN}-${P}"
 
 PATCHES=( "${FILESDIR}"/${PN}-2.0.3-fix-buildsystem.patch )
 



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

2020-11-11 Thread Miroslav Šulc
commit: 2c07790155d71623d1008f23f1947ef41d4c3c64
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Nov 12 07:48:30 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Nov 12 07:48:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c077901

media-libs/libsndfile: removed obsolete 1.0.29_pre2_p20191024

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/libsndfile/Manifest |  1 -
 .../libsndfile-1.0.29_pre2_p20191024.ebuild| 67 --
 2 files changed, 68 deletions(-)

diff --git a/media-libs/libsndfile/Manifest b/media-libs/libsndfile/Manifest
index 21eef4133d6..b17ea663633 100644
--- a/media-libs/libsndfile/Manifest
+++ b/media-libs/libsndfile/Manifest
@@ -1,2 +1 @@
-DIST libsndfile-1.0.29_pre2_p20191024.tar.gz 720981 BLAKE2B 
9f1dcf3d3669b66d8582d50b62ff863facd7125432a84a3e1e3fb0f817554f260f42948b4479371fb0967dcc75bedc6c49afffc6bee3f973a875d72d2e508210
 SHA512 
e37b385b90cadc97348db03b6c5ae7a8fcee17ded60f54d1508adddb8e2dc604ea44b60a0fe08627e81c0faa83997cdafb0b0ecf8574f901bf5e8a1819a63998
 DIST libsndfile-1.0.30.tar.bz2 852320 BLAKE2B 
00bd558a3d8645f4ad03fba38c31fcea25d30bea4b6f1a785b4b31b0da61bfa6a6f7df1bd7907c95c543cce8ee6766032d2e614eb285f2fc529146cb1d319517
 SHA512 
c4be4bc57df880da81570889a80256ba4567f2c7d6bdfb38f3803c55f616278160e962544bfac32e53b613b8fdf2a2644d8da9ee778747c32cb681a0fd5aab00

diff --git a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild 
b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
deleted file mode 100644
index 78c8d372dfb..000
--- a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
+++ /dev/null
@@ -1,67 +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} pypy3 )
-
-inherit autotools python-any-r1 multilib-minimal
-
-MY_COMMIT="97a361afc24202b16489d8c06910277c06b18b53"
-
-DESCRIPTION="C library for reading and writing files containing sampled sound"
-HOMEPAGE="http://www.mega-nerd.com/libsndfile;
-SRC_URI="https://github.com/erikd/libsndfile/archive/${MY_COMMIT}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="alsa minimal sqlite static-libs test"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   !minimal? (
-   >=media-libs/flac-1.2.1-r5:=[${MULTILIB_USEDEP}]
-   >=media-libs/libogg-1.3.0:=[${MULTILIB_USEDEP}]
-   >=media-libs/libvorbis-1.3.3-r1:=[${MULTILIB_USEDEP}]
-   >=media-libs/opus-1.1:=[${MULTILIB_USEDEP}]
-   )
-   alsa? ( media-libs/alsa-lib:= )
-   sqlite? ( >=dev-db/sqlite-3.2 )"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   virtual/pkgconfig
-   ${PYTHON_DEPS}
-   sys-devel/autogen
-"
-
-S="${WORKDIR}/${PN}-${MY_COMMIT}"
-
-pkg_setup() {
-   python-any-r1_pkg_setup
-}
-
-src_prepare() {
-   default
-
-   eautoreconf
-}
-
-multilib_src_configure() {
-   ECONF_SOURCE="${S}" econf \
-   --disable-octave \
-   $(use_enable static-libs static) \
-   $(use_enable !minimal external-libs) \
-   $(multilib_native_enable full-suite) \
-   $(multilib_native_use_enable alsa) \
-   $(multilib_native_use_enable sqlite) \
-   PYTHON="${EPYTHON}"
-}
-
-multilib_src_install_all() {
-   einstalldocs
-
-   # package provides .pc files
-   find "${D}" -name '*.la' -delete || die
-}



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

2020-11-11 Thread Sergei Trofimovich
commit: a87a1637a7564ff95bea4546c71c55f2273f505a
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:46:32 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:46:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a87a1637

sys-libs/ncurses-compat: stable 6.1_p20190609 for sparc

stable wrt bug #738170

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

 sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild 
b/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild
index e7d67ac3edc..10592dbc993 100644
--- a/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild
+++ b/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild
@@ -23,7 +23,7 @@ fi
 LICENSE="MIT"
 # The subslot reflects the SONAME.
 SLOT="5/5"
-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="gpm tinfo unicode"
 
 DEPEND="gpm? ( sys-libs/gpm[${MULTILIB_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: sys-block/parted/

2020-11-11 Thread Sergei Trofimovich
commit: 0c52c3699baea35d4e079945044380c2eff2e2e1
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:46:16 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:46:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c52c369

sys-block/parted: stable 3.3-r2 for sparc

stable wrt bug #753458

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

 sys-block/parted/parted-3.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/parted/parted-3.3-r2.ebuild 
b/sys-block/parted/parted-3.3-r2.ebuild
index 4337ae28591..40f2f7b8ea7 100644
--- a/sys-block/parted/parted-3.3-r2.ebuild
+++ b/sys-block/parted/parted-3.3-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
 IUSE="+debug device-mapper nls readline selinux"
 
 RDEPEND="



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

2020-11-11 Thread Sergei Trofimovich
commit: 291a877438e972ac7207960b043a6b58929cb799
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:46:22 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:46:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=291a8774

dev-python/zope-interface: stable 5.1.2 for sparc

stable wrt bug #752318

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

 dev-python/zope-interface/zope-interface-5.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/zope-interface/zope-interface-5.1.2.ebuild 
b/dev-python/zope-interface/zope-interface-5.1.2.ebuild
index 6d60bcd4b57..cbc4c218396 100644
--- a/dev-python/zope-interface/zope-interface-5.1.2.ebuild
+++ b/dev-python/zope-interface/zope-interface-5.1.2.ebuild
@@ -18,7 +18,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="ZPL"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
 BDEPEND="



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

2020-11-11 Thread Sergei Trofimovich
commit: 4c7b05887394f1212ec94638b8054701d531c63b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:46:11 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:46:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c7b0588

sys-apps/systemd: stable 246.6 for sparc

stable wrt bug #754075

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

 sys-apps/systemd/systemd-246.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/systemd/systemd-246.6.ebuild 
b/sys-apps/systemd/systemd-246.6.ebuild
index 4da9f66eaaa..2f4760229bc 100644
--- a/sys-apps/systemd/systemd-246.6.ebuild
+++ b/sys-apps/systemd/systemd-246.6.ebuild
@@ -16,7 +16,7 @@ else
MY_P=${MY_PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc 
x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc 
x86"
 fi
 
 PYTHON_COMPAT=( python3_{6,7,8} )



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

2020-11-11 Thread Sergei Trofimovich
commit: fa07904f5da5ea454b21953cf7fb481b0d87080d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:44:08 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:44:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa07904f

x11-terms/mlterm: stable 3.9.0 for ppc64

stable wrt bug #753845

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/x11-terms/mlterm/mlterm-3.9.0.ebuild 
b/x11-terms/mlterm/mlterm-3.9.0.ebuild
index 9631caa8668..fc4bc951a7a 100644
--- a/x11-terms/mlterm/mlterm-3.9.0.ebuild
+++ b/x11-terms/mlterm/mlterm-3.9.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ppc ~ppc64 x86"
+KEYWORDS="~amd64 ppc ppc64 x86"
 IUSE="bidi brltty cairo canna debug fbcon fcitx freewnn gtk gtk2 harfbuzz ibus 
libssh2 m17n-lib nls regis scim skk static-libs uim utempter wayland xft"
 REQUIRED_USE="gtk2? ( gtk )"
 



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

2020-11-11 Thread Sergei Trofimovich
commit: ed7115496dbfaf00cd59529fc7bd305049d8d83a
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:44:22 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:44:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed711549

app-portage/portage-utils: stable 0.90 for ppc64

stable wrt bug #753485

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/app-portage/portage-utils/portage-utils-0.90.ebuild 
b/app-portage/portage-utils/portage-utils-0.90.ebuild
index 92c28744469..5e609f02741 100644
--- a/app-portage/portage-utils/portage-utils-0.90.ebuild
+++ b/app-portage/portage-utils/portage-utils-0.90.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/portage-utils.git;
 else
SRC_URI="https://dev.gentoo.org/~grobian/distfiles/${P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 fi
 
 RDEPEND="



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

2020-11-11 Thread Sergei Trofimovich
commit: fca8f08c37d1c109df7c9845ce7cfc5471e8b260
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:44:31 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:44:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fca8f08c

dev-python/zope-interface: stable 5.1.2 for ppc64

stable wrt bug #752318

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-python/zope-interface/zope-interface-5.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/zope-interface/zope-interface-5.1.2.ebuild 
b/dev-python/zope-interface/zope-interface-5.1.2.ebuild
index 1d515c54525..6d60bcd4b57 100644
--- a/dev-python/zope-interface/zope-interface-5.1.2.ebuild
+++ b/dev-python/zope-interface/zope-interface-5.1.2.ebuild
@@ -18,7 +18,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="ZPL"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
 BDEPEND="



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

2020-11-11 Thread Sergei Trofimovich
commit: 52bb37ed9c7297aff6f95a32f2cb2012aff3e90d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:44:17 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:44:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52bb37ed

sys-apps/grep: stable 3.5 for ppc64

stable wrt bug #753638

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-apps/grep/grep-3.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/grep/grep-3.5.ebuild b/sys-apps/grep/grep-3.5.ebuild
index 43694faf3ca..3ccfcce9c90 100644
--- a/sys-apps/grep/grep-3.5.ebuild
+++ b/sys-apps/grep/grep-3.5.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="nls pcre static"
 
 LIB_DEPEND="pcre? ( >=dev-libs/libpcre-7.8-r1[static-libs(+)] )"



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

2020-11-11 Thread Sergei Trofimovich
commit: 976bda98df826aea86474f0f7c89fca7b5a4fd01
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:44:13 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:44:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=976bda98

media-libs/lilv: stable 0.24.10 for ppc64

stable wrt bug #753683

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/media-libs/lilv/lilv-0.24.10.ebuild 
b/media-libs/lilv/lilv-0.24.10.ebuild
index 3ced1d88759..57fedb1986a 100644
--- a/media-libs/lilv/lilv-0.24.10.ebuild
+++ b/media-libs/lilv/lilv-0.24.10.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://download.drobilla.net/${P}.tar.bz2;
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
 IUSE="doc +dyn-manifest static-libs test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: sys-block/parted/

2020-11-11 Thread Sergei Trofimovich
commit: d469b06b761730ae9f102a723384d5dd558e0e6a
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:44:26 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:44:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d469b06b

sys-block/parted: stable 3.3-r2 for ppc64

stable wrt bug #753458

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-block/parted/parted-3.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/parted/parted-3.3-r2.ebuild 
b/sys-block/parted/parted-3.3-r2.ebuild
index 41fd648227c..4337ae28591 100644
--- a/sys-block/parted/parted-3.3-r2.ebuild
+++ b/sys-block/parted/parted-3.3-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86"
 IUSE="+debug device-mapper nls readline selinux"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-block/parted/

2020-11-11 Thread Sergei Trofimovich
commit: e75c0723bee042b9cf203a06bb20079239c64c9f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:40:38 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:40:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e75c0723

sys-block/parted: stable 3.3-r2 for ppc

stable wrt bug #753458

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-block/parted/parted-3.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/parted/parted-3.3-r2.ebuild 
b/sys-block/parted/parted-3.3-r2.ebuild
index e271b41be0f..41fd648227c 100644
--- a/sys-block/parted/parted-3.3-r2.ebuild
+++ b/sys-block/parted/parted-3.3-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sparc x86"
 IUSE="+debug device-mapper nls readline selinux"
 
 RDEPEND="



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

2020-11-11 Thread Sergei Trofimovich
commit: 7ca9e9dceb400b63c1d1bf868ce22aca9b7b5804
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:40:51 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:40:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ca9e9dc

dev-python/zope-interface: stable 5.1.2 for ppc

stable wrt bug #752318

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-python/zope-interface/zope-interface-5.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/zope-interface/zope-interface-5.1.2.ebuild 
b/dev-python/zope-interface/zope-interface-5.1.2.ebuild
index c309436cc53..1d515c54525 100644
--- a/dev-python/zope-interface/zope-interface-5.1.2.ebuild
+++ b/dev-python/zope-interface/zope-interface-5.1.2.ebuild
@@ -18,7 +18,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="ZPL"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
 BDEPEND="



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

2020-11-11 Thread Sergei Trofimovich
commit: 6f3df2644664917c18a887b8fe4871b251cfc24e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:40:15 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:40:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f3df264

sys-auth/pam_mount: stable 2.16-r2 for ppc

stable wrt bug #753827

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-auth/pam_mount/pam_mount-2.16-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/pam_mount/pam_mount-2.16-r2.ebuild 
b/sys-auth/pam_mount/pam_mount-2.16-r2.ebuild
index e4e00e8faac..1fa00f2e62f 100644
--- a/sys-auth/pam_mount/pam_mount-2.16-r2.ebuild
+++ b/sys-auth/pam_mount/pam_mount-2.16-r2.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/pam-mount/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="~amd64 ppc x86"
 
 IUSE="crypt libressl ssl selinux"
 



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

2020-11-11 Thread Sergei Trofimovich
commit: 1b090ccb44dc8ffcd2d00144ef2f7c30dc6de1c0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:40:32 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:40:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b090ccb

sys-apps/grep: stable 3.5 for ppc

stable wrt bug #753638

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-apps/grep/grep-3.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/grep/grep-3.5.ebuild b/sys-apps/grep/grep-3.5.ebuild
index 13c43af3724..43694faf3ca 100644
--- a/sys-apps/grep/grep-3.5.ebuild
+++ b/sys-apps/grep/grep-3.5.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="nls pcre static"
 
 LIB_DEPEND="pcre? ( >=dev-libs/libpcre-7.8-r1[static-libs(+)] )"



[gentoo-commits] repo/gentoo:master commit in: net-print/hplip/

2020-11-11 Thread Sergei Trofimovich
commit: a72874307218e5447a704606dff50423cfd6b387
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:40:06 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:40:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7287430

net-print/hplip: stable 3.20.9-r3 for ppc

stable wrt bug #754072

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 net-print/hplip/hplip-3.20.9-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/hplip/hplip-3.20.9-r3.ebuild 
b/net-print/hplip/hplip-3.20.9-r3.ebuild
index 2a51b390406..0aa35ac9f21 100644
--- a/net-print/hplip/hplip-3.20.9-r3.ebuild
+++ b/net-print/hplip/hplip-3.20.9-r3.ebuild
@@ -18,7 +18,7 @@ SRC_URI="mirror://sourceforge/hplip/${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
+KEYWORDS="~amd64 ~arm ~arm64 ppc ~ppc64 x86"
 
 IUSE="doc fax +hpcups hpijs kde libnotify libressl -libusb0 minimal parport 
policykit qt5 scanner +snmp static-ppds X"
 



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

2020-11-11 Thread Sergei Trofimovich
commit: f83dec8b9ccf8be85f653a7cedd9ff5a46f4c5ee
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:41:04 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:41:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f83dec8b

sys-libs/ncurses-compat: stable 6.1_p20190609 for ppc

stable wrt bug #738170

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild 
b/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild
index 490bbd36c7c..e7d67ac3edc 100644
--- a/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild
+++ b/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild
@@ -23,7 +23,7 @@ fi
 LICENSE="MIT"
 # The subslot reflects the SONAME.
 SLOT="5/5"
-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="gpm tinfo unicode"
 
 DEPEND="gpm? ( sys-libs/gpm[${MULTILIB_USEDEP}] )"



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

2020-11-11 Thread Sergei Trofimovich
commit: efef049a935165cdaba05df21e90acb719f6daf3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:40:21 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:40:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efef049a

media-libs/lilv: stable 0.24.10 for ppc

stable wrt bug #753683

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/media-libs/lilv/lilv-0.24.10.ebuild 
b/media-libs/lilv/lilv-0.24.10.ebuild
index ebdf4e4bb7a..3ced1d88759 100644
--- a/media-libs/lilv/lilv-0.24.10.ebuild
+++ b/media-libs/lilv/lilv-0.24.10.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://download.drobilla.net/${P}.tar.bz2;
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86"
 IUSE="doc +dyn-manifest static-libs test"
 RESTRICT="!test? ( test )"
 



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

2020-11-11 Thread Sergei Trofimovich
commit: 6db49ba96ac84f443a34dadcc0924aed6c6b6ef7
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:40:26 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:40:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6db49ba9

dev-libs/mxml: stable 3.2 for ppc

stable wrt bug #753668

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-libs/mxml/mxml-3.2.ebuild b/dev-libs/mxml/mxml-3.2.ebuild
index d3642ddf8f0..91587404307 100644
--- a/dev-libs/mxml/mxml-3.2.ebuild
+++ b/dev-libs/mxml/mxml-3.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/michaelrsweet/${PN}/archive/v${PV}.tar.gz -> ${P}.ta
 
 LICENSE="Mini-XML"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86"
 IUSE="static-libs threads"
 
 BDEPEND="virtual/pkgconfig"



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

2020-11-11 Thread Sergei Trofimovich
commit: 4b593379cea3766c7fba2bf4ff6dbac3dc1d95e0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:40:11 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:40:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b593379

x11-terms/mlterm: stable 3.9.0 for ppc

stable wrt bug #753845

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/x11-terms/mlterm/mlterm-3.9.0.ebuild 
b/x11-terms/mlterm/mlterm-3.9.0.ebuild
index c8717aaf6b4..9631caa8668 100644
--- a/x11-terms/mlterm/mlterm-3.9.0.ebuild
+++ b/x11-terms/mlterm/mlterm-3.9.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 x86"
+KEYWORDS="~amd64 ppc ~ppc64 x86"
 IUSE="bidi brltty cairo canna debug fbcon fcitx freewnn gtk gtk2 harfbuzz ibus 
libssh2 m17n-lib nls regis scim skk static-libs uim utempter wayland xft"
 REQUIRED_USE="gtk2? ( gtk )"
 



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

2020-11-11 Thread Sergei Trofimovich
commit: f5fbbcfc93cfbb2824c2e24923c799b8258df8c5
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:40:44 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:40:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5fbbcfc

app-crypt/mit-krb5: stable 1.18.2-r2 for ppc

stable wrt bug #753281

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-crypt/mit-krb5/mit-krb5-1.18.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/mit-krb5/mit-krb5-1.18.2-r2.ebuild 
b/app-crypt/mit-krb5/mit-krb5-1.18.2-r2.ebuild
index 56b0fbf27a6..fbb61e84e48 100644
--- a/app-crypt/mit-krb5/mit-krb5-1.18.2-r2.ebuild
+++ b/app-crypt/mit-krb5/mit-krb5-1.18.2-r2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://web.mit.edu/kerberos/dist/krb5/${P_DIR}/${MY_P}.tar.gz;
 
 LICENSE="openafs-krb5-a BSD MIT OPENLDAP BSD-2 HPND BSD-4 ISC RSA CC-BY-SA-3.0 
|| ( BSD-2 GPL-2+ )"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86"
 IUSE="cpu_flags_x86_aes doc +keyutils libressl lmdb nls openldap +pkinit 
selinux +threads test xinetd"
 
 # Test suite requires network access



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

2020-11-11 Thread Sergei Trofimovich
commit: 7f01c519a09433d89f1298b8c4d8576b698bb414
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:34:10 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:34:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f01c519

app-crypt/mit-krb5: stable 1.18.2-r2 for hppa

stable wrt bug #753281

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-crypt/mit-krb5/mit-krb5-1.18.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/mit-krb5/mit-krb5-1.18.2-r2.ebuild 
b/app-crypt/mit-krb5/mit-krb5-1.18.2-r2.ebuild
index 44f16c23453..56b0fbf27a6 100644
--- a/app-crypt/mit-krb5/mit-krb5-1.18.2-r2.ebuild
+++ b/app-crypt/mit-krb5/mit-krb5-1.18.2-r2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://web.mit.edu/kerberos/dist/krb5/${P_DIR}/${MY_P}.tar.gz;
 
 LICENSE="openafs-krb5-a BSD MIT OPENLDAP BSD-2 HPND BSD-4 ISC RSA CC-BY-SA-3.0 
|| ( BSD-2 GPL-2+ )"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc x86"
 IUSE="cpu_flags_x86_aes doc +keyutils libressl lmdb nls openldap +pkinit 
selinux +threads test xinetd"
 
 # Test suite requires network access



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

2020-11-11 Thread Sergei Trofimovich
commit: a3503c0eaf9ca89279156b3626731425e064074b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:33:59 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:34:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3503c0e

sys-apps/grep: stable 3.5 for hppa

stable wrt bug #753638

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-apps/grep/grep-3.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/grep/grep-3.5.ebuild b/sys-apps/grep/grep-3.5.ebuild
index 08ea9215d3d..13c43af3724 100644
--- a/sys-apps/grep/grep-3.5.ebuild
+++ b/sys-apps/grep/grep-3.5.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="nls pcre static"
 
 LIB_DEPEND="pcre? ( >=dev-libs/libpcre-7.8-r1[static-libs(+)] )"



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

2020-11-11 Thread Sergei Trofimovich
commit: 4a29dcb76db8de3109983e0d8728572327d6bd84
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:34:14 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:34:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a29dcb7

dev-python/zope-interface: stable 5.1.2 for hppa

stable wrt bug #752318

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-python/zope-interface/zope-interface-5.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/zope-interface/zope-interface-5.1.2.ebuild 
b/dev-python/zope-interface/zope-interface-5.1.2.ebuild
index bbb3bcd2f3e..c309436cc53 100644
--- a/dev-python/zope-interface/zope-interface-5.1.2.ebuild
+++ b/dev-python/zope-interface/zope-interface-5.1.2.ebuild
@@ -18,7 +18,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="ZPL"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-block/parted/

2020-11-11 Thread Sergei Trofimovich
commit: 9de14aa02adfde1277a51882d74324d8ea15b920
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:34:05 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:34:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9de14aa0

sys-block/parted: stable 3.3-r2 for hppa

stable wrt bug #753458

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-block/parted/parted-3.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/parted/parted-3.3-r2.ebuild 
b/sys-block/parted/parted-3.3-r2.ebuild
index 5049768b811..e271b41be0f 100644
--- a/sys-block/parted/parted-3.3-r2.ebuild
+++ b/sys-block/parted/parted-3.3-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86"
 IUSE="+debug device-mapper nls readline selinux"
 
 RDEPEND="



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

2020-11-11 Thread Sergei Trofimovich
commit: 3e3c4c663768c8bf218e666d7be377db8fab31ee
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov 12 07:34:18 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov 12 07:34:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e3c4c66

sys-libs/ncurses-compat: stable 6.1_p20190609 for hppa

stable wrt bug #738170

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild 
b/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild
index 05ee1fbcd68..490bbd36c7c 100644
--- a/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild
+++ b/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild
@@ -23,7 +23,7 @@ fi
 LICENSE="MIT"
 # The subslot reflects the SONAME.
 SLOT="5/5"
-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="gpm tinfo unicode"
 
 DEPEND="gpm? ( sys-libs/gpm[${MULTILIB_USEDEP}] )"



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

2020-11-11 Thread Joonas Niilola
commit: c84a743bfc164c865dda53f026e0b74065340810
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Nov 12 07:08:01 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 12 07:27:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c84a743b

dev-libs/efl: release libavif restriction

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

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

diff --git a/dev-libs/efl/efl-1.25.1-r1.ebuild 
b/dev-libs/efl/efl-1.25.1-r1.ebuild
index 1cf00936866..6a7877fce53 100644
--- a/dev-libs/efl/efl-1.25.1-r1.ebuild
+++ b/dev-libs/efl/efl-1.25.1-r1.ebuild
@@ -61,7 +61,7 @@ RDEPEND="
x11-libs/libXScrnSaver
wayland? ( x11-libs/libxkbcommon[X] )
)
-   avif? ( ~media-libs/libavif-0.8.1 )
+   avif? ( media-libs/libavif )
connman? ( net-misc/connman )
drm? (
dev-libs/libinput



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

2020-11-11 Thread Joonas Niilola
commit: 4248f9f1ea0049baef47f6fc5433f5869dfc0a7e
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Nov 12 07:25:08 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 12 07:27:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4248f9f1

media-libs/libavif: stabilize 0.8.1 on amd64

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

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

diff --git a/media-libs/libavif/libavif-0.8.1.ebuild 
b/media-libs/libavif/libavif-0.8.1.ebuild
index 51b5a16e119..08a52350062 100644
--- a/media-libs/libavif/libavif-0.8.1.ebuild
+++ b/media-libs/libavif/libavif-0.8.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/AOMediaCodec/libavif/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE="+aom dav1d examples extras gdk-pixbuf rav1e"
 
 DEPEND="media-libs/libpng



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

2020-11-11 Thread Joonas Niilola
commit: 5eff0582a468f6edac90fd50cd6ee5b0a3939dd7
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Nov 12 07:25:32 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 12 07:27:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eff0582

dev-libs/efl: stabilize 1.25.1-r1 on amd64

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

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

diff --git a/dev-libs/efl/efl-1.25.1-r1.ebuild 
b/dev-libs/efl/efl-1.25.1-r1.ebuild
index 6a7877fce53..fe6c33dcc6c 100644
--- a/dev-libs/efl/efl-1.25.1-r1.ebuild
+++ b/dev-libs/efl/efl-1.25.1-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://download.enlightenment.org/rel/libs/${PN}/${P}.tar.xz;
 
 LICENSE="BSD-2 GPL-2 LGPL-2.1 ZLIB"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86"
 IUSE="+X avif bmp connman cpu_flags_arm_neon dds debug doc drm +eet efl-one 
elogind examples fbcon
+fontconfig fribidi gif gles2-only gnutls glib +gstreamer harfbuzz 
hyphen ibus ico libressl
lua +luajit jpeg2k json nls mono opengl +pdf physics pmaps postscript 
psd pulseaudio raw scim



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

2020-11-11 Thread Joonas Niilola
commit: 463842a218003a3d94771b5463ca25ceb3060fb3
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Nov 12 07:26:55 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 12 07:27:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=463842a2

dev-python/python-efl: clean old 1.24.0

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

 dev-python/python-efl/Manifest |  1 -
 .../python-efl/files/python-efl-1.24-clang.patch   | 31 -
 dev-python/python-efl/python-efl-1.24.0.ebuild | 75 --
 3 files changed, 107 deletions(-)

diff --git a/dev-python/python-efl/Manifest b/dev-python/python-efl/Manifest
index b3efa8b5067..85e4d62721f 100644
--- a/dev-python/python-efl/Manifest
+++ b/dev-python/python-efl/Manifest
@@ -1,2 +1 @@
-DIST python-efl-1.24.0.tar.xz 9535212 BLAKE2B 
ab9535d60af75422f3c055e56f3c6297f595afbf682970afcb21f597486b307504fa83ab894c2029fb681dda8d886d1fc837726d1c4ae62df7185fbc0073724a
 SHA512 
5b57de58b2351f00f744454e6aaa16f7bf9cf72b7f73d07a2d98cda4d152eb65810513b5c04b1eda127b6f5caf56e4b9bc9a7c1ef98593edde26a9ed3be953c9
 DIST python-efl-1.25.0.tar.xz 9543920 BLAKE2B 
fc2b951ade2fc2b7c32dd78a84800bc9f225499ee9d8431034b378c86e423181d918aba2c4d056974f3aa2df9cfb9c7b3dcf1c366362387048cde182c0b3128a
 SHA512 
23ed29add25cd2639e9eb144f22c5e2809b8634389f7ab5c4b7ebc19302fde4ebb0fe8c41d7b10923e658676c4dfbb8670fda16675682fd376258beecbc3d9c3

diff --git a/dev-python/python-efl/files/python-efl-1.24-clang.patch 
b/dev-python/python-efl/files/python-efl-1.24-clang.patch
deleted file mode 100644
index a6f18d86630..000
--- a/dev-python/python-efl/files/python-efl-1.24-clang.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-diff -Naur a/setup.py b/setup.py
 a/setup.py 2020-04-23 08:20:55.742402600 +0300
-+++ b/setup.py 2020-09-22 08:29:43.065243208 +0300
-@@ -211,13 +211,21 @@
- py_modules = []
- packages = ["efl"]
- common_cflags = [
--"-fno-var-tracking-assignments", # seems to lower the mem used during 
build
--"-Wno-misleading-indentation", # not needed (we don't indent the C code)
--"-Wno-deprecated-declarations", # we bind deprecated functions
--"-Wno-unused-variable", # eo_instance_from_object() is unused
--"-Wno-format-security", # some cc don't like the way cython use EINA_LOG 
macros
--# "-Werror", "-Wfatal-errors" # use this to stop build on first warnings
-+"-fno-var-tracking-assignments",  # seems to lower the mem used during 
build
-+"-Wno-misleading-indentation",  # not needed (we don't indent the C code)
-+"-Wno-deprecated-declarations",  # we bind deprecated functions
-+"-Wno-unused-variable",  # eo_instance_from_object() is unused
-+"-Wno-format-security",  # some cc don't like the way cython use EINA_LOG 
macros
-+# "-Werror", "-Wfatal-errors"  # use this to stop build on first warnings
- ]
-+# remove clang unknown flags
-+if os.getenv("CC") == "clang":
-+common_cflags.remove('-fno-var-tracking-assignments')
-+if os.getenv("CC") == "x86_64-pc-linux-gnu-clang":
-+common_cflags.remove('-fno-var-tracking-assignments')
-+if os.getenv("CC") == "i686-pc-linux-gnu-clang":
-+common_cflags.remove('-fno-var-tracking-assignments')
-+
- 
- if set(("build", "build_ext", "install", "bdist", "sdist")) & set(sys.argv):
- sys.stdout.write("Python-EFL: %s\n" % RELEASE)

diff --git a/dev-python/python-efl/python-efl-1.24.0.ebuild 
b/dev-python/python-efl/python-efl-1.24.0.ebuild
deleted file mode 100644
index d1a7a54ab74..000
--- a/dev-python/python-efl/python-efl-1.24.0.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6..8} )
-DISTUTILS_USE_SETUPTOOLS=no
-
-inherit distutils-r1 flag-o-matic
-
-DESCRIPTION="Python bindings for Enlightenment Foundation Libraries"
-HOMEPAGE="https://phab.enlightenment.org/w/projects/python_bindings_for_efl/;
-SRC_URI="https://download.enlightenment.org/rel/bindings/python/${P}.tar.xz;
-
-LICENSE="|| ( GPL-3 LGPL-3 )"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="=dev-libs/efl-1.24*
-   dev-python/dbus-python[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   dev-python/cython[${PYTHON_USEDEP}]"
-BDEPEND="virtual/pkgconfig
-   doc? (
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   media-gfx/graphviz
-   )"
-
-PATCHES=( "${FILESDIR}/python-efl-1.24-clang.patch" )
-
-src_prepare() {
-   default
-
-   # Tries to download a file under /tmp
-   rm tests/ecore/test_09_file_download.py || die
-
-   # Tries to use that file which failed to download
-   rm tests/ecore/test_10_file_monitor.py || die
-
-   # Needs an active internet connection
-   rm tests/ecore/test_11_con.py || die
-
-   # Test fails because of deleted files above
-   sed -i 's/>= 13/>= 10/g' tests/ecore/test_08_exe.py || 

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

2020-11-11 Thread Joonas Niilola
commit: fbe5529811056de6889afdf125679b299d37a421
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Nov 12 07:04:25 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 12 07:27:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbe55298

media-libs/libavif: stabilize 0.8.1 on x86

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

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

diff --git a/media-libs/libavif/libavif-0.8.1.ebuild 
b/media-libs/libavif/libavif-0.8.1.ebuild
index 812b8fa1255..51b5a16e119 100644
--- a/media-libs/libavif/libavif-0.8.1.ebuild
+++ b/media-libs/libavif/libavif-0.8.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/AOMediaCodec/libavif/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE="+aom dav1d examples extras gdk-pixbuf rav1e"
 
 DEPEND="media-libs/libpng



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

2020-11-11 Thread Joonas Niilola
commit: 983e9d94448c8c20a57a0492d20705c133163db9
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Nov 12 07:26:09 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 12 07:27:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=983e9d94

dev-python/python-efl: stabilize 1.25.0 on amd64

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

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

diff --git a/dev-python/python-efl/python-efl-1.25.0.ebuild 
b/dev-python/python-efl/python-efl-1.25.0.ebuild
index b1e32d692b5..9b37264b7c9 100644
--- a/dev-python/python-efl/python-efl-1.25.0.ebuild
+++ b/dev-python/python-efl/python-efl-1.25.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://download.enlightenment.org/rel/bindings/python/${P}.tar.xz;
 
 LICENSE="|| ( GPL-3 LGPL-3 )"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="doc test"
 
 RESTRICT="!test? ( test )"



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

2020-11-11 Thread Joonas Niilola
commit: 0cb95bc67e8c18bf4d32d16011f4945b4e3f3ef8
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Nov 12 07:06:43 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 12 07:27:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cb95bc6

dev-libs/efl: stabilize 1.25.1-r1 on x86

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

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

diff --git a/dev-libs/efl/efl-1.25.1-r1.ebuild 
b/dev-libs/efl/efl-1.25.1-r1.ebuild
index 2f1daa2f600..1cf00936866 100644
--- a/dev-libs/efl/efl-1.25.1-r1.ebuild
+++ b/dev-libs/efl/efl-1.25.1-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://download.enlightenment.org/rel/libs/${PN}/${P}.tar.xz;
 
 LICENSE="BSD-2 GPL-2 LGPL-2.1 ZLIB"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86"
 IUSE="+X avif bmp connman cpu_flags_arm_neon dds debug doc drm +eet efl-one 
elogind examples fbcon
+fontconfig fribidi gif gles2-only gnutls glib +gstreamer harfbuzz 
hyphen ibus ico libressl
lua +luajit jpeg2k json nls mono opengl +pdf physics pmaps postscript 
psd pulseaudio raw scim



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

2020-11-11 Thread Joonas Niilola
commit: 0ad75885c0214216ab8f7d94fc3d2e88b5c3bdc1
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Nov 12 07:09:10 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 12 07:27:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ad75885

dev-python/python-efl: stabilize 1.25.0 on x86

Bug: https://bugs.gentoo.org/752306
Signed-off-by: Joonas Niilola  gentoo.org>

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

diff --git a/dev-python/python-efl/python-efl-1.25.0.ebuild 
b/dev-python/python-efl/python-efl-1.25.0.ebuild
index 097475df6fa..b1e32d692b5 100644
--- a/dev-python/python-efl/python-efl-1.25.0.ebuild
+++ b/dev-python/python-efl/python-efl-1.25.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://download.enlightenment.org/rel/bindings/python/${P}.tar.xz;
 
 LICENSE="|| ( GPL-3 LGPL-3 )"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="doc test"
 
 RESTRICT="!test? ( test )"



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

2020-11-11 Thread Matthew Thode
commit: 941c01c8be16b74ce24cd12e8bf47e9ed5c6529a
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Nov 12 07:14:29 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Thu Nov 12 07:14:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=941c01c8

app-emulation/glean: 1.17.0 stable amd64/x86 with cleanup

Closes: https://bugs.gentoo.org/746281
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Matthew Thode  gentoo.org>

 app-emulation/glean/Manifest|  1 -
 app-emulation/glean/glean-1.10.3.ebuild | 26 --
 app-emulation/glean/glean-1.17.0.ebuild |  2 +-
 3 files changed, 1 insertion(+), 28 deletions(-)

diff --git a/app-emulation/glean/Manifest b/app-emulation/glean/Manifest
index 117fa547e8d..d3929ac5af7 100644
--- a/app-emulation/glean/Manifest
+++ b/app-emulation/glean/Manifest
@@ -1,2 +1 @@
-DIST glean-1.10.3.tar.gz 51898 BLAKE2B 
95bcee5caae1bdcdc586c8d8ab8097b1dfaa35c521d7b90d128db14f496d4d31e1d0d4c540c4205861e5c7fa87d0e7038227ae9db0e898e3bf43b8b9b989e766
 SHA512 
27d4f29bf35585f73813e9efdea0253f0be3a8fa059c6ce524fbdd37b865d9c9e10d29bb8f970317ffe772c110cc76f10ae7debce5f7433461639dc63b9349db
 DIST glean-1.17.0.tar.gz 62791 BLAKE2B 
6429bd721655499732f84dc8db4bd31bdb128289956ab65fab78ea5461cf7945ced893fd832ac6a3cdcedb331f3885004eaa530be1ee4fcc4168870b5c345dd3
 SHA512 
55c8ceae941296c038acff3f40cf4d6b783d7c6530ebd6fbd6d87938de11a1be1403741a559802c9135d3fc4d904b1936319dcf7a0179f95ac3f909667f5622c

diff --git a/app-emulation/glean/glean-1.10.3.ebuild 
b/app-emulation/glean/glean-1.10.3.ebuild
deleted file mode 100644
index 939e686bb3b..000
--- a/app-emulation/glean/glean-1.10.3.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Simple program to write static config from config-drive"
-HOMEPAGE="https://github.com/openstack-infra/glean;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="dev-python/pbr[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}"
-
-src_install() {
-   distutils-r1_src_install
-   newinitd "${FILESDIR}/${PN}.initd" ${PN}
-}

diff --git a/app-emulation/glean/glean-1.17.0.ebuild 
b/app-emulation/glean/glean-1.17.0.ebuild
index 13ba0b43ea3..6f94d92f9f2 100644
--- a/app-emulation/glean/glean-1.17.0.ebuild
+++ b/app-emulation/glean/glean-1.17.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 DEPEND="dev-python/pbr[${PYTHON_USEDEP}]"



[gentoo-commits] repo/proj/guru:dev commit in: gui-apps/corepad/, gui-apps/coreinfo/, gui-apps/coreimage/, ...

2020-11-11 Thread Maciej Barć
/coreshot/Manifest gui-apps/coreshot/coreshot-4.0.0.ebuild 
gui-apps/coreshot/coreshot-.ebuild gui-apps/coreshot/metadata.xml 
gui-apps/corestats/Manifest gui-apps/corestats/corestats-4.0.0.ebuild 
gui-apps/corestats/corestats-.ebuild gui-apps/corestats/metadata.xml 
gui-apps/corestuff/Manifest gui-apps/corestuff/corestuff-4.0.0.ebuild 
gui-apps/corestuff/corestuff-.ebuild gui-apps/corestuff/metadata.xml 
gui-apps/coreterminal/Manifest gui-apps/coreterminal/coreterminal-4.0.0.ebuild 
gui-apps/coreterminal/coreterminal-.ebuild 
gui-apps/coreterminal/metadata.xml gui-apps/coretime/Manifest 
gui-apps/coretime/coretime-4.0.0.ebuild gui-apps/coretime/coretime-.ebuild 
gui-apps/coretime/metadata.xml gui-apps/coretoppings/Manifest 
gui-apps/coretoppings/coretoppings-4.0.0.ebuild 
gui-apps/coretoppings/metadata.xml gui-libs/libcprime/Manifest 
gui-libs/libcprime/files/libcprime-lib.patch 
gui-libs/libcprime/libcprime-4.0.0.ebuild gui-libs/libcprime/metadata.xml 
gui-libs/libcsys/Manifes
 t gui-libs/libcsys/files/libcsys-lib.patch 
gui-libs/libcsys/libcsys-4.0.0.ebuild gui-libs/libcsys/libcsys-.ebuild 
gui-libs/libcsys/metadata.xml
X-VCS-Directories: gui-apps/corehunt/ gui-apps/coretoppings/ 
gui-apps/coreimage/ gui-apps/coreinfo/ gui-apps/corepad/ 
gui-apps/coreapps-meta/ gui-apps/coregarage/ gui-apps/corepdf/ 
gui-apps/corekeyboard/ gui-libs/libcprime/ gui-apps/corepaint/ 
gui-apps/corerenamer/ gui-apps/corestuff/ gui-libs/libcsys/ gui-apps/corefm/ 
gui-apps/corefm/files/ gui-libs/libcprime/files/ gui-apps/corestats/ 
gui-libs/libcsys/files/ gui-apps/corearchiver/ gui-apps/coretime/ 
gui-apps/coreterminal/ app-arch/libarchive-qt/ gui-apps/coreshot/ 
gui-apps/coreaction/
X-VCS-Committer: xgqt
X-VCS-Committer-Name: Maciej Barć
X-VCS-Revision: 6e7ec6a781adbf43e93afdc258b2318ba4692708
X-VCS-Branch: dev
Date: Thu, 12 Nov 2020 03:03:46 + (UTC)

commit: 6e7ec6a781adbf43e93afdc258b2318ba4692708
Author: Maciej Barć  protonmail  com>
AuthorDate: Thu Nov 12 03:01:27 2020 +
Commit: Maciej Barć  protonmail  com>
CommitDate: Thu Nov 12 03:03:41 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6e7ec6a7

*/*: add pkgs from gitlab.com/xgqt/core-overlay as wished by CuboCore

Signed-off-by: Maciej Barć  protonmail.com>

 app-arch/libarchive-qt/Manifest   |  1 +
 app-arch/libarchive-qt/libarchive-qt-2.0.2.ebuild | 46 ++
 app-arch/libarchive-qt/libarchive-qt-.ebuild  | 46 ++
 app-arch/libarchive-qt/metadata.xml   | 11 +
 gui-apps/coreaction/Manifest  |  1 +
 gui-apps/coreaction/coreaction-4.0.0.ebuild   | 52 
 gui-apps/coreaction/coreaction-.ebuild| 52 
 gui-apps/coreaction/metadata.xml  | 11 +
 gui-apps/coreapps-meta/coreapps-meta-4.0.0.ebuild | 41 
 gui-apps/coreapps-meta/metadata.xml   | 13 +
 gui-apps/corearchiver/Manifest|  1 +
 gui-apps/corearchiver/corearchiver-4.0.0.ebuild   | 54 +
 gui-apps/corearchiver/corearchiver-.ebuild| 54 +
 gui-apps/corearchiver/metadata.xml| 11 +
 gui-apps/corefm/Manifest  |  1 +
 gui-apps/corefm/corefm-4.0.0-r1.ebuild| 58 +++
 gui-apps/corefm/corefm-.ebuild| 54 +
 gui-apps/corefm/files/corefm-4.0.0-urilist.patch  | 12 +
 gui-apps/corefm/metadata.xml  | 11 +
 gui-apps/coregarage/Manifest  |  1 +
 gui-apps/coregarage/coregarage-4.0.0.ebuild   | 55 +
 gui-apps/coregarage/coregarage-.ebuild| 55 +
 gui-apps/coregarage/metadata.xml  | 11 +
 gui-apps/corehunt/Manifest|  1 +
 gui-apps/corehunt/corehunt-4.0.0.ebuild   | 54 +
 gui-apps/corehunt/corehunt-.ebuild| 54 +
 gui-apps/corehunt/metadata.xml| 11 +
 gui-apps/coreimage/Manifest   |  1 +
 gui-apps/coreimage/coreimage-4.0.0.ebuild | 55 +
 gui-apps/coreimage/coreimage-.ebuild  | 55 +
 gui-apps/coreimage/metadata.xml   | 11 +
 gui-apps/coreinfo/Manifest|  1 +
 gui-apps/coreinfo/coreinfo-4.0.0.ebuild   | 56 ++
 gui-apps/coreinfo/coreinfo-.ebuild| 56 ++
 gui-apps/coreinfo/metadata.xml| 11 +
 gui-apps/corekeyboard/Manifest|  1 +
 gui-apps/corekeyboard/corekeyboard-4.0.0.ebuild   | 54 +
 gui-apps/corekeyboard/corekeyboard-.ebuild| 54 +
 gui-apps/corekeyboard/metadata.xml| 11 +
 

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

2020-11-11 Thread Joonas Niilola
commit: 26916ac64b6619cb584af16c88bd5f3498ad0eb5
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Nov 12 06:35:48 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 12 06:51:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26916ac6

app-backup/rear: stabilize 2.6 on amd64

Closes: https://bugs.gentoo.org/753476
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 6469942ff6c..6e4df5c99df 100644
--- a/app-backup/rear/rear-2.6.ebuild
+++ b/app-backup/rear/rear-2.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="udev"
 
 RDEPEND="



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

2020-11-11 Thread Joonas Niilola
commit: 4cf9e9261bbbf35cddd9e40fb0a3b36bbc54b966
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Nov 12 06:40:00 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 12 06:51:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cf9e926

media-libs/libde265: stabilize 1.0.5 on amd64

Bug: https://bugs.gentoo.org/754036
Signed-off-by: Joonas Niilola  gentoo.org>

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

diff --git a/media-libs/libde265/libde265-1.0.5.ebuild 
b/media-libs/libde265/libde265-1.0.5.ebuild
index 5ee4f623e45..75d4140c790 100644
--- a/media-libs/libde265/libde265-1.0.5.ebuild
+++ b/media-libs/libde265/libde265-1.0.5.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "" ]] ; then
inherit git-r3
 else
SRC_URI="https://github.com/strukturag/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
 fi
 
 DESCRIPTION="Open h.265 video codec implementation"



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

2020-11-11 Thread Joonas Niilola
commit: 8906a2049066389d1203c92c3013fc750ee69fcd
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Nov 12 06:51:10 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 12 06:51:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8906a204

media-libs/libheif: stabilize 1.9.1 on amd64

Bug: https://bugs.gentoo.org/754036
Signed-off-by: Joonas Niilola  gentoo.org>

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

diff --git a/media-libs/libheif/libheif-1.9.1.ebuild 
b/media-libs/libheif/libheif-1.9.1.ebuild
index a2ac1249223..bf00e482549 100644
--- a/media-libs/libheif/libheif-1.9.1.ebuild
+++ b/media-libs/libheif/libheif-1.9.1.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == "" ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/strukturag/libheif/releases/download/v${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
 fi
 
 DESCRIPTION="ISO/IEC 23008-12:2017 HEIF file format decoder and encoder"



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

2020-11-11 Thread Erik Mackdanz
commit: 21ee015511c0273bb4c76559137cebc423730249
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Thu Nov 12 06:32:09 2020 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Thu Nov 12 06:32:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21ee0155

media-sound/upmpdcli: Bump to 1.4.14

Signed-off-by: Erik Mackdanz  gentoo.org>
Closes: https://bugs.gentoo.org/697522
Package-Manager: Portage-3.0.9, Repoman-3.0.2

 media-sound/upmpdcli/Manifest   |  1 +
 media-sound/upmpdcli/upmpdcli-1.4.14.ebuild | 48 +
 2 files changed, 49 insertions(+)

diff --git a/media-sound/upmpdcli/Manifest b/media-sound/upmpdcli/Manifest
index 4f82bbfb7da..cba335fa43b 100644
--- a/media-sound/upmpdcli/Manifest
+++ b/media-sound/upmpdcli/Manifest
@@ -1,2 +1,3 @@
 DIST upmpdcli-1.4.0.tar.gz 469357 BLAKE2B 
edd46e86f367ff2f88346cfb4cb249dae4463095553bb220fbd9a4078315044ec7591f58c30a0f20840a9f217230e46bc3b3569989a0ae2c05a44aa140c234c4
 SHA512 
1ed1f0a89a02610d70fb9e380dcbdbd8d636bc4a0964a16d27bd7c04126674f7f14e50e5fe521a430a06ea04ecef1275c7ad5f1c276daae1c285b73cceba9dec
+DIST upmpdcli-1.4.14.tar.gz 552026 BLAKE2B 
0e9722d9a3c278b085416df240d3256ae1eff136f3897b181a59ce9d3edcdfd70ed7e568d8d345b1d0b13a9906f86d9816ba3e8797c41c1684933aa326e6
 SHA512 
9084f60a4551fb94be915e6539d59a9ac070d55745c383b1f201c0c83262634c9e6fb353f66bb2232c493752805671b19057cbcec00c5ed128e19e1d0a037976
 DIST upmpdcli-1.4.2.tar.gz 477650 BLAKE2B 
8bc2f86e8821aaee29f969e6031553f29e3224fdaf4b9c7d443f55bda5f321f36607dbb7dc0af15f0d1e7b006e93595cd1d668f9d1975e8673a80b218ea7f570
 SHA512 
be855214b55686422689ce786103ff50748a9f9e7e556c8dbeaa7e39e0229a3e0b56502bdbeb7071771706416cd2ff36592cb5245b505d8438f0ba75c200e9c2

diff --git a/media-sound/upmpdcli/upmpdcli-1.4.14.ebuild 
b/media-sound/upmpdcli/upmpdcli-1.4.14.ebuild
new file mode 100644
index 000..405d3053766
--- /dev/null
+++ b/media-sound/upmpdcli/upmpdcli-1.4.14.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd
+
+DESCRIPTION="UPnP Media Renderer front-end for MPD, the Music Player Daemon"
+HOMEPAGE="https://www.lesbonscomptes.com/upmpdcli/index.html;
+LICENSE="GPL-2"
+
+SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz;
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="thirdparty"
+
+DEPEND="
+   dev-libs/jsoncpp
+   media-libs/libmpdclient
+   net-libs/libmicrohttpd
+   >=net-libs/libupnpp-0.19.0
+"
+RDEPEND="
+   ${DEPEND}
+   acct-group/upmpdcli
+   acct-user/upmpdcli
+   thirdparty? ( dev-python/requests )
+"
+
+src_install() {
+   default
+   newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+   newconfd "${FILESDIR}/${PN}.confd" "${PN}"
+   systemd_dounit systemd/upmpdcli.service
+}
+
+pkg_postinst() {
+   einfo
+   einfo "This package no longer assumes that upmpdcli is driving an"
+   einfo "mpd instance on the same host (https://bugs.gentoo.org/670130)."
+   einfo "Probably it is though, so be sure your mpd is built with"
+   einfo "USE=curl."
+   einfo
+   einfo "Consider installing media-sound/sc2mpd.  If upmpdcli"
+   einfo "detects sc2mpd at run-time, capabilities are added"
+   einfo "including internet radio support.  See upstream docs"
+   einfo "for more information."
+}



[gentoo-commits] repo/gentoo:master commit in: acct-user/upmpdcli/

2020-11-11 Thread Erik Mackdanz
commit: 09b2fdf8f2b571c08f697e582d9e8d10b3174c3d
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Thu Nov 12 06:26:49 2020 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Thu Nov 12 06:26:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09b2fdf8

acct-user/upmpdcli: New package for GLEP 81

Signed-off-by: Erik Mackdanz  gentoo.org>

 acct-user/upmpdcli/metadata.xml  |  7 +++
 acct-user/upmpdcli/upmpdcli-0.ebuild | 12 
 2 files changed, 19 insertions(+)

diff --git a/acct-user/upmpdcli/metadata.xml b/acct-user/upmpdcli/metadata.xml
new file mode 100644
index 000..d4fa7b75336
--- /dev/null
+++ b/acct-user/upmpdcli/metadata.xml
@@ -0,0 +1,7 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   stasib...@gentoo.org
+   
+

diff --git a/acct-user/upmpdcli/upmpdcli-0.ebuild 
b/acct-user/upmpdcli/upmpdcli-0.ebuild
new file mode 100644
index 000..8ec71887042
--- /dev/null
+++ b/acct-user/upmpdcli/upmpdcli-0.ebuild
@@ -0,0 +1,12 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-user
+
+DESCRIPTION="User for upmpdcli"
+ACCT_USER_ID=372
+ACCT_USER_GROUPS=( upmpdcli )
+
+acct-user_add_deps



[gentoo-commits] repo/gentoo:master commit in: acct-group/upmpdcli/

2020-11-11 Thread Erik Mackdanz
commit: e817060b4ae5182a48093493f903f75be81a6084
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Thu Nov 12 06:25:37 2020 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Thu Nov 12 06:25:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e817060b

acct-group/upmpdcli: New package for GLEP 81

Signed-off-by: Erik Mackdanz  gentoo.org>

 acct-group/upmpdcli/metadata.xml  | 7 +++
 acct-group/upmpdcli/upmpdcli-0.ebuild | 9 +
 2 files changed, 16 insertions(+)

diff --git a/acct-group/upmpdcli/metadata.xml b/acct-group/upmpdcli/metadata.xml
new file mode 100644
index 000..d4fa7b75336
--- /dev/null
+++ b/acct-group/upmpdcli/metadata.xml
@@ -0,0 +1,7 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   stasib...@gentoo.org
+   
+

diff --git a/acct-group/upmpdcli/upmpdcli-0.ebuild 
b/acct-group/upmpdcli/upmpdcli-0.ebuild
new file mode 100644
index 000..1b73dccb8d2
--- /dev/null
+++ b/acct-group/upmpdcli/upmpdcli-0.ebuild
@@ -0,0 +1,9 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-group
+
+DESCRIPTION="Group for upmpdcli"
+ACCT_GROUP_ID=372



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

2020-11-11 Thread Joshua Kinard
commit: c8f5db50a96c4fc763a062f4e69028f4b6f881a4
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Nov 12 06:12:13 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Nov 12 06:12:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8f5db50

sys-kernel/mips-sources: Fix HOMEPAGE

Point HOMEPAGE to the Gentoo/MIPS Wiki article

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

 sys-kernel/mips-sources/mips-sources-4.14.206.ebuild | 2 +-
 sys-kernel/mips-sources/mips-sources-4.19.157.ebuild | 2 +-
 sys-kernel/mips-sources/mips-sources-5.4.77.ebuild   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-kernel/mips-sources/mips-sources-4.14.206.ebuild 
b/sys-kernel/mips-sources/mips-sources-4.14.206.ebuild
index 54be410e0cb..552ff7c119b 100644
--- a/sys-kernel/mips-sources/mips-sources-4.14.206.ebuild
+++ b/sys-kernel/mips-sources/mips-sources-4.14.206.ebuild
@@ -33,7 +33,7 @@ BASE_KV="$(ver_cut 1-2).0"
 [[ "${EXTRAVERSION}" = -rc* ]] && KVE="${EXTRAVERSION}"
 
 # Portage Vars
-HOMEPAGE="https://www.linux-mips.org/ https://wiki.gentoo.org/wiki/No_homepage;
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:MIPS;
 KEYWORDS="-* ~mips"
 IUSE="experimental ip27 ip28 ip30"
 RDEPEND=""

diff --git a/sys-kernel/mips-sources/mips-sources-4.19.157.ebuild 
b/sys-kernel/mips-sources/mips-sources-4.19.157.ebuild
index 5a7a76c8cee..0f4e9fe4771 100644
--- a/sys-kernel/mips-sources/mips-sources-4.19.157.ebuild
+++ b/sys-kernel/mips-sources/mips-sources-4.19.157.ebuild
@@ -32,7 +32,7 @@ BASE_KV="$(ver_cut 1-2).0"
 [[ "${EXTRAVERSION}" = -rc* ]] && KVE="${EXTRAVERSION}"
 
 # Portage Vars
-HOMEPAGE="https://www.kernel.org/ https://www.linux-mips.org/ 
https://wiki.gentoo.org/wiki/No_homepage;
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:MIPS;
 KEYWORDS="-* ~mips"
 IUSE="experimental ip27 ip28 ip30"
 RDEPEND=""

diff --git a/sys-kernel/mips-sources/mips-sources-5.4.77.ebuild 
b/sys-kernel/mips-sources/mips-sources-5.4.77.ebuild
index f3f07364b03..02a856fcfa9 100644
--- a/sys-kernel/mips-sources/mips-sources-5.4.77.ebuild
+++ b/sys-kernel/mips-sources/mips-sources-5.4.77.ebuild
@@ -32,7 +32,7 @@ BASE_KV="$(ver_cut 1-2)"
 [[ "${EXTRAVERSION}" = -rc* ]] && KVE="${EXTRAVERSION}"
 
 # Portage Vars
-HOMEPAGE="https://www.kernel.org/ https://www.linux-mips.org/ 
https://www.gentoo.org/;
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:MIPS;
 KEYWORDS="-* ~mips"
 IUSE="experimental ip27 ip28 ip30"
 RDEPEND=""



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

2020-11-11 Thread Erik Mackdanz
commit: 16e69a9ac621e40dc2dc0cdd06b282067164ef6d
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Thu Nov 12 05:51:42 2020 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Thu Nov 12 05:51:42 2020 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=16e69a9a

uid-gid.txt: add new UID 372 for upmpdcli

Signed-off-by: Erik Mackdanz  gentoo.org>

 files/uid-gid.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/files/uid-gid.txt b/files/uid-gid.txt
index c16409b..6773eac 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -266,6 +266,7 @@ nslcd   357 357 acct
 octoprint  368 368 historical
 ultimaker  369 369 acct
 sks370 370 acct
+upmpdcli   372 372 acct
 snapclient 373 -   acct
 snapserver 374 374 acct
 popa3d 375 375 acctUsed by net-mail/popa3d



[gentoo-commits] repo/gentoo:master commit in: media-sound/sc2mpd/, media-sound/sc2mpd/files/

2020-11-11 Thread Erik Mackdanz
commit: 17480a839247fab02f29a4d563e1b3f9ef0e401f
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Thu Nov 12 05:31:46 2020 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Thu Nov 12 05:31:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17480a83

media-sound/sc2mpd: Bump to 1.1.7

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

 media-sound/sc2mpd/Manifest|  2 +
 media-sound/sc2mpd/files/sc2mpd-1.1.7-python.patch | 64 ++
 media-sound/sc2mpd/files/sc2mpd-1.1.7-werror.patch | 72 
 media-sound/sc2mpd/sc2mpd-1.1.7.ebuild | 97 ++
 4 files changed, 235 insertions(+)

diff --git a/media-sound/sc2mpd/Manifest b/media-sound/sc2mpd/Manifest
index d35489da42d..285545a43d1 100644
--- a/media-sound/sc2mpd/Manifest
+++ b/media-sound/sc2mpd/Manifest
@@ -3,4 +3,6 @@ DIST ohnet.1dd641.tar.gz 20831753 BLAKE2B 
82724b7f2cd5cd0dcaa54786394a2560b965f5
 DIST ohnetgenerated.e3edb9.tar.gz 1887473 BLAKE2B 
1b878dd743f0b45f69c3eb018ddbd64db60285ee8743bb039f9a794a9e0ecdb516e1138ac622fc7cde3462fe5c3cfc006d71d0b22048496c1bc190cc4f34a906
 SHA512 
9b48d0ff496acfa4313c1efc90e73f1050fee011b1ab301b9268ba4009fca9a47978cbe2f1f0a1d05d7c939f95b4a38560b9f63464305032c20d36af3ade8811
 DIST ohsongcast.3299ea.tar.gz 831313 BLAKE2B 
aaa5590af288bbf2b358bad613b983418f6648219bba046113a8c712f3a369fee2894c8aa42f96ead16582b96b982d1696b478950e0e3d0ef6c8e3325e5a3214
 SHA512 
ac1e81166e5b73a943f78c930ef89fc5b71447c7eb8c4cc509c50c686a360a25f75f1651061a653bf995c15377bee4cb98a97665bf27f04f947940a249e12661
 DIST ohtopology.cc09c0.tar.gz 118703 BLAKE2B 
ef5b560cb2a272586e8755117b5021d67562bda962b0c6240072ad42876ae71f21c81611521d31b01212d2175637244b8513332858aec3d7e713546587111ed0
 SHA512 
46f1e4ba6b7553b81c939c2ae691ab89e0bf9b565820e8c65b14b6534f3a9240580cb9fd69f46568c5f0c8d105da825b6f9abbf61a64289a4f553a47902b38d4
+DIST openhome-sc2-20200704.tar.gz 22352681 BLAKE2B 
a5131f3b5c3400ff0ca58f0ce9b45c25db6fc13dcf6827ed9e4531effd3b35026d59495adf690ba65c09624c12f7755b9373ec4e4309de73f17fdeb866beeba7
 SHA512 
04586fbfd8053c7f01d2c3dbf421f75d0d93ac179cf5f58bc7966d364a3477a87985a1a2db1b35018aa5193a07977b7b4be60d317e7c10b275234adf9a2bd5d2
 DIST sc2mpd-1.1.5.tar.gz 219031 BLAKE2B 
ac8a3b4da6caff58db4948c32d643bf9244efa4ad77e29c18aa7e10036715a9a84c9f69478f5a2eabf6769112fb61ea15e1d7e8e613fbae05794cef609f21247
 SHA512 
8ea47b8bda62b8e97b95b0ddf0ab7979a54ae8bc599c67ef7bdd16ea876254446c8be440fade7355be93742c94c6f20b56e40a5756cc3c0dbe0409612dc3788e
+DIST sc2mpd-1.1.7.tar.gz 238674 BLAKE2B 
35fd57797612e3883ad5cc04be3f5328dbf4ec9aedb0461a801fe79566ef20de4026ad653eec6e7d932ffcd0385bb618331a519ec54838fd856d09c20f1971b8
 SHA512 
0b39e200f013602c851bec1ba41210c40d1a984638c86bd8dd5d61286aff19b315f282182753426e4470c8e6ccb60265b16dc6ba2e5117f59a3d40194464b4b3

diff --git a/media-sound/sc2mpd/files/sc2mpd-1.1.7-python.patch 
b/media-sound/sc2mpd/files/sc2mpd-1.1.7-python.patch
new file mode 100644
index 000..d4103a52245
--- /dev/null
+++ b/media-sound/sc2mpd/files/sc2mpd-1.1.7-python.patch
@@ -0,0 +1,64 @@
+diff -ur work.orig/ohNet/bundle_binaries.py work/ohNet/bundle_binaries.py
+--- a/openhome/ohNet/bundle_binaries.py2020-11-10 00:24:29.640122646 
-0600
 b/openhome/ohNet/bundle_binaries.py2020-11-10 00:26:38.441470487 
-0600
+@@ -121,22 +121,22 @@
+ parser.add_option("-m", "--managed-only", default=False, 
action="store_true", help="Package only the managed assembly.")
+ options, args = parser.parse_args()
+ if len(args)>0:
+-print "Too many arguments."
++print("Too many arguments.")
+ sys.exit(1)
+ if options.system not in ALL_SYSTEMS:
+-print "Please specify --system from one of {0}.".format(", 
".join(sorted(ALL_SYSTEMS)))
++print("Please specify --system from one of {0}.".format(", 
".join(sorted(ALL_SYSTEMS
+ sys.exit(1)
+ if options.architecture not in ALL_ARCHITECTURES:
+-print "Please specify --architecture from one of {0}.".format(", 
".join(sorted(set(tgt.architecture for tgt in ALL_TARGETS.keys() if tgt.system 
== options.system
++print("Please specify --architecture from one of {0}.".format(", 
".join(sorted(set(tgt.architecture for tgt in ALL_TARGETS.keys() if tgt.system 
== options.system)
+ sys.exit(1)
+ if options.configuration not in ALL_CONFIGURATIONS:
+-print "Please specify --configuration from one of {0}.".format(", 
".join(sorted(ALL_CONFIGURATIONS)))
++print("Please specify --configuration from one of {0}.".format(", 
".join(sorted(ALL_CONFIGURATIONS
+ sys.exit(1)
+ target = BuildTarget(options.system, options.architecture, 
options.configuration)
+ if target not in ALL_TARGETS:
+-print "Unrecognized target combination. Valid combinations are:"
++print("Unrecognized target combination. Valid combinations 

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

2020-11-11 Thread Erik Mackdanz
commit: b408b518bdf05a38e75440e80434edbf9aa387cf
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Thu Nov 12 05:08:57 2020 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Thu Nov 12 05:09:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b408b518

net-libs/libupnpp: Bump to 0.19.4

Closes: https://bugs.gentoo.org/694770
Signed-off-by: Erik Mackdanz  gentoo.org>
Package-Manager: Portage-3.0.9, Repoman-3.0.2

 net-libs/libupnpp/Manifest   |  1 +
 net-libs/libupnpp/libupnpp-0.19.4.ebuild | 18 ++
 2 files changed, 19 insertions(+)

diff --git a/net-libs/libupnpp/Manifest b/net-libs/libupnpp/Manifest
index 956c3d6028c..fd7afeab982 100644
--- a/net-libs/libupnpp/Manifest
+++ b/net-libs/libupnpp/Manifest
@@ -1 +1,2 @@
 DIST libupnpp-0.17.0.tar.gz 475725 BLAKE2B 
568ead87791db1a41a4e5f93280cc8560336516cf676e1b64c35d0835579501ba61b75ee41e1dd1e58024d771f6f077c3c85515929be1c059a51ca314756fbfb
 SHA512 
da7ef2453a8fad1e226c6252a84d76bf874128d306d4f9ca53e77e64734d113f3ad6dcd79549b2fe2a3cfab22243b5dceb1b7bd1fffeb512ed996b8fc680667e
+DIST libupnpp-0.19.4.tar.gz 469296 BLAKE2B 
e1240446bdd48329138183015445778f89abc575ade64a15c8564d2d3a6992b73c8fe7d0e9e99370f37ea851e65fef0a6b52e0fd274d064a5cdbc65ab2129c2d
 SHA512 
4fda8ef9046d18b39cde4c5c6cfca4284f1f6ad76689cdab5a0d584b9fae17adbfe225542b81b88c62e62b65584dab38211a0606ac02ffd0f12abd13246c040f

diff --git a/net-libs/libupnpp/libupnpp-0.19.4.ebuild 
b/net-libs/libupnpp/libupnpp-0.19.4.ebuild
new file mode 100644
index 000..638dc365a3e
--- /dev/null
+++ b/net-libs/libupnpp/libupnpp-0.19.4.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+DESCRIPTION="The libupnpp C++ library wraps libupnp for easier use by upmpdcli 
and upplay"
+HOMEPAGE="https://www.lesbonscomptes.com/upmpdcli;
+SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+   dev-libs/expat
+   net-libs/libnpupnp
+   net-misc/curl
+"
+RDEPEND="${DEPEND}"



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

2020-11-11 Thread Erik Mackdanz
commit: e2990436bce967ea8c782843873100a883d0dd4e
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Thu Nov 12 05:03:41 2020 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Thu Nov 12 05:03:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2990436

net-libs/libnpupnp: Add new package 4.0.13

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

 net-libs/libnpupnp/Manifest|  1 +
 net-libs/libnpupnp/libnpupnp-4.0.13.ebuild | 39 ++
 net-libs/libnpupnp/metadata.xml| 36 +++
 3 files changed, 76 insertions(+)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
new file mode 100644
index 000..73b212161a1
--- /dev/null
+++ b/net-libs/libnpupnp/Manifest
@@ -0,0 +1 @@
+DIST libnpupnp-4.0.13.tar.gz 537389 BLAKE2B 
0085d9ea9cf1786bba8e8abb812b0c1279fc30c70a16cb2bf4cfad405ec1346180171dd39296a30f5747cd55ee06fc314bcb49fdb6537a4dfbcf048fb66fd7f5
 SHA512 
c0332552ab2ba8aea8e72858601f2415a08a68224f724454d230acddf612b2fdd873daf41aeeeb3e1b4d1694665245087b3c4f96c896d36e2e9c017ea95d13aa

diff --git a/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild 
b/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild
new file mode 100644
index 000..80a418d1649
--- /dev/null
+++ b/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a 
libupnp"
+HOMEPAGE="https://framagit.org/medoc92/npupnp;
+SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz;
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE="client debug device gena ipv6 optssdp reuseaddr soap ssdp tools 
webserver"
+
+RDEPEND="
+   dev-libs/expat
+   net-libs/libmicrohttpd
+   net-misc/curl
+"
+
+src_prepare() {
+   default
+   ./autogen.sh || die
+}
+
+src_configure() {
+   econf \
+   $(use_enable client) \
+   $(use_enable debug) \
+   $(use_enable device) \
+   $(use_enable gena) \
+   $(use_enable ipv6) \
+   $(use_enable optssdp) \
+   $(use_enable reuseaddr) \
+   $(use_enable soap) \
+   $(use_enable ssdp) \
+   $(use_enable tools) \
+   $(use_enable webserver)
+}

diff --git a/net-libs/libnpupnp/metadata.xml b/net-libs/libnpupnp/metadata.xml
new file mode 100644
index 000..63aca78f507
--- /dev/null
+++ b/net-libs/libnpupnp/metadata.xml
@@ -0,0 +1,36 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+  
+stasib...@gentoo.org
+Primary maintainer
+  
+  
+The libupnpp library, which provides the C++ interface for
+upmpdcli and upplay, used to rely on the venerable libupnp library
+(a.k.a pupnp: Portable UPnP) to provide the base UPnP protocol
+functionality.
+  
+  
+control point code (client)
+device specific code (implies -webserver if 
disabled)
+GENA part
+optional SSDP headers support
+bind the miniserver socket with reuseaddr
+SOAP part
+SSDP part
+helper APIs in upnptools.h
+integrated web server
+  
+



[gentoo-commits] repo/proj/guru:dev commit in: gui-apps/paperdesktop/, gui-apps/paperdesktop/files/

2020-11-11 Thread Aisha Tammy
commit: 87c16dc2a8851a16a4050bceaf1da4c7ab8f5b93
Author: Aisha Tammy  aisha  cc>
AuthorDate: Wed Nov 11 23:14:28 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Wed Nov 11 23:14:39 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=87c16dc2

gui-apps/paperdesktop: sleek QT based DE for wayland

uses wayfire as the compositor and provides
an integrated DE for wayland

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Aisha Tammy  aisha.cc>

 gui-apps/paperdesktop/Manifest |  1 +
 .../files/paperdesktop-0_p20201107-build.patch | 14 +
 gui-apps/paperdesktop/metadata.xml |  8 +++
 .../paperdesktop/paperdesktop-0_p20201107.ebuild   | 60 ++
 gui-apps/paperdesktop/paperdesktop-.ebuild | 60 ++
 5 files changed, 143 insertions(+)

diff --git a/gui-apps/paperdesktop/Manifest b/gui-apps/paperdesktop/Manifest
new file mode 100644
index ..423304b5
--- /dev/null
+++ b/gui-apps/paperdesktop/Manifest
@@ -0,0 +1 @@
+DIST paperdesktop-0_p20201107.tar.gz 200672 BLAKE2B 
d2c7807cd23294521ada75bfbae2f841e72a399a8bfc94e2f507c15eeda00d5fef90826225ae3d531d0b33f82ce2e0aa06b5081778e8354e87ccea30daf310c6
 SHA512 
940f0aba34fc8d03a3dc716ca921991ce3aa22eb0afcb601c23f3dd8ada2f15e22c5f0dbc83e58c003a3c43a0955e0b3634824d34fea1b2ce97bc3c2dfd28475

diff --git a/gui-apps/paperdesktop/files/paperdesktop-0_p20201107-build.patch 
b/gui-apps/paperdesktop/files/paperdesktop-0_p20201107-build.patch
new file mode 100644
index ..b3d4eea9
--- /dev/null
+++ b/gui-apps/paperdesktop/files/paperdesktop-0_p20201107-build.patch
@@ -0,0 +1,14 @@
+diff --git a/libpaperprime/libpaperprime.pro b/libpaperprime/libpaperprime.pro
+index 7ee9ec2..d5b89a2 100644
+--- a/libpaperprime/libpaperprime.pro
 b/libpaperprime/libpaperprime.pro
+@@ -71,8 +71,7 @@ unix {
+ 
+ INSTALLS   += target includes themefiles
+ 
+-contains(DEFINES, LIB64): target.path = $$PREFIX/lib64
+-else: target.path = $$PREFIX/lib
++target.path   = $$PREFIX/lib/
+ 
+ includes.files= paperprime/*.h
+ includes.path = $$PREFIX/include/paperprime/

diff --git a/gui-apps/paperdesktop/metadata.xml 
b/gui-apps/paperdesktop/metadata.xml
new file mode 100644
index ..65ac1f20
--- /dev/null
+++ b/gui-apps/paperdesktop/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   gen...@aisha.cc
+   Aisha Tammy
+   
+

diff --git a/gui-apps/paperdesktop/paperdesktop-0_p20201107.ebuild 
b/gui-apps/paperdesktop/paperdesktop-0_p20201107.ebuild
new file mode 100644
index ..ee7ec14c
--- /dev/null
+++ b/gui-apps/paperdesktop/paperdesktop-0_p20201107.ebuild
@@ -0,0 +1,60 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit qmake-utils
+
+DESCRIPTION="simple, sleek QT based DE for wayland using wayfire"
+
+HOMEPAGE="https://gitlab.com/cubocore/paper/paperdesktop;
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://gitlab.com/cubocore/paper/paperdesktop;
+else
+   COMMIT=960ff1e31a48e96e10afa0459183e52fbea8f2de
+   
SRC_URI="https://gitlab.com/cubocore/paper/paperdesktop/-/archive/${COMMIT}/paperdesktop-${COMMIT}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}"/paperdesktop-${COMMIT}
+   KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+DEPEND="
+   dev-libs/libdbusmenu-qt
+   dev-libs/wayland
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5[wayland,X]
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5[X]
+   dev-qt/qtsvg:5
+"
+RDEPEND="${DEPEND}
+   gui-wm/wayfire[X]
+   x11-misc/qt5ct
+"
+BDEPEND="
+   virtual/pkgconfig
+"
+
+PATCHES=( "${FILESDIR}"/${PN}-0_p20201107-build.patch )
+
+src_prepare() {
+   default
+   sed -e "s:/lib/:/$(get_libdir)/:" \
+   -i libpaperdesktop/core/core.pro \
+   -i libpaperdesktop/gui/gui.pro \
+   -i libpapershell-wl/libpapershell-wl.pro \
+   -i libpaperprime/libpaperprime.pro || die
+}
+
+src_compile() {
+   eqmake5 paperdesktop.pro
+   emake
+}
+
+src_install() {
+   emake INSTALL_ROOT="${ED}" install
+}

diff --git a/gui-apps/paperdesktop/paperdesktop-.ebuild 
b/gui-apps/paperdesktop/paperdesktop-.ebuild
new file mode 100644
index ..ee7ec14c
--- /dev/null
+++ b/gui-apps/paperdesktop/paperdesktop-.ebuild
@@ -0,0 +1,60 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit qmake-utils
+
+DESCRIPTION="simple, sleek QT based DE for wayland using wayfire"
+
+HOMEPAGE="https://gitlab.com/cubocore/paper/paperdesktop;
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://gitlab.com/cubocore/paper/paperdesktop;
+else
+   

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

2020-11-11 Thread Maciej Barć
commit: c431f0f89489e12004941fdeff9238c82cfb989a
Author: Maciej Barć  protonmail  com>
AuthorDate: Wed Nov 11 22:27:05 2020 +
Commit: Maciej Barć  protonmail  com>
CommitDate: Wed Nov 11 22:27:05 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c431f0f8

dev-python/redbaron: bump python compat

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Maciej Barć  protonmail.com>

 dev-python/redbaron/redbaron-0.9.2.ebuild | 2 +-
 dev-python/redbaron/redbaron-0.9.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/redbaron/redbaron-0.9.2.ebuild 
b/dev-python/redbaron/redbaron-0.9.2.ebuild
index 821273bf..af6cb27a 100644
--- a/dev-python/redbaron/redbaron-0.9.2.ebuild
+++ b/dev-python/redbaron/redbaron-0.9.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7..9} )
 
 inherit distutils-r1
 

diff --git a/dev-python/redbaron/redbaron-0.9.ebuild 
b/dev-python/redbaron/redbaron-0.9.ebuild
index 821273bf..af6cb27a 100644
--- a/dev-python/redbaron/redbaron-0.9.ebuild
+++ b/dev-python/redbaron/redbaron-0.9.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7..9} )
 
 inherit distutils-r1
 



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

2020-11-11 Thread Maciej Barć
commit: badf1ec8abca5fcf2dfde6dcfe3c5832b3ff6a38
Author: Maciej Barć  protonmail  com>
AuthorDate: Wed Nov 11 22:24:26 2020 +
Commit: Maciej Barć  protonmail  com>
CommitDate: Wed Nov 11 22:24:26 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=badf1ec8

dev-python/baron: bump python compat

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Maciej Barć  protonmail.com>

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

diff --git a/dev-python/baron/baron-0.9.ebuild 
b/dev-python/baron/baron-0.9.ebuild
index 3ad9ef2d..5537308f 100644
--- a/dev-python/baron/baron-0.9.ebuild
+++ b/dev-python/baron/baron-0.9.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7..9} )
 
 inherit distutils-r1
 



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

2020-11-11 Thread Maciej Barć
commit: 24420fd04c82a2f6782d8db2859a9a787f8a7342
Author: Maciej Barć  protonmail  com>
AuthorDate: Wed Nov 11 22:22:13 2020 +
Commit: Maciej Barć  protonmail  com>
CommitDate: Wed Nov 11 22:22:13 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=24420fd0

dev-python/pypandoc: bump python compat

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Maciej Barć  protonmail.com>

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

diff --git a/dev-python/pypandoc/pypandoc-1.5.ebuild 
b/dev-python/pypandoc/pypandoc-1.5.ebuild
index da1f8424..1a04fc84 100644
--- a/dev-python/pypandoc/pypandoc-1.5.ebuild
+++ b/dev-python/pypandoc/pypandoc-1.5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7..9} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/proj/guru:dev commit in: app-office/pyspread/

2020-11-11 Thread Maciej Barć
commit: c0287ff2f5c8740ae65d303fe496ea051f0b59ce
Author: Maciej Barć  protonmail  com>
AuthorDate: Wed Nov 11 22:19:00 2020 +
Commit: Maciej Barć  protonmail  com>
CommitDate: Wed Nov 11 22:19:00 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c0287ff2

app-office/pyspread: bump python compat

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Maciej Barć  protonmail.com>

 app-office/pyspread/pyspread-1.99.2-r1.ebuild | 2 +-
 app-office/pyspread/pyspread-1.99.4.ebuild| 2 +-
 app-office/pyspread/pyspread-.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-office/pyspread/pyspread-1.99.2-r1.ebuild 
b/app-office/pyspread/pyspread-1.99.2-r1.ebuild
index 4cfdb881..ca660829 100644
--- a/app-office/pyspread/pyspread-1.99.2-r1.ebuild
+++ b/app-office/pyspread/pyspread-1.99.2-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7..9} )
 
 inherit eutils xdg desktop distutils-r1
 

diff --git a/app-office/pyspread/pyspread-1.99.4.ebuild 
b/app-office/pyspread/pyspread-1.99.4.ebuild
index 4cfdb881..ca660829 100644
--- a/app-office/pyspread/pyspread-1.99.4.ebuild
+++ b/app-office/pyspread/pyspread-1.99.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7..9} )
 
 inherit eutils xdg desktop distutils-r1
 

diff --git a/app-office/pyspread/pyspread-.ebuild 
b/app-office/pyspread/pyspread-.ebuild
index 4cfdb881..ca660829 100644
--- a/app-office/pyspread/pyspread-.ebuild
+++ b/app-office/pyspread/pyspread-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7..9} )
 
 inherit eutils xdg desktop distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: profiles/, dev-lang/lua/

2020-11-11 Thread William Hubbs
commit: e0ec6727d673a6ac44c7ee7d82d2ebc609e1f511
Author: Alexey Sokolov  google  com>
AuthorDate: Thu Nov 12 01:38:38 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Nov 12 02:15:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0ec6727

dev-lang/lua: slotted 5.1 rev bump to fix lua_get_include_dir

Closes: https://github.com/gentoo/gentoo/pull/18227
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Alexey Sokolov  asokolov.org>
Signed-off-by: William Hubbs  gentoo.org>

 dev-lang/lua/lua-5.1.5-r104.ebuild | 146 +
 profiles/package.mask  |   1 +
 2 files changed, 147 insertions(+)

diff --git a/dev-lang/lua/lua-5.1.5-r104.ebuild 
b/dev-lang/lua/lua-5.1.5-r104.ebuild
new file mode 100644
index 000..ee260fdac85
--- /dev/null
+++ b/dev-lang/lua/lua-5.1.5-r104.ebuild
@@ -0,0 +1,146 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit eutils multilib multilib-minimal portability toolchain-funcs 
versionator
+
+DESCRIPTION="A powerful light-weight programming language designed for 
extending applications"
+HOMEPAGE="http://www.lua.org/;
+SRC_URI="http://www.lua.org/ftp/${P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="5.1"
+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 ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="+deprecated emacs readline static"
+
+RDEPEND="readline? ( >=sys-libs/readline-6.2_p5-r1:0=[${MULTILIB_USEDEP}] )
+   app-eselect/eselect-lua
+   !dev-lang/lua:0"
+DEPEND="${RDEPEND}
+   sys-devel/libtool"
+PDEPEND="emacs? ( app-emacs/lua-mode )"
+
+SAN_SLOT="${SLOT//.}"
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/lua${SLOT}/luaconf.h
+)
+
+src_prepare() {
+   local PATCH_PV=$(get_version_component_range 1-2)
+
+   epatch "${FILESDIR}"/${PN}-${PATCH_PV}-make-r2.patch
+   epatch "${FILESDIR}"/${PN}-${PATCH_PV}-module_paths.patch
+
+   # use glibtool on Darwin (versus Apple libtool)
+   if [[ ${CHOST} == *-darwin* ]] ; then
+   sed -i -e '/LIBTOOL = /s:libtool:glibtool:' \
+   Makefile src/Makefile || die
+   fi
+
+   #EPATCH_SOURCE="${FILESDIR}/${PV}" EPATCH_SUFFIX="upstream.patch" epatch
+
+   # correct lua versioning
+   sed -i -e 's/\(LIB_VERSION = \)6:1:1/\16:5:1/' src/Makefile
+
+   sed -i -e 's:\(/README\)\("\):\1.gz\2:g' doc/readme.html
+
+   if ! use deprecated ; then
+   # patches from 5.1.4 still apply
+   epatch "${FILESDIR}"/${PN}-5.1.4-deprecated.patch
+   epatch "${FILESDIR}"/${PN}-5.1.4-test.patch
+   fi
+
+   if ! use readline ; then
+   epatch "${FILESDIR}"/${PN}-${PATCH_PV}-readline.patch
+   fi
+
+   # Using dynamic linked lua is not recommended for performance
+   # reasons. http://article.gmane.org/gmane.comp.lang.lua.general/18519
+   # Mainly, this is of concern if your arch is poor with GPRs, like x86
+   # Note that this only affects the interpreter binary (named lua), not 
the lua
+   # compiler (built statically) nor the lua libraries (both shared and 
static
+   # are installed)
+   if use static ; then
+   epatch "${FILESDIR}"/${PN}-${PATCH_PV}-make_static-r1.patch
+   fi
+
+   # A slotted Lua uses different directories for headers & names for
+   # libraries, and pkgconfig should reflect that.
+   sed -r -i \
+   -e "/^INSTALL_INC=/s,(/include)$,\1/lua${SLOT}," \
+   -e "/^includedir=/s,(/include)$,\1/lua${SLOT}," \
+   -e "/^Libs:/s,((-llua)($| )),\2${SLOT}\3," \
+   -e "/^Cflags:/s,((-I..includedir.)($| )),\2/lua${SLOT}\3," \
+   "${S}"/etc/lua.pc
+
+   # custom Makefiles
+   multilib_copy_sources
+}
+
+multilib_src_configure() {
+   # We want packages to find our things...
+   sed -i \
+   -e 's:/usr/local:'${EPREFIX}'/usr:' \
+   -e "s:\([/\"]\)\:\1$(get_libdir):g" \
+   etc/lua.pc src/luaconf.h || die
+}
+
+multilib_src_compile() {
+   tc-export CC
+   myflags=
+   # what to link to liblua
+   liblibs="-lm"
+   liblibs="${liblibs} $(dlopen_lib)"
+
+   # what to link to the executables
+   mylibs=
+   if use readline; then
+   mylibs="-lreadline"
+   fi
+
+   cd src
+   emake CC="${CC}" CFLAGS="-DLUA_USE_LINUX ${CFLAGS}" \
+   RPATH="${EPREFIX}/usr/$(get_libdir)/" \
+   LUA_LIBS="${mylibs}" \
+   LIB_LIBS="${liblibs}" \
+   V=$(get_version_component_range 1-2) \
+   gentoo_all
+
+   mv lua_test ../test/lua.static
+}
+
+multilib_src_install() {
+   emake INSTALL_TOP="${ED}/usr" 

[gentoo-commits] repo/proj/guru:dev commit in: app-admin/s-tui/

2020-11-11 Thread Maciej Barć
commit: 827c56986c1163cc6b163e25d8135556b681c57d
Author: Maciej Barć  protonmail  com>
AuthorDate: Wed Nov 11 22:15:43 2020 +
Commit: Maciej Barć  protonmail  com>
CommitDate: Wed Nov 11 22:15:46 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=827c5698

app-admin/s-tui: bump python compat

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Maciej Barć  protonmail.com>

 app-admin/s-tui/s-tui-1.0.2.ebuild | 4 ++--
 app-admin/s-tui/s-tui-.ebuild  | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-admin/s-tui/s-tui-1.0.2.ebuild 
b/app-admin/s-tui/s-tui-1.0.2.ebuild
index 19d04477..cbfd9212 100644
--- a/app-admin/s-tui/s-tui-1.0.2.ebuild
+++ b/app-admin/s-tui/s-tui-1.0.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7..9} )
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1 optfeature
@@ -25,8 +25,8 @@ LICENSE="GPL-2"
 SLOT="0"
 
 RDEPEND="
-   >=dev-python/urwid-2.0.1[${PYTHON_USEDEP}]
>=dev-python/psutil-5.6.0[${PYTHON_USEDEP}]
+   >=dev-python/urwid-2.0.1[${PYTHON_USEDEP}]
 "
 
 distutils_enable_tests unittest

diff --git a/app-admin/s-tui/s-tui-.ebuild 
b/app-admin/s-tui/s-tui-.ebuild
index 1d50db73..cbfd9212 100644
--- a/app-admin/s-tui/s-tui-.ebuild
+++ b/app-admin/s-tui/s-tui-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7..9} )
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1 optfeature



[gentoo-commits] repo/proj/guru:dev commit in: gui-apps/nwg-launchers/files/

2020-11-11 Thread Aisha Tammy
commit: d1bdd7affd8cc47154c57b7f5a76dce117204223
Author: Aisha Tammy  aisha  cc>
AuthorDate: Wed Nov 11 21:57:18 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Wed Nov 11 21:58:16 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d1bdd7af

gui-apps/nwg-launchers: remove inherits for usability

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Aisha Tammy  aisha.cc>

 gui-apps/nwg-launchers/files/index.theme | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/gui-apps/nwg-launchers/files/index.theme 
b/gui-apps/nwg-launchers/files/index.theme
index caa15444..fba8c09a 100644
--- a/gui-apps/nwg-launchers/files/index.theme
+++ b/gui-apps/nwg-launchers/files/index.theme
@@ -1,8 +1,6 @@
 [Icon Theme]
 Name=nwg-launchers
-Comment=user customized icon theme by inheritance
-
-Inherits=gnome,Adwaita,hicolor
+Comment=nwg-launchers default icons
 
 Directories=icons
 



[gentoo-commits] repo/proj/guru:dev commit in: gui-apps/nwg-launchers/, gui-apps/nwg-launchers/files/, ...

2020-11-11 Thread Aisha Tammy
commit: deb2610b8270093cb31398f7d389d9a9de11dad8
Author: Aisha Tammy  aisha  cc>
AuthorDate: Wed Nov 11 21:49:26 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Wed Nov 11 21:49:56 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=deb2610b

gui-apps/nwg-launchers: add icons from the package

has additional fixes for the icons to display correctly

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Aisha Tammy  aisha.cc>

 .../files/icons/system-lock-screen.svg | 60 
 .../nwg-launchers/files/icons/system-log-out.svg   | 61 +
 .../nwg-launchers/files/icons/system-reboot.svg|  1 +
 .../nwg-launchers/files/icons/system-shutdown.svg  | 64 ++
 gui-apps/nwg-launchers/files/index.theme   | 14 +
 ...s-.ebuild => nwg-launchers-0.4.2-r1.ebuild} | 11 +++-
 gui-apps/nwg-launchers/nwg-launchers-.ebuild   | 11 +++-
 7 files changed, 216 insertions(+), 6 deletions(-)

diff --git a/gui-apps/nwg-launchers/files/icons/system-lock-screen.svg 
b/gui-apps/nwg-launchers/files/icons/system-lock-screen.svg
new file mode 100644
index ..6e14c8a7
--- /dev/null
+++ b/gui-apps/nwg-launchers/files/icons/system-lock-screen.svg
@@ -0,0 +1,60 @@
+
+http://purl.org/dc/elements/1.1/;
+   xmlns:cc="http://creativecommons.org/ns#;
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   xmlns:svg="http://www.w3.org/2000/svg;
+   xmlns="http://www.w3.org/2000/svg;
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd;
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape;
+   width="16"
+   height="16"
+   version="1"
+   id="svg6"
+   sodipodi:docname="system-lock-screen.svg"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14">
+  
+
+  
+image/svg+xml
+http://purl.org/dc/dcmitype/StillImage; />
+  
+
+  
+  
+  
+  
+  
+

diff --git a/gui-apps/nwg-launchers/files/icons/system-log-out.svg 
b/gui-apps/nwg-launchers/files/icons/system-log-out.svg
new file mode 100644
index ..bf3ac823
--- /dev/null
+++ b/gui-apps/nwg-launchers/files/icons/system-log-out.svg
@@ -0,0 +1,61 @@
+
+http://purl.org/dc/elements/1.1/;
+   xmlns:cc="http://creativecommons.org/ns#;
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   xmlns:svg="http://www.w3.org/2000/svg;
+   xmlns="http://www.w3.org/2000/svg;
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd;
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape;
+   width="16"
+   height="16"
+   version="1"
+   id="svg6"
+   sodipodi:docname="system-log-out.svg"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14">
+  
+
+  
+image/svg+xml
+http://purl.org/dc/dcmitype/StillImage; />
+  
+
+  
+  
+  
+  
+  
+

diff --git a/gui-apps/nwg-launchers/files/icons/system-reboot.svg 
b/gui-apps/nwg-launchers/files/icons/system-reboot.svg
new file mode 100644
index ..1ccae13c
--- /dev/null
+++ b/gui-apps/nwg-launchers/files/icons/system-reboot.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; viewBox="3 3 16 16">
\ No newline at end of file

diff --git a/gui-apps/nwg-launchers/files/icons/system-shutdown.svg 
b/gui-apps/nwg-launchers/files/icons/system-shutdown.svg
new file mode 100644
index ..362a0c75
--- /dev/null
+++ b/gui-apps/nwg-launchers/files/icons/system-shutdown.svg
@@ -0,0 +1,64 @@
+
+http://purl.org/dc/elements/1.1/;
+   xmlns:cc="http://creativecommons.org/ns#;
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   xmlns:svg="http://www.w3.org/2000/svg;
+   xmlns="http://www.w3.org/2000/svg;
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd;
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape;
+   width="16"
+   height="16"
+   version="1"
+   id="svg8"
+   sodipodi:docname="system-shutdown.svg"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14">
+  
+
+  
+image/svg+xml
+http://purl.org/dc/dcmitype/StillImage; />
+  
+
+  
+  
+  
+  
+  
+  
+

diff --git a/gui-apps/nwg-launchers/files/index.theme 
b/gui-apps/nwg-launchers/files/index.theme
new file mode 100644
index ..caa15444
--- /dev/null
+++ b/gui-apps/nwg-launchers/files/index.theme
@@ -0,0 +1,14 @@
+[Icon Theme]
+Name=nwg-launchers
+Comment=user customized icon theme by inheritance
+
+Inherits=gnome,Adwaita,hicolor
+
+Directories=icons
+
+[icons]
+Context=Applications
+Size=96
+MinSize=8
+MaxSize=192
+Type=Scalable

diff --git a/gui-apps/nwg-launchers/nwg-launchers-.ebuild 
b/gui-apps/nwg-launchers/nwg-launchers-0.4.2-r1.ebuild
similarity index 83%
copy from gui-apps/nwg-launchers/nwg-launchers-.ebuild
copy to gui-apps/nwg-launchers/nwg-launchers-0.4.2-r1.ebuild
index dee57da3..914a82d8 100644
--- a/gui-apps/nwg-launchers/nwg-launchers-.ebuild
+++ b/gui-apps/nwg-launchers/nwg-launchers-0.4.2-r1.ebuild
@@ -15,7 +15,7 @@ inherit meson
 
 

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

2020-11-11 Thread Joshua Kinard
commit: a08139443bff35ea1b7e4d9f9b313cded7a4cd7d
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Nov 12 01:34:52 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Nov 12 01:35:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0813944

sys-kernel/mips-sources: Update LTS, add 5.4.x LTS

- Removed the ebuilds for LTS versions 4.4.x and 4.9.x
- Removed the ebuilds for non-LTS versions 4.18.20 and 4.20.17
- Updated ebuilds for LTS versions 4.14.x and 4.19.x
- Added an ebuild for LTS version 5.4.x
- Updated SRC_URI to adhere to new Gentoo mirroring policy

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

 sys-kernel/mips-sources/Manifest   |  22 +-
 14.188.ebuild => mips-sources-4.14.206.ebuild} |   4 +-
 .../mips-sources/mips-sources-4.18.20.ebuild   | 346 
 19.133.ebuild => mips-sources-4.19.157.ebuild} |   2 +-
 .../mips-sources/mips-sources-4.4.230.ebuild   | 350 -
 .../mips-sources/mips-sources-4.9.230.ebuild   | 346 
 ...s-4.20.17.ebuild => mips-sources-5.4.77.ebuild} |  12 +-
 7 files changed, 14 insertions(+), 1068 deletions(-)

diff --git a/sys-kernel/mips-sources/Manifest b/sys-kernel/mips-sources/Manifest
index e18f81d7c1c..e4f62bc9c7d 100644
--- a/sys-kernel/mips-sources/Manifest
+++ b/sys-kernel/mips-sources/Manifest
@@ -1,22 +1,10 @@
 DIST linux-4.14.tar.xz 100770500 BLAKE2B 
85dc4aa953fe65e273a24473d8de98e4f204f97c43be9fc87cf5be01f796f94cfde5c8f9c84619751f1cac51f83ce0b4681fb19c5f2965a72d4a94fe5577846a
 SHA512 
77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8
-DIST linux-4.18.tar.xz 101781564 BLAKE2B 
138bdc49dc8871e5566b5e23a9e5ed0e68fff480a7a04fc659a9efe2d4bcc778ac01368a32bc5d1dbde870102ce7294b9d315f81c4e6e762ee781135e83033f2
 SHA512 
950eb85ac743b291afe9f21cd174d823e25f11883ee62cecfbfff8fe8c5672aae707654b1b8f29a133b1f2e3529e63b9f7fba4c45d6da8000b3a9a9ae038
 DIST linux-4.19.tar.xz 103117552 BLAKE2B 
1dbf16cf410867412d17568fe42bc1e90c034183b654d270b650621ff7664a321950943d0639205bc1ee7ef6210be170c1f2c785a042ed8a4ec5e3a486d890e0
 SHA512 
ab67cc746b375a8b135e8b23e35e1d6787930d19b3c26b2679787d62951cbdbc3bb66f8ededeb9b890e5008b2459397f9018f1a6772fdef67780b06a4cb9f6f4
-DIST linux-4.20.tar.xz 104257836 BLAKE2B 
fb52cad2897da319299486fa8c3b9415cd0aee0842dbf353a5b269720dcb902db407bb55dd95a77b212dcb4a488c15363d561f3649d6bd16885561f2466d90b1
 SHA512 
e282399beea5da539701aed2bc131abd5bc74a970dcd344163e9d295106dfd700180e672ed546ae5e55bc6b9ac95efd5ca1de2039015c1b7a6fc9c01ea6583d4
-DIST linux-4.4.tar.xz 87295988 BLAKE2B 
f260f1858994f5d481fd078c86e51bddbc958f7c5d1586f60dced772e1b1107ecf3aae0558c3e6f39c36f7d3aa1e6cd1e5c64ec9d6f2218f47b98413da6466fb
 SHA512 
13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e
-DIST linux-4.9.tar.xz 93192404 BLAKE2B 
83ae310b17d47f1f18d6d28537c31e10f3e60458c5954c4611158ca99e71cc0da2e051272eabf27d5887df4a7cb4a5dd66ff993077c11d2221e92d300a0b48d7
 SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a
+DIST linux-5.4.tar.xz 109441440 BLAKE2B 
193bc4a3147e147d5529956164ec4912fad5d5c6fb07f909ff1056e57235834173194afc686993ccd785c1ff15804de0961b625f3008cca0e27493efc8f27b13
 SHA512 
9f60f77e8ab972b9438ac648bed17551c8491d6585a5e85f694b2eaa4c623fbc61eb18419b2656b6795eac5deec0edaa04547fc6723fbda52256bd7f3486898f
 DIST mips-sources-4.14.0-patches-v2.tar.xz 287560 BLAKE2B 
9fb6b07dcb0336be95c86346e13f68877e891a2c97084ce798e3c39cf57a71832ae4ae5b74a0f60ab6f26ed8f08a35fc3704b34361a8426136055d6fb700dac9
 SHA512 
e163ed8cdef9a027b55794b168fb4dac77dc871c209463ac8344ef932757d48ce39f44af4ba7312ee27ce04b175a3ea2f6eaa8a7929d6beebcbaa3de4a764cd6
-DIST mips-sources-4.18.0-patches-v2.tar.xz 288096 BLAKE2B 
13a9e3a5e4d59357b8747c7143cdd935e39038fcd098d114755f2e4a2ebc52607e9913df9d898824be2135daee7e467587eab219e9dfaabdd7fc266eb3927a5b
 SHA512 
b6a14393fc3cb9cd689d070b5df806773ce8531a4f8214fe24671eba9fbc5075fee70f7a3ea0bbc6c7fdb06a3283c4679386bef4af8206bbc4ad80d83fdd2c27
 DIST mips-sources-4.19.0-patches-v2.tar.xz 289940 BLAKE2B 
ffca5540cbd663ed3eab3f748dec7727ca6f1abe11ce107fe1780b8191175b77d8c59f70d5e9254f01c43d507f805f081f15bd150f66da1d11e2a91715dcb038
 SHA512 
c67ac8c6f041a96348a5a6023919fc5586b70b6c3aa52777945d5f1a831e6bd24d867c0318034cf304a3c8f4c6ff0d2af3611b3ad2bc476f3bf3762d39a215f8
-DIST mips-sources-4.20.0-patches-v1.tar.xz 288804 BLAKE2B 
ce24f1ada58343c9814ae21c4374661c7b07c78b83face7d05082a5c6fe155eb9fa249515ea8292d3a50129baec22f391a364d8c49935ad6bbe779e13f8da747
 SHA512 
aed1a08766aba3ae27d73dbb392f7ed71dc6ede9141a9d2fad24b738964e6f17fd77b5d9e3022210d6af71652a59f02bb01eaa5a14634490c6720ef5bcf2422b
-DIST mips-sources-4.4.0-patches-v2.tar.xz 156396 BLAKE2B 

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

2020-11-11 Thread Thomas Deutschmann
commit: 6a5ed3f54660d40fde3262af9a6adf9734db0054
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 01:26:58 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 01:27:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a5ed3f5

sys-apps/systemd: x86 stable (bug #754075)

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

 sys-apps/systemd/systemd-246.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/systemd/systemd-246.6.ebuild 
b/sys-apps/systemd/systemd-246.6.ebuild
index 9d1e1ccf0b0..4da9f66eaaa 100644
--- a/sys-apps/systemd/systemd-246.6.ebuild
+++ b/sys-apps/systemd/systemd-246.6.ebuild
@@ -16,7 +16,7 @@ else
MY_P=${MY_PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc 
~x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc 
x86"
 fi
 
 PYTHON_COMPAT=( python3_{6,7,8} )



[gentoo-commits] proj/kde:master commit in: profiles/package.mask/

2020-11-11 Thread Andreas Sturmlechner
commit: e25c11f85333481cfc0b47b1fe1be4985e30d6b0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Nov 12 01:02:42 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Nov 12 01:02:42 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e25c11f8

profiles: Add missing kde-frameworks-5.76 package.mask

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 profiles/package.mask/kde-frameworks-5.76 | 87 +++
 1 file changed, 87 insertions(+)

diff --git a/profiles/package.mask/kde-frameworks-5.76 
b/profiles/package.mask/kde-frameworks-5.76
new file mode 100644
index 00..c15c6c612a
--- /dev/null
+++ b/profiles/package.mask/kde-frameworks-5.76
@@ -0,0 +1,87 @@
+# Andreas Sturmlechner  (12 Nov 2020)
+# KDE Frameworks 5.76.0 mask
+# Not released yet.
+~kde-frameworks/attica-5.76.0:5
+~kde-frameworks/baloo-5.76.0:5
+~kde-frameworks/bluez-qt-5.76.0:5
+~kde-frameworks/breeze-icons-5.76.0:5
+~kde-frameworks/breeze-icons-rcc-5.76.0:5
+~kde-frameworks/extra-cmake-modules-5.76.0:5
+~kde-frameworks/frameworkintegration-5.76.0:5
+~kde-frameworks/kactivities-5.76.0:5
+~kde-frameworks/kactivities-stats-5.76.0:5
+~kde-frameworks/kapidox-5.76.0:5
+~kde-frameworks/karchive-5.76.0:5
+~kde-frameworks/kauth-5.76.0:5
+~kde-frameworks/kbookmarks-5.76.0:5
+~kde-frameworks/kcalendarcore-5.76.0:5
+~kde-frameworks/kcmutils-5.76.0:5
+~kde-frameworks/kcodecs-5.76.0:5
+~kde-frameworks/kcompletion-5.76.0:5
+~kde-frameworks/kconfig-5.76.0:5
+~kde-frameworks/kconfigwidgets-5.76.0:5
+~kde-frameworks/kcontacts-5.76.0:5
+~kde-frameworks/kcoreaddons-5.76.0:5
+~kde-frameworks/kcrash-5.76.0:5
+~kde-frameworks/kdav-5.76.0:5
+~kde-frameworks/kdbusaddons-5.76.0:5
+~kde-frameworks/kdeclarative-5.76.0:5
+~kde-frameworks/kded-5.76.0:5
+~kde-frameworks/kdelibs4support-5.76.0:5
+~kde-frameworks/kdesignerplugin-5.76.0:5
+~kde-frameworks/kdesu-5.76.0:5
+~kde-frameworks/kdewebkit-5.76.0:5
+~kde-frameworks/kdnssd-5.76.0:5
+~kde-frameworks/kdoctools-5.76.0:5
+~kde-frameworks/kemoticons-5.76.0:5
+~kde-frameworks/kfilemetadata-5.76.0:5
+~kde-frameworks/kglobalaccel-5.76.0:5
+~kde-frameworks/kguiaddons-5.76.0:5
+~kde-frameworks/kholidays-5.76.0:5
+~kde-frameworks/khtml-5.76.0:5
+~kde-frameworks/ki18n-5.76.0:5
+~kde-frameworks/kiconthemes-5.76.0:5
+~kde-frameworks/kidletime-5.76.0:5
+~kde-frameworks/kimageformats-5.76.0:5
+~kde-frameworks/kinit-5.76.0:5
+~kde-frameworks/kio-5.76.0:5
+~kde-frameworks/kirigami-5.76.0:5
+~kde-frameworks/kitemmodels-5.76.0:5
+~kde-frameworks/kitemviews-5.76.0:5
+~kde-frameworks/kjobwidgets-5.76.0:5
+~kde-frameworks/kjs-5.76.0:5
+~kde-frameworks/kjsembed-5.76.0:5
+~kde-frameworks/kmediaplayer-5.76.0:5
+~kde-frameworks/knewstuff-5.76.0:5
+~kde-frameworks/knotifications-5.76.0:5
+~kde-frameworks/knotifyconfig-5.76.0:5
+~kde-frameworks/kpackage-5.76.0:5
+~kde-frameworks/kparts-5.76.0:5
+~kde-frameworks/kpeople-5.76.0:5
+~kde-frameworks/kplotting-5.76.0:5
+~kde-frameworks/kpty-5.76.0:5
+~kde-frameworks/kquickcharts-5.76.0:5
+~kde-frameworks/kross-5.76.0:5
+~kde-frameworks/krunner-5.76.0:5
+~kde-frameworks/kservice-5.76.0:5
+~kde-frameworks/ktexteditor-5.76.0:5
+~kde-frameworks/ktextwidgets-5.76.0:5
+~kde-frameworks/kunitconversion-5.76.0:5
+~kde-frameworks/kwallet-5.76.0:5
+~kde-frameworks/kwayland-5.76.0:5
+~kde-frameworks/kwidgetsaddons-5.76.0:5
+~kde-frameworks/kwindowsystem-5.76.0:5
+~kde-frameworks/kxmlgui-5.76.0:5
+~kde-frameworks/kxmlrpcclient-5.76.0:5
+~kde-frameworks/modemmanager-qt-5.76.0:5
+~kde-frameworks/networkmanager-qt-5.76.0:5
+~kde-frameworks/oxygen-icons-5.76.0:5
+~kde-frameworks/plasma-5.76.0:5
+~kde-frameworks/prison-5.76.0:5
+~kde-frameworks/purpose-5.76.0:5
+~kde-frameworks/qqc2-desktop-style-5.76.0:5
+~kde-frameworks/solid-5.76.0:5
+~kde-frameworks/sonnet-5.76.0:5
+~kde-frameworks/syndication-5.76.0:5
+~kde-frameworks/syntax-highlighting-5.76.0:5
+~kde-frameworks/threadweaver-5.76.0:5



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

2020-11-11 Thread Jason Zaman
commit: 3e14e7a1c47932672f739e30bbc46fcbb2bf2ef9
Author: Jason Zaman  gentoo  org>
AuthorDate: Thu Nov 12 00:46:00 2020 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Thu Nov 12 00:46:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e14e7a1

sci-libs/tensorflow: Add missing flatbuffers python dep to 2.4

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

 sci-libs/tensorflow/tensorflow-2.4.0_rc1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sci-libs/tensorflow/tensorflow-2.4.0_rc1.ebuild 
b/sci-libs/tensorflow/tensorflow-2.4.0_rc1.ebuild
index 42027273dcc..1481f308418 100644
--- a/sci-libs/tensorflow/tensorflow-2.4.0_rc1.ebuild
+++ b/sci-libs/tensorflow/tensorflow-2.4.0_rc1.ebuild
@@ -101,6 +101,7 @@ RDEPEND="
>=dev-python/astor-0.7.1[${PYTHON_USEDEP}]
dev-python/astunparse[${PYTHON_USEDEP}]
dev-python/dill[${PYTHON_USEDEP}]
+   dev-python/flatbuffers[${PYTHON_USEDEP}]
>=dev-python/gast-0.3.3[${PYTHON_USEDEP}]
dev-python/h5py[${PYTHON_USEDEP}]
>=dev-python/numpy-1.19[${PYTHON_USEDEP}]



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

2020-11-11 Thread Thomas Deutschmann
commit: 3b3380938b398dc5e6866c52d97e3e74180dadaf
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:29:16 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b338093

media-libs/mutagen: x86 stable (bug #753680)

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

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

diff --git a/media-libs/mutagen/mutagen-1.45.1.ebuild 
b/media-libs/mutagen/mutagen-1.45.1.ebuild
index a4cddd5a2b2..18cfbb3a905 100644
--- a/media-libs/mutagen/mutagen-1.45.1.ebuild
+++ b/media-libs/mutagen/mutagen-1.45.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/quodlibet/mutagen/releases/download/release-${PV}/${
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux 
~x86-linux"
 IUSE="doc test"
 
 # TODO: Missing support for >=dev-python/eyeD3-0.7 API



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

2020-11-11 Thread Thomas Deutschmann
commit: bbfe275503391babe1812b7042e87874ad4ac206
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:32:10 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbfe2755

app-backup/rear: x86 stable (bug #753476)

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  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 9c624b9cbc3..6469942ff6c 100644
--- a/app-backup/rear/rear-2.6.ebuild
+++ b/app-backup/rear/rear-2.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="udev"
 
 RDEPEND="



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

2020-11-11 Thread Thomas Deutschmann
commit: fb40fa2488594b41abc4313a95e09ebf675729df
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:30:51 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb40fa24

sys-auth/pam_mount: x86 stable (bug #753827)

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

 sys-auth/pam_mount/pam_mount-2.16-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/pam_mount/pam_mount-2.16-r2.ebuild 
b/sys-auth/pam_mount/pam_mount-2.16-r2.ebuild
index 6ba3bfb7386..e4e00e8faac 100644
--- a/sys-auth/pam_mount/pam_mount-2.16-r2.ebuild
+++ b/sys-auth/pam_mount/pam_mount-2.16-r2.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/pam-mount/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 
 IUSE="crypt libressl ssl selinux"
 



[gentoo-commits] repo/gentoo:master commit in: net-irc/znc/

2020-11-11 Thread Thomas Deutschmann
commit: 2b5ba5439defa103066cabcc382cc001c5d568e4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:34:48 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b5ba543

net-irc/znc: x86 stable (bug #753395)

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

 net-irc/znc/znc-1.8.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/znc/znc-1.8.2.ebuild b/net-irc/znc/znc-1.8.2.ebuild
index 734cd3671b5..2dec015cc75 100644
--- a/net-irc/znc/znc-1.8.2.ebuild
+++ b/net-irc/znc/znc-1.8.2.ebuild
@@ -22,7 +22,7 @@ else
https://znc.in/releases/archive/${MY_P}.tar.gz
test? ( ${GTEST_URL} )
"
-   KEYWORDS="~amd64 arm arm64 ~x86"
+   KEYWORDS="~amd64 arm arm64 x86"
# "If you upgrade your ZNC version you must recompile all your modules."
# - https://wiki.znc.in/Compiling_modules
SLOT="0/${PV}"



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

2020-11-11 Thread Thomas Deutschmann
commit: 89eea3c87f75619134727cd7bfe67c832fe5c28f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:30:40 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89eea3c8

sci-libs/dcmtk: x86 stable (bug #753566)

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

 sci-libs/dcmtk/dcmtk-3.6.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/dcmtk/dcmtk-3.6.5.ebuild 
b/sci-libs/dcmtk/dcmtk-3.6.5.ebuild
index ce2042496c1..cee3ed3c36d 100644
--- a/sci-libs/dcmtk/dcmtk-3.6.5.ebuild
+++ b/sci-libs/dcmtk/dcmtk-3.6.5.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://dicom.offis.de/dcmtk.php.en;
 SRC_URI="https://dicom.offis.de/download/dcmtk/release/${P}.tar.gz;
 
 LICENSE="OFFIS"
-KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc64 x86"
 SLOT="0"
 IUSE="doc png ssl tcpd tiff +threads xml zlib"
 



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

2020-11-11 Thread Thomas Deutschmann
commit: fd561e6d88839f1cf7cf89c1423f85bb62598296
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:28:41 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd561e6d

x11-terms/mlterm: x86 stable (bug #753845)

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

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

diff --git a/x11-terms/mlterm/mlterm-3.9.0.ebuild 
b/x11-terms/mlterm/mlterm-3.9.0.ebuild
index 915523df803..c8717aaf6b4 100644
--- a/x11-terms/mlterm/mlterm-3.9.0.ebuild
+++ b/x11-terms/mlterm/mlterm-3.9.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 x86"
 IUSE="bidi brltty cairo canna debug fbcon fcitx freewnn gtk gtk2 harfbuzz ibus 
libssh2 m17n-lib nls regis scim skk static-libs uim utempter wayland xft"
 REQUIRED_USE="gtk2? ( gtk )"
 



[gentoo-commits] repo/gentoo:master commit in: sys-block/parted/

2020-11-11 Thread Thomas Deutschmann
commit: fee98a5cb365582deaf3f43fafb91e210321c47d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:31:13 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fee98a5c

sys-block/parted: x86 stable (bug #753458)

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

 sys-block/parted/parted-3.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/parted/parted-3.3-r2.ebuild 
b/sys-block/parted/parted-3.3-r2.ebuild
index 264819f2aa1..5049768b811 100644
--- a/sys-block/parted/parted-3.3-r2.ebuild
+++ b/sys-block/parted/parted-3.3-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86"
 IUSE="+debug device-mapper nls readline selinux"
 
 RDEPEND="



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

2020-11-11 Thread Thomas Deutschmann
commit: 0e5ef2907c108ef96469f180d1b983896e6b1145
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:32:01 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e5ef290

dev-python/PyQt5-sip: x86 stable (bug #752333)

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

 dev-python/PyQt5-sip/PyQt5-sip-4.19.24.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/PyQt5-sip/PyQt5-sip-4.19.24.ebuild 
b/dev-python/PyQt5-sip/PyQt5-sip-4.19.24.ebuild
index fa37214eda5..b5fd8c1244e 100644
--- a/dev-python/PyQt5-sip/PyQt5-sip-4.19.24.ebuild
+++ b/dev-python/PyQt5-sip/PyQt5-sip-4.19.24.ebuild
@@ -20,7 +20,7 @@ fi
 # Sub-slot based on SIP_API_MAJOR_NR from siplib/sip.h
 SLOT="0/12"
 LICENSE="|| ( GPL-2 GPL-3 SIP )"
-KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 x86"
 IUSE=""
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2020-11-11 Thread Thomas Deutschmann
commit: 0ceeda2c97d3c3102fd4111c9d8c75bdaef34609
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:33:49 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ceeda2c

net-p2p/syncthing: x86 stable (bug #752381)

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

 net-p2p/syncthing/syncthing-1.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/syncthing/syncthing-1.10.0.ebuild 
b/net-p2p/syncthing/syncthing-1.10.0.ebuild
index 51e0d0fe7b0..560c74b036e 100644
--- a/net-p2p/syncthing/syncthing-1.10.0.ebuild
+++ b/net-p2p/syncthing/syncthing-1.10.0.ebuild
@@ -542,7 +542,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0 Unlicense"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 arm arm64 ~ppc64 x86"
 IUSE="selinux tools"
 
 RDEPEND="acct-group/syncthing



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

2020-11-11 Thread Thomas Deutschmann
commit: 279de7ab8c9222730651d9d90ad3709a645d4811
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:27:02 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=279de7ab

net-libs/libpcap: x86 stable (bug #753416)

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

 net-libs/libpcap/libpcap-1.9.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libpcap/libpcap-1.9.1-r3.ebuild 
b/net-libs/libpcap/libpcap-1.9.1-r3.ebuild
index 7d44b540f67..ff5f74788e8 100644
--- a/net-libs/libpcap/libpcap-1.9.1-r3.ebuild
+++ b/net-libs/libpcap/libpcap-1.9.1-r3.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
 IUSE="bluetooth dbus netlink rdma -remote static-libs usb -yydebug"
 
 RDEPEND="



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

2020-11-11 Thread Thomas Deutschmann
commit: 343c84c9e15b32d52cd498cc36f9e753c59d3bf7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:30:25 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=343c84c9

dev-cpp/robin-map: x86 stable (bug #753566)

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

 dev-cpp/robin-map/robin-map-0.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/robin-map/robin-map-0.6.3.ebuild 
b/dev-cpp/robin-map/robin-map-0.6.3.ebuild
index 99255a6ea18..c1de030cbe6 100644
--- a/dev-cpp/robin-map/robin-map-0.6.3.ebuild
+++ b/dev-cpp/robin-map/robin-map-0.6.3.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI="https://github.com/Tessil/robin-map;
 else
SRC_URI="https://github.com/Tessil/robin-map/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 fi
 
 LICENSE="MIT"



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

2020-11-11 Thread Thomas Deutschmann
commit: 2bf3466eee8631b23b8ca180ebf28f05afc7e826
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:34:29 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bf3466e

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

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

 net-analyzer/zabbix/zabbix-4.0.25.ebuild | 2 +-
 net-analyzer/zabbix/zabbix-5.0.4.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

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

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



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

2020-11-11 Thread Thomas Deutschmann
commit: 34efd5242af4ac5ac8282b715b89297fb6976363
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:33:00 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34efd524

dev-python/sip: x86 stable (bug #752324)

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

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

diff --git a/dev-python/sip/sip-4.19.24.ebuild 
b/dev-python/sip/sip-4.19.24.ebuild
index cc7113400a2..dd4cb410175 100644
--- a/dev-python/sip/sip-4.19.24.ebuild
+++ b/dev-python/sip/sip-4.19.24.ebuild
@@ -20,7 +20,7 @@ fi
 # Sub-slot based on SIP_API_MAJOR_NR from siplib/sip.h
 SLOT="0/12"
 LICENSE="|| ( GPL-2 GPL-3 SIP )"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
 IUSE="doc"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2020-11-11 Thread Thomas Deutschmann
commit: d788721e30932e0d012219ed24ecc2998fc8f0d8
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:30:13 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d788721e

media-libs/openimageio: x86 stable (bug #753566)

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

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

diff --git a/media-libs/openimageio/openimageio-2.2.8.0.ebuild 
b/media-libs/openimageio/openimageio-2.2.8.0.ebuild
index c75fee24de2..aa157e5174c 100644
--- a/media-libs/openimageio/openimageio-2.2.8.0.ebuild
+++ b/media-libs/openimageio/openimageio-2.2.8.0.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/oiio-Release-${PV}"
 
 LICENSE="BSD"
 SLOT="0/2.2"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~ppc64 x86"
 
 X86_CPU_FEATURES=(
aes:aes sse2:sse2 sse3:sse3 ssse3:ssse3 sse4_1:sse4.1 sse4_2:sse4.2



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

2020-11-11 Thread Thomas Deutschmann
commit: 4071d0b6b7f6ddd0657d21f1c4e809477110467e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:28:21 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4071d0b6

app-text/llpp: x86 stable (bug #72)

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

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

diff --git a/app-text/llpp/llpp-33.ebuild b/app-text/llpp/llpp-33.ebuild
index 865b33f4568..5899dc63eac 100644
--- a/app-text/llpp/llpp-33.ebuild
+++ b/app-text/llpp/llpp-33.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/moosotc/llpp/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 IUSE="+ocamlopt"
 
 RDEPEND=">=app-text/mupdf-1.17.0:0=



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

2020-11-11 Thread Thomas Deutschmann
commit: f1a953704dc5a0a56eeed948268091e95db2a6ca
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:34:14 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1a95370

net-vpn/tor: x86 stable (bug #753755)

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

 net-vpn/tor/tor-0.4.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/tor/tor-0.4.4.5.ebuild b/net-vpn/tor/tor-0.4.4.5.ebuild
index f75945c4970..5077faa6cb3 100644
--- a/net-vpn/tor/tor-0.4.4.5.ebuild
+++ b/net-vpn/tor/tor-0.4.4.5.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}/${MY_PF}"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~x86 ~ppc-macos"
+KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 x86 ~ppc-macos"
 IUSE="caps doc libressl lzma +man scrypt seccomp selinux +server systemd 
tor-hardening test zstd"
 
 DEPEND="



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

2020-11-11 Thread Thomas Deutschmann
commit: 51ba317b66b1c05f113c7ca737af6cb3223fa805
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:29:54 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51ba317b

sys-libs/ncurses-compat: x86 stable (bug #738170)

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

 sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild 
b/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild
index 4b58da33de2..05ee1fbcd68 100644
--- a/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild
+++ b/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild
@@ -23,7 +23,7 @@ fi
 LICENSE="MIT"
 # The subslot reflects the SONAME.
 SLOT="5/5"
-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="gpm tinfo unicode"
 
 DEPEND="gpm? ( sys-libs/gpm[${MULTILIB_USEDEP}] )"



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

2020-11-11 Thread Thomas Deutschmann
commit: 0d47bfeedbc29388620fdb5f6f7d389de27ad55c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:28:07 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d47bfee

media-libs/lilv: x86 stable (bug #753683)

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

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

diff --git a/media-libs/lilv/lilv-0.24.10.ebuild 
b/media-libs/lilv/lilv-0.24.10.ebuild
index decec474106..ebdf4e4bb7a 100644
--- a/media-libs/lilv/lilv-0.24.10.ebuild
+++ b/media-libs/lilv/lilv-0.24.10.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://download.drobilla.net/${P}.tar.bz2;
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="doc +dyn-manifest static-libs test"
 RESTRICT="!test? ( test )"
 



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

2020-11-11 Thread Thomas Deutschmann
commit: 6845ffa0c070c65106e1a582320dabac5a9cf593
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:33:30 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6845ffa0

app-admin/sudo: x86 stable (bug #752348)

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

 app-admin/sudo/sudo-1.9.3_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/sudo/sudo-1.9.3_p1.ebuild 
b/app-admin/sudo/sudo-1.9.3_p1.ebuild
index dfa040469e3..5cf22537332 100644
--- a/app-admin/sudo/sudo-1.9.3_p1.ebuild
+++ b/app-admin/sudo/sudo-1.9.3_p1.ebuild
@@ -22,7 +22,7 @@ else
SRC_URI="https://www.sudo.ws/sudo/dist/${uri_prefix}${MY_P}.tar.gz
ftp://ftp.sudo.ws/pub/sudo/${uri_prefix}${MY_P}.tar.gz;
if [[ ${PV} != *_beta* ]] && [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc 
ppc64 ~s390 sparc ~x86 ~sparc-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc 
ppc64 ~s390 sparc x86 ~sparc-solaris"
fi
 fi
 



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

2020-11-11 Thread Thomas Deutschmann
commit: b04f09daf8e8478ebf86698e6e9c383e7e478d03
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:27:35 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b04f09da

media-libs/libsndfile: x86 stable (bug #752207)

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

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

diff --git a/media-libs/libsndfile/libsndfile-1.0.30.ebuild 
b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
index 690edebb75e..21a2ad8712d 100644
--- a/media-libs/libsndfile/libsndfile-1.0.30.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://github.com/erikd/libsndfile.git;
 else

SRC_URI="https://github.com/erikd/libsndfile/releases/download/v${PV}/${P}.tar.bz2;
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 fi
 inherit python-any-r1 multilib-minimal
 



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

2020-11-11 Thread Thomas Deutschmann
commit: 0bcdb1b693e7d12ac37e8b08ce6d71bee64dcb94
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:31:40 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bcdb1b6

app-portage/pfl: x86 stable (bug #754081)

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

 app-portage/pfl/pfl-3.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/pfl/pfl-3.1-r1.ebuild 
b/app-portage/pfl/pfl-3.1-r1.ebuild
index bff47df54d9..9a69f83ac22 100644
--- a/app-portage/pfl/pfl-3.1-r1.ebuild
+++ b/app-portage/pfl/pfl-3.1-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/portagefilelist/client/archive/${PV}.tar.gz -> ${P}.
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~x64-macos"
+KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux 
~x86-linux ~x64-macos"
 IUSE="+network-cron"
 
 DEPEND=""



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

2020-11-11 Thread Thomas Deutschmann
commit: 0a966068e85bdcbc95ec89fd21aeff6c8f09fe3c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:29:37 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a966068

dev-libs/mxml: x86 stable (bug #753668)

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

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

diff --git a/dev-libs/mxml/mxml-3.2.ebuild b/dev-libs/mxml/mxml-3.2.ebuild
index 905c3e4108c..d3642ddf8f0 100644
--- a/dev-libs/mxml/mxml-3.2.ebuild
+++ b/dev-libs/mxml/mxml-3.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/michaelrsweet/${PN}/archive/v${PV}.tar.gz -> ${P}.ta
 
 LICENSE="Mini-XML"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="static-libs threads"
 
 BDEPEND="virtual/pkgconfig"



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

2020-11-11 Thread Thomas Deutschmann
commit: 52b0f057795b1c74dbf3b86006ad0f632ebb192f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:26:33 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52b0f057

media-libs/libde265: x86 stable (bug #754036)

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

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

diff --git a/media-libs/libde265/libde265-1.0.5.ebuild 
b/media-libs/libde265/libde265-1.0.5.ebuild
index ff9f2f98af5..5ee4f623e45 100644
--- a/media-libs/libde265/libde265-1.0.5.ebuild
+++ b/media-libs/libde265/libde265-1.0.5.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "" ]] ; then
inherit git-r3
 else
SRC_URI="https://github.com/strukturag/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 fi
 
 DESCRIPTION="Open h.265 video codec implementation"



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

2020-11-11 Thread Thomas Deutschmann
commit: dc9234c1a2a8c5687ec5da46af5a74a331ada101
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:32:34 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc9234c1

sys-auth/rtkit: x86 stable (bug #753179)

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

 sys-auth/rtkit/rtkit-0.13-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/rtkit/rtkit-0.13-r1.ebuild 
b/sys-auth/rtkit/rtkit-0.13-r1.ebuild
index 35fd0e954c2..d40e92d466d 100644
--- a/sys-auth/rtkit/rtkit-0.13-r1.ebuild
+++ b/sys-auth/rtkit/rtkit-0.13-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/heftig/${PN}/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-3 BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
 IUSE="systemd"
 
 BDEPEND="virtual/pkgconfig"



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

2020-11-11 Thread Thomas Deutschmann
commit: 7e848f1ea136788273e71849beaf21cb9f2f5139
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Nov 12 00:28:53 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Nov 12 00:35:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e848f1e

app-admin/monit: x86 stable (bug #752213)

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

 app-admin/monit/monit-5.27.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/monit/monit-5.27.1.ebuild 
b/app-admin/monit/monit-5.27.1.ebuild
index fa0c7ac609e..b5d4e9fca1a 100644
--- a/app-admin/monit/monit-5.27.1.ebuild
+++ b/app-admin/monit/monit-5.27.1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="http://mmonit.com/monit/dist/${P}.tar.gz;
 
 LICENSE="AGPL-3"
 SLOT="0"
-KEYWORDS="amd64 ppc ~ppc64 ~x86 ~amd64-linux"
+KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux"
 IUSE="ipv6 libressl pam ssl"
 
 RDEPEND="



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

2020-11-11 Thread Jason Zaman
commit: 7849deded7b2351e8079a67e023d397b44d4906c
Author: Jason Zaman  gentoo  org>
AuthorDate: Wed Nov 11 22:51:43 2020 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Thu Nov 12 00:32:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7849dede

sci-libs/tensorflow: bump 2.4.0_rc1

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

 sci-libs/tensorflow/Manifest|   7 +
 sci-libs/tensorflow/tensorflow-2.4.0_rc1.ebuild | 405 
 2 files changed, 412 insertions(+)

diff --git a/sci-libs/tensorflow/Manifest b/sci-libs/tensorflow/Manifest
index dfa445626ad..aac7a9c5d30 100644
--- a/sci-libs/tensorflow/Manifest
+++ b/sci-libs/tensorflow/Manifest
@@ -21,7 +21,9 @@ DIST bazelbuild-rules_python-0.0.1.tar.gz 2302092 BLAKE2B 
1db52eebf2461d779f764f
 DIST bazelbuild-rules_swift-3eeeb53cebda55b349d64c9fc144e18c5f7c0eb8.tar.gz 
140484 BLAKE2B 
2526d808a4763fffa16bb035de78993eefe6371a29139b152370081f548d8147868cc95194c06a54f1c5c0cd8b63ffbc59b00686bfaedede2463a448e38c2810
 SHA512 
e22a85a5dba52cc3474481798264571f6671aace19eecb058b24ac7d586ea7822ed3ae042b4a812671f81d4f9f8915aa2381fa6ac278da7969b976eaf28db636
 DIST bazelbuild-rules_swift.0.12.1.tar.gz 111674 BLAKE2B 
7c116d6098aa0725034dce4c83628c31c85c36a6331b44636deb2efe0f689a5baee8081b33d65e3727a83bca865bcabedd6f8fa1fdb60e901a9b60840c52c018
 SHA512 
6136feb3dc0074f8250cf5335f046f21ea3a1edcb4dcb8c82b56ed6a334e4b03e4e26a4d25549581abcf7df22b60a2bccf823a51bf270051fe18d489
 DIST cub-1.8.0.zip 602396 BLAKE2B 
a5e302a52e04f85ae8e1836c59e799532a8b961a8d10c08fe1241c9045f88e31f1ebda6d26124b85c6df40968e1c7b3985a39961bf7614535aafcab2da1a576a
 SHA512 
6167c5be94989f88e05a07508cf69cf2c6b22a5ac733804043daa46bd86a44a15a758b1ffb811bab28b82039d027516ed85b3d9f7677a740a7e00ec9c2f81aed
+DIST cub-1.9.9.zip 619595 BLAKE2B 
265b797a906b03da886de88863236c9ab90daa31498ddf848fcaf5e5ee1342614ad9a41618120ca09cc4c0da3e96eeec5e20ca9d7ba3f9860c507f06d15e59e1
 SHA512 
8c9c0a3f66f8d518ec07f857b5625e006d52f28bade1c1478a0f37420e2f7586dc3ff029d551748a1802bb5544b16fde5388e8d5a45d61eec595201b9db7a30d
 DIST dlpack-3efc489b55385936531a06ff83425b719387ec63.tar.gz 39637 BLAKE2B 
532a3ce3d0e354a73c19433f0210a64ecbf00d9134d06a0ee7462baaff3f2b981524aa630cf250595671d6673105724482c7d69e803179aac247f2020c883bd0
 SHA512 
3728db5213e887fd946f64ba5dc0c336be9a72a0966ee83f146148749ffc93ddb342e0735df6117d7943874c18f87de5791a28e4a57ea420bb8a4e2a5b7338bc
+DIST eigen-011e0db31d1bed8b7f73662be6d57d9f30fa457a.tar.gz 2667179 BLAKE2B 
8e48418615ca95b27c26725c95f0b21202497284ea439ce1d799f1c86e80bc4fcd5951d9e476c9279e1a902da0b4ad029a73bb59ae8fb216508729803598a566
 SHA512 
cea21877a0aa1a0c1f0bde32494a3f4ffea6ae859d2562cb28c8aafacf009fc7754a110be1be3aa92f0959b7d7ab607768a579bf25a68972b14e30f613f2f54c
 DIST eigen-386d809bde475c65b7940f290efe80e6a05878c4.tar.gz 2628283 BLAKE2B 
feac186ce8d18026b10be4955267ed65b65b4432f02bcf817da08960c9164bcb22b352c413f59890aac2de87c5e3e9e05ea48dff28635bc8901628af518dc4d2
 SHA512 
f183bfe235a98dc308c69a1d9e168b538cc92cfbbe35d4e35596b0b2588ecad66212efb3d3ffbba7c8adbd67be24cc4dda5dba8dcdd67245eca2b1a0fb94d380
 DIST eigen-4e696901f873a2347f76d931cf2f701e31e15d05.tar.gz 2580537 BLAKE2B 
927897c80f3529da40a76ddde26113403926d730fa4539aa9e4121406e8d3852abcfdbc55d178723300e9daa26176f6170db06bb49a59cb190e8c7e6dfdea4dd
 SHA512 
d5461e615044aa94b6ac9ab2815536f4bdf2b9ccfeb578cc7bc62554ba928b4192450f72f1350f3231ed44d2bb90e95218de9a5d0bcee9ec02867499a6dc5db0
 DIST eigen-52a2fbbb008a47c5e3fb8ac1c65c2feecb0c511c.tar.gz 2585583 BLAKE2B 
a2ce9da5f962f891cba748f46ce43667ae2b7fef54d4cc83411eafbc24b331e586c44fb135a2c3597c77fe62b0c8ff1172ae5ce6876f00ddd6f6ef2eca802d9c
 SHA512 
65a73d26474547db83b9b40a133dd2a021e0f5a459104f63124461b4aac28bf3579dc81475441b3576901f28f704d6d4624939b22ecfbfbec896148c4c38da7c
@@ -33,7 +35,9 @@ DIST kissfft-36dbc057604f00aacfc0288ddad57e3b21cfc1b8.tar.gz 
44744 BLAKE2B aeea5
 DIST llvm-387c3f74fd8efdc0be464b0e1a8033cc1eeb739c.tar.gz 115936989 BLAKE2B 
624b4a898321e62002cbf3955f844755b3ba6b1c8acf9a310ddac19cf21f9627902eb0b3684e42bac1fe835be972322a5cc667f78a6e2b0e699f956e0cab81e8
 SHA512 
09ec39ec7a25703bbb47befb406be3de6d15232c971fa186e33dff80192876a827e35523a9782365e26a90abd42b32b9a2ee1443af71cc23cd825b3ff05df629
 DIST llvm-7e825abd5704ce28b166f9463d4bd304348fd2a9.tar.gz 120301408 BLAKE2B 
928117c2bae7bcdd2445e9f65297b45b009dfc62e9c16ed08a8f00aacee2497492b6fb4cbea0047a8aa1425b538e02af9b8e6dd21e52348cc45dfbb71ab3f47f
 SHA512 
a9cfbd00a0530e4f5d001029c33be3723ed009799a42bd730a65319da671020a249ae5ba4496f1347a71a9ee69de4e9fe2b80c60ebd1bc4d6d4120bd3d6fecde
 DIST llvm-ecc999101aadc8dc7d4af9fd88be10fe42674aa0.tar.gz 115788302 BLAKE2B 
ea18d6cb3cc8311a78e543996d88831e1ecf1dec58b7c890a80cd8fce86e1c52244b9cfc0d7ce0867480465c2d914555c16cf003bfdcf90056d63e8f4e0ea0c0
 SHA512 

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

2020-11-11 Thread Jason Zaman
commit: cdc2f8e2f404b283c6e136c348d94856c01fffc4
Author: Jason Zaman  gentoo  org>
AuthorDate: Wed Nov 11 22:50:53 2020 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Thu Nov 12 00:32:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdc2f8e2

sci-libs/tensorflow-estimator: bump 2.4.0_rc0

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

 sci-libs/tensorflow-estimator/Manifest |  1 +
 .../tensorflow-estimator-2.4.0_rc0.ebuild  | 76 ++
 2 files changed, 77 insertions(+)

diff --git a/sci-libs/tensorflow-estimator/Manifest 
b/sci-libs/tensorflow-estimator/Manifest
index 70794737dc2..0139d1696be 100644
--- a/sci-libs/tensorflow-estimator/Manifest
+++ b/sci-libs/tensorflow-estimator/Manifest
@@ -4,3 +4,4 @@ DIST 
bazelbuild-rules_java-7cf3cefd652008d0a64a419c34c13bdca6c8f178.zip 9422 BLA
 DIST tensorflow-estimator-2.1.tar.gz 622792 BLAKE2B 
d1c8abb22d90c789ebfadaf78ca932f87428274afe6e1ac20670bf6d2b4c1c6ea8f367b1eb7ee64ff9f6e9b8ecdc2f64113924e7e2286e3f4e3d2c36cb101794
 SHA512 
4aaa21969299b02443e9396c238ef4c03af3bde1d0142a81c04d9706f18b02bfd125f3aaf8ffb47e0a3ffad949c3d3bca3909375f12a1c1e4c55ca1cc7930d51
 DIST tensorflow-estimator-2.2.0.tar.gz 627362 BLAKE2B 
125792fc2167b8af837a99b08a9a26943bc5c1fda8ab3690b01c0d49a6dd39142ff4a063867dfe1bee3b99fb018981d0e4ee45d194caac2cd96a829ad22db0ad
 SHA512 
aaf743835e2c606439fcccb56742997e930ba0e72c01d51633ce86824bbfaacd64607dc1fd7fb9604cc444feb65ebae60c2266be084e1b49ef2a1a9ca5a3d60d
 DIST tensorflow-estimator-2.3.0.tar.gz 642118 BLAKE2B 
29ecf5b64da20e8e6981375f1631b9b7e8ad061f71d0a3f1ac567bcd04b02102c5854d24e5106660f6bcd7b4ca683bd3bfbde51f236669d0f17e8f847feb7039
 SHA512 
0befc9c04650a0cd91ce90bc2e9a5d17ae3f7d8d8e4b8f763f223bbb891c73c7e2cbe91a2779af36342008e16f02d118120d94165c6a8e3c14a723b32ee29cb0
+DIST tensorflow-estimator-2.4.0_rc0.tar.gz 660318 BLAKE2B 
d71988c29c237e686151627723890c623019ea8f3ff1bcdfde64fc29461f3ffd268feb6cee2d57535f45e48ab166331c93e8e48a4c323abc5f6ec08774c39d6a
 SHA512 
1f0a4379e2da96e9ffc9c3a06291c885b0509e1a50806573e9cb15053b40a45aec4b9938356c450bb0abca88156c992c813037a8144cba8b584173d9e4fe5162

diff --git 
a/sci-libs/tensorflow-estimator/tensorflow-estimator-2.4.0_rc0.ebuild 
b/sci-libs/tensorflow-estimator/tensorflow-estimator-2.4.0_rc0.ebuild
new file mode 100644
index 000..1816ca18887
--- /dev/null
+++ b/sci-libs/tensorflow-estimator/tensorflow-estimator-2.4.0_rc0.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+MY_PN="estimator"
+MY_PV=${PV/_rc/-rc}
+MY_P=${MY_PN}-${MY_PV}
+
+inherit bazel distutils-r1 flag-o-matic toolchain-funcs
+
+DESCRIPTION="A high-level TensorFlow API that greatly simplifies machine 
learning programming"
+HOMEPAGE="https://www.tensorflow.org/;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+bazel_external_uris="
+   
https://github.com/bazelbuild/rules_cc/archive/0d5f3f2768c6ca2faca0079a997a97ce22997a0c.zip
 -> bazelbuild-rules_cc-0d5f3f2768c6ca2faca0079a997a97ce22997a0c.zip
+   
https://github.com/bazelbuild/rules_cc/archive/8bd6cd75d03c01bb82561a96d9c1f9f7157b13d0.zip
 -> bazelbuild-rules_cc-8bd6cd75d03c01bb82561a96d9c1f9f7157b13d0.zip
+   
https://github.com/bazelbuild/rules_java/archive/7cf3cefd652008d0a64a419c34c13bdca6c8f178.zip
 -> bazelbuild-rules_java-7cf3cefd652008d0a64a419c34c13bdca6c8f178.zip"
+
+SRC_URI="https://github.com/tensorflow/${MY_PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz
+   ${bazel_external_uris}"
+
+RDEPEND="sci-libs/tensorflow[python,${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   app-arch/unzip
+   dev-java/java-config
+   >=dev-util/bazel-3"
+
+S="${WORKDIR}/${MY_P}"
+
+DOCS=( CONTRIBUTING.md README.md )
+
+src_unpack() {
+   unpack "${P}.tar.gz"
+   bazel_load_distfiles "${bazel_external_uris}"
+}
+
+src_prepare() {
+   bazel_setup_bazelrc
+   default
+   python_copy_sources
+}
+
+src_compile() {
+   export JAVA_HOME=$(java-config --jre-home)
+
+   do_compile() {
+   ebazel build 
//tensorflow_estimator/tools/pip_package:build_pip_package
+   ebazel shutdown
+
+   local srcdir="${T}/src-${EPYTHON/./_}"
+   mkdir -p "${srcdir}" || die
+   
bazel-bin/tensorflow_estimator/tools/pip_package/build_pip_package --src 
"${srcdir}" || die
+   }
+
+   python_foreach_impl run_in_build_dir do_compile
+}
+
+src_install() {
+   do_install() {
+   cd "${T}/src-${EPYTHON/./_}" || die
+   esetup.py install
+   python_optimize
+   }
+   python_foreach_impl do_install
+
+   cd "${S}" || die
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/hg-evolve/

2020-11-11 Thread Cédric Krier
commit: e199ce3817f3d058d69fcb9255ae4ae9f5812654
Author: Cédric Krier  gentoo  org>
AuthorDate: Wed Nov 11 23:16:10 2020 +
Commit: Cédric Krier  gentoo  org>
CommitDate: Wed Nov 11 23:16:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e199ce38

dev-vcs/hg-evolve: version bumps

Add compatibility with Mercurial 5.6

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Cédric Krier  gentoo.org>

 dev-vcs/hg-evolve/Manifest | 1 +
 dev-vcs/hg-evolve/hg-evolve-10.0.2-r1.ebuild   | 3 ++-
 .../hg-evolve/{hg-evolve-10.0.2-r1.ebuild => hg-evolve-10.1.0.ebuild}  | 0
 3 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-vcs/hg-evolve/Manifest b/dev-vcs/hg-evolve/Manifest
index c3292d6ad76..97a80069f61 100644
--- a/dev-vcs/hg-evolve/Manifest
+++ b/dev-vcs/hg-evolve/Manifest
@@ -1 +1,2 @@
 DIST hg-evolve-10.0.2.tar.gz 809860 BLAKE2B 
13420a8247a0a708bedd0863aa20b08699d0a374bd259b043636ccc65343b6661d95b94ef80f81724aca655edf1e9448c7f78a28470d7fb1e76aa9fa0c1cb06d
 SHA512 
9250c5d46a6b3263e9d09f6ca72a912887c793ec4d2f7c9440aa07058f2706a28f2d78352b9c91d20bbd4d8fd4abf2e21d92d72f32faf046d6b8ff2dc2f6d15f
+DIST hg-evolve-10.1.0.tar.gz 836446 BLAKE2B 
566c8fdaf9e21bcbda97a6db43624c7c3265163546800aaebf5b3d3024e8c27e8442b7eb0668e002d020c154119a5d79ffbf9c77507e97218cd7433e0903895c
 SHA512 
26333db8f71a6116ce9d8cbb21940befa573c1bbba3361af4776b4b2d3a3eca33b2c01ab5b5c9dc95810fb89f1e84b2ad85bf0a48989f5c583ebfca922d7d4da

diff --git a/dev-vcs/hg-evolve/hg-evolve-10.0.2-r1.ebuild 
b/dev-vcs/hg-evolve/hg-evolve-10.0.2-r1.ebuild
index 2b2e24c78ee..6ba87c7557a 100644
--- a/dev-vcs/hg-evolve/hg-evolve-10.0.2-r1.ebuild
+++ b/dev-vcs/hg-evolve/hg-evolve-10.0.2-r1.ebuild
@@ -17,7 +17,8 @@ KEYWORDS="~amd64 ~x86"
 IUSE="doc"
 
 RDEPEND="
-   >=dev-vcs/mercurial-4.6[${PYTHON_USEDEP}]"
+   >=dev-vcs/mercurial-4.6[${PYTHON_USEDEP}]
+   

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

2020-11-11 Thread Sergei Trofimovich
commit: 318f0f8cc94e05c5f3bead01e539f4744ce94a37
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Nov 11 23:06:09 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Nov 11 23:06:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=318f0f8c

dev-python/pytest-asyncio: keyworded 0.14.0 for ia64

keyworded wrt bug #753988

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-python/pytest-asyncio/pytest-asyncio-0.14.0.ebuild 
b/dev-python/pytest-asyncio/pytest-asyncio-0.14.0.ebuild
index 57553f279bc..e1f54e9e721 100644
--- a/dev-python/pytest-asyncio/pytest-asyncio-0.14.0.ebuild
+++ b/dev-python/pytest-asyncio/pytest-asyncio-0.14.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/pytest-dev/pytest-asyncio/archive/v${PV}.tar.gz -> $
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 arm arm64 ~ia64 ~ppc ~ppc64 x86"
 
 RDEPEND="
>=dev-python/pytest-5.4.0"



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

2020-11-11 Thread Sergei Trofimovich
commit: 729f6bff6bb1f26e48b66b9ab5bb627a011ed64f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Nov 11 22:47:42 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Nov 11 22:47:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=729f6bff

dev-python/numpy: stable 1.19.2 for ppc

stable wrt bug #749486 (STABLEREQ)
Tested-by: ernsteiswuerfel
Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-python/numpy/numpy-1.19.2.ebuild 
b/dev-python/numpy/numpy-1.19.2.ebuild
index 8ac13656e6f..cd4c569678f 100644
--- a/dev-python/numpy/numpy-1.19.2.ebuild
+++ b/dev-python/numpy/numpy-1.19.2.ebuild
@@ -24,7 +24,7 @@ SRC_URI="
)"
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc lapack"
 
 RDEPEND="



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

2020-11-11 Thread Sergei Trofimovich
commit: c77706354c71d29620141a5b841c27fc0c44d8ad
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Nov 11 22:42:59 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Nov 11 22:43:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7770635

net-vpn/tor: stable 0.4.4.5 for ppc/ppc64

stable wrt bug #753755 (STABLEREQ)
Tested-by: ernsteiswuerfel
Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 net-vpn/tor/tor-0.4.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/tor/tor-0.4.4.5.ebuild b/net-vpn/tor/tor-0.4.4.5.ebuild
index 499371d6e71..f75945c4970 100644
--- a/net-vpn/tor/tor-0.4.4.5.ebuild
+++ b/net-vpn/tor/tor-0.4.4.5.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}/${MY_PF}"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 ~x86 ~ppc-macos"
+KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~x86 ~ppc-macos"
 IUSE="caps doc libressl lzma +man scrypt seccomp selinux +server systemd 
tor-hardening test zstd"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-emulation/xen-tools/, app-emulation/xen-tools/files/

2020-11-11 Thread Thomas Deutschmann
commit: 666f5a08663cbcea9577196b6ed8233f75753b16
Author: Tomáš Mózes  gmail  com>
AuthorDate: Wed Nov 11 19:37:16 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Nov 11 22:35:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=666f5a08

app-emulation/xen-tools: add security patches, drop vulnerable

Closes: https://bugs.gentoo.org/754033
Signed-off-by: Tomáš Mózes  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18226
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-emulation/xen-tools/Manifest   |  6 +-
 app-emulation/xen-tools/files/gentoo-patches.conf  | 10 +
 ...4.14.0-r2.ebuild => xen-tools-4.13.2-r1.ebuild} | 25 +++---
 ...4.14.0-r2.ebuild => xen-tools-4.14.0-r3.ebuild} | 17 ---
 4 files changed, 37 insertions(+), 21 deletions(-)

diff --git a/app-emulation/xen-tools/Manifest b/app-emulation/xen-tools/Manifest
index 77c0db9f600..47ebae23498 100644
--- a/app-emulation/xen-tools/Manifest
+++ b/app-emulation/xen-tools/Manifest
@@ -1,13 +1,17 @@
 DIST OpenSSL_1_1_1b.tar.gz 8384386 BLAKE2B 
f720ee2bb1ba9a104334cc39988942b5f18e9df54ec114969983e013d1d5e766e2605237281dfbd7218523b0f64ed465238d2da995791c4a789cb5e20b2d9be3
 SHA512 
f09f07226c1ea7d903d65572f6c63e1dd8afbbe4789438572ccae3c31445c30cf353dbf2e7637ab9d1042a2dc221cacdbed6167e881c1a1ad40163f751a33b28
+DIST OpenSSL_1_1_1g.tar.gz 9975550 BLAKE2B 
22efa4ffe5d56a861bc4e2e1bc9a558e79265a3789acd9ca65d0a1162a1808a089a92a234e88c951f2a3cdabd3b1908ac7fe6d5f2b5fe554f229a22c11ab185b
 SHA512 
bc8d24d7fc93542a8d77e13a57768de242ef679ef4db93c1b6b981a15a60646a5c5d869d066248448f3eb1ab2012e3ddc80bf301f486c0574d469a3f7db7b8d4
 DIST berkeley-softfloat-b64af41c3276f97f0e181920400ee056b9c88037.tar.gz 148741 
BLAKE2B 
72014022926b636147e202d74c42df2ce9cfed00b91c275d5b2e0afbc5c68765445cbe7ac6389d7c2512bd1d45b0e16e36552d09bbc733ab66c92968bd31
 SHA512 
8420c29faa7ff57e06d6758b03e81ca0630c59946bc031e8611f1449e23634cf901b502161f2c1423c0cff949b5481445e36a3aa53dc885b61ca2c673b3ba567
+DIST brotli-666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz 23855739 BLAKE2B 
7406ec5b29ac66afbcd7c1376bb3208f298d19b6592b2869c52173aa64947d58bd443f9a61c67deaf046be910a0e31c0b843e5508e97e0e1f5e7bce100d86904
 SHA512 
df8e90562c4fd7f0e787949df6bc4f5a165b39bd333f442d27874fe65640fbba268f9350d7113e6761a5acceb66d78e75f1a296e5a89b94574edf28109cdc812
+DIST edk2-06dc822d045c2bb42e497487935485302486e151.tar.gz 13192042 BLAKE2B 
81afa7fd5f6f14fff35baa3c6c64583fa21c7b793ed847a3362fd05a926bb4402db911f9f78f4ffd76a6de9b815171dfa245ae41afac3b022cd108597e8c1ac3
 SHA512 
a032a1496db7ddc32a7d6d1a7d5fe4122ab43b13547ec019855166d785f162268ad82ceb3c41efafe1687e73fc72599ee6852741652451e1cb329fd655c69b6c
 DIST edk2-20d2e5a125e34fc8501026613a71549b2a1a3e54.tar.gz 14567879 BLAKE2B 
381d47674afcc7b611edee91531694a70e6799c2b351d81632777fb382a8cce968e44a1f3e17c4852db28e81624e2ec1ebb98ed121c2a6cc3f2982939eb546a5
 SHA512 
1a4b4d8eacd495e705fea924b16640d6814fba7ec25a3153222eb981d43b0fd9b16b54baf8feecf99cd89b10f7735ff4b075660453d0fc2722fe4608353c8aeb
 DIST ipxe-git-1dd56dbd11082fb622c2ed21cfaced4f47d798a6.tar.gz 3810726 BLAKE2B 
b95266ec7fcee5c27065ba999b023ded9eb42a3690555e626911493f1dc995927fa67071bdc6432b3995df82134f8c49ea0d72eaf407f455dd1e2675d5b8d844
 SHA512 
8120696ba6d79fd9189664deed9b0489825d8d1edf7b931023b3979b7b9f82248e5b808c4517036cd40a85442ddf51a8dcad3b05d7f3c3cc6650654d53da4050
 DIST seabios-1.12.1.tar.gz 613450 BLAKE2B 
cb926b650c41a9962db407945cb5b6558079b061bd61f32ea56aedf0d37a00d10ad4434acbe717ffbc0dd1d1c0767304af8e640a53b0fc3784969dfa1590f681
 SHA512 
58755ce842adcb99c0f2f3ebbf9ec6d4a5072753966ab46805a96db1570847b109a90e6e03d61f9088ef877ca8ba96a8006777dc38ec434fce6b487f6c1f91d0
 DIST seabios-1.13.0.tar.gz 620952 BLAKE2B 
460a7dd2b2775b981bbd890ed0a50fe905794c68b0b895799667dd1378bb84125712330c2f6945112709d42cfb7b01196c7fff99051e44b6211d47d19531cfae
 SHA512 
7f158badf7deecc2998eab2a08f3615dfe5a7c0a51323f7b4568a4d1280935bc32bb466c8226d87d2ca7e13f9f117ff0092befcc0699bc31c5018e84754e8393
 DIST xen-4.13.1-upstream-patches-3.tar.xz 87056 BLAKE2B 
01d7133b8f7e3c9a42b9771dcb7739777f79f229941114cce70ba2897dd52bf53f08de35602a0b40a120fc155c274dbf91e107856f4afdae2c4f7b4bc0a67cdd
 SHA512 
d67e9ddfbf27dc5a23a77679b1b2524a49c2aec3ff9eb3472f9e075893d87401f8e99707b0652744eb4af7a3ed9a815c3925de49995bcd7c82d97c13a69b5309
 DIST xen-4.13.1.tar.gz 39024612 BLAKE2B 
efff138699fac2c14fad2e0dfd4535ebd744577df3dddccc2a589b81a76f24fc81c75e295f4cd33ca2e820929417b22d714504b576cb0737a563037bd56b6a95
 SHA512 
b56d20704155d98d803496cba83eb928e0f986a750831cd5600fc88d0ae772fe1456571654375054043d2da8daca255cc98385ebf08b1b1a75ecf7f4b7a0ee90
+DIST xen-4.13.2-upstream-patches-0.tar.xz 15404 BLAKE2B 
e4f679e4281e4edfe4f1e7722c19a973461b9a6423828f17719dfd766a73ef61a74b1cd87f375e2b0c2ec9cbed7b6a0f12c4a9982bbc325cdbba4c70a7145248
 SHA512 

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

2020-11-11 Thread Thomas Deutschmann
commit: e07bd46d38d36a69a29e2872352c324f248fbec1
Author: Tomáš Mózes  gmail  com>
AuthorDate: Tue Nov 10 15:41:12 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Nov 11 22:36:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e07bd46d

app-admin/syslog-ng: drop old

Signed-off-by: Tomáš Mózes  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18215
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-admin/syslog-ng/Manifest|   3 -
 app-admin/syslog-ng/syslog-ng-3.22.1.ebuild | 171 
 app-admin/syslog-ng/syslog-ng-3.24.1.ebuild | 169 ---
 app-admin/syslog-ng/syslog-ng-3.25.1.ebuild | 171 
 4 files changed, 514 deletions(-)

diff --git a/app-admin/syslog-ng/Manifest b/app-admin/syslog-ng/Manifest
index 908dae67d6b..f2c90883438 100644
--- a/app-admin/syslog-ng/Manifest
+++ b/app-admin/syslog-ng/Manifest
@@ -1,6 +1,3 @@
-DIST syslog-ng-3.22.1.tar.gz 4981746 BLAKE2B 
e4f7e47f1939fb07d204c4721ff558a606cf6c6ee072278ff7c9bc1db7406e6abf058ac8a96bd4df0b867272bdbc5401528d47c94e60d90ff5ebb1aaec49e223
 SHA512 
4f68c0b58c6b3df9a870fa0b627525b9599149374e805a665c5143be54f814a564a80cbe76c7d5aab093b58825a96411b13cd2ce0f1439298723bd008096807f
-DIST syslog-ng-3.24.1.tar.gz 4909513 BLAKE2B 
4b8d05899f9767784b6d24008d55808bee0af4a29883b2cb67031d23f4937632ba00f2ed7a9e969984ebec2785243a9e60811c4c2ccb3c6188c66a71af004f36
 SHA512 
b5326193e20db16763d3e187292bf683ebb77032b800a6e54a4ce2dd3864dda48b3d0ffc4d442eff0261117ac7a76d7927f4c8d0d96fc59ce29b46da6bd052d5
-DIST syslog-ng-3.25.1.tar.gz 4938596 BLAKE2B 
bfcbd19b5a06c7ea15899bb919564661043bc7ab87bed147f77ab1aed153d70522aba9a42ab7dfa66d3b52a5f8432954b8a00594f428ddeb202979c5b9260da3
 SHA512 
79e09f1ba11080179c572016ce27328a28d479e68e663d39fb16624c03dc37d8439020ede922f78680e31e21629a6c13a4671464a31213c1dcf6acd2c5cd4b13
 DIST syslog-ng-3.26.1.tar.gz 5040993 BLAKE2B 
235971547c8febe61191014d971b9e5d71560f51ebc3a74fbae1c95b86653f1de8d0b99788f5b00cc75926dc67e7a80f650e9d2d12f191a4400c5b8edbbd01b7
 SHA512 
2cf6a8bd70addec3bef0888539f4a4686c30655698835d0c211ea929a0cae91a6f3dc9903f29fe717fd9d48b5cdc9918796f196ca84af6f5733bedff09ffab5a
 DIST syslog-ng-3.28.1.tar.gz 5149671 BLAKE2B 
bfc33f2a595cb4fbcc5a69b60d283673922873434b21ca8ce9685a0f54b355f162b11242704419349a561f412573c84df30a49a4dc0cc95699e98720e3e65247
 SHA512 
d70b435a6c9d1d0d22ecebc051dc294b6e7f841159edabf229c772c40342a28014ea1599b2277f0514236f545bac63c9879988fd85d634e9ab4fe4f079c984cb
 DIST syslog-ng-3.29.1.tar.gz 5111614 BLAKE2B 
1dba62290d6354d0cda7d43783327a19f69e05963c6d2e75f42c61c30984d49d28f1c6474e68ccdd806f38022bf6799e69e12f2444da391b2bccb736ca597c72
 SHA512 
c8ec6527cab9e46effe23aaa1306b5bde1e13c3e62a092a62af630a744cc41e81d861e6e2ebfbaad8a9199d3b75ba4ac5fb4b4215d03f80a41f57a2e7a074a49

diff --git a/app-admin/syslog-ng/syslog-ng-3.22.1.ebuild 
b/app-admin/syslog-ng/syslog-ng-3.22.1.ebuild
deleted file mode 100644
index 2c03b860579..000
--- a/app-admin/syslog-ng/syslog-ng-3.22.1.ebuild
+++ /dev/null
@@ -1,171 +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} )
-inherit autotools python-single-r1 systemd
-
-MY_PV_MM=$(ver_cut 1-2)
-DESCRIPTION="syslog replacement with advanced filtering features"
-HOMEPAGE="https://syslog-ng.com/open-source-log-management;
-SRC_URI="https://github.com/balabit/syslog-ng/releases/download/${P}/${P}.tar.gz;
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86"
-IUSE="amqp caps dbi geoip geoip2 http ipv6 json kafka libressl mongodb pacct 
python redis smtp snmp spoof-source systemd tcpd"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-# unit tests require https://github.com/Snaipe/Criterion with additional deps
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-libs/glib-2.10.1:2
-   >=dev-libs/ivykis-0.42.4
-   >=dev-libs/libpcre-6.1:=
-   !dev-libs/eventlog
-   amqp? ( >=net-libs/rabbitmq-c-0.8.0:=[ssl] )
-   caps? ( sys-libs/libcap )
-   dbi? ( >=dev-db/libdbi-0.9.0 )
-   geoip? ( >=dev-libs/geoip-1.5.0 )
-   geoip2? ( dev-libs/libmaxminddb:= )
-   http? ( net-misc/curl )
-   json? ( >=dev-libs/json-c-0.9:= )
-   kafka? ( >=dev-libs/librdkafka-1.0.0:= )
-   mongodb? ( >=dev-libs/mongo-c-driver-1.2.0 )
-   python? ( ${PYTHON_DEPS} )
-   redis? ( >=dev-libs/hiredis-0.11.0:= )
-   smtp? ( net-libs/libesmtp )
-   snmp? ( net-analyzer/net-snmp )
-   spoof-source? ( net-libs/libnet:1.1= )
-   systemd? ( sys-apps/systemd:= )
-   tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   sys-devel/flex
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS NEWS.md CONTRIBUTING.md 

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

2020-11-11 Thread Thomas Deutschmann
commit: eb092cc390401ddd2db41cd0c14483499c53ba3d
Author: Tomáš Mózes  gmail  com>
AuthorDate: Wed Nov 11 19:35:07 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Nov 11 22:35:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb092cc3

app-emulation/xen: add security patches, drop vulnerable

Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-emulation/xen/Manifest   | 3 ++-
 app-emulation/xen/{xen-4.14.0-r4.ebuild => xen-4.13.2-r1.ebuild} | 4 ++--
 app-emulation/xen/{xen-4.14.0-r4.ebuild => xen-4.14.0-r5.ebuild} | 2 +-
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/app-emulation/xen/Manifest b/app-emulation/xen/Manifest
index 213e4e2a498..68a4d6d11cd 100644
--- a/app-emulation/xen/Manifest
+++ b/app-emulation/xen/Manifest
@@ -1,5 +1,6 @@
 DIST xen-4.13.1-upstream-patches-4.tar.xz 100580 BLAKE2B 
1ac4ac5fe7aa7da2b486f2ac5ae60b96cf3c012acac50e8472b88ae273d99e9545f48a896f21eebd5e58427a817e11aa9806d9b45750784fc5382cbadf8162d4
 SHA512 
54230ea6aa2add038a438d46caae3bba83f2cc8b92021e2c34761015ec08a807331767d432bfa2c7bab864f5b8d0d667c68fc04a089fd35eda9a4f0afd4f6df6
 DIST xen-4.13.1.tar.gz 39024612 BLAKE2B 
efff138699fac2c14fad2e0dfd4535ebd744577df3dddccc2a589b81a76f24fc81c75e295f4cd33ca2e820929417b22d714504b576cb0737a563037bd56b6a95
 SHA512 
b56d20704155d98d803496cba83eb928e0f986a750831cd5600fc88d0ae772fe1456571654375054043d2da8daca255cc98385ebf08b1b1a75ecf7f4b7a0ee90
+DIST xen-4.13.2-upstream-patches-0.tar.xz 15404 BLAKE2B 
e4f679e4281e4edfe4f1e7722c19a973461b9a6423828f17719dfd766a73ef61a74b1cd87f375e2b0c2ec9cbed7b6a0f12c4a9982bbc325cdbba4c70a7145248
 SHA512 
122fe404f9c19567016e43208ddd08bdac56e7f264853d6cbe0929650fc4ada7175cc24c0e4fbf088acab77127eb76454948b98cbc731e35a12e1b068a5fd793
 DIST xen-4.13.2.tar.gz 39037826 BLAKE2B 
ad2b7c3003ca29e5e60a85c581f706ef87d99eadf939ed36ebe8f6698582f7a29dbdaf502039b60a0afe7ad4ae6ce89713e69dc8b8a7d5abe65063da7f1baa5b
 SHA512 
cd3092281c97e9421e303aa288aac04dcccd5536ba7c0ff4d51fbf3d07b5ffacfe3456ba06f5cf63577dafbf8cf3a5d9825ceb5e9ef8ca1427900cc3e57b50a3
-DIST xen-4.14.0-upstream-patches-3.tar.xz 70976 BLAKE2B 
805af580783d7fb3e5e1f6c156bdb153bed4e5627a22252c10d77595fa5cc2e655611e5e578e391127589b8ce641bfab8ec51eccb76ae4b7a0be19079d9f4663
 SHA512 
93fc3decc7786e25ee93ff7483a0130b31fe50c571a08eb8956d0e06b98a71af585d7b896cdba3fe995ad59c45f58c4686f5c24b0c21eec3f683fb43a7cdf5e4
+DIST xen-4.14.0-upstream-patches-4.tar.xz 79204 BLAKE2B 
54d3ba5eac263d78c052cdf2b7958662dc29f689f03d03692c20c881a6b520bf08c86cf830a2727c2a2249c256aa0d06dea75496c8ee6699361c86c3f91bbd83
 SHA512 
c18b43a16e225cd1c50fe975fa1daf414e8e5fd47e4d3c9e2c655001ae59ab6fed5d332e5f34acc4f01b3c9d42bd425a86e084a4eb22c360257689aab3fe6825
 DIST xen-4.14.0.tar.gz 39950576 BLAKE2B 
db4c3e79cfdfb10260d0d14d9d28e8c8bd9bf23f42aee743acf8f560bf4cdb96a425c0df887c70f9755f62680be24bfbe0149e52a4cb843ae83090cd9d6afc71
 SHA512 
ebce47a2f754955d8517123d69f62006634d97620fbbe3784869a0667466e586a249f57ffaf7846d5bcb45d69377cde43354c82c233fbb5407e55653b9a33ac0

diff --git a/app-emulation/xen/xen-4.14.0-r4.ebuild 
b/app-emulation/xen/xen-4.13.2-r1.ebuild
similarity index 98%
copy from app-emulation/xen/xen-4.14.0-r4.ebuild
copy to app-emulation/xen/xen-4.13.2-r1.ebuild
index 9c5475cde98..714c4d25a9e 100644
--- a/app-emulation/xen/xen-4.14.0-r4.ebuild
+++ b/app-emulation/xen/xen-4.13.2-r1.ebuild
@@ -16,7 +16,7 @@ if [[ $PV == * ]]; then
SRC_URI=""
 else
KEYWORDS="~amd64 ~arm -x86"
-   UPSTREAM_VER=3
+   UPSTREAM_VER=0
SECURITY_VER=
GENTOO_VER=
 
@@ -98,7 +98,7 @@ src_prepare() {
# Gentoo's patchset
[[ -n ${GENTOO_VER} ]] && eapply "${WORKDIR}"/patches-gentoo
 
-   eapply "${FILESDIR}"/${PN}-4.14-efi.patch
+   eapply "${FILESDIR}"/${PN}-4.11-efi.patch
 
# Drop .config
sed -e '/-include $(XEN_ROOT)\/.config/d' -i Config.mk || die "Couldn't 
drop"

diff --git a/app-emulation/xen/xen-4.14.0-r4.ebuild 
b/app-emulation/xen/xen-4.14.0-r5.ebuild
similarity index 99%
rename from app-emulation/xen/xen-4.14.0-r4.ebuild
rename to app-emulation/xen/xen-4.14.0-r5.ebuild
index 9c5475cde98..f0bb232c0bb 100644
--- a/app-emulation/xen/xen-4.14.0-r4.ebuild
+++ b/app-emulation/xen/xen-4.14.0-r5.ebuild
@@ -16,7 +16,7 @@ if [[ $PV == * ]]; then
SRC_URI=""
 else
KEYWORDS="~amd64 ~arm -x86"
-   UPSTREAM_VER=3
+   UPSTREAM_VER=4
SECURITY_VER=
GENTOO_VER=
 



  1   2   3   >