[gentoo-commits] proj/gcc-patches:master commit in: 10.1.0/gentoo/

2020-06-22 Thread Sergei Trofimovich
commit: a0cceb035aac865eec1676a80ce04812cb83d4a2
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Jun 23 06:33:30 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jun 23 06:33:30 2020 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=a0cceb03

10.1.0: backport CET cross-compiler detection, PR95811

Reported-by: Aisha Tammy
Bug: https://bugs.gentoo.org/729074
Bug: https://gcc.gnu.org/94998
Signed-off-by: Sergei Trofimovich  gentoo.org>

 10.1.0/gentoo/34_all_cet-cross-x86.patch | 149 +++
 10.1.0/gentoo/README.history |   1 +
 2 files changed, 150 insertions(+)

diff --git a/10.1.0/gentoo/34_all_cet-cross-x86.patch 
b/10.1.0/gentoo/34_all_cet-cross-x86.patch
new file mode 100644
index 000..89916d9
--- /dev/null
+++ b/10.1.0/gentoo/34_all_cet-cross-x86.patch
@@ -0,0 +1,149 @@
+https://gcc.gnu.org/94998
+https://bugs.gentoo.org/729074
+
+From 2c7ae01349f779f1d4e66d8831052ee59f9c948b Mon Sep 17 00:00:00 2001
+From: "H.J. Lu" 
+Date: Tue, 12 May 2020 10:39:42 -0700
+Subject: [PATCH] Enable CET in cross compiler if possible
+
+Don't perform CET run-time check for host when cross compiling.  Instead,
+enable CET in cross compiler if possible so that it will run on both CET
+and non-CET hosts.
+
+config/
+
+   PR bootstrap/94998
+   * cet.m4 (GCC_CET_HOST_FLAGS): Enable CET in cross compiler if
+   possible.
+
+libiberty/
+
+   PR bootstrap/94998
+   * configure: Regenerated.
+
+lto-plugin/
+
+   PR bootstrap/94998
+   * configure: Regenerated.
+
+(cherry picked from commit d17cdc17c90ce77cb90c569322c1f241d3530cec)
+---
+ config/cet.m4| 18 --
+ libiberty/configure  | 12 +---
+ lto-plugin/configure | 16 +++-
+ 3 files changed, 32 insertions(+), 14 deletions(-)
+
+--- a/config/cet.m4
 b/config/cet.m4
+@@ -111,7 +111,8 @@ if test x$may_have_cet = xyes; then
+ fi
+ 
+ if test x$may_have_cet = xyes; then
+-  AC_TRY_RUN([
++  if test x$cross_compiling = xno; then
++AC_TRY_RUN([
+ static void
+ foo (void)
+ {
+@@ -137,12 +138,17 @@ main ()
+   bar ();
+   return 0;
+ }
+-  ],
+-  [have_cet=no],
+-  [have_cet=yes])
+-  if test x$enable_cet = xno -a x$have_cet = xyes; then
+-AC_MSG_ERROR([Intel CET must be enabled on Intel CET enabled host])
++],
++[have_cet=no],
++[have_cet=yes])
++if test x$enable_cet = xno -a x$have_cet = xyes; then
++  AC_MSG_ERROR([Intel CET must be enabled on Intel CET enabled host])
++fi
+   fi
++else
++  # Enable CET in cross compiler if possible so that it will run on both
++  # CET and non-CET hosts.
++  have_cet=yes
+ fi
+ if test x$enable_cet = xyes; then
+   $1="-fcf-protection"
+--- a/libiberty/configure
 b/libiberty/configure
+@@ -5375,7 +5375,8 @@ rm -f core conftest.err conftest.$ac_objext \
+ fi
+ 
+ if test x$may_have_cet = xyes; then
+-  if test "$cross_compiling" = yes; then :
++  if test x$cross_compiling = xno; then
++if test "$cross_compiling" = yes; then :
+   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+ $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+ as_fn_error $? "cannot run test program while cross compiling
+@@ -5420,9 +5421,14 @@ rm -f core *.core core.conftest.* gmon.out bb.out 
conftest$ac_exeext \
+   conftest.$ac_objext conftest.beam conftest.$ac_ext
+ fi
+ 
+-  if test x$enable_cet = xno -a x$have_cet = xyes; then
+-as_fn_error $? "Intel CET must be enabled on Intel CET enabled host" 
"$LINENO" 5
++if test x$enable_cet = xno -a x$have_cet = xyes; then
++  as_fn_error $? "Intel CET must be enabled on Intel CET enabled host" 
"$LINENO" 5
++fi
+   fi
++else
++  # Enable CET in cross compiler if possible so that it will run on both
++  # CET and non-CET hosts.
++  have_cet=yes
+ fi
+ if test x$enable_cet = xyes; then
+   CET_HOST_FLAGS="-fcf-protection"
+--- a/lto-plugin/configure
 b/lto-plugin/configure
+@@ -5768,7 +5768,8 @@ rm -f core conftest.err conftest.$ac_objext \
+ fi
+ 
+ if test x$may_have_cet = xyes; then
+-  if test "$cross_compiling" = yes; then :
++  if test x$cross_compiling = xno; then
++if test "$cross_compiling" = yes; then :
+   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+ $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+ as_fn_error $? "cannot run test program while cross compiling
+@@ -5813,9 +5814,14 @@ rm -f core *.core core.conftest.* gmon.out bb.out 
conftest$ac_exeext \
+   conftest.$ac_objext conftest.beam conftest.$ac_ext
+ fi
+ 
+-  if test x$enable_cet = xno -a x$have_cet = xyes; then
+-as_fn_error $? "Intel CET must be enabled on Intel CET enabled host" 
"$LINENO" 5
++if test x$enable_cet = xno -a x$have_cet = xyes; then
++  as_fn_error $? "Intel CET must be enabled on Intel CET enabled host" 
"$LINENO" 5
++fi
+   fi
++else
++  # Enable CET in cross compiler if possible so that it will run on both
++  # CET and non-CET hosts.
++  h

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

2020-06-22 Thread Michał Górny
commit: cec7fa867194d9ced52b114169e347372df4bcf0
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 23 04:58:49 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 23 06:03:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cec7fa86

dev-python/boto3: Bump to 1.14.8

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

 dev-python/boto3/Manifest|  1 +
 dev-python/boto3/boto3-1.14.8.ebuild | 53 
 2 files changed, 54 insertions(+)

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index bc9bc6954ce..a7b254c5c55 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -4,4 +4,5 @@ DIST boto3-1.13.26.tar.gz 296782 BLAKE2B 
117bb18679fe3ae8c4feee1a5fb2d1df1923764
 DIST boto3-1.14.0.tar.gz 297008 BLAKE2B 
7f5eaf4958395b47e936596b385b5a4daa20dbed6b777a407b6c2f70d3004d89fb963f479a1a3c8be22a3cbbfdb21f59a1f3c3ea4b967fce4799fc965899bcf1
 SHA512 
12ce4765f22e848aac0c29d1f95ed7b63964868f18c14073f93c74e442babf8708aa69cb6c17bd7c3aa5dacda6beb67bb4a4afe86fcd298308c70abfb77802d4
 DIST boto3-1.14.2.tar.gz 297730 BLAKE2B 
174bc2435247db4421ffbf1ca0ef2cb772a9b6f357cbb438996ad635fca8ae5cd1005df3f8fdc6c63607797115c2379bb10c43edcfaf8393394f241b1e7a1ca1
 SHA512 
6ad539e568fe90c2f7408f37d28f194ac7094f6393858e487bf2afa73b8b53c90c8ab489bbe56f7c594351b24aaa82bfc9f81c9d68fadaecaec5acc3352fad5e
 DIST boto3-1.14.5.tar.gz 297919 BLAKE2B 
9428ddfa1a5549bfb8319cc91292dace9245a9db94eec373f571342808cdda7c1bf2b683ccddbcae532aca79666971b5cff7646756dff7baa24e291b348ff0f0
 SHA512 
7c65b1a1b6070b8954b7a705b1473543be6a4939c8594327cdaf8c91ff557bfdb49611e18f2bc6b0213fc13ef4cdbf57da7e632ac93dacf6d887f7a18889ff59
+DIST boto3-1.14.8.tar.gz 297922 BLAKE2B 
e71a74155a6e32b310063c6c80ceb960db816898271f01066099d9ef162e90c5c446ea29b7164d957cc4d02e546eec59eb62f9168aa7e5f6e149c2d97fa14928
 SHA512 
a5c1c63664c406dc6b923ee565d30572173084b43a4539605cfc36a959d5d8fbcf0864720732128f26ba84fe8e4aabb31842d656e6e189860a41b365955e63ae
 DIST boto3-1.9.122.tar.gz 258061 BLAKE2B 
68903edd97e10693675e4c2fa77c2c54f2d3aab79307ee0a856f43aabe256f7782d027b0a23f433c593962c90f7364c26a87c27fe8770e67b5052e4ced73a9bc
 SHA512 
31b8d8c2369b9076d825196d400c8a8b5579c38f87c7f41634eedbdaf6c2be01072018312e90e25d81b850c51f7c22a13fa565cd4e8b7672c238bad61e6a0810

diff --git a/dev-python/boto3/boto3-1.14.8.ebuild 
b/dev-python/boto3/boto3-1.14.8.ebuild
new file mode 100644
index 000..062b762234a
--- /dev/null
+++ b/dev-python/boto3/boto3-1.14.8.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6..9} )
+DISTUTILS_USE_SETUPTOOLS=bdepend
+inherit distutils-r1
+
+DESCRIPTION="The AWS SDK for Python"
+HOMEPAGE="https://github.com/boto/boto3";
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/boto3";
+   inherit git-r3
+else
+   SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+fi
+
+RDEPEND="
+   >=dev-python/botocore-1.17.0[${PYTHON_USEDEP}]
+   >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests nose
+
+python_prepare_all() {
+   # don't lock versions to narrow ranges
+   sed -e '/botocore/ d' \
+   -e '/jmespath/ d' \
+   -e '/s3transfer/ d' \
+   -i setup.py || die
+
+   # prevent an infinite loop
+   rm tests/functional/docs/test_smoke.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   nosetests -v tests/unit tests/functional ||
+   die "test failed under ${EPYTHON}"
+}



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

2020-06-22 Thread Michał Górny
commit: cc31379887cc9924c9a3a7cb7b0f08f371057f01
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 23 05:05:09 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 23 06:03:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc313798

dev-python/hypothesis: Bump to 5.18.0

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

 dev-python/hypothesis/Manifest |  1 +
 dev-python/hypothesis/hypothesis-5.18.0.ebuild | 56 ++
 2 files changed, 57 insertions(+)

diff --git a/dev-python/hypothesis/Manifest b/dev-python/hypothesis/Manifest
index 5e300ccbc96..75051bc37ff 100644
--- a/dev-python/hypothesis/Manifest
+++ b/dev-python/hypothesis/Manifest
@@ -8,3 +8,4 @@ DIST hypothesis-python-5.16.0.tar.gz 9011031 BLAKE2B 
65659f72094ac7fcc82c7e5a8b8
 DIST hypothesis-python-5.16.1.tar.gz 9011388 BLAKE2B 
9d80cd296475846404ded5c466ee50f11957959f08a94a715f80e732da83bc31b66a2bbff2bb4ac1402dbeddda219eada772267f34705b8891137b8d910e5229
 SHA512 
ea1416c041c857fc184fcce10862d93fce1de888396527d120b2d5f3cd041084d85f8ab4b36693d52786c7162bf41d61c9700ebc4509902c6fcd1c2e87130dfb
 DIST hypothesis-python-5.16.2.tar.gz 9011495 BLAKE2B 
ecac1ddd0c214a06e8822fc04f9fd9378933b1c3721c1a3aabfa605d45df21b22b76a497f5fa1bef3009ceba52d582c9f69a0918fdcaf7df7b3c03405f8eb7a9
 SHA512 
91feb7b81c4c36468b05318c0db7ce3b607374b55bf2609bb587d316448f087fab44b99cde1cb5fc440df8d31ef2dd6c154281f13dd7bc6d1de4e463cdabf66a
 DIST hypothesis-python-5.16.3.tar.gz 9011952 BLAKE2B 
d74a68c4ee1e5aacf4be1da5a4656011b0a15f990106c21298101d36e9a097c5dfd165987ad90a45f3a0b74375c4da609cd750f618242b94f34e03b6de0ee866
 SHA512 
912d984995d4ad8f06e98eb2cc327629328990fc1c072527ce261b637e16622acaf4d0d93928f9dd2d6601ab78f69aa6cf129d5cd7c1c00e50754ebc06957df0
+DIST hypothesis-python-5.18.0.tar.gz 9013356 BLAKE2B 
3863414e54e40ac5f2a45edbb57fbee058e82f04cbde9eadb99ed6b03a2a2684777b46eabdbe136aea74b835e343485d80cfe98c263afa537c7437e7566f796f
 SHA512 
b1a1f37f1f58a6401a31f32ef0e7de452b8a8bd71fe5aeb72eeac197a23b78c3ff17b61f7940e2a2a755f7f008f0ea3df5b0f2ad5e4c0d2d316bf13dbd7cbdaf

diff --git a/dev-python/hypothesis/hypothesis-5.18.0.ebuild 
b/dev-python/hypothesis/hypothesis-5.18.0.ebuild
new file mode 100644
index 000..494668bd6a8
--- /dev/null
+++ b/dev-python/hypothesis/hypothesis-5.18.0.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
+PYTHON_REQ_USE="threads(+),sqlite"
+
+inherit distutils-r1 eutils
+
+DESCRIPTION="A library for property based testing"
+HOMEPAGE="https://github.com/HypothesisWorks/hypothesis 
https://pypi.org/project/hypothesis/";
+SRC_URI="https://github.com/HypothesisWorks/${PN}/archive/${PN}-python-${PV}.tar.gz";
+S="${WORKDIR}/${PN}-${PN}-python-${PV}/${PN}-python"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
+   >=dev-python/sortedcontainers-2.1.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pexpect[${PYTHON_USEDEP}]
+   >=dev-python/pytest-5.3.5[${PYTHON_USEDEP}]
+   !!

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

2020-06-22 Thread Michał Górny
commit: 55b1cb9ed79e4b4c3821bfa4846695ce8178a112
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 23 05:09:32 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 23 06:03:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55b1cb9e

dev-python/sphinxcontrib-spelling: Bump to 5.1.2

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

 dev-python/sphinxcontrib-spelling/Manifest |  1 +
 .../sphinxcontrib-spelling-5.1.2.ebuild| 41 ++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/sphinxcontrib-spelling/Manifest 
b/dev-python/sphinxcontrib-spelling/Manifest
index a02049b30fc..f77d2b8e69a 100644
--- a/dev-python/sphinxcontrib-spelling/Manifest
+++ b/dev-python/sphinxcontrib-spelling/Manifest
@@ -2,3 +2,4 @@ DIST sphinxcontrib-spelling-4.3.0.tar.gz 38316 BLAKE2B 
4bfcbfb22c10b5bd181ef5ba7
 DIST sphinxcontrib-spelling-5.0.0.tar.gz 38479 BLAKE2B 
5fb20cb08529e1db9d5df25a31f09849dacf41003893dcc74355d70161269b18b3bda7eb2dcc279250190e6eb2ead7a3bb1d40ac4a4d5db1a390f339a22da777
 SHA512 
bd608e13d1643924d69336da6a5fedac3f60ffbbf0d367c203936395270b2504f45db2ec0d2fe179a86dc91616e458c6fa0d2a6f66a20ee956c5f52ece1140ce
 DIST sphinxcontrib-spelling-5.1.0.tar.gz 22942 BLAKE2B 
00861b429b7ed45791f9dd8394b23cf2982875a9e3470c1e2dee22ff0500515d409821a73e46b49bcf397e9ef40f377f933e460b8673579b1f234bf157e4
 SHA512 
22c5c4eac56c0138e33aae38c2ed1d254211c502087e4c0ebebf2b3b7df69d2567cacde394abb2d8385eab48ea6e3ac9282c980bc8b52408f46bc06ab9634fa4
 DIST sphinxcontrib-spelling-5.1.1.tar.gz 22883 BLAKE2B 
eb5d13e73221dd4de86ebddc5222ee75b152a0e7681e93c0cfd66767903a949cb3d967c12bf553a67bfcd2854133f1164b965711781601753420f5f6a132bc7e
 SHA512 
79825228d35e98fc85e4d1d6cfcc3f720df68b7f1493a0907e712369fcb76fc30d96de44fbbcc092e6978a797646da532489f420af42566ca4f9b5b932d85292
+DIST sphinxcontrib-spelling-5.1.2.tar.gz 22962 BLAKE2B 
c7b15289b4b6dce5e6c5fb529c4be2cd7c1f41d8bfc6ac86daf1a982f711bd2c426d9b3a615471538fe221197b64ccd907efd4620ea2440f6ec07b2a078d6bee
 SHA512 
4a0398b7c79a035e12d9ae96100fcaa4df42aeae07a01a73f7d875ba04fbbeb3d7441c9debe77491876d78b0a3753677cff4cb3a575e3490364fe5780f5a70b2

diff --git 
a/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.1.2.ebuild 
b/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.1.2.ebuild
new file mode 100644
index 000..5b51077280e
--- /dev/null
+++ b/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.1.2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Sphinx spelling extension"
+HOMEPAGE="https://github.com/sphinx-contrib/spelling";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+   dev-python/pbr[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   app-dicts/myspell-en
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   dev-python/testtools[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs/source --no-autodoc
+distutils_enable_tests unittest
+
+RDEPEND+="
+   dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]
+"
+
+python_install_all() {
+   distutils-r1_python_install_all
+   find "${ED}" -name '*.pth' -delete || die
+}



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

2020-06-22 Thread Michał Górny
commit: e843fe9713542edea8c57fb342cfcd9c295da2ed
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 23 05:01:10 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 23 06:03:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e843fe97

dev-python/html5lib: Bump to 1.1

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

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

diff --git a/dev-python/html5lib/Manifest b/dev-python/html5lib/Manifest
index 1746e1bd8d8..03c605eb9e6 100644
--- a/dev-python/html5lib/Manifest
+++ b/dev-python/html5lib/Manifest
@@ -1 +1,2 @@
 DIST html5lib-1.0.1.tar.gz 252959 BLAKE2B 
d2a9fa19d6a18b9e0c39f737a22ff4d5a6533734843f787c083f9497fd94788dad0e1e96478fe48b262c208370cf58e91ab94cc06a3e2757a40e936363cd3148
 SHA512 
35939b4450893864da04e735ee5e0addacf1dd34bae6a6909c76572abf6bfded446a78a713dfde91c1485ba45867d7abeb6a45cf0545c16ea968707be7de5dd2
+DIST html5lib-1.1.tar.gz 272215 BLAKE2B 
11a4fc3fb84bf8bab4af5da1de30b0892a9eb454505716b3db391187053c9aac159b1c82ae787896592b8fc850363bba9313b9d7fc617150771c3bfa1aeadefb
 SHA512 
af7c29591007fded99be6c38e3d0ae5a4ac32d71d26046a615918ae732cb1c1ecbf754f47ceca1a53726c3843f3ecea7af87a7362281b45ff3af495815818626

diff --git a/dev-python/html5lib/html5lib-1.1.ebuild 
b/dev-python/html5lib/html5lib-1.1.ebuild
new file mode 100644
index 000..16f72f8d42f
--- /dev/null
+++ b/dev-python/html5lib/html5lib-1.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_{6,7,8,9}} pypy3 )
+PYTHON_REQ_USE="xml(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="HTML parser based on the HTML5 specification"
+HOMEPAGE="https://github.com/html5lib/html5lib-python/ 
https://html5lib.readthedocs.org";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~x64-macos"
+IUSE="test"
+RESTRICT+=" !test? ( test )"
+
+RDEPEND=">=dev-python/six-1.9[${PYTHON_USEDEP}]
+   dev-python/webencodings[${PYTHON_USEDEP}]"
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   dev-python/pytest-expect[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests pytest



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

2020-06-22 Thread Michał Górny
commit: 5d3d110efab47a09abff0d32ec86d0af54f0ffd5
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 23 05:10:32 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 23 06:03:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d3d110e

dev-python/stevedore: Bump to 2.0.1

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

 dev-python/stevedore/Manifest   |  1 +
 dev-python/stevedore/stevedore-2.0.1.ebuild | 39 +
 2 files changed, 40 insertions(+)

diff --git a/dev-python/stevedore/Manifest b/dev-python/stevedore/Manifest
index a5fe39857ce..bfb120da19e 100644
--- a/dev-python/stevedore/Manifest
+++ b/dev-python/stevedore/Manifest
@@ -1,3 +1,4 @@
 DIST stevedore-1.31.0.tar.gz 505482 BLAKE2B 
c69ecf61b32ab996f23aa913a9f226f64164b94e9420da8b7dd5a8ba568a228bd2f536052ab9378167fd2fe2e0d8d7b42515580a966eeffb5beeaf55dbba69ad
 SHA512 
07b641b63766eddd094690acad81c1417a9721d785f81ca11da0ec2afed455d1beedfea5be4dcfd833d9379d650b193e26207ec0411d274bdf399ea2acd321a0
 DIST stevedore-1.32.0.tar.gz 510344 BLAKE2B 
96de6598245e88900ba0f0bd69b976425fc5be2c783f32c551ebb2536dc5fde7fab18121947f3f9caa4d7d822372ad502d272285cc66368bfc39c566821a0160
 SHA512 
98c66b9ac827f69737cc2522029108831380b4bf4c633786d9819b52be930f6116ce5bfab58e724a2efad147830fcb6353409322fc5e01617d35d1c8aafb0259
 DIST stevedore-2.0.0.tar.gz 508206 BLAKE2B 
c8e8d1044d1af4e2d0366cd836c36783f49a97c54761070d0af3d7c31b7a3bbdc8d98dfadf2425b73b30d7a37b3bb5ca3cde71a6eea76513f9c565aa7c94511d
 SHA512 
10b091749b638330703c256e8614a9519059edcaf109944a0ca04bda5c5fde0d9ab473dc8293cde809867dbd1c2a23cd96d0faaa1f7d802ad68aa0a5aa972a0e
+DIST stevedore-2.0.1.tar.gz 505248 BLAKE2B 
2fee9467b70aa605ca89060e839a2c00deec571f15f014cb8118710e9221fef65ec15172d727dbafb5d5e2adf15ce0e94919804e2ec7ee72ae9e47afe2a6b88f
 SHA512 
1efe46983975b1a0f176f847874c68dd91538fc3c029facbbf0f96891894176e0eeaf28c19e674baa9e9dae024deabae0555c846e36211a9be6cbba5e2ecd710

diff --git a/dev-python/stevedore/stevedore-2.0.1.ebuild 
b/dev-python/stevedore/stevedore-2.0.1.ebuild
new file mode 100644
index 000..3b75793f9ca
--- /dev/null
+++ b/dev-python/stevedore/stevedore-2.0.1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Manage dynamic plugins for Python applications"
+HOMEPAGE="https://github.com/openstack/stevedore 
https://pypi.org/project/stevedore/";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~ppc64 ~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
+   test? (
+   dev-python/testtools[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests unittest
+distutils_enable_sphinx 'doc/source' \
+   '>=dev-python/openstackdocstheme-1.18.1' \
+   '>=dev-python/reno-2.5.0' \
+   '>=dev-python/sphinx-2.0.0'
+
+python_prepare_all() {
+   # Delete spurious data in requirements.txt
+   sed -e '/^pbr/d' -i requirements.txt || die
+   distutils-r1_python_prepare_all
+}



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

2020-06-22 Thread Michał Górny
commit: 071aefbbcd55f552a0f2b3093fafe67112d2846a
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 23 04:58:24 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 23 06:03:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=071aefbb

dev-python/botocore: Bump to 1.17.8

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

 dev-python/botocore/Manifest   |  1 +
 dev-python/botocore/botocore-1.17.8.ebuild | 62 ++
 2 files changed, 63 insertions(+)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 6f53e6d1449..72466f75098 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -10,3 +10,4 @@ DIST botocore-1.16.7.tar.gz 6391893 BLAKE2B 
19a8770ef1058e5601a1c292e2e17e1625e4
 DIST botocore-1.17.0.tar.gz 6478558 BLAKE2B 
761ff2d57079a52ce38a6d56639fb0771d1fc4fb6a3494badecaacd4cea1ef74a69fe23d9fe62827993a3b6c33b963a2a199300f37fa3e7dc42433135c00f035
 SHA512 
a43b2f99e44ef9de3cf740b8fc1d74976d9ff6831639229a704f9300011405861789c9af26ea657f64244f5d67cff19aa94f95e5d2df73ee4f2dc10ccdeabae3
 DIST botocore-1.17.2.tar.gz 6481390 BLAKE2B 
009f8857be93c2fccb52e83176614401ae89835ea32fd0043248f7f66765d06e44df72ed31b5370cc1ed106cf45b531f4e4e7e7cbc3dc1d6e1524cb7914654d4
 SHA512 
ff19b1708686cbb574b01c9924a6acb7eaf7607b5f19a759d5c1dc1f7a7efae960e0c81d26d384101da5aaddc3bf0d8b4800d8908af34392d23779d4b9064487
 DIST botocore-1.17.5.tar.gz 6491397 BLAKE2B 
e6d45050e0f9d9919edff7dcea0866c9360fc8b8a09a82bcb6636621b49d7c9d06025639d8acf8740bf6d272371cabc9afff51e48214d240f1e81cd76abcab65
 SHA512 
2cf87d79a50f10d386907a0ef5b0e427b299b342d3661dfa64860828a0854dcd7f2ef3e0febdc30772aabf93efb39f4f35d52d3f28aec641e886fb5c05e30a3a
+DIST botocore-1.17.8.tar.gz 6499259 BLAKE2B 
bbec0755ac5c96f8b86d9391db36b58c28a2eff61b69ddccbbfcf0d7b349e1b5c99a2ab3619e50c6eda6a781e5361dd11f674126a596e23f505fde81a9b77949
 SHA512 
3f0c06e5fb335cc33ed589205ca378d4270d26dfb7f4b6196953205d24de4f71bf09c47b722449e51325d7643be6767f7a542d79765649ea3581247bc219f88d

diff --git a/dev-python/botocore/botocore-1.17.8.ebuild 
b/dev-python/botocore/botocore-1.17.8.ebuild
new file mode 100644
index 000..c08c6f6ff89
--- /dev/null
+++ b/dev-python/botocore/botocore-1.17.8.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Low-level, data-driven core of boto 3"
+HOMEPAGE="https://github.com/boto/botocore";
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/botocore";
+   inherit git-r3
+else
+   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+fi
+
+RDEPEND="
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/docutils[${PYTHON_USEDEP}]
+   dev-python/jmespath[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/urllib3[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch"
+   "${FILESDIR}/botocore-1.16.7-unlock-deps.patch"
+)
+
+distutils_enable_sphinx docs \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests nose
+
+src_prepare() {
+   # py3.9
+   find -name '*.py' -exec \
+   sed -i -e 's:cElementTree:ElementTree:' {} + || die
+   # very unstable
+   sed -i -e 's:test_stress_test_token_bucket:_&:' \
+   tests/functional/retries/test_bucket.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   # note: suites need to be run separately as one of the unit tests
+   # seems to be leaking mocks and breaking a few functional tests
+   nosetests -v tests/unit ||
+   die "unit tests failed under ${EPYTHON}"
+   nosetests -v tests/functional ||
+   die "functional tests failed under ${EPYTHON}"
+}



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

2020-06-22 Thread Michał Górny
commit: e6ea5e6bb5caf90915943d368e57cbffb1af5e59
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 23 05:06:44 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 23 06:03:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6ea5e6b

dev-python/jsonpatch: Bump to 1.26

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

 dev-python/jsonpatch/Manifest  |  1 +
 dev-python/jsonpatch/jsonpatch-1.26.ebuild | 28 
 2 files changed, 29 insertions(+)

diff --git a/dev-python/jsonpatch/Manifest b/dev-python/jsonpatch/Manifest
index 90c624cf749..b531445381d 100644
--- a/dev-python/jsonpatch/Manifest
+++ b/dev-python/jsonpatch/Manifest
@@ -1 +1,2 @@
 DIST jsonpatch-1.25.tar.gz 24340 BLAKE2B 
0022b4b0b3a0487958b86f14c1738a32593b8056510e3836e15385874b64f5d243d757c99a146a48da6563f0d9330eb38cb91ad6cde3e0a1b4cb8cbd3b15f9dd
 SHA512 
5e1d5b6dcb6ee847ddd561400fe2d00e07aa1827a63ab98a38cd5e91fa0e52d8635eba1192edbccf9c7b9ce9c7ce0a414d580665c427c87a820e533d26092ad6
+DIST jsonpatch-1.26.tar.gz 24440 BLAKE2B 
345831bd9a9fc1902d0959685ed2dbbc0bf04d191bbc78567d27283e9ae52f7e22f50e9f400461300d1c3388712afa51d4d6a2ddd0a06dbc0a1b576b02bfe807
 SHA512 
1ab25c8e091cd0b772062a8c448fee4772081d8bd715489b2f7a76e4c0bdff8b26dd38b26c3037cf9bdf8780b97e62a20b6a5bdc43f43af16fdae51d1291bf52

diff --git a/dev-python/jsonpatch/jsonpatch-1.26.ebuild 
b/dev-python/jsonpatch/jsonpatch-1.26.ebuild
new file mode 100644
index 000..78968326363
--- /dev/null
+++ b/dev-python/jsonpatch/jsonpatch-1.26.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Apply JSON-Patches like 
http://tools.ietf.org/html/draft-pbryan-json-patch-04";
+HOMEPAGE="https://github.com/stefankoegl/python-json-patch";
+SRC_URI="https://github.com/stefankoegl/python-json-patch/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
+S="${WORKDIR}/python-json-patch-${PV}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND=">=dev-python/jsonpointer-1.9[${PYTHON_USEDEP}]"
+BDEPEND="
+   test? ( ${RDEPEND} )
+"
+
+python_test() {
+   "${EPYTHON}" tests.py || die "Tests of tests.py fail with ${EPYTHON}"
+   "${EPYTHON}" ext_tests.py || die "Tests of ext_tests.py fail with 
${EPYTHON}"
+}



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

2020-06-22 Thread Michał Górny
commit: 998c1f07a08ba10433741757e4ccdb8b0bbfcece
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 23 05:04:36 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 23 06:03:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=998c1f07

dev-python/hypothesis: Bump to 5.16.3

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

 dev-python/hypothesis/Manifest |  1 +
 dev-python/hypothesis/hypothesis-5.16.3.ebuild | 56 ++
 2 files changed, 57 insertions(+)

diff --git a/dev-python/hypothesis/Manifest b/dev-python/hypothesis/Manifest
index 5288e83e011..5e300ccbc96 100644
--- a/dev-python/hypothesis/Manifest
+++ b/dev-python/hypothesis/Manifest
@@ -7,3 +7,4 @@ DIST hypothesis-python-5.15.1.tar.gz 9010924 BLAKE2B 
a00ebf581781e47fd85fa9d5044
 DIST hypothesis-python-5.16.0.tar.gz 9011031 BLAKE2B 
65659f72094ac7fcc82c7e5a8b88c0156345530742412f13398dc72ce50d2466fa9b04b5cf4a79e87916aae770f2a89aa880d1d238890c7f8c8483c4c5068bcb
 SHA512 
66366c172aaed84f1fb5fe0cef4e0fccfa4f65c31a94d52cf3a49b44b535f8366e71974f2aaa7b39d1d1b4171fd92cbfe4bbbac8ec4b9c4ccd2b0e5d15976d26
 DIST hypothesis-python-5.16.1.tar.gz 9011388 BLAKE2B 
9d80cd296475846404ded5c466ee50f11957959f08a94a715f80e732da83bc31b66a2bbff2bb4ac1402dbeddda219eada772267f34705b8891137b8d910e5229
 SHA512 
ea1416c041c857fc184fcce10862d93fce1de888396527d120b2d5f3cd041084d85f8ab4b36693d52786c7162bf41d61c9700ebc4509902c6fcd1c2e87130dfb
 DIST hypothesis-python-5.16.2.tar.gz 9011495 BLAKE2B 
ecac1ddd0c214a06e8822fc04f9fd9378933b1c3721c1a3aabfa605d45df21b22b76a497f5fa1bef3009ceba52d582c9f69a0918fdcaf7df7b3c03405f8eb7a9
 SHA512 
91feb7b81c4c36468b05318c0db7ce3b607374b55bf2609bb587d316448f087fab44b99cde1cb5fc440df8d31ef2dd6c154281f13dd7bc6d1de4e463cdabf66a
+DIST hypothesis-python-5.16.3.tar.gz 9011952 BLAKE2B 
d74a68c4ee1e5aacf4be1da5a4656011b0a15f990106c21298101d36e9a097c5dfd165987ad90a45f3a0b74375c4da609cd750f618242b94f34e03b6de0ee866
 SHA512 
912d984995d4ad8f06e98eb2cc327629328990fc1c072527ce261b637e16622acaf4d0d93928f9dd2d6601ab78f69aa6cf129d5cd7c1c00e50754ebc06957df0

diff --git a/dev-python/hypothesis/hypothesis-5.16.3.ebuild 
b/dev-python/hypothesis/hypothesis-5.16.3.ebuild
new file mode 100644
index 000..494668bd6a8
--- /dev/null
+++ b/dev-python/hypothesis/hypothesis-5.16.3.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
+PYTHON_REQ_USE="threads(+),sqlite"
+
+inherit distutils-r1 eutils
+
+DESCRIPTION="A library for property based testing"
+HOMEPAGE="https://github.com/HypothesisWorks/hypothesis 
https://pypi.org/project/hypothesis/";
+SRC_URI="https://github.com/HypothesisWorks/${PN}/archive/${PN}-python-${PV}.tar.gz";
+S="${WORKDIR}/${PN}-${PN}-python-${PV}/${PN}-python"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
+   >=dev-python/sortedcontainers-2.1.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pexpect[${PYTHON_USEDEP}]
+   >=dev-python/pytest-5.3.5[${PYTHON_USEDEP}]
+   !!

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

2020-06-22 Thread Michał Górny
commit: b560296c624ab3a8711e355de60b200ee1621c01
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 23 05:15:54 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 23 06:03:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b560296c

dev-python/qtconsole: Use HTTPS for HOMEPAGE

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

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

diff --git a/dev-python/qtconsole/qtconsole-4.7.5.ebuild 
b/dev-python/qtconsole/qtconsole-4.7.5.ebuild
index b9aa30d6b72..eab98c37d95 100644
--- a/dev-python/qtconsole/qtconsole-4.7.5.ebuild
+++ b/dev-python/qtconsole/qtconsole-4.7.5.ebuild
@@ -10,7 +10,7 @@ DISTUTILS_USE_SETUPTOOLS=rdepend
 inherit distutils-r1
 
 DESCRIPTION="Qt-based console for Jupyter with support for rich media output"
-HOMEPAGE="http://jupyter.org";
+HOMEPAGE="https://jupyter.org";
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"



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

2020-06-22 Thread Michał Górny
commit: 9bd272833241eb863858038eca6ad03f834edd61
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 23 05:07:43 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 23 06:03:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bd27283

dev-python/qtconsole: Bump to 4.7.5

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

 dev-python/qtconsole/Manifest   |  1 +
 dev-python/qtconsole/qtconsole-4.7.5.ebuild | 46 +
 2 files changed, 47 insertions(+)

diff --git a/dev-python/qtconsole/Manifest b/dev-python/qtconsole/Manifest
index 91f1fb7782e..57aaedf99ba 100644
--- a/dev-python/qtconsole/Manifest
+++ b/dev-python/qtconsole/Manifest
@@ -1,3 +1,4 @@
 DIST qtconsole-4.3.1.tar.gz 416931 BLAKE2B 
ec47c2ae8527d7aee55d6cb8d2ebea39ab1bfd3a268c46306613b67f72c27904db1de52682a47d075d804dad9cd7c124296163b39532936fb1a497ae606b7ffc
 SHA512 
f0f84d95143b4513c3d12af4712c6a5724143bf8c44e7a3fbc06d7a94e665b8d12072dd13eafb09476a3aa829155f4c75eb517ffb2bd6e8bd3c00af3c764e48f
 DIST qtconsole-4.6.0.tar.gz 426936 BLAKE2B 
dfd61258e2e8a0ba74421253f39392e2daa04acfd072361488fc93087e2aa4daa62203e4da501a24db43a79eafe7eaa8528f54edbf7b6bb6d547521cc92b8829
 SHA512 
196022af0d9ebe9e065bf46c07f90bddb2c314d4f0f778f828e20200b11085150ff3ad3adac944496b778b926a0ccdec7903de27be25b79be7fe3ba867148b0b
 DIST qtconsole-4.7.4.tar.gz 424884 BLAKE2B 
79380a1619498a28eaf7e741a3408a63b58705fe7c0672108b57c5cd9bb7c35d77569ce59a3cdb8dc21b3e403cc41845a534c55838ecf2e82038677132e90fbb
 SHA512 
4564c0ee15b1feaff235ae35a22bfb719497e5f74416ea0ab471018c4d68e13dd05cc4d0180b69151f81817180d4985589340698067b5a2166764a39147255fa
+DIST qtconsole-4.7.5.tar.gz 424850 BLAKE2B 
e2d2ba50ce57b13504bdf8ad1ee3374b76abc980f0b74dfe1177c3f066ba24382bc51f8d3db2614a8d74b198ed20f01fac67c288602ae6e31fe90165e63ab9e9
 SHA512 
ee57ad2de5b840ee4e7f439be08a3c82fd39ef1bf6113b7eda95fa1aabd132c799ff584a2ac7f7e2c89df4bcd9a9409bbaeee108a6bb49e6197d2e3395336ad7

diff --git a/dev-python/qtconsole/qtconsole-4.7.5.ebuild 
b/dev-python/qtconsole/qtconsole-4.7.5.ebuild
new file mode 100644
index 000..b9aa30d6b72
--- /dev/null
+++ b/dev-python/qtconsole/qtconsole-4.7.5.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+PYTHON_REQ_USE="threads(+)"
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Qt-based console for Jupyter with support for rich media output"
+HOMEPAGE="http://jupyter.org";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+   dev-python/ipykernel[${PYTHON_USEDEP}]
+   dev-python/ipython_genutils[${PYTHON_USEDEP}]
+   dev-python/jupyter_core[${PYTHON_USEDEP}]
+   >=dev-python/jupyter_client-4.1.1[${PYTHON_USEDEP}]
+   dev-python/pygments[${PYTHON_USEDEP}]
+   dev-python/traitlets[${PYTHON_USEDEP}]
+   dev-python/QtPy[${PYTHON_USEDEP},svg]
+"
+BDEPEND="
+   test? (
+   dev-python/QtPy[${PYTHON_USEDEP},svg,testlib]
+   )
+"
+# required by removed tests:
+#  dev-python/pytest-qt[${PYTHON_USEDEP}]
+PDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"
+
+distutils_enable_sphinx docs/source
+distutils_enable_tests pytest
+
+src_prepare() {
+   # TODO: these tests require virtx; however, running under virtx
+   # causes pytest to segv on exit (even though tests pass)
+   rm qtconsole/tests/test_00_console_widget.py || die
+   distutils-r1_src_prepare
+}



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

2020-06-22 Thread Zac Medico
commit: 6bc3e9674f48d0ffb60c5ad0128276495c7dad3a
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jun 23 04:27:21 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 23 04:59:23 2020 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=6bc3e967

repoman: Update for a repoman-2.3.23 release

Signed-off-by: Zac Medico  gentoo.org>

 repoman/RELEASE-NOTES | 5 +
 repoman/setup.py  | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/repoman/RELEASE-NOTES b/repoman/RELEASE-NOTES
index 80541fa5c..0c79956a0 100644
--- a/repoman/RELEASE-NOTES
+++ b/repoman/RELEASE-NOTES
@@ -1,6 +1,11 @@
 Release Notes; upgrade information mainly.
 Features/major bugfixes are listed in NEWS
 
+repoman-2.3.23
+==
+* Bug Fixes:
+- Bug 637824 Deprecate netsurf.eclass
+
 repoman-2.3.22
 ==
 * Bug Fixes:

diff --git a/repoman/setup.py b/repoman/setup.py
index c3a7adad9..eae0e09fe 100755
--- a/repoman/setup.py
+++ b/repoman/setup.py
@@ -450,7 +450,7 @@ def get_manpages():
 
 setup(
name = 'repoman',
-   version = '2.3.22',
+   version = '2.3.23',
url = 'https://wiki.gentoo.org/wiki/Project:Portage',
author = 'Gentoo Portage Development Team',
author_email = 'dev-port...@gentoo.org',



[gentoo-commits] proj/portage: Tag deleted: repoman-2.3.23

2020-06-22 Thread Zac Medico
commit: 
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 23 05:00:40 2020 +

Tag deleted: repoman-2.3.23




[gentoo-commits] proj/portage: New tag: repoman-2.3.23

2020-06-22 Thread Zac Medico
commit: 
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 23 05:00:53 2020 +

New tag: repoman-2.3.23




[gentoo-commits] proj/portage: New tag: repoman-2.3.23

2020-06-22 Thread Zac Medico
commit: 
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 23 04:58:27 2020 +

New tag: repoman-2.3.23




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

2020-06-22 Thread Zac Medico
commit: 10014e25d679edea8bc6db234c984b495b6a3c0b
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jun 23 04:41:12 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 23 04:57:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10014e25

app-portage/repoman: Bump to version 2.3.23

Committing this version straight to stable since the only changes are
to deprecate these eclasses:

 * cmake-utils
 * netsurf (bug 637824)

Bug: https://bugs.gentoo.org/637824
Package-Manager: Portage-2.3.102, Repoman-2.3.23
Signed-off-by: Zac Medico  gentoo.org>

 app-portage/repoman/Manifest  |  1 +
 app-portage/repoman/repoman-2.3.23.ebuild | 64 +++
 2 files changed, 65 insertions(+)

diff --git a/app-portage/repoman/Manifest b/app-portage/repoman/Manifest
index 99d8cc27565..03e12e36431 100644
--- a/app-portage/repoman/Manifest
+++ b/app-portage/repoman/Manifest
@@ -2,3 +2,4 @@ DIST repoman-2.3.16.tar.bz2 86739 BLAKE2B 
dc3e3b5e72df751cfacc17e6f5c847160438a4
 DIST repoman-2.3.20.tar.bz2 87313 BLAKE2B 
cc0ff9b651e01b12202b32d48979f42ffde6e8a7c72095a3f75228a54892bc11c521f015738443133bec223f9ca0faf5687388680ddfd19e07514f873094b0f9
 SHA512 
edb5564de920156fd89b4df136d86b73401d4d5cf591abc2fbbf97f0ebb7bb43ed17d076560a76a1f3269d19a64c7c52d48540134a9fb86d9fa952d1702e01e2
 DIST repoman-2.3.21.tar.bz2 87094 BLAKE2B 
feb972d9585440d2a5ed6800146a1d7027fde4c5e7a70904905837261776b9c09bc9bfc6c4da8248a1420635ad8443b31d7716990e6425db3403c8bb74ddca5d
 SHA512 
537c6f6152134df4cd99321b812a1e02608ef0621e674214789dc79ca6540ff1ddab05d100e2bbc2fd0d85664cd92549fb39f8da3cf6850c1a190a88a95814e5
 DIST repoman-2.3.22.tar.bz2 87026 BLAKE2B 
52262339410b95d47df19e225493075d6e9f763e85b7fa9c982c47ed88b652620d3ab083781c9e4747d8e3659795de7a05163b00339065ce5d84f8babfadc1dd
 SHA512 
8be75f58127452ed162b0f5feac96110b82f7a06fa904c65f6084dff4c542602870cde7fde5cf4108b04142d433c1167dc5bccdf839064dbce2278ea789f77ae
+DIST repoman-2.3.23.tar.bz2 87108 BLAKE2B 
c1190433bd8aedf59e1ddf192dd14cca13e3bdae7367decd6bf64a79021f54a63f21ec49d5737b90c46be3894f4d3ff11bf5bd2868c9ebf65e44b4eb3bb4eee0
 SHA512 
9d01fadc5820501a9bfb9c1b6d9634ecbc14aacdc448bb440d1e37d47f7e4bcdea8269f8ba90e3783d84f31121870a9d7b165f58b78f0d0f0f4e822a25687d1b

diff --git a/app-portage/repoman/repoman-2.3.23.ebuild 
b/app-portage/repoman/repoman-2.3.23.ebuild
new file mode 100644
index 000..9dfe116e98f
--- /dev/null
+++ b/app-portage/repoman/repoman-2.3.23.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DISTUTILS_USE_SETUPTOOLS=no
+PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_REQ_USE='bzip2(+)'
+
+inherit distutils-r1
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/portage.git";
+   S="${WORKDIR}/${P}/repoman"
+else
+   SRC_URI="https://dev.gentoo.org/~zmedico/portage/archives/${P}.tar.bz2";
+   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
+
+DESCRIPTION="Repoman is a Quality Assurance tool for Gentoo ebuilds"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage";
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   >=sys-apps/portage-2.3.80[${PYTHON_USEDEP}]
+   >=dev-python/lxml-3.6.0[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+python_test() {
+   esetup.py test
+}
+
+python_install() {
+   # Install sbin scripts to bindir for python-exec linking
+   # they will be relocated in pkg_preinst()
+   distutils-r1_python_install \
+   --system-prefix="${EPREFIX}/usr" \
+   --bindir="$(python_get_scriptdir)" \
+   --docdir="${EPREFIX}/usr/share/doc/${PF}" \
+   --htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \
+   --sbindir="$(python_get_scriptdir)" \
+   --sysconfdir="${EPREFIX}/etc" \
+   "${@}"
+}
+
+pkg_postinst() {
+   if [[ -z {REPLACING_VERSIONS} ]]; then
+   elog ""
+   elog "This release of repoman is from the new portage/repoman 
split"
+   elog "release code base."
+   elog "This new repoman code base is still being developed.  So 
its API's"
+   elog "are not to be considered stable and are subject to 
change."
+   elog "The code released has been tested and considered ready 
for use."
+   elog "This however does not guarantee it to be completely bug 
free."
+   elog "Please report any bugs you may encounter."
+   elog ""
+   fi
+}



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

2020-06-22 Thread Zac Medico
commit: 2646baa0fc6758dd6622dbcc541da5fce70e71e0
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jun 23 04:50:20 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 23 04:57:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2646baa0

app-portage/repoman: Remove old versions

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

 app-portage/repoman/Manifest  |  3 --
 app-portage/repoman/repoman-2.3.16.ebuild | 63 --
 app-portage/repoman/repoman-2.3.20.ebuild | 64 ---
 app-portage/repoman/repoman-2.3.21.ebuild | 64 ---
 4 files changed, 194 deletions(-)

diff --git a/app-portage/repoman/Manifest b/app-portage/repoman/Manifest
index 03e12e36431..d60ac484399 100644
--- a/app-portage/repoman/Manifest
+++ b/app-portage/repoman/Manifest
@@ -1,5 +1,2 @@
-DIST repoman-2.3.16.tar.bz2 86739 BLAKE2B 
dc3e3b5e72df751cfacc17e6f5c847160438a4d6f5d86b4dd17ab8a3a69cd0502f2965934c456ea7538f228c40364535e861c489ab2a09a0df14183b111e9a38
 SHA512 
d0e8bee1e3bd6dd8aecb1278fc7877768552612c4638488b61a9b8856ad9cd7333c7d52f0c334925d90170a1d8af20e9ead6533edbc10cae02baec629dece121
-DIST repoman-2.3.20.tar.bz2 87313 BLAKE2B 
cc0ff9b651e01b12202b32d48979f42ffde6e8a7c72095a3f75228a54892bc11c521f015738443133bec223f9ca0faf5687388680ddfd19e07514f873094b0f9
 SHA512 
edb5564de920156fd89b4df136d86b73401d4d5cf591abc2fbbf97f0ebb7bb43ed17d076560a76a1f3269d19a64c7c52d48540134a9fb86d9fa952d1702e01e2
-DIST repoman-2.3.21.tar.bz2 87094 BLAKE2B 
feb972d9585440d2a5ed6800146a1d7027fde4c5e7a70904905837261776b9c09bc9bfc6c4da8248a1420635ad8443b31d7716990e6425db3403c8bb74ddca5d
 SHA512 
537c6f6152134df4cd99321b812a1e02608ef0621e674214789dc79ca6540ff1ddab05d100e2bbc2fd0d85664cd92549fb39f8da3cf6850c1a190a88a95814e5
 DIST repoman-2.3.22.tar.bz2 87026 BLAKE2B 
52262339410b95d47df19e225493075d6e9f763e85b7fa9c982c47ed88b652620d3ab083781c9e4747d8e3659795de7a05163b00339065ce5d84f8babfadc1dd
 SHA512 
8be75f58127452ed162b0f5feac96110b82f7a06fa904c65f6084dff4c542602870cde7fde5cf4108b04142d433c1167dc5bccdf839064dbce2278ea789f77ae
 DIST repoman-2.3.23.tar.bz2 87108 BLAKE2B 
c1190433bd8aedf59e1ddf192dd14cca13e3bdae7367decd6bf64a79021f54a63f21ec49d5737b90c46be3894f4d3ff11bf5bd2868c9ebf65e44b4eb3bb4eee0
 SHA512 
9d01fadc5820501a9bfb9c1b6d9634ecbc14aacdc448bb440d1e37d47f7e4bcdea8269f8ba90e3783d84f31121870a9d7b165f58b78f0d0f0f4e822a25687d1b

diff --git a/app-portage/repoman/repoman-2.3.16.ebuild 
b/app-portage/repoman/repoman-2.3.16.ebuild
deleted file mode 100644
index d142e1a16cf..000
--- a/app-portage/repoman/repoman-2.3.16.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{6,7} )
-PYTHON_REQ_USE='bzip2(+)'
-
-inherit distutils-r1
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/portage.git";
-   S="${WORKDIR}/${P}/repoman"
-else
-   SRC_URI="https://dev.gentoo.org/~zmedico/portage/archives/${P}.tar.bz2";
-   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
-
-DESCRIPTION="Repoman is a Quality Assurance tool for Gentoo ebuilds"
-HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage";
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   >=sys-apps/portage-2.3.43[${PYTHON_USEDEP}]
-   >=dev-python/lxml-3.6.0[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-python_test() {
-   esetup.py test
-}
-
-python_install() {
-   # Install sbin scripts to bindir for python-exec linking
-   # they will be relocated in pkg_preinst()
-   distutils-r1_python_install \
-   --system-prefix="${EPREFIX}/usr" \
-   --bindir="$(python_get_scriptdir)" \
-   --docdir="${EPREFIX}/usr/share/doc/${PF}" \
-   --htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \
-   --sbindir="$(python_get_scriptdir)" \
-   --sysconfdir="${EPREFIX}/etc" \
-   "${@}"
-}
-
-pkg_postinst() {
-   if [[ -z {REPLACING_VERSIONS} ]]; then
-   elog ""
-   elog "This release of repoman is from the new portage/repoman 
split"
-   elog "release code base."
-   elog "This new repoman code base is still being developed.  So 
its API's"
-   elog "are not to be considered stable and are subject to 
change."
-   elog "The code released has been tested and considered ready 
for use."
-   elog "This however does not guarantee it to be completely bug 
free."
-   elog "Please report any bugs you may encounter."

[gentoo-commits] repo/proj/guru:dev commit in: www-apps/uwebsockets/

2020-06-22 Thread Aisha Tammy
commit: b66f02a2b6588a6a4c2b5d9be265fc7c631dcffd
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Jun 23 00:53:15 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Tue Jun 23 00:53:48 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b66f02a2

www-apps/uwebsockets: drop old version

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

 www-apps/uwebsockets/Manifest  |  1 -
 www-apps/uwebsockets/uwebsockets-18.3.0.ebuild | 37 --
 2 files changed, 38 deletions(-)

diff --git a/www-apps/uwebsockets/Manifest b/www-apps/uwebsockets/Manifest
index 41c8135..ad29146 100644
--- a/www-apps/uwebsockets/Manifest
+++ b/www-apps/uwebsockets/Manifest
@@ -1,2 +1 @@
-DIST uwebsockets-18.3.0.tar.gz 263300 BLAKE2B 
7225df4c8ce3bc09a92505ee7559a0d69b0cab09da44e7f0ca5e03f6c29ae23474566a1f28ececa938403b34bae4d2a53254ecd1eb7aa4330a9dbd065d74e943
 SHA512 
e694de5f206e72aa1872f69fdcfa9551103b42cc480f0e34e83a8dccce35fc0ef4c6dcbbcc817871e8bb8f0439a345295eaaf17654dedf6e94c78852507485cc
 DIST uwebsockets-18.5.0.tar.gz 264309 BLAKE2B 
01aa6d09e9549f4ad545f5a30ff3bb46af233ea5256c51bc94d6d02cc5b80ee62c25d68791119e6ab397caf47bacf946d74af0635b79f213d8805c3d5f520bd7
 SHA512 
8d93721178486fcdc7dae1feac8cc67db1bf20584d2ecc1f435af4f00aa36ef655cfced121461ce1c458f69c469146beba56b18565f1d4432e04f2dafc2653f4

diff --git a/www-apps/uwebsockets/uwebsockets-18.3.0.ebuild 
b/www-apps/uwebsockets/uwebsockets-18.3.0.ebuild
deleted file mode 100644
index e4fefa5..000
--- a/www-apps/uwebsockets/uwebsockets-18.3.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="ultra fast, simple, secure & standards compliant web I/O"
-HOMEPAGE="https://github.com/uNetworking/uWebSockets";
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/uNetworking/uWebSockets.git";
-else
-   
SRC_URI="https://github.com/uNetworking/uWebSockets/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm64 ~x86"
-   S="${WORKDIR}/uWebSockets-${PV}"
-fi
-
-LICENSE="Apache-2.0"
-SLOT="0"
-RDEPEND=">=net-libs/usockets-0.4.0"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-src_Loop.h.patch"
-)
-
-src_prepare() {
-   default
-   mv src uWebSockets
-}
-
-src_compile() {
-   return 0
-}
-
-src_install() {
-   doheader -r uWebSockets
-}



[gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/uwebsockets/files/, net-libs/usockets/files/, net-misc/purritobin/, ...

2020-06-22 Thread Aisha Tammy
commit: 4ccf174d1cd8cf5fd27f7b066d775c5735575da0
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Jun 23 00:45:56 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Tue Jun 23 00:53:48 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4ccf174d

net-misc/purritobin: fix categories for usockets/uwebsockets

net-libs/usockets: move to net-libs per OpenBSD/FreeBSD
www-apps/uwebsockets: move to www-apps per Open/FreeBSD

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

 {dev-cpp => net-libs}/usockets/Manifest  | 0
 {dev-cpp => net-libs}/usockets/files/usockets-Makefile.patch | 0
 {dev-cpp => net-libs}/usockets/metadata.xml  | 0
 {dev-cpp => net-libs}/usockets/usockets-0.4.0.ebuild | 0
 {dev-cpp => net-libs}/usockets/usockets-.ebuild  | 0
 net-misc/purritobin/purritobin-0.2.1.ebuild  | 4 ++--
 net-misc/purritobin/purritobin-.ebuild   | 4 ++--
 {dev-cpp => www-apps}/uwebsockets/Manifest   | 0
 {dev-cpp => www-apps}/uwebsockets/files/uwebsockets-Makefile.patch   | 0
 {dev-cpp => www-apps}/uwebsockets/files/uwebsockets-src_Loop.h.patch | 0
 {dev-cpp => www-apps}/uwebsockets/metadata.xml   | 0
 {dev-cpp => www-apps}/uwebsockets/uwebsockets-18.3.0.ebuild  | 2 +-
 {dev-cpp => www-apps}/uwebsockets/uwebsockets-.ebuild| 2 +-
 13 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-cpp/usockets/Manifest b/net-libs/usockets/Manifest
similarity index 100%
rename from dev-cpp/usockets/Manifest
rename to net-libs/usockets/Manifest

diff --git a/dev-cpp/usockets/files/usockets-Makefile.patch 
b/net-libs/usockets/files/usockets-Makefile.patch
similarity index 100%
rename from dev-cpp/usockets/files/usockets-Makefile.patch
rename to net-libs/usockets/files/usockets-Makefile.patch

diff --git a/dev-cpp/usockets/metadata.xml b/net-libs/usockets/metadata.xml
similarity index 100%
rename from dev-cpp/usockets/metadata.xml
rename to net-libs/usockets/metadata.xml

diff --git a/dev-cpp/usockets/usockets-0.4.0.ebuild 
b/net-libs/usockets/usockets-0.4.0.ebuild
similarity index 100%
rename from dev-cpp/usockets/usockets-0.4.0.ebuild
rename to net-libs/usockets/usockets-0.4.0.ebuild

diff --git a/dev-cpp/usockets/usockets-.ebuild 
b/net-libs/usockets/usockets-.ebuild
similarity index 100%
rename from dev-cpp/usockets/usockets-.ebuild
rename to net-libs/usockets/usockets-.ebuild

diff --git a/net-misc/purritobin/purritobin-0.2.1.ebuild 
b/net-misc/purritobin/purritobin-0.2.1.ebuild
index 2c9702a..92b81b9 100644
--- a/net-misc/purritobin/purritobin-0.2.1.ebuild
+++ b/net-misc/purritobin/purritobin-0.2.1.ebuild
@@ -20,11 +20,11 @@ LICENSE="GPL-2"
 SLOT="0"
 IUSE="libuv static-libs"
 
-DEPEND="dev-cpp/usockets[libuv=,static-libs?]
+DEPEND="net-libs/usockets[libuv=,static-libs?]
libuv? ( >=dev-libs/libuv-1.35.0[static-libs?] )
 "
 BDEPEND="
-   dev-cpp/uwebsockets
+   www-apps/uwebsockets
 "
 
 src_prepare() {

diff --git a/net-misc/purritobin/purritobin-.ebuild 
b/net-misc/purritobin/purritobin-.ebuild
index 2c9702a..92b81b9 100644
--- a/net-misc/purritobin/purritobin-.ebuild
+++ b/net-misc/purritobin/purritobin-.ebuild
@@ -20,11 +20,11 @@ LICENSE="GPL-2"
 SLOT="0"
 IUSE="libuv static-libs"
 
-DEPEND="dev-cpp/usockets[libuv=,static-libs?]
+DEPEND="net-libs/usockets[libuv=,static-libs?]
libuv? ( >=dev-libs/libuv-1.35.0[static-libs?] )
 "
 BDEPEND="
-   dev-cpp/uwebsockets
+   www-apps/uwebsockets
 "
 
 src_prepare() {

diff --git a/dev-cpp/uwebsockets/Manifest b/www-apps/uwebsockets/Manifest
similarity index 100%
rename from dev-cpp/uwebsockets/Manifest
rename to www-apps/uwebsockets/Manifest

diff --git a/dev-cpp/uwebsockets/files/uwebsockets-Makefile.patch 
b/www-apps/uwebsockets/files/uwebsockets-Makefile.patch
similarity index 100%
rename from dev-cpp/uwebsockets/files/uwebsockets-Makefile.patch
rename to www-apps/uwebsockets/files/uwebsockets-Makefile.patch

diff --git a/dev-cpp/uwebsockets/files/uwebsockets-src_Loop.h.patch 
b/www-apps/uwebsockets/files/uwebsockets-src_Loop.h.patch
similarity index 100%
rename from dev-cpp/uwebsockets/files/uwebsockets-src_Loop.h.patch
rename to www-apps/uwebsockets/files/uwebsockets-src_Loop.h.patch

diff --git a/dev-cpp/uwebsockets/metadata.xml 
b/www-apps/uwebsockets/metadata.xml
similarity index 100%
rename from dev-cpp/uwebsockets/metadata.xml
rename to www-apps/uwebsockets/metadata.xml

diff --git a/dev-cpp/uwebsockets/uwebsockets-18.3.0.ebuild 
b/www-apps/uwebsockets/uwebsockets-18.3.0.ebuild
similarity index 95%
rename from dev-cpp/uwebsockets/uwebsockets-18.3.0.ebuild
rename to www-apps/uwebsockets/uwebsockets-18.3.0.ebuild
index 17fcaa5..e4fefa5 100644
--- a/dev-cpp/uwebsockets/uwebsockets-18.3.0.ebuild
+++ b/www-apps/uwebsoc

[gentoo-commits] repo/proj/guru:dev commit in: www-apps/uwebsockets/

2020-06-22 Thread Aisha Tammy
commit: 066d7b853f1b1d77e0532bb38f5df724bd9b073e
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Jun 23 00:52:49 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Tue Jun 23 00:53:48 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=066d7b85

www-apps/uwebsockets: version bump to 18.5.0

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

 www-apps/uwebsockets/Manifest  |  1 +
 www-apps/uwebsockets/uwebsockets-18.5.0.ebuild | 37 ++
 2 files changed, 38 insertions(+)

diff --git a/www-apps/uwebsockets/Manifest b/www-apps/uwebsockets/Manifest
index 62cd730..41c8135 100644
--- a/www-apps/uwebsockets/Manifest
+++ b/www-apps/uwebsockets/Manifest
@@ -1 +1,2 @@
 DIST uwebsockets-18.3.0.tar.gz 263300 BLAKE2B 
7225df4c8ce3bc09a92505ee7559a0d69b0cab09da44e7f0ca5e03f6c29ae23474566a1f28ececa938403b34bae4d2a53254ecd1eb7aa4330a9dbd065d74e943
 SHA512 
e694de5f206e72aa1872f69fdcfa9551103b42cc480f0e34e83a8dccce35fc0ef4c6dcbbcc817871e8bb8f0439a345295eaaf17654dedf6e94c78852507485cc
+DIST uwebsockets-18.5.0.tar.gz 264309 BLAKE2B 
01aa6d09e9549f4ad545f5a30ff3bb46af233ea5256c51bc94d6d02cc5b80ee62c25d68791119e6ab397caf47bacf946d74af0635b79f213d8805c3d5f520bd7
 SHA512 
8d93721178486fcdc7dae1feac8cc67db1bf20584d2ecc1f435af4f00aa36ef655cfced121461ce1c458f69c469146beba56b18565f1d4432e04f2dafc2653f4

diff --git a/www-apps/uwebsockets/uwebsockets-18.5.0.ebuild 
b/www-apps/uwebsockets/uwebsockets-18.5.0.ebuild
new file mode 100644
index 000..e4fefa5
--- /dev/null
+++ b/www-apps/uwebsockets/uwebsockets-18.5.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="ultra fast, simple, secure & standards compliant web I/O"
+HOMEPAGE="https://github.com/uNetworking/uWebSockets";
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/uNetworking/uWebSockets.git";
+else
+   
SRC_URI="https://github.com/uNetworking/uWebSockets/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm64 ~x86"
+   S="${WORKDIR}/uWebSockets-${PV}"
+fi
+
+LICENSE="Apache-2.0"
+SLOT="0"
+RDEPEND=">=net-libs/usockets-0.4.0"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-src_Loop.h.patch"
+)
+
+src_prepare() {
+   default
+   mv src uWebSockets
+}
+
+src_compile() {
+   return 0
+}
+
+src_install() {
+   doheader -r uWebSockets
+}



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

2020-06-22 Thread Hans de Graaff
commit: 96c907ce1af90fda94cf3d2e33d77281b5e3a4f7
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jun 23 04:11:23 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jun 23 04:11:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96c907ce

dev-ruby/autoprefixer-rails: cleanup

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

 dev-ruby/autoprefixer-rails/Manifest   |  2 --
 .../autoprefixer-rails-9.7.3.ebuild| 37 --
 .../autoprefixer-rails-9.7.4.ebuild| 37 --
 3 files changed, 76 deletions(-)

diff --git a/dev-ruby/autoprefixer-rails/Manifest 
b/dev-ruby/autoprefixer-rails/Manifest
index 055b577e3b3..1bdae729428 100644
--- a/dev-ruby/autoprefixer-rails/Manifest
+++ b/dev-ruby/autoprefixer-rails/Manifest
@@ -1,7 +1,5 @@
 DIST autoprefixer-rails-7.2.6.gem 196608 BLAKE2B 
0f9224fbf765877b1b7414c68fc39a6587514d27fb5290e1a623db8dcdcbf6f668b66ddd0133906a97e63e877b8201168a45520a9919dc756021d5a7cffc0d38
 SHA512 
37b3f245291711f92ab9e264491637e753afb95e52f9fd4e2bda6655cd781b2d031934f3379cabdd5589bdf57b780d0727f2fff1cdf7887ca4cc323d23023396
 DIST autoprefixer-rails-8.6.5.gem 208896 BLAKE2B 
50e8b8ef3fec9a0bb8d68afa8950989dbf84b58b79b8822e83bf22873c5172c2c514643c31dca88cfec49bd585563eb9b201c621d3ab6707ed0d49c6cd4c8fc8
 SHA512 
fddabc4d745ad1b4282622a52ab4e36c377eccec85c4e80b3e8d633ffcc2d1613f4fee9e9f2356c85d251e44b0010418029bb278894987119689435ac885e982
 DIST autoprefixer-rails-9.6.5.gem 221184 BLAKE2B 
0a8d3dcd87cf4ad54252110bd60e86ab19563e614158575cb596aeaeab1d87946412625ce4bab4d8fc71d27abef1646822867aae19759b74445733f57ea076d5
 SHA512 
489e37e411fc86632d612b0d102955fd29b2654ba5bed3b648d89676e9d90aafb38139ea0d3f027fd9b23aff683c3f15979434d25c71d46560c3e1a1f1b4bc20
-DIST autoprefixer-rails-9.7.3.gem 08 BLAKE2B 
cd091364f3089ece63dbfa13fad58c3e21b3275ebc845df543429f2952770a64221f4bda60567a37c3f4ee6031653856e4cda7d4cf4d24b3c08819c603f8db60
 SHA512 
08a78e4145f3d05c37c76d6ed137a2cb1951e36f4b36b9425f4429afb28e6eb2fb6a19e164189fad18f03e5d3540d02698f1466e95593f08ec4d064cbb21fd0a
-DIST autoprefixer-rails-9.7.4.gem 222720 BLAKE2B 
6613552129f1a94a3d9acbef9f3b282b396d966706cf9321ba4b7ae31aa1054c3d589b1620862f21dd8a49f46a255b9d45e3e3155b4855ca42cad8a1d6079b46
 SHA512 
f0c8a4b0baed3024da732f47f2f836a1783cbe87c552d61f2a5d36f32a93ddc42e4dc987c826c6438ffdb0f61411d4ead37a001d6653a620f2ce110dbdbbdf3f
 DIST autoprefixer-rails-9.7.6.gem 226304 BLAKE2B 
51481173acc0200e7287e8f448fa99f56f7548cf5df142705f6e4143f42bc079ab2c4d4459d4cbe62417b9f873b9e32d64a96ce61e0e8cdd7501203a33c0dae7
 SHA512 
4855843d270536607a705ab7a1fcb20fade8270ee957de3150b3892cf81442fecb5d501f07276761aba76c44edef15235d0f68e91ae76d2fe09dfa16179faa7c
 DIST autoprefixer-rails-9.8.1.gem 225280 BLAKE2B 
8c6fac92414ba153fdeb974b5e82a9550bd2f18c00af1813984e5cc2b239ab961d597fe66dc8d7a160564f06597da5ac5415c77d73db3d6cfd966dc4cb94ab93
 SHA512 
5f9d514170551e0c657e5116e76745411d396a02815f44cd2bd0b6c45d7c85cca7af6705ecaa98f4ef069c9d68a941dc9b728d837e9158e56dd9aa9110043bad

diff --git a/dev-ruby/autoprefixer-rails/autoprefixer-rails-9.7.3.ebuild 
b/dev-ruby/autoprefixer-rails/autoprefixer-rails-9.7.3.ebuild
deleted file mode 100644
index 8c312ceb78e..000
--- a/dev-ruby/autoprefixer-rails/autoprefixer-rails-9.7.3.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-RUBY_FAKEGEM_EXTRAINSTALL="vendor"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Add vendor prefixes to CSS rules using values from the Can I Use 
website"
-HOMEPAGE="https://github.com/ai/autoprefixer-rails";
-LICENSE="MIT"
-
-KEYWORDS="~amd64"
-SLOT="$(ver_cut 1)"
-IUSE=""
-
-ruby_add_rdepend "dev-ruby/execjs:*"
-
-ruby_add_bdepend "test? (
-   >=dev-ruby/rails-5.0.0
-   dev-ruby/rake
-   dev-ruby/rspec-rails
-)"
-
-all_ruby_prepare() {
-   sed -i -e "/bundler/d" -e "/BUNDLE/d" spec/app/config/boot.rb || die
-   sed -i -e "/Bundler/,+3d" \
-   -e '/config.sass/ s:^:#:' spec/app/config/application.rb || die
-   sed -i -e '/standard/ s:^:#:' autoprefixer-rails.gemspec || die
-   rm -f spec/rails_spec.rb || die
-}

diff --git a/dev-ruby/autoprefixer-rails/autoprefixer-rails-9.7.4.ebuild 
b/dev-ruby/autoprefixer-rails/autoprefixer-rails-9.7.4.ebuild
deleted file mode 100644
index 2abda327ffb..000
--- a/dev-ruby/autoprefixer-rails/autoprefixer-rails-9.7.4.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-RUBY_FAKEGEM_EXTRAINSTALL="vendor"
-
-inherit ruby-fakegem
-
-DESCRIPTION

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

2020-06-22 Thread Hans de Graaff
commit: 231d84007a2b986d9879e469926046d0eac576e2
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jun 23 04:14:03 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jun 23 04:14:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=231d8400

dev-ruby/autoprefixer-rails: add 9.8.2

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

 dev-ruby/autoprefixer-rails/Manifest   |  1 +
 .../autoprefixer-rails-9.8.2.ebuild| 38 ++
 2 files changed, 39 insertions(+)

diff --git a/dev-ruby/autoprefixer-rails/Manifest 
b/dev-ruby/autoprefixer-rails/Manifest
index 1bdae729428..495b4bbf4f8 100644
--- a/dev-ruby/autoprefixer-rails/Manifest
+++ b/dev-ruby/autoprefixer-rails/Manifest
@@ -3,3 +3,4 @@ DIST autoprefixer-rails-8.6.5.gem 208896 BLAKE2B 
50e8b8ef3fec9a0bb8d68afa8950989
 DIST autoprefixer-rails-9.6.5.gem 221184 BLAKE2B 
0a8d3dcd87cf4ad54252110bd60e86ab19563e614158575cb596aeaeab1d87946412625ce4bab4d8fc71d27abef1646822867aae19759b74445733f57ea076d5
 SHA512 
489e37e411fc86632d612b0d102955fd29b2654ba5bed3b648d89676e9d90aafb38139ea0d3f027fd9b23aff683c3f15979434d25c71d46560c3e1a1f1b4bc20
 DIST autoprefixer-rails-9.7.6.gem 226304 BLAKE2B 
51481173acc0200e7287e8f448fa99f56f7548cf5df142705f6e4143f42bc079ab2c4d4459d4cbe62417b9f873b9e32d64a96ce61e0e8cdd7501203a33c0dae7
 SHA512 
4855843d270536607a705ab7a1fcb20fade8270ee957de3150b3892cf81442fecb5d501f07276761aba76c44edef15235d0f68e91ae76d2fe09dfa16179faa7c
 DIST autoprefixer-rails-9.8.1.gem 225280 BLAKE2B 
8c6fac92414ba153fdeb974b5e82a9550bd2f18c00af1813984e5cc2b239ab961d597fe66dc8d7a160564f06597da5ac5415c77d73db3d6cfd966dc4cb94ab93
 SHA512 
5f9d514170551e0c657e5116e76745411d396a02815f44cd2bd0b6c45d7c85cca7af6705ecaa98f4ef069c9d68a941dc9b728d837e9158e56dd9aa9110043bad
+DIST autoprefixer-rails-9.8.2.gem 225280 BLAKE2B 
50ba378c775c9781cc2fe5ac4e10cdb29848613a17f1f78811518dc1f58abee9176843a412703505d2ccf15c9dae6025c07f9a60b323db2878cc44e51f6be281
 SHA512 
6ab2d6106654a41095610dbf3eb383772eaf4c4e56e8790d8207ce2b9e218f276be00a011c6976c1b7b555f691366082d9a1fbeb53dae66e3599e67b2c3cb245

diff --git a/dev-ruby/autoprefixer-rails/autoprefixer-rails-9.8.2.ebuild 
b/dev-ruby/autoprefixer-rails/autoprefixer-rails-9.8.2.ebuild
new file mode 100644
index 000..bc06b129057
--- /dev/null
+++ b/dev-ruby/autoprefixer-rails/autoprefixer-rails-9.8.2.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_EXTRAINSTALL="vendor"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Add vendor prefixes to CSS rules using values from the Can I Use 
website"
+HOMEPAGE="https://github.com/ai/autoprefixer-rails";
+LICENSE="MIT"
+
+KEYWORDS="~amd64"
+SLOT="$(ver_cut 1)"
+IUSE=""
+
+ruby_add_rdepend "dev-ruby/execjs:*"
+
+ruby_add_bdepend "test? (
+   >=dev-ruby/rails-5.0.0
+   dev-ruby/rake
+   dev-ruby/rspec-rails
+)"
+
+all_ruby_prepare() {
+   sed -i -e "/bundler/d" -e "/BUNDLE/d" spec/app/config/boot.rb || die
+   sed -i -e "/Bundler/,+3d" \
+   -e '/config.sass/ s:^:#:' spec/app/config/application.rb || die
+   sed -i -e '/standard/ s:^:#:' autoprefixer-rails.gemspec || die
+   sed -i -e '1igem "tzinfo", "~>1.0"' spec/spec_helper.rb || die
+   rm -f spec/rails_spec.rb || die
+}



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

2020-06-22 Thread Hans de Graaff
commit: 9dcd7bbdbf79f6b97b48f7a2649ff03d3b23f7c1
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jun 23 04:14:58 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jun 23 04:14:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dcd7bbd

dev-ruby/diff-lcs: add 1.4

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

 dev-ruby/diff-lcs/Manifest|  1 +
 dev-ruby/diff-lcs/diff-lcs-1.4.ebuild | 19 +++
 2 files changed, 20 insertions(+)

diff --git a/dev-ruby/diff-lcs/Manifest b/dev-ruby/diff-lcs/Manifest
index 430e37978c3..62199d0286e 100644
--- a/dev-ruby/diff-lcs/Manifest
+++ b/dev-ruby/diff-lcs/Manifest
@@ -1 +1,2 @@
 DIST diff-lcs-1.3.gem 46080 BLAKE2B 
907536d75c34de86ef28fa044ae785d8ba34c8d1f4d38964f08ef80c14a4fb6176504a39c2e074fb58fc5456214555461a18ae42dc04f371d85dd335b1cbc3dc
 SHA512 
b82de390d22e0c1337ddca923621b1cc842f583a93953ef07a303b428fe3a389f8a4a1a63617a58136c8d6215aff025a3bbec2a2f618e9ea81f471964f93b078
+DIST diff-lcs-1.4.gem 48128 BLAKE2B 
6ec3259dc366769c4008c6ea6c7e5f1fe75350dc0318c8d45991bb8173274630b3be734fe6375dbb131620d8124faa7c0567e57d299393c3165b0e1c2d29c138
 SHA512 
a352fdfb89587b38f3e518f76048530501080dba5abb0c37033f44bee65bca12550ea7d6f1edb8a719092538c20d1c58dfe7a6f67ba1d46549608c09feae

diff --git a/dev-ruby/diff-lcs/diff-lcs-1.4.ebuild 
b/dev-ruby/diff-lcs/diff-lcs-1.4.ebuild
new file mode 100644
index 000..83d94225b6f
--- /dev/null
+++ b/dev-ruby/diff-lcs/diff-lcs-1.4.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_EXTRADOC="README.rdoc History.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Use the McIlroy-Hunt LCS algorithm to compute differences"
+HOMEPAGE="https://github.com/halostatue/diff-lcs";
+
+LICENSE="|| ( MIT Ruby GPL-2 )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE=""



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

2020-06-22 Thread Petrus Zhao
commit: fe11fe9747000b0339b10efd8f67d92f28379e1d
Author: Petrus Zhao  gmail  com>
AuthorDate: Tue Jun 23 04:08:21 2020 +
Commit: Petrus Zhao  gmail  com>
CommitDate: Tue Jun 23 04:08:40 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fe11fe97

dev-vcs/git-extras: drop version 5.1.0

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

 dev-vcs/git-extras/Manifest|  1 -
 dev-vcs/git-extras/git-extras-5.1.0.ebuild | 36 --
 2 files changed, 37 deletions(-)

diff --git a/dev-vcs/git-extras/Manifest b/dev-vcs/git-extras/Manifest
index 6c688e6..748da69 100644
--- a/dev-vcs/git-extras/Manifest
+++ b/dev-vcs/git-extras/Manifest
@@ -1,2 +1 @@
-DIST git-extras-5.1.0.tar.gz 147104 BLAKE2B 
279f0476c2ec6f30531d77d5c348bc6c0a823a622f7ec96ae65b1b2861a7c3ab1bf66eb246d031d0cfb4e1cc5fd3c2bfbf1418bc619dc3b81c6f0d7ffdcccd0a
 SHA512 
c9409444339b1f4cb1ab6cc6dba48facbf9b8ba1f253567749ab84a2c3be39bc6720467f3064de4b4e44083a4cafda6d470dbaf5652515c4cb6fa8b2d691b2dc
 DIST git-extras-6.0.0.tar.gz 149480 BLAKE2B 
2b9152303f3b27f343727e95100147588e941c51d3a6c09888644cdfa49e007603c5f9b4f4fccdab4497ec94e85b925519b2ca05c30f23cf7c1092aff47c1dea
 SHA512 
54ed9d12f42024eba77d2d08f0d17e72af65bd21a98bc921a556788f18e01fba9e25e250bf12248b6dfa38b93fb763fad1aa623de7dccb1dc28da7b9296fb58b

diff --git a/dev-vcs/git-extras/git-extras-5.1.0.ebuild 
b/dev-vcs/git-extras/git-extras-5.1.0.ebuild
deleted file mode 100644
index 3ab7c35..000
--- a/dev-vcs/git-extras/git-extras-5.1.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit bash-completion-r1
-
-DESCRIPTION="Little git extras"
-HOMEPAGE="https://github.com/tj/git-extras";
-
-if [[ "${PV}" ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="${HOMEPAGE}"
-else
-   SRC_URI="https://github.com/tj/git-extras/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-RDEPEND="dev-vcs/git"
-
-src_compile() { :; }
-
-src_install() {
-   emake install PREFIX="${EPREIFX}"/usr SYSCONFDIR="${EPREFIX}"/etc 
DESTDIR="${D}"
-
-   rm -rf "${D}"/etc/bash_completion.d
-
-   newbashcomp etc/bash_completion.sh "${PN}"
-
-   insinto /usr/share/zsh/site-functions
-   newins etc/git-extras-completion.zsh "_${PN}"
-
-}



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

2020-06-22 Thread Petrus Zhao
commit: b33f450c7672e3a27493815f0029f26c863576f5
Author: Petrus Zhao  gmail  com>
AuthorDate: Tue Jun 23 04:06:50 2020 +
Commit: Petrus Zhao  gmail  com>
CommitDate: Tue Jun 23 04:08:40 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b33f450c

dev-vcs/git-extras: version bump 6.0.0

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

 dev-vcs/git-extras/Manifest|  1 +
 dev-vcs/git-extras/git-extras-6.0.0.ebuild | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/dev-vcs/git-extras/Manifest b/dev-vcs/git-extras/Manifest
index ec5f746..6c688e6 100644
--- a/dev-vcs/git-extras/Manifest
+++ b/dev-vcs/git-extras/Manifest
@@ -1 +1,2 @@
 DIST git-extras-5.1.0.tar.gz 147104 BLAKE2B 
279f0476c2ec6f30531d77d5c348bc6c0a823a622f7ec96ae65b1b2861a7c3ab1bf66eb246d031d0cfb4e1cc5fd3c2bfbf1418bc619dc3b81c6f0d7ffdcccd0a
 SHA512 
c9409444339b1f4cb1ab6cc6dba48facbf9b8ba1f253567749ab84a2c3be39bc6720467f3064de4b4e44083a4cafda6d470dbaf5652515c4cb6fa8b2d691b2dc
+DIST git-extras-6.0.0.tar.gz 149480 BLAKE2B 
2b9152303f3b27f343727e95100147588e941c51d3a6c09888644cdfa49e007603c5f9b4f4fccdab4497ec94e85b925519b2ca05c30f23cf7c1092aff47c1dea
 SHA512 
54ed9d12f42024eba77d2d08f0d17e72af65bd21a98bc921a556788f18e01fba9e25e250bf12248b6dfa38b93fb763fad1aa623de7dccb1dc28da7b9296fb58b

diff --git a/dev-vcs/git-extras/git-extras-6.0.0.ebuild 
b/dev-vcs/git-extras/git-extras-6.0.0.ebuild
new file mode 100644
index 000..3ab7c35
--- /dev/null
+++ b/dev-vcs/git-extras/git-extras-6.0.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit bash-completion-r1
+
+DESCRIPTION="Little git extras"
+HOMEPAGE="https://github.com/tj/git-extras";
+
+if [[ "${PV}" ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="${HOMEPAGE}"
+else
+   SRC_URI="https://github.com/tj/git-extras/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+RDEPEND="dev-vcs/git"
+
+src_compile() { :; }
+
+src_install() {
+   emake install PREFIX="${EPREIFX}"/usr SYSCONFDIR="${EPREFIX}"/etc 
DESTDIR="${D}"
+
+   rm -rf "${D}"/etc/bash_completion.d
+
+   newbashcomp etc/bash_completion.sh "${PN}"
+
+   insinto /usr/share/zsh/site-functions
+   newins etc/git-extras-completion.zsh "_${PN}"
+
+}



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

2020-06-22 Thread Matt Turner
commit: ecb839dbc8ad2adf539a2f89b570c14e95b3c928
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Jun 23 03:31:30 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Jun 23 03:43:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecb839db

media-libs/mesa: Drop old versions

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

 media-libs/mesa/Manifest   |   4 -
 ...ify-the-maximum-required-libdrm-in-dri.pc.patch |  33 --
 media-libs/mesa/mesa-20.0.4-r1.ebuild  | 557 
 media-libs/mesa/mesa-20.0.7.ebuild | 559 
 media-libs/mesa/mesa-20.1.0.ebuild | 560 -
 media-libs/mesa/mesa-20.1.0_rc4.ebuild | 559 
 6 files changed, 2272 deletions(-)

diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest
index 9a12d1b1871..30157ae042c 100644
--- a/media-libs/mesa/Manifest
+++ b/media-libs/mesa/Manifest
@@ -1,7 +1,3 @@
 DIST mesa-19.3.5.tar.xz 12064980 BLAKE2B 
a20ebfb149624f13951795e07154ab70dc1856a7a1261b339b0bdf000951756c88439e7b8729f768b0b4b298301b9a3c0c10d7f2fab3abd91649c12ba51c
 SHA512 
413929573fab31e1bb2a1a04c0c770161c2db464a5aab3f0567d27603fff889ede70e1f6e197e7ff1c1639dc4cc543457bcf45761f0f8e6dffafccfa773a4e3f
-DIST mesa-20.0.4.tar.xz 12292888 BLAKE2B 
a14b747045ee4ff3bc07e527ad43d5b22047d6c9700cf290ba9c95e07bd88b9252bdd14380d4f0033dcb8fb652664987889d972db09462bcc69c8a7e843b606f
 SHA512 
17d8bc3b56779a8e5648d81da9ee97b66bcec015710801edce4e8055fbb314cd9ebc1d112e3035480ba844c7d9ae6b5b1f1eac0cc0817e69e9253a7748451a55
-DIST mesa-20.0.7.tar.xz 12308160 BLAKE2B 
fac8dffd08ada27080ee4c6f1e0dce69218c8f15b97ca59d9a1dc84098b7d376cea6ccdf05957690beb47a7c2ecfd75497bfa150c7c46a0c509ba37abb0e5359
 SHA512 
00baae50f14bf2b08b5654dffb11cf67499dc1825e1700b137fb5719e767e0e78e789979df2c194f677ea9c5e531f34965d47b9e37c239944c38d0570c7a9685
 DIST mesa-20.0.8.tar.xz 12360736 BLAKE2B 
19e3f8a40b34b5f17ed76077c5d92f728a134b2479c43d86674ed1818ab99639a9b732041f67488251df808564f6abe5b587d756ef9c7c13dcada87cd0fc05de
 SHA512 
d906330c412899907dd05a84034a929107fccaf3044814c4b1f30ba5690cbcf1587b5f17534c6345111f3cb7cf292afd5984a60486643ff6f534b57cec615374
-DIST mesa-20.1.0-rc4.tar.xz 12601932 BLAKE2B 
a7d02e7f8f155ae1591df8c07aad642109cabfc64c0d015605bc0baa10233830b423e5aa57be23e450628f5ffc6f8655ce3962aecea08504574e54d7b2e1aa01
 SHA512 
31358470a330294fa4842997cd2e6f00c4ee6cac10d6c264aa673a10d82c29051fea2e83629e2a638b659df4cb17f4e2b9d0fff1c6f6259d07d9db4dbfa10824
-DIST mesa-20.1.0.tar.xz 12661712 BLAKE2B 
cdd5f1d9167ed2c2d1e4f63d5c8ededbaf3d10fc31a6366535a3424b89137fafa34df29f59443ca97eb071cad502e10fa85c32ca33982018d7a50299130d76c7
 SHA512 
f49230d18febe1bfd7c6282ab95fc244530f5cef56df0f804d8bece8a70bafcb445b8b83df96ad1b4c5af022c4e39a71f19a8f7e47b1fb09ada2b1a1317ff3be
 DIST mesa-20.1.1.tar.xz 12683180 BLAKE2B 
de602430ea91076f93b66d1be6da31bd3c74bc194709d36834bac6767c8c2f6047b0930cc070a19293f89a041dc881855ae1f1adedf02284ee4ebc3682487d61
 SHA512 
a8ae02915305488e5e0d8c104da73df1cdd61ab0b5c5d27a6851c418d25a2c9beeea9cddf93a341afa63cec52d356fe68b194c8c36e78c26f66fa884fc27f147

diff --git 
a/media-libs/mesa/files/mesa-20.0.4-meson-Specify-the-maximum-required-libdrm-in-dri.pc.patch
 
b/media-libs/mesa/files/mesa-20.0.4-meson-Specify-the-maximum-required-libdrm-in-dri.pc.patch
deleted file mode 100644
index 09897526a65..000
--- 
a/media-libs/mesa/files/mesa-20.0.4-meson-Specify-the-maximum-required-libdrm-in-dri.pc.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 316b352e946a9993a20f28abc741d34455a957a8 Mon Sep 17 00:00:00 2001
-From: Matt Turner 
-Date: Mon, 13 Apr 2020 09:20:18 -0700
-Subject: [PATCH] meson: Specify the maximum required libdrm in dri.pc
-
-When dealing with a regression in libdrm-2.4.101, I masked the package
-in Gentoo. In doing so, we discovered that Mesa's dri.pc specifies a
-version requirement in dri.pc for >= the version of libdrm Mesa was
-built against, thus preventing packages from being rebuilt with the
-older version of libdrm installed.
-
-Let's reduce this version requirement to the latest libdrm required by
-Mesa instead, since libdrm is backward compatible.

- src/mesa/drivers/dri/meson.build | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/mesa/drivers/dri/meson.build 
b/src/mesa/drivers/dri/meson.build
-index acf7d2eb128..b09ca16e38a 100644
 a/src/mesa/drivers/dri/meson.build
-+++ b/src/mesa/drivers/dri/meson.build
-@@ -86,7 +86,7 @@ endif
- if with_dri
-   dri_req_private = []
-   if dep_libdrm.found()
--dri_req_private = ['libdrm >= ' + dep_libdrm.version()]
-+dri_req_private = ['libdrm >= ' + _drm_ver]
-   endif
- 
-   pkg.generate(
--- 
-2.24.1
-

diff --git a/media-libs/mesa/mesa-20.0.4-r1.ebuild 
b/media-libs/mesa/mesa-20.0.4-r1.ebuild
deleted file mode 100644
index 097105ff4c5..000
--- a/media-libs/mesa/mesa-20.0.4-r1.ebuild
+++ /dev/null
@@ -1,557 +0,

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

2020-06-22 Thread Matt Turner
commit: 0af2ab1bf53f521d21f17df0677441ac664ebb2b
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Jun 23 03:23:08 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Jun 23 03:24:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0af2ab1b

media-libs/mesa: Drop dependency on sys-devel/gettext

Upstream commit 2ef983dca61b (driconf: drop now unused translation
facility) dropped the translation facility and the dependency on
gettext.

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

 media-libs/mesa/mesa-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index 00b4050b4e8..29a60e1a14f 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -228,7 +228,6 @@ BDEPEND="
)
sys-devel/bison
sys-devel/flex
-   sys-devel/gettext
virtual/pkgconfig
$(python_gen_any_dep ">=dev-python/mako-0.8.0[\${PYTHON_USEDEP}]")
 "



[gentoo-commits] proj/portage:master commit in: lib/portage/dbapi/, lib/_emerge/, lib/portage/util/_async/, ...

2020-06-22 Thread Zac Medico
commit: dd69ce742c62b9515cf7ae37e46bcf7f178777db
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Mar  1 02:17:52 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 23 02:13:06 2020 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=dd69ce74

Support PORTAGE_LOG_FILTER_FILE_CMD (bug 709746)

This variable specifies a command that filters build log output to a
log file. The plan is to extend this to support a separate filter for
tty output in the future.

In order to enable the EbuildPhase class to write elog messages to
the build log with PORTAGE_LOG_FILTER_FILE_CMD support, convert its
_elog method to a coroutine, and add a SchedulerInterface async_output
method for it to use.

Use a new BuildLogger class to manage log output (with or without a
filter command), with compression support provided by PipeLogger.
BuildLogger has a stdin property which provides access to a writable
binary file stream (refers to a pipe) that log content is written to.

Bug: https://bugs.gentoo.org/709746
Reviewed-by: Brian Dolbec  gentoo.org>
Signed-off-by: Zac Medico  gentoo.org>

 lib/_emerge/AbstractEbuildProcess.py   |   3 +-
 lib/_emerge/BinpkgFetcher.py   |   3 +-
 lib/_emerge/EbuildFetcher.py   |   3 +-
 lib/_emerge/EbuildPhase.py |  47 +++--
 lib/_emerge/SpawnProcess.py|  58 ---
 lib/portage/dbapi/_MergeProcess.py |   3 +-
 .../package/ebuild/_config/special_env_vars.py |   8 +-
 lib/portage/util/_async/BuildLogger.py | 109 +
 lib/portage/util/_async/SchedulerInterface.py  |  32 +-
 man/make.conf.5|   7 +-
 10 files changed, 243 insertions(+), 30 deletions(-)

diff --git a/lib/_emerge/AbstractEbuildProcess.py 
b/lib/_emerge/AbstractEbuildProcess.py
index 1c1955cfe..ae1aae55f 100644
--- a/lib/_emerge/AbstractEbuildProcess.py
+++ b/lib/_emerge/AbstractEbuildProcess.py
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 import errno
@@ -196,6 +196,7 @@ class AbstractEbuildProcess(SpawnProcess):
null_fd = os.open('/dev/null', os.O_RDONLY)
self.fd_pipes[0] = null_fd
 
+   self.log_filter_file = 
self.settings.get('PORTAGE_LOG_FILTER_FILE_CMD')
try:
SpawnProcess._start(self)
finally:

diff --git a/lib/_emerge/BinpkgFetcher.py b/lib/_emerge/BinpkgFetcher.py
index 36d027de3..2e5861cc1 100644
--- a/lib/_emerge/BinpkgFetcher.py
+++ b/lib/_emerge/BinpkgFetcher.py
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 import functools
@@ -158,6 +158,7 @@ class _BinpkgFetcherProcess(SpawnProcess):
self.env = fetch_env
if settings.selinux_enabled():
self._selinux_type = settings["PORTAGE_FETCH_T"]
+   self.log_filter_file = 
settings.get('PORTAGE_LOG_FILTER_FILE_CMD')
SpawnProcess._start(self)
 
def _pipe(self, fd_pipes):

diff --git a/lib/_emerge/EbuildFetcher.py b/lib/_emerge/EbuildFetcher.py
index 1e40994fb..55349c33c 100644
--- a/lib/_emerge/EbuildFetcher.py
+++ b/lib/_emerge/EbuildFetcher.py
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 import copy
@@ -225,6 +225,7 @@ class _EbuildFetcherProcess(ForkProcess):
settings["NOCOLOR"] = nocolor
 
self._settings = settings
+   self.log_filter_file = 
settings.get('PORTAGE_LOG_FILTER_FILE_CMD')
ForkProcess._start(self)
 
# Free settings now since it's no longer needed in

diff --git a/lib/_emerge/EbuildPhase.py b/lib/_emerge/EbuildPhase.py
index 477e0ba97..ddb3dc719 100644
--- a/lib/_emerge/EbuildPhase.py
+++ b/lib/_emerge/EbuildPhase.py
@@ -26,6 +26,8 @@ from portage.package.ebuild.prepare_build_dirs import 
(_prepare_workdir,
 from portage.util.futures.compat_coroutine import coroutine
 from portage.util import writemsg
 from portage.util._async.AsyncTaskFuture import AsyncTaskFuture
+from portage.util._async.BuildLogger import BuildLogger
+from portage.util.futures import asyncio
 from portage.util.futures.executor.fork import ForkExecutor
 
 try:
@@ -69,6 +71,11 @@ class EbuildPhase(CompositeTask):
_locked_phases = ("setup", "preinst", "postinst", "prerm", "postrm")
 
def _start(self):
+   future = asyncio.ensure_future(self._async_start(), 
loop=self.scheduler)
+   self._start_task(AsyncTaskFuture(future=future), 
self._async_start_exit)
+
+   @coroutine
+   de

[gentoo-commits] proj/portage: New tag: portage-2.3.102

2020-06-22 Thread Zac Medico
commit: 
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 23 02:38:37 2020 +

New tag: portage-2.3.102




[gentoo-commits] proj/portage:master commit in: lib/portage/util/_async/, lib/portage/tests/process/

2020-06-22 Thread Zac Medico
commit: 72ac22e722549833c1ee7e7ad1b585db55f7dafc
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Jun 19 03:04:52 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 23 02:13:05 2020 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=72ac22e7

PipeLogger: non-blocking write to pipe (bug 709746)

Add support to write to a non-blocking pipe instead of a
log file. This is needed for the purposes of bug 709746,
where PipeLogger will write to a pipe that is drained
by anoher PipeLogger instance which is running in the same
process.

Bug: https://bugs.gentoo.org/709746
Reviewed-by: Brian Dolbec  gentoo.org>
Signed-off-by: Zac Medico  gentoo.org>

 lib/portage/tests/process/test_PipeLogger.py | 58 +
 lib/portage/util/_async/PipeLogger.py| 75 +---
 2 files changed, 116 insertions(+), 17 deletions(-)

diff --git a/lib/portage/tests/process/test_PipeLogger.py 
b/lib/portage/tests/process/test_PipeLogger.py
new file mode 100644
index 0..2bd94cf39
--- /dev/null
+++ b/lib/portage/tests/process/test_PipeLogger.py
@@ -0,0 +1,58 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+from portage import os
+from portage.tests import TestCase
+from portage.util._async.PipeLogger import PipeLogger
+from portage.util.futures import asyncio
+from portage.util.futures._asyncio.streams import _reader, _writer
+from portage.util.futures.compat_coroutine import coroutine, coroutine_return
+from portage.util.futures.unix_events import _set_nonblocking
+
+
+class PipeLoggerTestCase(TestCase):
+
+   @coroutine
+   def _testPipeLoggerToPipe(self, test_string, loop=None):
+   """
+   Test PipeLogger writing to a pipe connected to a PipeReader.
+   This verifies that PipeLogger does not deadlock when writing
+   to a pipe that's drained by a PipeReader running in the same
+   process (requires non-blocking write).
+   """
+
+   input_fd, writer_pipe = os.pipe()
+   _set_nonblocking(writer_pipe)
+   writer_pipe = os.fdopen(writer_pipe, 'wb', 0)
+   writer = asyncio.ensure_future(_writer(writer_pipe, 
test_string.encode('ascii'), loop=loop), loop=loop)
+   writer.add_done_callback(lambda writer: writer_pipe.close())
+
+   pr, pw = os.pipe()
+
+   consumer = PipeLogger(background=True,
+   input_fd=input_fd,
+   log_file_path=os.fdopen(pw, 'wb', 0),
+   scheduler=loop)
+   consumer.start()
+
+   # Before starting the reader, wait here for a moment, in order
+   # to exercise PipeLogger's handling of EAGAIN during write.
+   yield asyncio.wait([writer], timeout=0.01)
+
+   reader = _reader(pr, loop=loop)
+   yield writer
+   content = yield reader
+   yield consumer.async_wait()
+
+   self.assertEqual(consumer.returncode, os.EX_OK)
+
+   coroutine_return(content.decode('ascii', 'replace'))
+
+   def testPipeLogger(self):
+   loop = asyncio._wrap_loop()
+
+   for x in (1, 2, 5, 6, 7, 8, 2**5, 2**10, 2**12, 2**13, 2**14, 
2**17, 2**17 + 1):
+   test_string = x * "a"
+   output = 
loop.run_until_complete(self._testPipeLoggerToPipe(test_string, loop=loop))
+   self.assertEqual(test_string, output,
+   "x = %s, len(output) = %s" % (x, len(output)))

diff --git a/lib/portage/util/_async/PipeLogger.py 
b/lib/portage/util/_async/PipeLogger.py
index a4258f350..4271c8ee2 100644
--- a/lib/portage/util/_async/PipeLogger.py
+++ b/lib/portage/util/_async/PipeLogger.py
@@ -1,4 +1,4 @@
-# Copyright 2008-2018 Gentoo Foundation
+# Copyright 2008-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 import fcntl
@@ -8,6 +8,10 @@ import sys
 
 import portage
 from portage import os, _encodings, _unicode_encode
+from portage.util.futures import asyncio
+from portage.util.futures._asyncio.streams import _writer
+from portage.util.futures.compat_coroutine import coroutine
+from portage.util.futures.unix_events import _set_nonblocking
 from _emerge.AbstractPollTask import AbstractPollTask
 
 class PipeLogger(AbstractPollTask):
@@ -21,13 +25,16 @@ class PipeLogger(AbstractPollTask):
"""
 
__slots__ = ("input_fd", "log_file_path", "stdout_fd") + \
-   ("_log_file", "_log_file_real")
+   ("_io_loop_task", "_log_file", "_log_file_nb", "_log_file_real")
 
def _start(self):
 
log_file_path = self.log_file_path
-   if log_file_path is not None:
-
+   if hasattr(log_file_path, 'write'):
+   self._log_file_nb = True
+

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

2020-06-22 Thread Zac Medico
commit: 66da001e4a552b4794bd102d47a43a938583275a
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jun 23 02:33:05 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 23 02:34:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66da001e

sys-apps/portage: Bump to version 2.3.102

 #709746 Support PORTAGE_LOG_FILTER_FILE_CMD once again, now
 that bug 716636 is fixed
 #716636 Fix emerge hang triggered by unsafe remove_reader and
 remove_writer calls related to bug 709746

Bug: https://bugs.gentoo.org/721152
Bug: https://bugs.gentoo.org/709746
Bug: https://bugs.gentoo.org/716636
Package-Manager: Portage-2.3.102, Repoman-2.3.22
Signed-off-by: Zac Medico  gentoo.org>

 sys-apps/portage/Manifest   |   1 +
 sys-apps/portage/portage-2.3.102.ebuild | 263 
 2 files changed, 264 insertions(+)

diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest
index 9c47901ecd0..2f465bc223a 100644
--- a/sys-apps/portage/Manifest
+++ b/sys-apps/portage/Manifest
@@ -2,5 +2,6 @@ DIST portage-2.3.100-bug-719810-escape-percent-signs.patch 1486 
BLAKE2B 809e3897
 DIST portage-2.3.100.tar.bz2 1051559 BLAKE2B 
32ee47c2d3e28dd7530c4d6518c264f01621677b5d8872c98088117de3bde21bb05f144935b1c035157953814573473a9ac0216595138d804dd30cf8a7c5b4a9
 SHA512 
b784ced00676020700a27a622a7a10162b8775185e28d639473243949ca32210458523e94960cafa908ca4a97cd8731d3515f768e2512c519c54598316ecf3c9
 DIST portage-2.3.101-revert2-bug-709746.patch 25365 BLAKE2B 
84a451b3af5c6a79a99f7548fa920a888b76d31d4248d11592bf5e8ec8f26bd8e62f813cb69a684ff2816942c49a8661744c7ec9d0944aa256527cfa3b20323d
 SHA512 
49a1f7e38cec1e06373154024a980eedf5bfacc9cc66e1f8c70e8cbb77c68b94a934b4cffe039acdc86179a8f44bd463771c3acecaab6ced3387fd47a312f69a
 DIST portage-2.3.101.tar.bz2 1052483 BLAKE2B 
8abf5a0f5c3aace92fd5e74692240558b9fd6cc27f5030409289519edb5287e6b49a0e8c33d11d7b1427a8463fe98f6041de37638451fe639b295d7b595328f3
 SHA512 
e5d373fc435a9f7535c9bdc202bd0aa9a534ac9991987e21fbfd43492940210312b817284a2484cb4e98854050bb559aa49daef7f5d555e637a37eb312ccbe61
+DIST portage-2.3.102.tar.bz2 1051616 BLAKE2B 
e9158cd941d65575dab51e2f8cd768c5706ce2f7e6f37fb4c77bc615501b3b3893fdee0917780fe172307bf647a1e4e56e3d88a7c479e103b095fc295fe274e7
 SHA512 
08024707c552b5b5174a66825cc53bc459a3db2fbb36740713a4ac5834429550200bc458e1f4a2ea921aaf04f0632dc885ef9ab5ba2c3a22d48c031667ed23ca
 DIST portage-2.3.89-bug-718578.patch 1325 BLAKE2B 
7a3bc520274617736eac2e3d078e90d151bdb5d8615f6217a499c0f5d4c80813f2c753e7902cf34482df0725ad0b43a38707764c8be14aae9f7ca34f0bd8721f
 SHA512 
6f1c5d7b42beb8078c45cccbad2bd65374b69af92521d9be3beb6784477ca5bcdd75d8e762b239e44e3121e6fe5e3a040c92c9b61521e4a9b1d6bafee10d4c88
 DIST portage-2.3.99.tar.bz2 1051210 BLAKE2B 
dd3f990dbc87e655a767ce01e1ee3f0b1d5226fa818949408e54b81a2f96e50a4215a79af42b00dc795792858c4f86453b238b14baef4f0793c937b5617534b8
 SHA512 
176842318a4134ce54c5aa6485fef296f5a14edd2a72421c2011973a0f1a6af39bc5398f1e9eb3b8666d5fc307589c5b91ab93c219bdedb2d307357d8ddefbf5

diff --git a/sys-apps/portage/portage-2.3.102.ebuild 
b/sys-apps/portage/portage-2.3.102.ebuild
new file mode 100644
index 000..6e1a8152761
--- /dev/null
+++ b/sys-apps/portage/portage-2.3.102.ebuild
@@ -0,0 +1,263 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+DISTUTILS_USE_SETUPTOOLS=no
+PYTHON_COMPAT=( pypy3 python3_{6..9} )
+PYTHON_REQ_USE='bzip2(+),threads(+)'
+
+inherit distutils-r1 linux-info systemd prefix
+
+DESCRIPTION="Portage is the package management and distribution system for 
Gentoo"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage";
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+SLOT="0"
+IUSE="apidoc build doc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux xattr"
+
+DEPEND="!build? ( $(python_gen_impl_dep 'ssl(+)') )
+   >=app-arch/tar-1.27
+   dev-lang/python-exec:2
+   >=sys-apps/sed-4.0.5 sys-devel/patch
+   doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 )
+   apidoc? (
+   dev-python/sphinx
+   dev-python/sphinx-epytext
+   )"
+# Require sandbox-2.2 for bug #288863.
+# For whirlpool hash, require python[ssl] (bug #425046).
+# For compgen, require bash[readline] (bug #445576).
+# app-portage/gemato goes without PYTHON_USEDEP since we're calling
+# the executable.
+RDEPEND="
+   app-arch/zstd
+   >=app-arch/tar-1.27
+   dev-lang/python-exec:2
+   !build? (
+   >=sys-apps/sed-4.0.5
+   app-shells/bash:0[readline]
+   >=app-admin/eselect-1.2
+   rsync-verify? (
+   >=app-portage/gemato-14[${PYTHON_USEDEP}]
+   >=app-crypt/openpgp-keys-gentoo-release-20180706
+   >=app-crypt/gnupg-2.2.4-r2[ssl(-)]
+   )
+   )
+

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

2020-06-22 Thread Zac Medico
commit: 4ff55b5a31898b05e8efa64e0bbec5ddfe275b23
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jun 23 02:25:38 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 23 02:25:38 2020 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=4ff55b5a

Updates for portage-2.3.102 release

Signed-off-by: Zac Medico  gentoo.org>

 RELEASE-NOTES | 6 ++
 setup.py  | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index b294d7fd1..b2a5b4d6f 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,6 +1,12 @@
 Release Notes; upgrade information mainly.
 Features/major bugfixes are listed in NEWS
 
+portage-2.3.101
+==
+* Bug Fixes:
+- Bug 716636 Fix emerge hang triggered by unsafe remove_reader and
+  remove_writer calls related to bug 709746
+
 portage-2.3.101
 ==
 * Bug Fixes:

diff --git a/setup.py b/setup.py
index e212dc96a..821467999 100755
--- a/setup.py
+++ b/setup.py
@@ -657,7 +657,7 @@ class build_ext(_build_ext):
 
 setup(
name = 'portage',
-   version = '2.3.101',
+   version = '2.3.102',
url = 'https://wiki.gentoo.org/wiki/Project:Portage',
author = 'Gentoo Portage Development Team',
author_email = 'dev-port...@gentoo.org',



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

2020-06-22 Thread Ronny Gutbrod
commit: 0a3c0acbea31e9d151f7817c9a166c8655cef043
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Tue Jun 23 00:15:11 2020 +
Commit: Ronny Gutbrod  tastytea  de>
CommitDate: Tue Jun 23 00:15:11 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0a3c0acb

net-misc/kristall: Remove src_prepare().

Not needed anymore because the Makefile generated by qmake is discarded.

Signed-off-by: Ronny (tastytea) Gutbrod  tastytea.de>

 net-misc/kristall/kristall-0.3.ebuild | 5 -
 1 file changed, 5 deletions(-)

diff --git a/net-misc/kristall/kristall-0.3.ebuild 
b/net-misc/kristall/kristall-0.3.ebuild
index a575f1a..108347b 100644
--- a/net-misc/kristall/kristall-0.3.ebuild
+++ b/net-misc/kristall/kristall-0.3.ebuild
@@ -16,11 +16,6 @@ KEYWORDS="~amd64"
 RDEPEND="dev-qt/qtmultimedia:5[widgets]"
 DEPEND="${RDEPEND}"
 
-src_prepare() {
-   xdg_src_prepare
-   sed -Ei 's|(target\.path) = .+|\1 = /usr/bin|' src/kristall.pro || die
-}
-
 src_configure() {
# qmake overwrites Makefile but it is needed for installing.
mv Makefile{,.tmp} || die



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

2020-06-22 Thread Michael Orlitzky
commit: 62b3e0341e86460cb0d3c1abbfe79342cd606035
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Mon Jun 22 23:35:56 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Mon Jun 22 23:38:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62b3e034

dev-lang/R: new version 4.0.2.

I swapped out pcre for pcre2 and had to require USE=profile to run the
test suite, but other than that a copy/paste.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michael Orlitzky  gentoo.org>

 dev-lang/R/Manifest   |  2 +-
 dev-lang/R/{R-4.0.0.ebuild => R-4.0.2.ebuild} | 13 +++--
 2 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/dev-lang/R/Manifest b/dev-lang/R/Manifest
index 18eb82e449d..4e4ba5f0d22 100644
--- a/dev-lang/R/Manifest
+++ b/dev-lang/R/Manifest
@@ -1,4 +1,4 @@
 DIST R-3.4.1.tar.gz 30200109 BLAKE2B 
03602e9a48759caee8ce047fa6273df7a54af089de4489e21953c0e3fc7bfdf720d924f1e0167d3dbf65f63ed42ac10dea8b45289b921cda1c0e6d25a0063ebb
 SHA512 
19bd50c87dc001ef947c15c1760f27ac8986ff6b43c6d90d3093ae184e42963027ef06faf31ec57ac9e519af7a35a2f53f8ea23ef75d800ebbd02945cedc4651
 DIST R-3.6.3.tar.gz 33308185 BLAKE2B 
f82751e21d3b502132f8f27d4fc47a921fb085a50c3da3b45e08fbbdd1ab3d42e89b4fa6653a570c21176d79f492277b1d0b86c3c9f4da1386d8b6e4771d4d2c
 SHA512 
9b1dc78922e431bd1af81e6e560b10ad04d121718f680fed32db735d561fd40ea6028759976722db11559f1a78fe684119b766f0567128cb2ee5003aa87a0931
-DIST R-4.0.0.tar.gz 33173947 BLAKE2B 
6b67ba5b008f1fd3d5fa3c92805c1e206ece64e821124e3b2d6f72a550ed8084699916b88d41dcc1985b57a286518dcf63d240503aeb2ae7fe31e66c0d30396d
 SHA512 
fa8b684fd0c8a1c9784b8e0e749b34141e513a83d4f3b6792cdf97826264191e7484f6705014974c9268570e717e1a1d39f6a88225fc751189b6f51e1a303163
+DIST R-4.0.2.tar.gz 33191186 BLAKE2B 
2d5b99c17a9df48a36871f18701efacfaa1e6bb89c0e5c6516fc20966547f34f9079dc52ab18ac7816e0fed25d6230076246e83dc648501553fa2d0cad67b8e4
 SHA512 
b7330613ee9795f54cde3dd9f7509be83d9156fb8577c17179727ee01450db27704249f68bd48e0331e2df09c2d9833d8bb019c4f9ce9ba669df74650ff2e842
 DIST R-78d6830e28ea90a046da79a9b4f70c39594bb6d6.bash_completion 13596 BLAKE2B 
53338e4a1c4f68beb69247216e553dbcac47f660fbf032bfebf7a660e32d2cff5b11ed35411c52de7e1fd6e00bbf5b5ea19369a325fa0a38bd93d63dc3288cbd
 SHA512 
9ccd19bb1b0c18a2f13035ccd6809447429e197e298fb4d1df808ef345d723b42f75a1b91c349f6dbb46e4a82e59ef33e11300c495d79b63d670d0c0f2b16a06

diff --git a/dev-lang/R/R-4.0.0.ebuild b/dev-lang/R/R-4.0.2.ebuild
similarity index 96%
rename from dev-lang/R/R-4.0.0.ebuild
rename to dev-lang/R/R-4.0.2.ebuild
index 64a0a4e0b49..83d1ecd9385 100644
--- a/dev-lang/R/R-4.0.0.ebuild
+++ b/dev-lang/R/R-4.0.2.ebuild
@@ -18,7 +18,16 @@ LICENSE="|| ( GPL-2 GPL-3 ) LGPL-2.1"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~hppa ~ia64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~x64-macos"
 IUSE="cairo doc icu java jpeg lapack minimal nls openmp perl png prefix 
profile readline static-libs test tiff tk X"
-REQUIRED_USE="png? ( || ( cairo X ) ) jpeg? ( || ( cairo X ) ) tiff? ( || ( 
cairo X ) )"
+
+# One test required profiling in v4.0.2, check the upstream bug:
+#
+#   https://bugs.r-project.org/bugzilla/show_bug.cgi?id=17836
+#
+REQUIRED_USE="png? ( || ( cairo X ) )
+   jpeg? ( || ( cairo X ) )
+   tiff? ( || ( cairo X ) )
+   test? ( profile )
+"
 
 # At least one package installation in the test suite requires TeX,
 # and will fail without it (bug #718056).
@@ -32,7 +41,7 @@ DEPEND="
app-arch/bzip2:0=
app-arch/xz-utils:0=
app-text/ghostscript-gpl
-   dev-libs/libpcre:3=
+   dev-libs/libpcre2:=
net-libs/libtirpc
net-misc/curl
virtual/blas:0



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

2020-06-22 Thread William Hubbs
commit: 67a0a570d0e6515c2175ee93b0068dbb63ab7f87
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Jun 22 23:20:02 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Jun 22 23:37:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67a0a570

sys-cluster/kubernetes: 1.18.4 bump

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kubernetes/Manifest |  1 +
 sys-cluster/kubernetes/kubernetes-1.18.4.ebuild | 90 +
 2 files changed, 91 insertions(+)

diff --git a/sys-cluster/kubernetes/Manifest b/sys-cluster/kubernetes/Manifest
index c53b0fb511c..35fbe8d58c9 100644
--- a/sys-cluster/kubernetes/Manifest
+++ b/sys-cluster/kubernetes/Manifest
@@ -10,3 +10,4 @@ DIST kubernetes-1.18.0.tar.gz 32554015 BLAKE2B 
24079970cc1887c6dad7b55d9f2fd80cd
 DIST kubernetes-1.18.1.tar.gz 32581783 BLAKE2B 
ffacdba21dd6d326ddf9733c49ed3a16ad679fbd25b4ddda44b047a402a163474033d6b2328a816e83ede505aae07e205b68938165c546202fa6df2d03609ead
 SHA512 
c002153e16494cd74e6f0609847602d6dcf166c8bab020341f8302b7cad5d7452ed1c2e66b3b230731d13401493d2d02f0500abcd526dbff44ae3aeabd210577
 DIST kubernetes-1.18.2.tar.gz 32585912 BLAKE2B 
1f8dbd6e7a8ba4257abaf2926ada656ec42eb7e0f502f2b4fc75b2a6cacd9a6e91624a717772f605a24b42421933580bc399aca4480aa1c88009016160485a77
 SHA512 
9786312b06aea5cbd4e786e4b6d639ec4750fa6c8ba469d860702b317103ec464f038015ef038ba21841a0d627d58902769eb73a5d2fdf4da2f0ae4c0ec14e85
 DIST kubernetes-1.18.3.tar.gz 32596732 BLAKE2B 
067a0b74d3d8e63ba99da1828c7a3e905b235a8e5bee1eb11bbc0a5e12ab2d94c0b5dcf9febf6b0808c053eb81fa6ea4746aa42d6c0a19c02b834b44d25f095f
 SHA512 
0bb1dc33802127b03480e43dcbdeb576188a2a50b0257bcf47a0efec7d504cbce9b61048cb87d2ae4148174fcb2e373298c5947d5130604f827b806d9d00c6a4
+DIST kubernetes-1.18.4.tar.gz 32605319 BLAKE2B 
4cf10cadd2b45418f45517a0191d3650a2e36bd3dc69e3f472ac59735712261eebb38eccf7da4f8496ac60701602dbf4730176236486abae6279b1f71bae831f
 SHA512 
b2a6f76b4b933012e39aa3df2510a6dd3a2d64452799fdd32b9d7c461930d273b0cacd46550aa963d809d7b075d6076a6d1a370322870204e1298811c14122a1

diff --git a/sys-cluster/kubernetes/kubernetes-1.18.4.ebuild 
b/sys-cluster/kubernetes/kubernetes-1.18.4.ebuild
new file mode 100644
index 000..c333bbabb3b
--- /dev/null
+++ b/sys-cluster/kubernetes/kubernetes-1.18.4.ebuild
@@ -0,0 +1,90 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit bash-completion-r1 go-module systemd
+
+DESCRIPTION="production-grade container orchestration"
+HOMEPAGE="https://kubernetes.io";
+SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+AGENT="kubelet"
+CLI="kubeadm kubectl"
+SERVICES="kube-apiserver kube-controller-manager kube-proxy kube-scheduler"
+IUSE="hardened"
+for x in ${AGENT} ${CLI} ${SERVICES}; do
+   IUSE+=" +${x}"
+done
+
+BDEPEND=">=dev-lang/go-1.13"
+COMMON_DEPEND="
+   kube-apiserver? (
+   acct-group/kube-apiserver
+   acct-user/kube-apiserver
+   )
+   kube-controller-manager? (
+   acct-group/kube-controller-manager
+   acct-user/kube-controller-manager
+   )
+   kube-scheduler? (
+   acct-group/kube-scheduler
+   acct-user/kube-scheduler
+   )"
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}
+   kube-proxy? ( net-firewall/conntrack-tools )
+   !sys-cluster/kubeadm
+   !sys-cluster/kubectl
+   !sys-cluster/kubelet
+   !sys-cluster/kube-apiserver
+   !sys-cluster/kube-controller-manager
+   !sys-cluster/kube-proxy
+   !sys-cluster/kube-scheduler"
+
+RESTRICT+=" test"
+
+src_compile() {
+   local x
+   for x in ${AGENT} ${CLI} ${SERVICES}; do
+   use $x || continue
+   CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \
+   emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" 
WHAT=cmd/${x}
+   done
+}
+
+src_install() {
+   local x
+   for x in ${AGENT} ${CLI} ${SERVICES}; do
+   use $x || continue
+   dobin _output/bin/${x}
+   if has ${x} ${CLI}; then
+   _output/bin/${x} completion bash > ${x}.bash || die
+   _output/bin/${x} completion zsh > ${x}.zsh || die
+   newbashcomp ${x}.bash ${x}
+   insinto /usr/share/zsh/site-functions
+   newins ${x}.zsh _${x}
+   continue
+   fi
+   newinitd "${FILESDIR}"/${x}.initd ${x}
+   newconfd "${FILESDIR}"/${x}.confd ${x}
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${x}.logrotated ${x}
+   keepdir /var/log/${x}
+   if [[ "$x" =~ kubelet ]]; then
+   systemd_dounit "${FILESDIR}"/${x}.service
+   insinto /etc/kubernetes
+   

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

2020-06-22 Thread William Hubbs
commit: 04d8cbf5cb637931f65f0d6a95670b376f0cf8b8
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Jun 22 23:11:09 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Jun 22 23:36:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04d8cbf5

sys-cluster/kubernetes-1.16.11 bump

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kubernetes/Manifest  |  1 +
 sys-cluster/kubernetes/kubernetes-1.16.11.ebuild | 90 
 2 files changed, 91 insertions(+)

diff --git a/sys-cluster/kubernetes/Manifest b/sys-cluster/kubernetes/Manifest
index 354206114e0..354e7bf4271 100644
--- a/sys-cluster/kubernetes/Manifest
+++ b/sys-cluster/kubernetes/Manifest
@@ -1,4 +1,5 @@
 DIST kubernetes-1.16.10.tar.gz 31761409 BLAKE2B 
caef0b60045d134e5243558da56301dfe2ef844e7e80ca82d86bd79e5ce00bc9d9aa61550f3356dcc6ee31bf925a22a87364fcf971e353129adb0c0e376b26c0
 SHA512 
b81b34f12c6d835ef86df598bb13350b7a94b02cb493df9c8e8b605c541d9a9db16331b264f66ecdaaf5451e3a2d13cc104d3d6e5facbf31c4b6bd2cc2a1441f
+DIST kubernetes-1.16.11.tar.gz 31766900 BLAKE2B 
a3a099eaf82b7b818a237752885358752176bb1eade5f1623a1bd8920f37a43283fc0a712197153143b6d166bb0ecb45d9d1148cc766681f67f36281473b26e0
 SHA512 
153a44ce61d70074462c157ffbdb8c58a8807d205a315c2be3aabee80253cba362915f93c31fcbdbfcdc25161b9bc3ca0260b1cdab8f4d562fc69aa465fc476e
 DIST kubernetes-1.16.8.tar.gz 31731459 BLAKE2B 
1d53c16586b5a7a41fc42d0fb3444b694531d3f04fb9e168a70d4b98f966f322bc82d39234612e38c71da052002c5bcc452c747d9f948dacbdd91ea40a9f5417
 SHA512 
04c8e9a9227ac9a98074cd52cbe90758134fedb10164fa69accbc19716a2f18dc133a4f880d0e35a3728c377faea431363f00ae9fe2ff5ca9e509444da9106c5
 DIST kubernetes-1.16.9.tar.gz 31752857 BLAKE2B 
34c0ff54e60276bf41ce971a8a50d57256f696ac95b551a90a6d2ccf1540279010953119def539c0824217fbbfc287d24b6f080e1fefce8864c1eade72d0777f
 SHA512 
08fffe855a433ad0cc7586afd12815adb3bcafcac86712181625198fedbfe170bc36ae31aca9783d30dd790c415d447f073234f621416a76a7e4e0de2eeb008d
 DIST kubernetes-1.17.4.tar.gz 3175 BLAKE2B 
cd04e429d3f524f5dce7948db9b22230df8abdeb7570001ab985ffdb5b85709a8d1698490b9df13455d8f3968741db9571ee1ab3bc2a6fdd06a8c0fe274476e2
 SHA512 
fd1944d26c840bc1d2f585fccbabf48091fe8820ea089b3ea5c18652fd1edb3c8157a70ea19111b8b62aef16e0284a1607b583c3c1af79dd0dd266b99e20c549

diff --git a/sys-cluster/kubernetes/kubernetes-1.16.11.ebuild 
b/sys-cluster/kubernetes/kubernetes-1.16.11.ebuild
new file mode 100644
index 000..c333bbabb3b
--- /dev/null
+++ b/sys-cluster/kubernetes/kubernetes-1.16.11.ebuild
@@ -0,0 +1,90 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit bash-completion-r1 go-module systemd
+
+DESCRIPTION="production-grade container orchestration"
+HOMEPAGE="https://kubernetes.io";
+SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+AGENT="kubelet"
+CLI="kubeadm kubectl"
+SERVICES="kube-apiserver kube-controller-manager kube-proxy kube-scheduler"
+IUSE="hardened"
+for x in ${AGENT} ${CLI} ${SERVICES}; do
+   IUSE+=" +${x}"
+done
+
+BDEPEND=">=dev-lang/go-1.13"
+COMMON_DEPEND="
+   kube-apiserver? (
+   acct-group/kube-apiserver
+   acct-user/kube-apiserver
+   )
+   kube-controller-manager? (
+   acct-group/kube-controller-manager
+   acct-user/kube-controller-manager
+   )
+   kube-scheduler? (
+   acct-group/kube-scheduler
+   acct-user/kube-scheduler
+   )"
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}
+   kube-proxy? ( net-firewall/conntrack-tools )
+   !sys-cluster/kubeadm
+   !sys-cluster/kubectl
+   !sys-cluster/kubelet
+   !sys-cluster/kube-apiserver
+   !sys-cluster/kube-controller-manager
+   !sys-cluster/kube-proxy
+   !sys-cluster/kube-scheduler"
+
+RESTRICT+=" test"
+
+src_compile() {
+   local x
+   for x in ${AGENT} ${CLI} ${SERVICES}; do
+   use $x || continue
+   CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \
+   emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" 
WHAT=cmd/${x}
+   done
+}
+
+src_install() {
+   local x
+   for x in ${AGENT} ${CLI} ${SERVICES}; do
+   use $x || continue
+   dobin _output/bin/${x}
+   if has ${x} ${CLI}; then
+   _output/bin/${x} completion bash > ${x}.bash || die
+   _output/bin/${x} completion zsh > ${x}.zsh || die
+   newbashcomp ${x}.bash ${x}
+   insinto /usr/share/zsh/site-functions
+   newins ${x}.zsh _${x}
+   continue
+   fi
+   newinitd "${FILESDIR}"/${x}.initd ${x}
+   newconfd "${FILESDIR}"/${x}.confd ${x}
+   insinto /etc/logrotate.d
+   newins "${FILES

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

2020-06-22 Thread William Hubbs
commit: 71d72b6842ca9aefe283529ba79b97275c3abe9c
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Jun 22 23:14:43 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Jun 22 23:37:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71d72b68

sys-cluster/kubernetes: 1.17.7 bump

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kubernetes/Manifest |  1 +
 sys-cluster/kubernetes/kubernetes-1.17.7.ebuild | 90 +
 2 files changed, 91 insertions(+)

diff --git a/sys-cluster/kubernetes/Manifest b/sys-cluster/kubernetes/Manifest
index 354e7bf4271..c53b0fb511c 100644
--- a/sys-cluster/kubernetes/Manifest
+++ b/sys-cluster/kubernetes/Manifest
@@ -5,6 +5,7 @@ DIST kubernetes-1.16.9.tar.gz 31752857 BLAKE2B 
34c0ff54e60276bf41ce971a8a50d5725
 DIST kubernetes-1.17.4.tar.gz 3175 BLAKE2B 
cd04e429d3f524f5dce7948db9b22230df8abdeb7570001ab985ffdb5b85709a8d1698490b9df13455d8f3968741db9571ee1ab3bc2a6fdd06a8c0fe274476e2
 SHA512 
fd1944d26c840bc1d2f585fccbabf48091fe8820ea089b3ea5c18652fd1edb3c8157a70ea19111b8b62aef16e0284a1607b583c3c1af79dd0dd266b99e20c549
 DIST kubernetes-1.17.5.tar.gz 31788321 BLAKE2B 
b7531b9ba07a20aba6829e3351b3b66a64251970be3a07d44f8b20ef2d44fa7d80f2528c1c0a6c3dcf3373cbb21e500d26c0a53c4ed4b66bb334860c5f8ce3b9
 SHA512 
2f7fd071a11a4f9d53cf0b23e381d0e864a6dc19e1dab88c2b5bcdade514328714f651bc0caa9c302e74fab7d2823a0d724fe0f5444e13afcf89b792377af283
 DIST kubernetes-1.17.6.tar.gz 31795648 BLAKE2B 
f6116bc65d08b99295a8e373470f411f5f6b11cad722a713f660f2d24798ee21e2286f4bd538bf53c94af3e9891c49f41ce3b8643ee18df908b0dca03643e007
 SHA512 
62eaa62a848d7650f29d014b710ca22a744cc1c6517b46a38b5363b3cf4618366d7de2df3f4fbcfe6fbcdde7428e169b9ce917444983049b55fcfff5f3f3217e
+DIST kubernetes-1.17.7.tar.gz 31808806 BLAKE2B 
b8c2d64bb2e307ca866465039a4e8d62f0f73d26ed7fe3e6906784369c214037672b80c0adf617c3b47abe213f4ee5e55af72943e742aaba645b0c7f69b984c1
 SHA512 
12ad9de52ac2028ace8b605ccf14b98c94363f17b56da6d5efbb63617d40898384ff88d88a33d47393c3e7b529f17d41c526340ddfbd4cc0eddb5341789436a4
 DIST kubernetes-1.18.0.tar.gz 32554015 BLAKE2B 
24079970cc1887c6dad7b55d9f2fd80cd9f46f1b6c1240cf28abf2eb33b3809bcd858293bb800255533a13e24145fab580b0bd2eb0e06c15ca4e0feeedcf6ff2
 SHA512 
3298ec63a2fbcd396b415f27a581f4286317ae206c30b35457aed780baae4115059df20e40028df394984caccc8bb4ef6c879ae3c064771c8a5c045dee7998e8
 DIST kubernetes-1.18.1.tar.gz 32581783 BLAKE2B 
ffacdba21dd6d326ddf9733c49ed3a16ad679fbd25b4ddda44b047a402a163474033d6b2328a816e83ede505aae07e205b68938165c546202fa6df2d03609ead
 SHA512 
c002153e16494cd74e6f0609847602d6dcf166c8bab020341f8302b7cad5d7452ed1c2e66b3b230731d13401493d2d02f0500abcd526dbff44ae3aeabd210577
 DIST kubernetes-1.18.2.tar.gz 32585912 BLAKE2B 
1f8dbd6e7a8ba4257abaf2926ada656ec42eb7e0f502f2b4fc75b2a6cacd9a6e91624a717772f605a24b42421933580bc399aca4480aa1c88009016160485a77
 SHA512 
9786312b06aea5cbd4e786e4b6d639ec4750fa6c8ba469d860702b317103ec464f038015ef038ba21841a0d627d58902769eb73a5d2fdf4da2f0ae4c0ec14e85

diff --git a/sys-cluster/kubernetes/kubernetes-1.17.7.ebuild 
b/sys-cluster/kubernetes/kubernetes-1.17.7.ebuild
new file mode 100644
index 000..c333bbabb3b
--- /dev/null
+++ b/sys-cluster/kubernetes/kubernetes-1.17.7.ebuild
@@ -0,0 +1,90 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit bash-completion-r1 go-module systemd
+
+DESCRIPTION="production-grade container orchestration"
+HOMEPAGE="https://kubernetes.io";
+SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+AGENT="kubelet"
+CLI="kubeadm kubectl"
+SERVICES="kube-apiserver kube-controller-manager kube-proxy kube-scheduler"
+IUSE="hardened"
+for x in ${AGENT} ${CLI} ${SERVICES}; do
+   IUSE+=" +${x}"
+done
+
+BDEPEND=">=dev-lang/go-1.13"
+COMMON_DEPEND="
+   kube-apiserver? (
+   acct-group/kube-apiserver
+   acct-user/kube-apiserver
+   )
+   kube-controller-manager? (
+   acct-group/kube-controller-manager
+   acct-user/kube-controller-manager
+   )
+   kube-scheduler? (
+   acct-group/kube-scheduler
+   acct-user/kube-scheduler
+   )"
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}
+   kube-proxy? ( net-firewall/conntrack-tools )
+   !sys-cluster/kubeadm
+   !sys-cluster/kubectl
+   !sys-cluster/kubelet
+   !sys-cluster/kube-apiserver
+   !sys-cluster/kube-controller-manager
+   !sys-cluster/kube-proxy
+   !sys-cluster/kube-scheduler"
+
+RESTRICT+=" test"
+
+src_compile() {
+   local x
+   for x in ${AGENT} ${CLI} ${SERVICES}; do
+   use $x || continue
+   CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \
+   emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" 
WHAT=cmd/${x}
+   done
+}
+
+src_install() {

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

2020-06-22 Thread Mike Gilbert
commit: d8d7564b2fe1847d801be746949021fbb1527aea
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Jun 22 23:31:01 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Jun 22 23:31:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8d7564b

net-misc/freerdp: bump to 2.1.2

Bug: https://bugs.gentoo.org/729218
Signed-off-by: Mike Gilbert  gentoo.org>

 net-misc/freerdp/Manifest |   1 +
 net-misc/freerdp/freerdp-2.1.2.ebuild | 124 ++
 2 files changed, 125 insertions(+)

diff --git a/net-misc/freerdp/Manifest b/net-misc/freerdp/Manifest
index 513a5b7b975..25a9796c59c 100644
--- a/net-misc/freerdp/Manifest
+++ b/net-misc/freerdp/Manifest
@@ -1,2 +1,3 @@
 DIST freerdp-2.1.0.tar.gz 6869116 BLAKE2B 
c9cab4b571b288450efa5c5666f8cb64ca9e37dfd342d5e66c256b0fca151b20b3f9b1027a12f8fe9cbae186d95c8cb4d28c90deeadcacc3c158f50a3e713747
 SHA512 
86d72419d012c52a3dfa071d50bac96ddb3a1423bf35252fdef72676f8b2830b65c9e0511dea2d7b9a69e7783a3d1eacbd2f868b08836742dec7542c77a39405
 DIST freerdp-2.1.1.tar.gz 6871637 BLAKE2B 
b0c01fb074f28aa569d934797d4fb8451edcb90d7f5eba9e47b7ec844cc95eda143c3d851b86ef72e233e8bde8ebc3e1c4a7d3d549d0de54f774ec1fee62e8cd
 SHA512 
6f0cff79690ca550237c6e31f5ab361246a6d12ac765e85b752d474aceaf1390d8c5f2b21aba028927459892a045e5073e143705e6f2256a2a7c8744dcf3f95b
+DIST freerdp-2.1.2.tar.gz 6838848 BLAKE2B 
2ca0e7f22311b574c09b3040a95133ad99ffa0cb91bc6992bf0fa88f8aebfccda3599f3d7f14a0813256c249c1e90fbd6e907fe36f78627fbd4ab6852353ea49
 SHA512 
09fbd76512661e077c4baab4056c2e636cfb0067678271c6c87dc19fb035e15a463478f697f7caedc0d650089d520f97f6143e85ef1b29f12c41cbd39b8fff92

diff --git a/net-misc/freerdp/freerdp-2.1.2.ebuild 
b/net-misc/freerdp/freerdp-2.1.2.ebuild
new file mode 100644
index 000..0370121a8a9
--- /dev/null
+++ b/net-misc/freerdp/freerdp-2.1.2.ebuild
@@ -0,0 +1,124 @@
+# Copyright 2011-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/FreeRDP/FreeRDP.git";
+   case ${PV} in
+   2.*) EGIT_BRANCH="stable-2.0";;
+   esac
+else
+   MY_P=${P/_/-}
+   S="${WORKDIR}/${MY_P}"
+   SRC_URI="https://pub.freerdp.com/releases/${MY_P}.tar.gz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+fi
+
+DESCRIPTION="Free implementation of the Remote Desktop Protocol"
+HOMEPAGE="http://www.freerdp.com/";
+
+LICENSE="Apache-2.0"
+SLOT="0/2"
+IUSE="alsa cpu_flags_arm_neon cups debug doc +ffmpeg gstreamer jpeg libressl 
openh264 pulseaudio server smartcard systemd test usb wayland X xinerama xv"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   sys-libs/zlib:0
+   alsa? ( media-libs/alsa-lib )
+   cups? ( net-print/cups )
+   usb? (
+   virtual/libudev:0=
+   sys-apps/util-linux:0=
+   dev-libs/dbus-glib:0=
+   virtual/libusb:1=
+   )
+   X? (
+   x11-libs/libXcursor
+   x11-libs/libXext
+   x11-libs/libXi
+   x11-libs/libXrender
+   xinerama? ( x11-libs/libXinerama )
+   xv? ( x11-libs/libXv )
+   )
+   ffmpeg? ( media-video/ffmpeg:0= )
+   !ffmpeg? (
+   x11-libs/cairo:0=
+   )
+   gstreamer? (
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   x11-libs/libXrandr
+   )
+   jpeg? ( virtual/jpeg:0 )
+   openh264? ( media-libs/openh264 )
+   pulseaudio? ( media-sound/pulseaudio )
+   server? (
+   X? (
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXrandr
+   x11-libs/libXtst
+   xinerama? ( x11-libs/libXinerama )
+   )
+   )
+   smartcard? ( sys-apps/pcsc-lite )
+   systemd? ( sys-apps/systemd:0= )
+   wayland? (
+   dev-libs/wayland
+   x11-libs/libxkbcommon
+   )
+   X? (
+   x11-libs/libX11
+   x11-libs/libxkbfile
+   )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+   X? ( doc? (
+   app-text/docbook-xml-dtd:4.1.2
+   app-text/xmlto
+   ) )
+"
+
+src_prepare() {
+   cmake_src_prepare
+   echo "${PV}" > .source_version || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_TESTING=$(usex test ON OFF)
+   -DCHANNEL_URBDRC=$(usex usb ON OFF)
+   -DWITH_ALSA=$(usex alsa ON OFF)
+   -DWITH_CCACHE=OFF
+   -DWITH_CUPS=$(usex cups ON OFF)
+   -DWITH_DEBUG_ALL=$(us

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

2020-06-22 Thread Andreas Sturmlechner
commit: 590d2be37d95087ab02b47688b0270657696e6e0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jun 22 22:38:18 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 22 22:38:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=590d2be3

sys-libs/libtermcap-compat: Drop 2.0.8-r3

Closes: https://bugs.gentoo.org/724176
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../libtermcap-compat-2.0.8-r3.ebuild  | 49 --
 1 file changed, 49 deletions(-)

diff --git a/sys-libs/libtermcap-compat/libtermcap-compat-2.0.8-r3.ebuild 
b/sys-libs/libtermcap-compat/libtermcap-compat-2.0.8-r3.ebuild
deleted file mode 100644
index 950f1a6bc63..000
--- a/sys-libs/libtermcap-compat/libtermcap-compat-2.0.8-r3.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# we only want this for binary-only packages, so we will only be installing
-# the lib used at runtime; no headers and no files to link against
-
-EAPI="4"
-
-inherit eutils multilib toolchain-funcs
-
-PATCHVER="2"
-
-MY_P="termcap-${PV}"
-DESCRIPTION="Compatibility package for old termcap-based programs"
-HOMEPAGE="http://www.catb.org/~esr/terminfo/";
-SRC_URI="http://www.catb.org/~esr/terminfo/termtypes.tc.gz
-   mirror://gentoo/${MY_P}.tar.bz2
-   mirror://gentoo/${MY_P}-patches-${PATCHVER}.tar.bz2"
-
-LICENSE="GPL-2 LGPL-2 BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ppc sparc x86"
-IUSE=""
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   EPATCH_SOURCE="${WORKDIR}/patch"
-   EPATCH_SUFFIX="patch"
-   epatch "${EPATCH_SOURCE}"
-
-   cd "${WORKDIR}"
-   mv termtypes.tc termcap || die
-   epatch "${EPATCH_SOURCE}"/tc.file
-}
-
-src_configure() {
-   tc-export CC
-}
-
-src_install() {
-   dolib.so libtermcap.so.${PV}
-   dosym libtermcap.so.${PV} /usr/$(get_libdir)/libtermcap.so.2
-
-   insinto /etc
-   doins "${WORKDIR}"/termcap
-
-   dodoc ChangeLog README
-}



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/mathomatic/

2020-06-22 Thread Andreas Sturmlechner
commit: dd41c5e289d0970953ec90f82204f114ec49869d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jun 22 22:39:34 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 22 22:39:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd41c5e2

sci-mathematics/mathomatic: Drop 15.8.5

Closes: https://bugs.gentoo.org/724166
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-mathematics/mathomatic/Manifest|  1 -
 .../mathomatic/mathomatic-15.8.5.ebuild| 41 --
 2 files changed, 42 deletions(-)

diff --git a/sci-mathematics/mathomatic/Manifest 
b/sci-mathematics/mathomatic/Manifest
index 00c4c339688..f9dc88043a0 100644
--- a/sci-mathematics/mathomatic/Manifest
+++ b/sci-mathematics/mathomatic/Manifest
@@ -1,2 +1 @@
-DIST mathomatic-15.8.5.tar.bz2 270607 BLAKE2B 
dc8d39a53e8d8a2e252a7cecbf235d391cda282e7ed59c1c4b341ec4d8cab144098f4cee043946d4fcc230f92683276251aac4fd33d78ee7170fad191a03e644
 SHA512 
9d8b5fcc369d99b890fde06729daa6c86f1a400d5e42d5fd5d74525b9f4a7c28dea5a05882e753b44590e4624ec7399367a637019867ea85fe68e9e0ed3a3e6e
 DIST mathomatic-16.0.5.tar.gz 381466 BLAKE2B 
31dde337646d39faad3bcda6b72e316de4febfaf8c825320c70d69fdd55bb377948ec9e8b5ad855dc0a5b9be0f50b19387a595dfee7299e71fbf19c4f2bae979
 SHA512 
0d98cf7ad707d6536731c98dd253f4cce30243e9eefe9912b8fec3ad4ac4261e324b93b4f0113789ce17fd0b2e3d75f7b258be7905d8e3c7bb4b756627b75950

diff --git a/sci-mathematics/mathomatic/mathomatic-15.8.5.ebuild 
b/sci-mathematics/mathomatic/mathomatic-15.8.5.ebuild
deleted file mode 100644
index 6a40519ade4..000
--- a/sci-mathematics/mathomatic/mathomatic-15.8.5.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit toolchain-funcs flag-o-matic
-
-DESCRIPTION="Automatic algebraic manipulator"
-HOMEPAGE="http://www.mathomatic.org/";
-SRC_URI="http://www.mathomatic.org/archive/${P}.tar.bz2";
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="doc gnuplot"
-
-DEPEND="sys-libs/readline
-   sys-libs/ncurses"
-RDEPEND="${DEPEND}
-   gnuplot? ( sci-visualization/gnuplot )"
-
-src_compile() {
-   append-cflags -DBOLD_COLOR=1
-   emake READLINE=1 CC=$(tc-getCC)
-   emake CC=$(tc-getCC) -C primes
-}
-
-src_test() {
-   default
-   emake -C primes check
-}
-
-src_install() {
-   emake prefix="${EPREFIX}usr" DESTDIR="${D}" bininstall
-   emake prefix="${EPREFIX}usr" DESTDIR="${D}" -C primes install
-   dodoc changes.txt README.txt AUTHORS
-   newdoc primes/README.txt README-primes.txt
-   use doc && emake \
-   prefix="${EPREFIX}usr" \
-   mathdocdir="${EPREFIX}usr/share/doc/${PF}" \
-   DESTDIR="${D}" docinstall
-}



[gentoo-commits] repo/gentoo:master commit in: net-fs/minio/

2020-06-22 Thread William Hubbs
commit: ab21367813b91dcc87e5f1bb5105493a07c26dda
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Jun 22 22:23:08 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Jun 22 22:24:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab213678

net-fs/minio: remove old

Signed-off-by: William Hubbs  gentoo.org>

 net-fs/minio/Manifest | 128 -
 net-fs/minio/minio-2019.09.11.19.53.16.ebuild | 200 --
 2 files changed, 328 deletions(-)

diff --git a/net-fs/minio/Manifest b/net-fs/minio/Manifest
index d4246bfa302..5948bf96a9e 100644
--- a/net-fs/minio/Manifest
+++ b/net-fs/minio/Manifest
@@ -447,133 +447,6 @@ DIST github.com%2Fxdg%2Fstringprep%2F@v%2Fv1.0.0.zip 
33696 BLAKE2B 698e18104a389
 DIST 
github.com%2Fxiang90%2Fprobing%2F@v%2Fv0.0.0-20190116061207-43a291ad63a2.mod 34 
BLAKE2B 
da6bd307f61b08eb749a0b2d9a9f445dfc057c8cafaa13f4a7c6d2d2324f7812c9c8269d9747cc21db9c3478f73558da05035b3f1ce9940f5c5befb16dcdd159
 SHA512 
b9773f617e5b48c6767051fc7dd2faa63a8a9d537ee42fb51efe6db5b3d24060dea0a264568bb5324915de8917a334f3563dc49d35651a4ee7c15042faad2964
 DIST 
github.com%2Fxiang90%2Fprobing%2F@v%2Fv0.0.0-20190116061207-43a291ad63a2.zip 
5264 BLAKE2B 
f6d986c7f5fbb1960fa1b62a5722d426c3ab79d865cb179bb9bca5a213bb2008a3cf4edb59dba1a336928cb0bd05d31f7083f394cec09270e66b55cd4a045b37
 SHA512 
2a8e1f10d10e4479568374b9e51b1b8dbbf1077d8af413d7dcd254ba1dc1cd38ee19e75a4661a4e237d3662e51cbcf96a08bc69a2e5beaf34a2559fcfb9d653c
 DIST github.com%2Fyuin%2Fgoldmark%2F@v%2Fv1.1.27.mod 41 BLAKE2B 
44917ea3a6fc533933ccd76d1594e19246c682d96311e030aeac3c126f6cd2c2de67ca410c89738918c5ab0594f1e9b2c2202c48f462c368ad31fb5feff6
 SHA512 
b7d81f5cbf1b55ebebcbb86ae89899ffec6fcd730144f1719947a76080f587d298d0e37a073a8768d7768ef64fc47b1673104335203a32a557f31e42a4e5a950
-DIST 
github.com-Azure-azure-sdk-for-go-d659f2a91175cac99aa5627d09b83026eacc978d.tar.gz
 14883858 BLAKE2B 
dcc2f5fc0878c8f47cf04af727825ee42e51eeb0e1eb8695f404a92aa572b83cec8684e9a6e59d20acf8a354cdd2eaf07d257907a852aea93d1331dadc3b2752
 SHA512 
0852cb1e2f9996e42a0206a0457fa6f95d35fc1e31041f37b413e2605adea40f4001bc0100a1cebf5c2af3baeb8c0621f1fed587fbd0e7a4abd54c985e03abe4
-DIST 
github.com-Azure-go-autorest-3b1641ed03046f2ee28d73f7a51e5b884d55b92a.tar.gz 
134957 BLAKE2B 
758a94be9ebe23e8184aa5f80f3bd9dec41ef8cecf7e28d051bf5082fd5a77be477bb2391f0b7c730b38435ed5762a989502896b561c8d48463cf53bdf4fa7c7
 SHA512 
bb689f2a70680d0cd9c0f3337c45b93fba6329b03aba31a2737f4888d8460d5f1614b78e54bf9b277ec47d1daa368c637c8a0b6d61133ee07296d964d4943230
-DIST github.com-DataDog-zstd-c7161f8c63c045cbc7ca051dcc969dd0e4054de2.tar.gz 
445833 BLAKE2B 
ebe3bf82d8c0839ef62be90223cc8052a5ecb700b1a8e8ee543d347589e1c26210e613d6fd9d6692c7b2f83728aba151734fe0ce849e68516fd291e78fdfcb09
 SHA512 
3405efb05ad33a04a78f7c5807c512bfef4d43103d912ff36746d6f64a12b02a5fb864d3eecd1ff8e8cc91b961a47ee61c540ad42bccf30523ada9c89c89
-DIST github.com-Shopify-sarama-879f631812a30a580659e8035e7cda9994bb99ac.tar.gz 
187136 BLAKE2B 
d9bc4330dc2a1eac3db6aafb79837f7a2c6173b53c9d07947643d66791814db970adfb26654952378d137bfca6cd53b805545e4a8016ea917fdf2e60249e362b
 SHA512 
1c1fde4982161b69897d88e825d1baa23a57157ffeec741c6ff55990140ef496f1e3394a09988fbb158ff2dbd058b66c3cea935d4ba64029cceed5f38cd37c65
-DIST 
github.com-alecthomas-participle-98cb121381c371cf1542c7ae145e485d703aec0b.tar.gz
 53386 BLAKE2B 
709989e25fbc217390d291911b7074bd9b03c379e43379eb83f9af1f22335310b4dd9516bb1785d1186c914d6aa6234478f9399dcee26b42ced7b49f3d59286a
 SHA512 
fef6820aa36033bdabeb28e832a9828eeaddb1ba162defd9e35eea0fbe0882ffbdd1759439fc668474831dcaf4670099e239f8106a64d3a6df846c9837cff525
-DIST 
github.com-aliyun-aliyun-oss-go-sdk-86c17b95fcd5db33628a61e492fb4a1a937d5906.tar.gz
 608124 BLAKE2B 
15b99b58204dc9e74df1397993a59d5d2459e6f28b4782fb4614701ae39f3843df7ece1816495aabd156830599eeaf7f09ed29c731c2155a6a8e1898e32a0c84
 SHA512 
1da4cddb57506dd5ae33738a15a396b0b0c90f854ad16c2d942daf40182e7d1b375b27c1b9f994cacca33303d9943e0e86dec221313ad0a5905af719c96d7183
-DIST github.com-apache-thrift-c9b1e29bc9e0702d7441383358d565e1e76ccea7.tar.gz 
3162819 BLAKE2B 
141a4fc18876d11e01d6ce47660b050e0c3654d9a02e1158370b156d8c2d4202437a9a5c36b279ae23fd33358004a05669d7b1a54ecfa322ddaf577111d1e443
 SHA512 
9c2fef780d85ae1a01138af16f4e87179254da416186d609bf74c326c49c586616d12b6eebd8e615ce9ba78e93602f860a2ff4c8d54eea0b9b7c55f111094d7c
-DIST github.com-bcicen-jstream-16c1f8af81c2a9967b30d365a29472126274f998.tar.gz 
42510 BLAKE2B 
61cb8ac82c072f9929a2df6f77b7c10d08028e8d2886925dd0bc7973791ec1ab0cc0f0c2f78409f2ef58ac420778160df3dfbd2028a0ca9063975be84211d057
 SHA512 
eccd9319a479e77dfa8ac902236991bb418cea77d50350a4ba1142bfbea29dc25d7b0a8f262ee271281eb9ce630bf26d42f508e1f834c80a93fdc7dcbd96353a
-DIST github.com-beorn7-perks-3a771d992973f24aa725d07868b467d1ddfceafb.tar.gz 
10800 BLAKE2B 
5487155a4d010af70b6ea2625d10ae03b6642507902d7dc168edb5d7cf0efa1777b248d0df34ed1a2564950b12613

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

2020-06-22 Thread Jason A. Donenfeld
commit: 396a9e64321310a0a8b203bfaa76231bcdb0c2d0
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Mon Jun 22 22:01:23 2020 +
Commit: Jason A. Donenfeld  gentoo  org>
CommitDate: Mon Jun 22 22:01:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=396a9e64

net-vpn/wireguard-tools: check for NETFILTER_XT_MATCH_ADDRTYPE

Closes: https://bugs.gentoo.org/707950
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Jason A. Donenfeld  gentoo.org>

 net-vpn/wireguard-tools/wireguard-tools-1.0.20200319.ebuild | 1 +
 net-vpn/wireguard-tools/wireguard-tools-1.0.20200513.ebuild | 1 +
 2 files changed, 2 insertions(+)

diff --git a/net-vpn/wireguard-tools/wireguard-tools-1.0.20200319.ebuild 
b/net-vpn/wireguard-tools/wireguard-tools-1.0.20200319.ebuild
index e42a4178572..33a76b323c4 100644
--- a/net-vpn/wireguard-tools/wireguard-tools-1.0.20200319.ebuild
+++ b/net-vpn/wireguard-tools/wireguard-tools-1.0.20200319.ebuild
@@ -55,6 +55,7 @@ pkg_setup() {
wg_quick_optional_config_nob NETFILTER_XT_MARK
wg_quick_optional_config_nob NETFILTER_XT_CONNMARK
wg_quick_optional_config_nob NETFILTER_XT_MATCH_COMMENT
+   wg_quick_optional_config_nob NETFILTER_XT_MATCH_ADDRTYPE
wg_quick_optional_config_nob IP6_NF_RAW
wg_quick_optional_config_nob IP_NF_RAW
wg_quick_optional_config_nob IP6_NF_FILTER

diff --git a/net-vpn/wireguard-tools/wireguard-tools-1.0.20200513.ebuild 
b/net-vpn/wireguard-tools/wireguard-tools-1.0.20200513.ebuild
index ab890be7d84..7a83df0991b 100644
--- a/net-vpn/wireguard-tools/wireguard-tools-1.0.20200513.ebuild
+++ b/net-vpn/wireguard-tools/wireguard-tools-1.0.20200513.ebuild
@@ -55,6 +55,7 @@ pkg_setup() {
wg_quick_optional_config_nob NETFILTER_XT_MARK
wg_quick_optional_config_nob NETFILTER_XT_CONNMARK
wg_quick_optional_config_nob NETFILTER_XT_MATCH_COMMENT
+   wg_quick_optional_config_nob NETFILTER_XT_MATCH_ADDRTYPE
wg_quick_optional_config_nob IP6_NF_RAW
wg_quick_optional_config_nob IP_NF_RAW
wg_quick_optional_config_nob IP6_NF_FILTER



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/rw/

2020-06-22 Thread Michael Orlitzky
commit: b82639effb1f9079247ade8163fddd285e0011b4
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Mon Jun 22 21:47:16 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Mon Jun 22 21:47:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b82639ef

sci-mathematics/rw: maintainer stabilize and drop old.

The -r3 is a trivial revision, and the best way to test this is
through SageMath, which I have already done.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michael Orlitzky  gentoo.org>

 sci-mathematics/rw/rw-0.8-r2.ebuild | 33 -
 sci-mathematics/rw/rw-0.8-r3.ebuild |  2 +-
 2 files changed, 1 insertion(+), 34 deletions(-)

diff --git a/sci-mathematics/rw/rw-0.8-r2.ebuild 
b/sci-mathematics/rw/rw-0.8-r2.ebuild
deleted file mode 100644
index bc5bc34162b..000
--- a/sci-mathematics/rw/rw-0.8-r2.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Compute rank-width decompositions of graphs"
-HOMEPAGE="https://sourceforge.net/projects/rankwidth/";
-SRC_URI="https://downloads.sourceforge.net/project/rankwidth/${P}.tar.gz";
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE=""
-
-# We have a file collision (librw.so) with xpaint, bug 560210.
-RDEPEND="!media-gfx/xpaint"
-
-src_prepare() {
-   # The upstream tarball for v0.8 contains SYMLINKS to ar-lib,
-   # compile, install-sh, ltmain.sh, etc. And those symlinks don't
-   # always point to a working location for us, so we have to
-   # (re)generate actual files for that stuff. Bug 696986.
-   default
-   eautoreconf
-}
-
-src_configure() {
-   # The executable depends on igraph, which has gone off the rails
-   # upstream and has copy/pasted ~10 libraries into its src/ directory.
-   econf --disable-executable
-}

diff --git a/sci-mathematics/rw/rw-0.8-r3.ebuild 
b/sci-mathematics/rw/rw-0.8-r3.ebuild
index 6bbd3085010..979e8339519 100644
--- a/sci-mathematics/rw/rw-0.8-r3.ebuild
+++ b/sci-mathematics/rw/rw-0.8-r3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://downloads.sourceforge.net/project/rankwidth/${P}.tar.gz";
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE=""
 
 # We have a file collision (librw.so) with xpaint, bug 560210.



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

2020-06-22 Thread Sergei Trofimovich
commit: 0722911b79f21d7c5d574758ae147934aa5a992c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun 22 21:16:08 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 22 21:16:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0722911b

dev-util/ccache: bump up to 3.7.10

Among other things new ccache improves handling of profile
handling on clang. Should help for cases like bug #718632

Reported-by: Thomas Deutschmann
Bug: https://bugs.gentoo.org/718632
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/ccache/Manifest |  1 +
 dev-util/ccache/ccache-3.7.10.ebuild | 70 
 2 files changed, 71 insertions(+)

diff --git a/dev-util/ccache/Manifest b/dev-util/ccache/Manifest
index e5af79225a7..3e63a2bd653 100644
--- a/dev-util/ccache/Manifest
+++ b/dev-util/ccache/Manifest
@@ -1,2 +1,3 @@
+DIST ccache-3.7.10.tar.xz 353792 BLAKE2B 
d7c06ee55a79afb4b72cdc20ec3d6413a5417301c63a0c822a4f82e6b9542c7a9cdf9f1bbd60a4698c335fdddfadcb9d674bff02c6dad1c2df9932212fdf6477
 SHA512 
64b0d42af7fd2dfdda65668b04dbd16807a22324e336e61f6c6a91c00110fb535c7ac9062a9c14c924a7ddaf42247f69a43d83dd0fd187ce3b0737158b5bb8fc
 DIST ccache-3.7.7.tar.xz 351592 BLAKE2B 
0b211cb77ceb42b7ee5dfcde98d9f53bf222cf18b8d38a7cf6fc9631c5e1c79ca82e6d0a0dbacfe2d5f61b2acefebe202e06fc3b8035f0f25a5f9954554a18cd
 SHA512 
f93380aeb45e815964abc3b62f1963abafe22e0c6a7b61d039e710c7f935221e02678e21af65add4fd59fd5a141824ab95f4a7afc8dd557de36737c365cab816
 DIST ccache-3.7.9.tar.xz 352948 BLAKE2B 
791491c3f9da58f06bb0a58e411d9a7b3e39e460102793ef736820913d43d488ce7daffba572c21f507ea78d8da04edc3aaa47eb1a0fbec8cb35461a60b770e9
 SHA512 
5d39baeb66265451b0e9cef250f6d9c5f6869cd87e27c108c9a50bef80050122ed4280ff662a81bba8d1d1311f2004bcaf9ada6b783a42eedc67ca01ebc48bb4

diff --git a/dev-util/ccache/ccache-3.7.10.ebuild 
b/dev-util/ccache/ccache-3.7.10.ebuild
new file mode 100644
index 000..32f24f67e07
--- /dev/null
+++ b/dev-util/ccache/ccache-3.7.10.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="fast compiler cache"
+HOMEPAGE="https://ccache.dev/";
+SRC_URI="https://github.com/ccache/ccache/releases/download/v${PV}/ccache-${PV}.tar.xz";
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+IUSE="test"
+
+DEPEND="app-arch/xz-utils
+   sys-libs/zlib"
+RDEPEND="${DEPEND}
+   dev-util/shadowman
+   sys-apps/gentoo-functions"
+# clang-specific tests use dev-libs/elfutils to compare objects for equality.
+# Let's pull in the dependency unconditionally.
+DEPEND+="
+   test? ( dev-libs/elfutils )"
+
+RESTRICT="!test? ( test )"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-3.5-nvcc-test.patch
+)
+
+src_prepare() {
+   default
+
+   sed \
+   -e "/^EPREFIX=/s:'':'${EPREFIX}':" \
+   "${FILESDIR}"/ccache-config-3 > ccache-config || die
+}
+
+src_configure() {
+   econf --without-bundled-zlib
+}
+
+src_compile() {
+   emake V=1
+}
+
+src_test() {
+   emake check V=1
+}
+
+src_install() {
+   DOCS=( doc/{AUTHORS,MANUAL,NEWS}.adoc CONTRIBUTING.md README.md )
+   default
+
+   dobin ccache-config
+   insinto /usr/share/shadowman/tools
+   newins - ccache <<<"${EPREFIX}/usr/lib/ccache/bin"
+}
+
+pkg_prerm() {
+   if [[ -z ${REPLACED_BY_VERSION} && ${ROOT:-/} == / ]] ; then
+   eselect compiler-shadow remove ccache
+   fi
+}
+
+pkg_postinst() {
+   if [[ ${ROOT:-/} == / ]]; then
+   eselect compiler-shadow update ccache
+   fi
+}



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

2020-06-22 Thread Marek Szuba
commit: 955640ef357de349e242eca5d7848286a450f35e
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Jun 22 20:45:03 2020 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Jun 22 20:55:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=955640ef

dev-libs/opencl-clang:10: Fix llvm-tblgen detection

Upstream CMake scripts simply set LLVM_TABLEGEN_EXE to "llvm-tblgen".
This works fine for 32-bit builds of SLOT=8 and 9 as well as 64-bit
builds of all three slots, however 32-bit builds of SLOT=10 fail due to
having been unable to locate the executable in question. Whatever the
reason for this is, actually looking for llvm-tblgen with
find_program() solves the issue, at least on my system anyway.

Closes: https://bugs.gentoo.org/728804
Signed-off-by: Marek Szuba  gentoo.org>

 .../files/opencl-clang-10.0.0.1_find-llvm-tblgen.patch| 11 +++
 dev-libs/opencl-clang/opencl-clang-10.0.0.1.ebuild|  1 +
 2 files changed, 12 insertions(+)

diff --git 
a/dev-libs/opencl-clang/files/opencl-clang-10.0.0.1_find-llvm-tblgen.patch 
b/dev-libs/opencl-clang/files/opencl-clang-10.0.0.1_find-llvm-tblgen.patch
new file mode 100644
index 000..bf013c33a59
--- /dev/null
+++ b/dev-libs/opencl-clang/files/opencl-clang-10.0.0.1_find-llvm-tblgen.patch
@@ -0,0 +1,11 @@
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -137,7 +137,7 @@
+ set (COMPILE_OPTIONS_TD  opencl_clang_options.td)
+ set (COMPILE_OPTIONS_INC opencl_clang_options.inc)
+ 
+-set(LLVM_TABLEGEN_EXE "llvm-tblgen")
++find_program(LLVM_TABLEGEN_EXE "llvm-tblgen")
+ set(LLVM_TARGET_DEFINITIONS ${COMPILE_OPTIONS_TD})
+ if(USE_PREBUILT_LLVM)
+   set(TABLEGEN_ADDITIONAL -I ${LLVM_INCLUDE_DIRS})

diff --git a/dev-libs/opencl-clang/opencl-clang-10.0.0.1.ebuild 
b/dev-libs/opencl-clang/opencl-clang-10.0.0.1.ebuild
index d09e936af38..eaa015b40fe 100644
--- a/dev-libs/opencl-clang/opencl-clang-10.0.0.1.ebuild
+++ b/dev-libs/opencl-clang/opencl-clang-10.0.0.1.ebuild
@@ -29,6 +29,7 @@ LLVM_MAX_SLOT=10
 
 PATCHES=(
"${FILESDIR}"/${PN}-8.0.0-clang_library_dir.patch
+   "${FILESDIR}"/${PN}-10.0.0.1_find-llvm-tblgen.patch
 )
 
 multilib_src_configure() {



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

2020-06-22 Thread Marek Szuba
commit: 2dbdce23ddfea0e528dcea6e5481463a52d0a56d
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Jun 22 20:52:09 2020 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Jun 22 20:56:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dbdce23

dev-libs/opencl-clang:10: Remove BDEPEND="dev-vcs/git"

Upstream have recently made it so that Git is no longer required when
system versions of llvm/clang and spirv-llvm-translator are used.

Signed-off-by: Marek Szuba  gentoo.org>

 dev-libs/opencl-clang/opencl-clang-10.0.0.1.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-libs/opencl-clang/opencl-clang-10.0.0.1.ebuild 
b/dev-libs/opencl-clang/opencl-clang-10.0.0.1.ebuild
index eaa015b40fe..6f62bb78ba5 100644
--- a/dev-libs/opencl-clang/opencl-clang-10.0.0.1.ebuild
+++ b/dev-libs/opencl-clang/opencl-clang-10.0.0.1.ebuild
@@ -19,7 +19,6 @@ KEYWORDS="~amd64"
 
 S="${WORKDIR}/${MY_P}"
 
-BDEPEND="dev-vcs/git"
 COMMON="sys-devel/clang:10=[static-analyzer,${MULTILIB_USEDEP}]"
 DEPEND="${COMMON}
dev-util/spirv-llvm-translator:10=[${MULTILIB_USEDEP}]"



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

2020-06-22 Thread James Le Cuirot
commit: 6ccdf5f8745a6f92359b59d9cd7a9bb76d9d
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Sun Jun 21 21:53:32 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jun 22 20:27:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ccdf5f8

app-shells/rrs: update HOMEPAGE

Replace freecode.com with freshmeat.sourceforge.net.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Azamat H. Hackimov  gmail.com>
Signed-off-by: James Le Cuirot  gentoo.org>

 app-shells/rrs/rrs-1.70-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-shells/rrs/rrs-1.70-r2.ebuild 
b/app-shells/rrs/rrs-1.70-r2.ebuild
index 50056840ca1..58f401d896a 100644
--- a/app-shells/rrs/rrs-1.70-r2.ebuild
+++ b/app-shells/rrs/rrs-1.70-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -6,7 +6,7 @@ EAPI=7
 inherit toolchain-funcs
 
 DESCRIPTION="Reverse Remote Shell"
-HOMEPAGE="http://freecode.com/projects/rrs";
+HOMEPAGE="http://freshmeat.sourceforge.net/projects/rrs";
 SRC_URI="http://www.cycom.se/uploads/36/19/${P}.tar.gz";
 
 LICENSE="MIT"



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

2020-06-22 Thread James Le Cuirot
commit: 629cf4a1d62807499883f56afcbbaf560cc4af9d
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Sun Jun 21 21:56:26 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jun 22 20:28:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=629cf4a1

media-libs/icclib: update HOMEPAGE

Replace freecode.com with freshmeat.sourceforge.net.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Azamat H. Hackimov  gmail.com>
Signed-off-by: James Le Cuirot  gentoo.org>

 media-libs/icclib/icclib-2.14.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/icclib/icclib-2.14.ebuild 
b/media-libs/icclib/icclib-2.14.ebuild
index c1c849efeba..c9b8483e17a 100644
--- a/media-libs/icclib/icclib-2.14.ebuild
+++ b/media-libs/icclib/icclib-2.14.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -8,7 +8,7 @@ inherit toolchain-funcs
 MY_P="${PN}_V${PV}"
 
 DESCRIPTION="Library for reading and writing ICC color profile files"
-HOMEPAGE="http://freecode.com/projects/icclib";
+HOMEPAGE="http://freshmeat.sourceforge.net/projects/icclib";
 SRC_URI="http://www.argyllcms.com/${MY_P}.zip";
 
 LICENSE="BSD"



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

2020-06-22 Thread James Le Cuirot
commit: dbdf8a857d6412f9f9de5fdff147c87838c7de97
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Sun Jun 21 21:57:01 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jun 22 20:28:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbdf8a85

x11-plugins/gkrellm-countdown: update HOMEPAGE

Replace freecode.com with freshmeat.sourceforge.net.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Azamat H. Hackimov  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16367
Signed-off-by: James Le Cuirot  gentoo.org>

 x11-plugins/gkrellm-countdown/gkrellm-countdown-0.1.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-plugins/gkrellm-countdown/gkrellm-countdown-0.1.2-r1.ebuild 
b/x11-plugins/gkrellm-countdown/gkrellm-countdown-0.1.2-r1.ebuild
index ce1fc9af4ca..ba2f0c934ba 100644
--- a/x11-plugins/gkrellm-countdown/gkrellm-countdown-0.1.2-r1.ebuild
+++ b/x11-plugins/gkrellm-countdown/gkrellm-countdown-0.1.2-r1.ebuild
@@ -7,7 +7,7 @@ inherit gkrellm-plugin toolchain-funcs
 
 DESCRIPTION="A simple countdown clock for GKrellM2"
 SRC_URI="http://oss.pugsplace.net/${P}.tar.gz";
-HOMEPAGE="http://freecode.com/projects/gkrellm-countdown";
+HOMEPAGE="http://freshmeat.sourceforge.net/projects/gkrellm-countdown";
 
 LICENSE="GPL-2"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: games-action/0verkill/

2020-06-22 Thread James Le Cuirot
commit: 5af37c9f62cca34a5e0afccd79b673c9046d21c5
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Sun Jun 21 21:54:09 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jun 22 20:27:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5af37c9f

games-action/0verkill: update HOMEPAGE

Replace freecode.com with freshmeat.sourceforge.net.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Azamat H. Hackimov  gmail.com>
Signed-off-by: James Le Cuirot  gentoo.org>

 games-action/0verkill/0verkill-0.16-r4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-action/0verkill/0verkill-0.16-r4.ebuild 
b/games-action/0verkill/0verkill-0.16-r4.ebuild
index 478fcc1bbda..e1b5419bf8c 100644
--- a/games-action/0verkill/0verkill-0.16-r4.ebuild
+++ b/games-action/0verkill/0verkill-0.16-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit autotools
 
 DESCRIPTION="A bloody 2D action deathmatch-like game in ASCII-ART"
-HOMEPAGE="http://freecode.com/projects/0verkill";
+HOMEPAGE="http://freshmeat.sourceforge.net/projects/0verkill";
 SRC_URI="http://artax.karlin.mff.cuni.cz/~brain/0verkill/release/${P}.tgz";
 
 LICENSE="GPL-2"



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

2020-06-22 Thread James Le Cuirot
commit: bc64ec58fda425daf3d5469f612e46861db2f4a0
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Sun Jun 21 21:55:57 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jun 22 20:28:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc64ec58

media-libs/giblib: update HOMEPAGE

Replace freecode.com with freshmeat.sourceforge.net.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Azamat H. Hackimov  gmail.com>
Signed-off-by: James Le Cuirot  gentoo.org>

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

diff --git a/media-libs/giblib/giblib-1.2.4-r1.ebuild 
b/media-libs/giblib/giblib-1.2.4-r1.ebuild
index 330368ff662..f3a87af2e5a 100644
--- a/media-libs/giblib/giblib-1.2.4-r1.ebuild
+++ b/media-libs/giblib/giblib-1.2.4-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 inherit autotools
 
 DESCRIPTION="a graphics library built on top of imlib2"
-HOMEPAGE="http://freecode.com/projects/giblib 
http://www.linuxbrit.co.uk/giblib/";
+HOMEPAGE="http://freshmeat.sourceforge.net/projects/giblib 
http://www.linuxbrit.co.uk/giblib/";
 SRC_URI="http://www.linuxbrit.co.uk/downloads/${P}.tar.gz";
 
 LICENSE="feh"



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

2020-06-22 Thread James Le Cuirot
commit: 1a5e82b647b5088a6ad2603751dc246db1f3edc3
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Sun Jun 21 21:55:26 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jun 22 20:27:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a5e82b6

media-gfx/monica: update HOMEPAGE

Replace freecode.com with freshmeat.sourceforge.net.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Azamat H. Hackimov  gmail.com>
Signed-off-by: James Le Cuirot  gentoo.org>

 media-gfx/monica/monica-3.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/monica/monica-3.7.ebuild 
b/media-gfx/monica/monica-3.7.ebuild
index 7afd8b96e53..08697029c23 100644
--- a/media-gfx/monica/monica-3.7.ebuild
+++ b/media-gfx/monica/monica-3.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit toolchain-funcs
 
 DESCRIPTION="Monica is a Monitor Calibration Tool"
-HOMEPAGE="http://freecode.com/projects/monica";
+HOMEPAGE="http://freshmeat.sourceforge.net/projects/monica";
 SRC_URI="mirror://gentoo/${P}.tar.bz2"
 
 LICENSE="BSD"



[gentoo-commits] repo/gentoo:master commit in: games-roguelike/wrogue/

2020-06-22 Thread James Le Cuirot
commit: 469e2315517c561722db6705b19bd8492a182918
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Sun Jun 21 21:54:59 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jun 22 20:27:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=469e2315

games-roguelike/wrogue: update HOMEPAGE

Replace freecode.com with freshmeat.sourceforge.net.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Azamat H. Hackimov  gmail.com>
Signed-off-by: James Le Cuirot  gentoo.org>

 games-roguelike/wrogue/wrogue-0.8.0b-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-roguelike/wrogue/wrogue-0.8.0b-r1.ebuild 
b/games-roguelike/wrogue/wrogue-0.8.0b-r1.ebuild
index db050bca72d..f86e97b9236 100644
--- a/games-roguelike/wrogue/wrogue-0.8.0b-r1.ebuild
+++ b/games-roguelike/wrogue/wrogue-0.8.0b-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 inherit desktop toolchain-funcs
 
 DESCRIPTION="Gothic science fantasy roguelike game"
-HOMEPAGE="https://freecode.com/projects/wrogue";
+HOMEPAGE="http://freshmeat.sourceforge.net/projects/wrogue";
 SRC_URI="mirror://gentoo/${P}.zip"
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: games-action/luola/

2020-06-22 Thread James Le Cuirot
commit: 2b62cd7d91fd1389db9e74749dd6cad3ed9ea7d2
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Sun Jun 21 21:54:32 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jun 22 20:27:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b62cd7d

games-action/luola: update HOMEPAGE

Replace freecode.com with freshmeat.sourceforge.net.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Azamat H. Hackimov  gmail.com>
Signed-off-by: James Le Cuirot  gentoo.org>

 games-action/luola/luola-1.3.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-action/luola/luola-1.3.2-r1.ebuild 
b/games-action/luola/luola-1.3.2-r1.ebuild
index a31ff566421..ff2ec53aa18 100644
--- a/games-action/luola/luola-1.3.2-r1.ebuild
+++ b/games-action/luola/luola-1.3.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit autotools desktop gnome2-utils
 
 DESCRIPTION="A 2D multiplayer arcade game resembling V-Wing"
-HOMEPAGE="https://freecode.com/projects/luola";
+HOMEPAGE="http://freshmeat.sourceforge.net/projects/luola";
 SRC_URI="mirror://gentoo/${P}.tar.gz
mirror://gentoo/stdlevels-6.0.tar.gz
mirror://gentoo/nostalgia-1.2.tar.gz"



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

2020-06-22 Thread Andreas Sturmlechner
commit: e4b89e6f93004ea3de37b41671dd9ad2bcbabbb5
Author: Hector Martin  marcan  st>
AuthorDate: Sat May 30 10:53:50 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 22 20:25:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4b89e6f

media-sound/supercollider: sign up marcan  marcan.st for proxy-maint

Signed-off-by: Hector Martin  marcan.st>
Closes: https://github.com/gentoo/gentoo/pull/16012
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-sound/supercollider/metadata.xml | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/media-sound/supercollider/metadata.xml 
b/media-sound/supercollider/metadata.xml
index 8cd1323c9a0..3b6d97f50b9 100644
--- a/media-sound/supercollider/metadata.xml
+++ b/media-sound/supercollider/metadata.xml
@@ -1,7 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-
+   
+   mar...@marcan.st
+   Hector Martin
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

SuperCollider is a platform for audio synthesis and algorithmic
composition, used by musicians, artists, and researchers



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

2020-06-22 Thread Andreas Sturmlechner
commit: 317ed887556977a46e475546548e918e39a1b6a3
Author: Hector Martin  marcan  st>
AuthorDate: Sat May 30 10:54:27 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 22 20:25:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=317ed887

media-sound/supercollider-3.11.0: version bump

Also adds the webengine USE flag, as that dep is now optional.

Closes: https://bugs.gentoo.org/723178
Closes: https://bugs.gentoo.org/724982
Closes: https://bugs.gentoo.org/728444
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Hector Martin  marcan.st>
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-sound/supercollider/Manifest |   1 +
 .../files/supercollider-3.11.0-boost-1.72.patch|  45 +++
 .../files/supercollider-3.11.0-fewer-qt-deps.patch | 126 
 .../files/supercollider-3.11.0-qt-5.15.patch   |  89 ++
 media-sound/supercollider/metadata.xml |   1 +
 .../supercollider/supercollider-3.11.0.ebuild  | 129 +
 6 files changed, 391 insertions(+)

diff --git a/media-sound/supercollider/Manifest 
b/media-sound/supercollider/Manifest
index d46670a6796..587d93ab6d0 100644
--- a/media-sound/supercollider/Manifest
+++ b/media-sound/supercollider/Manifest
@@ -1 +1,2 @@
 DIST SuperCollider-3.10.2-Source-linux.tar.bz2 11366481 BLAKE2B 
d01324ed65f7e8977c138709471e7b9000b1d05ce4c1c0ff83c9ca0ae6e3948b4933320c382b64ecd2aebc65597c963c9348dda09a8c2ec7bc2ea5a14473fe44
 SHA512 
f7d136cb03e32dfd0b72e36047deaa24d5edfac0f7e9eeaac35f8e991cd52b00db0701478e0daefb24bfbbc55b5cf240e3f3429fd46caa8d76daa21c7aebaf46
+DIST SuperCollider-3.11.0-Source.tar.bz2 18125654 BLAKE2B 
f73f2a75a132a4c3a3010ab093929a7aa6a1b534fe70115acd336a22ac8c6482ab6aef93c01f5d738bdd4504c75b1461dc555af9fdab8de8b16bd68a6854336f
 SHA512 
64fef4d751436337baf40ced068a496d3e9221f751dcde7bfc2857a79c094764dff814d1c0cf519380053ddcfdb2c3f2b8eb787d3cff03e522c19fd95951b1da

diff --git 
a/media-sound/supercollider/files/supercollider-3.11.0-boost-1.72.patch 
b/media-sound/supercollider/files/supercollider-3.11.0-boost-1.72.patch
new file mode 100644
index 000..94329b86791
--- /dev/null
+++ b/media-sound/supercollider/files/supercollider-3.11.0-boost-1.72.patch
@@ -0,0 +1,45 @@
+From 43b2b27c14186a9a3eff917d7598751ed298ae20 Mon Sep 17 00:00:00 2001
+From: Hector Martin 
+Date: Sun, 31 May 2020 21:25:12 +0900
+Subject: [PATCH 2/2] Fix build with Boost 1.72.0
+
+---
+ .../include/boost/sync/detail/throw_exception.hpp   | 4 
+ external_libraries/oscpack_build.cpp| 6 +++---
+ 2 files changed, 3 insertions(+), 7 deletions(-)
+
+diff --git 
a/external_libraries/boost_sync/include/boost/sync/detail/throw_exception.hpp 
b/external_libraries/boost_sync/include/boost/sync/detail/throw_exception.hpp
+index b5fdfabf8..a7d7fa7b3 100755
+--- 
a/external_libraries/boost_sync/include/boost/sync/detail/throw_exception.hpp
 
b/external_libraries/boost_sync/include/boost/sync/detail/throw_exception.hpp
+@@ -164,11 +164,7 @@ BOOST_NOINLINE BOOST_NORETURN void throw_exception(const 
char* func, const char*
+ 
+ #endif // !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) && 
!defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
+ 
+-#if !defined(BOOST_EXCEPTION_DISABLE)
+-#define BOOST_SYNC_DETAIL_HERE BOOST_THROW_EXCEPTION_CURRENT_FUNCTION, 
__FILE__, __LINE__
+-#else
+ #define BOOST_SYNC_DETAIL_HERE BOOST_CURRENT_FUNCTION, __FILE__, __LINE__
+-#endif
+ 
+ #define BOOST_SYNC_DETAIL_THROW_DEFAULT(ex)\
+ boost::sync::detail::throw_exception< ex >(BOOST_SYNC_DETAIL_HERE)
+diff --git a/external_libraries/oscpack_build.cpp 
b/external_libraries/oscpack_build.cpp
+index 3a658f3d3..1f6283d1c 100644
+--- a/external_libraries/oscpack_build.cpp
 b/external_libraries/oscpack_build.cpp
+@@ -1,8 +1,8 @@
+-#include 
++#include 
+ 
+-#ifdef BOOST_LITTLE_ENDIAN
++#if BOOST_ENDIAN_LITTLE_BYTE
+ #define OSC_HOST_LITTLE_ENDIAN
+-#elif defined(BOOST_BIG_ENDIAN)
++#elif BOOST_ENDIAN_BIG_BYTE
+ #define OSC_HOST_BIG_ENDIAN
+ #else
+ #error please define endianness
+-- 
+2.26.2
+

diff --git 
a/media-sound/supercollider/files/supercollider-3.11.0-fewer-qt-deps.patch 
b/media-sound/supercollider/files/supercollider-3.11.0-fewer-qt-deps.patch
new file mode 100644
index 000..8b1014d9991
--- /dev/null
+++ b/media-sound/supercollider/files/supercollider-3.11.0-fewer-qt-deps.patch
@@ -0,0 +1,126 @@
+From 5b655fbbf44ff5e67709667242a5feff707e1a51 Mon Sep 17 00:00:00 2001
+From: Hector Martin 
+Date: Mon, 1 Jun 2020 18:43:08 +0900
+Subject: [PATCH] Remove spurious Qt dependencies
+
+---
+ QtCollider/CMakeLists.txt | 10 +++---
+ QtCollider/widgets/QcCanvas.h |  2 --
+ README_LINUX.md   |  6 +++---
+ README_RASPBERRY_PI.md|  2 +-
+ editors/sc-ide/CMakeLists.txt | 13 +++--
+ 5 files changed, 10 insertions(+), 23 deletions(-)
+
+diff --git a/QtCollider/CMakeLists.txt b/QtCollider/CMakeLis

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

2020-06-22 Thread Andreas Sturmlechner
commit: 75ab45b2cad2326c705e33ff995887be8e0d8f8b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jun 22 20:14:25 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 22 20:25:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75ab45b2

media-sound/supercollider: Drop 3.10.2

Closes: https://bugs.gentoo.org/703464
Closes: https://bugs.gentoo.org/716378
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-sound/supercollider/Manifest |   1 -
 .../files/supercollider-3.10.2-boost-1.67.patch|  27 --
 .../files/supercollider-3.10.2-boost-1.70.patch|  53 ---
 .../files/supercollider-3.10.2-system-boost.patch  | 359 -
 .../supercollider/supercollider-3.10.2.ebuild  | 126 
 5 files changed, 566 deletions(-)

diff --git a/media-sound/supercollider/Manifest 
b/media-sound/supercollider/Manifest
index 587d93ab6d0..bb9a10b8786 100644
--- a/media-sound/supercollider/Manifest
+++ b/media-sound/supercollider/Manifest
@@ -1,2 +1 @@
-DIST SuperCollider-3.10.2-Source-linux.tar.bz2 11366481 BLAKE2B 
d01324ed65f7e8977c138709471e7b9000b1d05ce4c1c0ff83c9ca0ae6e3948b4933320c382b64ecd2aebc65597c963c9348dda09a8c2ec7bc2ea5a14473fe44
 SHA512 
f7d136cb03e32dfd0b72e36047deaa24d5edfac0f7e9eeaac35f8e991cd52b00db0701478e0daefb24bfbbc55b5cf240e3f3429fd46caa8d76daa21c7aebaf46
 DIST SuperCollider-3.11.0-Source.tar.bz2 18125654 BLAKE2B 
f73f2a75a132a4c3a3010ab093929a7aa6a1b534fe70115acd336a22ac8c6482ab6aef93c01f5d738bdd4504c75b1461dc555af9fdab8de8b16bd68a6854336f
 SHA512 
64fef4d751436337baf40ced068a496d3e9221f751dcde7bfc2857a79c094764dff814d1c0cf519380053ddcfdb2c3f2b8eb787d3cff03e522c19fd95951b1da

diff --git 
a/media-sound/supercollider/files/supercollider-3.10.2-boost-1.67.patch 
b/media-sound/supercollider/files/supercollider-3.10.2-boost-1.67.patch
deleted file mode 100644
index dd51d0b85d8..000
--- a/media-sound/supercollider/files/supercollider-3.10.2-boost-1.67.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From de567f9104af2b7b86d0de2f25eeb091a95e8579 Mon Sep 17 00:00:00 2001
-From: Tristan de Cacqueray 
-Date: Sun, 9 Jun 2019 02:16:49 +
-Subject: [PATCH] Fix compilation with boost-1.67
-
-When using a system boost version >1.67, the compilation fails because of:
-server/supernova/./utilities/time_tag.hpp: In member function 
'boost::posix_time::ptime nova::time_tag::to_ptime() const':
-supernova/./utilities/time_tag.hpp:232:102: error: no matching function for 
call to 'boost::date_time::subsecond_duration::subsecond_duration(double)'
-  232 | time_duration offset = seconds(get_secs() - ntp_offset) + 
microseconds(get_nanoseconds()/1000);

- server/supernova/utilities/time_tag.hpp | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/server/supernova/utilities/time_tag.hpp 
b/server/supernova/utilities/time_tag.hpp
-index 0f49955fd3..c1bb0e73cb 100644
 a/server/supernova/utilities/time_tag.hpp
-+++ b/server/supernova/utilities/time_tag.hpp
-@@ -179,7 +179,8 @@ class time_tag {
- #ifdef BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG
- time_duration offset = seconds(get_secs() - ntp_offset) + 
nanoseconds(get_nanoseconds());
- #else
--time_duration offset = seconds(get_secs() - ntp_offset) + 
microseconds(get_nanoseconds()/1000);
-+time_duration offset =
-+seconds(get_secs() - ntp_offset) + 
microseconds(static_cast(get_nanoseconds() / 1000));
- #endif
- return ptime(base, offset);
- }

diff --git 
a/media-sound/supercollider/files/supercollider-3.10.2-boost-1.70.patch 
b/media-sound/supercollider/files/supercollider-3.10.2-boost-1.70.patch
deleted file mode 100644
index 74fc05ac45c..000
--- a/media-sound/supercollider/files/supercollider-3.10.2-boost-1.70.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From ea95d667907e1c9d4ee3ad8b33b452d60059e3c8 Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Tue, 16 Jul 2019 17:30:38 +0200
-Subject: [PATCH] Fix build with boost-1.70 (get_io_service() removed)
-
-Fixes https://github.com/supercollider/supercollider/issues/4490
-

- server/supernova/sc/sc_osc_handler.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/server/supernova/sc/sc_osc_handler.cpp 
b/server/supernova/sc/sc_osc_handler.cpp
-index 5116a1be8..8c2418b09 100644
 a/server/supernova/sc/sc_osc_handler.cpp
-+++ b/server/supernova/sc/sc_osc_handler.cpp
-@@ -728,7 +728,7 @@ void sc_osc_handler::tcp_connection::handle_message() {
- 
- void sc_osc_handler::start_tcp_accept(void)
- {
--tcp_connection::pointer new_connection = 
tcp_connection::create(tcp_acceptor_.get_io_service());
-+tcp_connection::pointer new_connection = 
tcp_connection::create((boost::asio::io_context&)tcp_acceptor_.get_executor().context());
- 
- tcp_acceptor_.async_accept(
- new_connection->socket(),
--- 
-2.22.0
-
-From 53909b1ff2983442dd8d2fdeff6b4

[gentoo-commits] repo/gentoo:master commit in: dev-games/goatee/files/

2020-06-22 Thread James Le Cuirot
commit: b5761534791bc43e730de28a964be135fe879096
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon Jun 22 18:10:17 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jun 22 20:23:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5761534

dev-games/goatee: remove unused patch(es)

Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16374
Signed-off-by: James Le Cuirot  gentoo.org>

 dev-games/goatee/files/goatee-0.3.0-ghc-7.10.patch | 14 --
 1 file changed, 14 deletions(-)

diff --git a/dev-games/goatee/files/goatee-0.3.0-ghc-7.10.patch 
b/dev-games/goatee/files/goatee-0.3.0-ghc-7.10.patch
deleted file mode 100644
index e2881220fec..000
--- a/dev-games/goatee/files/goatee-0.3.0-ghc-7.10.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff --git a/tests/Game/Goatee/CommonTest.hs b/tests/Game/Goatee/CommonTest.hs
-index bf27662..33e4f24 100644
 a/tests/Game/Goatee/CommonTest.hs
-+++ b/tests/Game/Goatee/CommonTest.hs
-@@ -1 +1,2 @@
-+{-# LANGUAGE FlexibleContexts #-}
- -- This file is part of Goatee.
-diff --git a/tests/Game/Goatee/Lib/MonadTest.hs 
b/tests/Game/Goatee/Lib/MonadTest.hs
-index c5b505f..bf10f4e 100644
 a/tests/Game/Goatee/Lib/MonadTest.hs
-+++ b/tests/Game/Goatee/Lib/MonadTest.hs
-@@ -1 +1,2 @@
-+{-# LANGUAGE FlexibleContexts #-}
- -- This file is part of Goatee.



[gentoo-commits] repo/gentoo:master commit in: games-util/acc/

2020-06-22 Thread James Le Cuirot
commit: e2b9f0ceb1dbe7e236ac91fe9b71d1f11138df8f
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Jun 22 20:19:45 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jun 22 20:19:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2b9f0ce

games-util/acc: New package

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

 games-util/acc/Manifest|  1 +
 games-util/acc/acc-1.57.ebuild | 30 ++
 games-util/acc/metadata.xml| 11 +++
 3 files changed, 42 insertions(+)

diff --git a/games-util/acc/Manifest b/games-util/acc/Manifest
new file mode 100644
index 000..8ed92df6993
--- /dev/null
+++ b/games-util/acc/Manifest
@@ -0,0 +1 @@
+DIST acc-1.57.tar.gz 70969 BLAKE2B 
0c5d9f6778505881d9fa698da0958aea410a8d42f4b81c24277f59d0e9a601d44213e9399f0e693a210d0b935e57df4b6878fe1575005e5d573e19993404f570
 SHA512 
997bb6bb262743cacbf0606e7f6dcd00132a1f54eb24eddad92948c31ed552b3b678e72932150856fee57df2ab01fd25c29408f6c46a804614b883cf07532f3a

diff --git a/games-util/acc/acc-1.57.ebuild b/games-util/acc/acc-1.57.ebuild
new file mode 100644
index 000..ca25dbd7690
--- /dev/null
+++ b/games-util/acc/acc-1.57.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="ACS script compiler for use with ZDoom and Hexen"
+HOMEPAGE="https://zdoom.org/wiki/ACC";
+SRC_URI="https://github.com/rheit/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="Activision"
+SLOT="0"
+KEYWORDS="~amd64"
+
+# The Activision EULA is inappropriate but this was never resolved. :(
+# https://doomwiki.org/wiki/Raven_source_code_licensing
+RESTRICT="bindist mirror"
+
+src_configure() {
+   tc-export CC
+   append-cflags -Wall -Wextra
+}
+
+src_install() {
+   dobin ${PN}
+   dodoc readme.md
+
+   insinto /usr/share/${PN}
+   doins *.acs
+}

diff --git a/games-util/acc/metadata.xml b/games-util/acc/metadata.xml
new file mode 100644
index 000..95907e587a8
--- /dev/null
+++ b/games-util/acc/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   ga...@gentoo.org
+   Gentoo Games Project
+   
+   
+   rheit/acc
+   
+



[gentoo-commits] proj/kde:master commit in: Documentation/maintainers/

2020-06-22 Thread Andreas Sturmlechner
commit: fb473ff4157299cc5a9a3f62fdb4dae7b0107c87
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jun 22 14:56:22 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 22 19:52:24 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=fb473ff4

regenerate-files: Allow Frameworks sets to reference smaller (tier) sets

Same as is already done with Release Service sets.

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

 Documentation/maintainers/regenerate-files | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/Documentation/maintainers/regenerate-files 
b/Documentation/maintainers/regenerate-files
index 0c0dbf5785..947fb8daa9 100755
--- a/Documentation/maintainers/regenerate-files
+++ b/Documentation/maintainers/regenerate-files
@@ -23,7 +23,7 @@ pushd ../package.accept_keywords/ > /dev/null
 for release in $KF_RELEASES; do
echo -e "${HEADER}" > "kde-frameworks-${release}.keywords"
if [[ -d ".kde-frameworks-${release}" ]]; then
-   cat ".kde-frameworks-${release}/"* | grep -P -v 
'^>=kde-frameworks/(?!kf-env)' |sed '/^~.*[.-]$/s/$/ **/' >> 
"kde-frameworks-${release}.keywords"
+   cat ".kde-frameworks-${release}/"* | grep -P -v 
'^>=kde-frameworks/(?!kf-env)' | sed -e '/^~.*[.-]$/s/$/ **/' -e '/^@/d' >> 
"kde-frameworks-${release}.keywords"
fi
 done
 
@@ -62,7 +62,7 @@ if [[ -d .kde-frameworks-live.base ]]; then
echo -e "${HEADER}" > kde-frameworks-live.keywords
for file in .kde-frameworks-live.base/*; do
newfile=.kde-frameworks-live/$(basename "${file}")
-   sed '/^~.*[.-]$/s/$/ **/' "${file}" > "${newfile}"
+   sed -e '/^~.*[.-]$/s/$/ **/'  -e '/^@/d' "${file}" > 
"${newfile}"
done
cat .kde-frameworks-live/* >> kde-frameworks-live.keywords
 fi
@@ -104,6 +104,7 @@ for release in $KF_RELEASES live; do
echo -e "${HEADER}" > "kde-frameworks-${release}"
if [[ -d ".kde-frameworks-${release}" ]]; then
cat ".kde-frameworks-${release}/"* | grep -P -v 
'^>=kde-frameworks/(?!kf-env)' >> "kde-frameworks-${release}"
+   sed -i "kde-frameworks-${release}" -e "/^@/d"
fi
 done
 
@@ -129,7 +130,7 @@ for release in $KF_RELEASES live; do
echo -e "${HEADER}" > "kde-frameworks-${release}"
if [[ -d "../package.unmask/.kde-frameworks-${release}" ]]; then
cat "../package.unmask/.kde-frameworks-${release}/"* | grep -P 
-v '^>=kde-frameworks/(?!kf-env)' >> "kde-frameworks-${release}"
-   sed -i "kde-frameworks-${release}" -e 
"/^=/}"
+   sed -i "kde-frameworks-${release}" -e 
"/^=/}" -e 
'/^@/d'
fi
 done
 



[gentoo-commits] proj/kde:master commit in: Documentation/package.mask/, Documentation/package.unmask/, ...

2020-06-22 Thread Andreas Sturmlechner
commit: fe995228ef94777e30e595d8d3d1936906c996e2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jun 22 11:19:10 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 22 19:49:54 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=fe995228

Documentation: Regenerate KF live after Tier/PortingAids grouping

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

 .../.kde-frameworks-live/kde-frameworks-live   | 111 -
 .../kde-frameworks-live.keywords   | 111 -
 Documentation/package.mask/kde-frameworks-live | 111 -
 Documentation/package.unmask/kde-frameworks-live   | 111 -
 4 files changed, 248 insertions(+), 196 deletions(-)

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-live/kde-frameworks-live
 
b/Documentation/package.accept_keywords/.kde-frameworks-live/kde-frameworks-live
index e9db2ecfdd..624ea87fea 100644
--- 
a/Documentation/package.accept_keywords/.kde-frameworks-live/kde-frameworks-live
+++ 
b/Documentation/package.accept_keywords/.kde-frameworks-live/kde-frameworks-live
@@ -1,83 +1,96 @@
+# Tier 1
 ~kde-frameworks/attica- **
-~kde-frameworks/baloo- **
 ~kde-frameworks/bluez-qt- **
 ~kde-frameworks/breeze-icons- **
 ~kde-frameworks/breeze-icons-rcc- **
 ~kde-frameworks/extra-cmake-modules- **
-~kde-frameworks/frameworkintegration- **
-~kde-frameworks/kactivities- **
-~kde-frameworks/kactivities-stats- **
 ~kde-frameworks/kapidox- **
 ~kde-frameworks/karchive- **
-~kde-frameworks/kauth- **
-~kde-frameworks/kbookmarks- **
 ~kde-frameworks/kcalendarcore- **
-~kde-frameworks/kcmutils- **
+# TODO: future: kcgroups (not packaged)
 ~kde-frameworks/kcodecs- **
-~kde-frameworks/kcompletion- **
 ~kde-frameworks/kconfig- **
-~kde-frameworks/kconfigwidgets- **
-~kde-frameworks/kcontacts- **
 ~kde-frameworks/kcoreaddons- **
-~kde-frameworks/kcrash- **
 ~kde-frameworks/kdbusaddons- **
-~kde-frameworks/kdeclarative- **
-~kde-frameworks/kded- **
-~kde-frameworks/kdelibs4support- **
-~kde-frameworks/kdesignerplugin- **
-~kde-frameworks/kdesu- **
-~kde-frameworks/kdewebkit- **
 ~kde-frameworks/kdnssd- **
-~kde-frameworks/kdoctools- **
-~kde-frameworks/kemoticons- **
-~kde-frameworks/kfilemetadata- **
-~kde-frameworks/kglobalaccel- **
 ~kde-frameworks/kguiaddons- **
 ~kde-frameworks/kholidays- **
-~kde-frameworks/khtml- **
 ~kde-frameworks/ki18n- **
-~kde-frameworks/kiconthemes- **
 ~kde-frameworks/kidletime- **
-~kde-frameworks/kimageformats- **
-~kde-frameworks/kinit- **
-~kde-frameworks/kio- **
 ~kde-frameworks/kirigami- **
 ~kde-frameworks/kitemmodels- **
 ~kde-frameworks/kitemviews- **
-~kde-frameworks/kjobwidgets- **
-~kde-frameworks/kjs- **
-~kde-frameworks/kjsembed- **
-~kde-frameworks/kmediaplayer- **
-~kde-frameworks/knewstuff- **
-~kde-frameworks/knotifications- **
-~kde-frameworks/knotifyconfig- **
-~kde-frameworks/kpackage- **
-~kde-frameworks/kparts- **
-~kde-frameworks/kpeople- **
 ~kde-frameworks/kplotting- **
-~kde-frameworks/kpty- **
 ~kde-frameworks/kquickcharts- **
-~kde-frameworks/kross- **
-~kde-frameworks/krunner- **
-~kde-frameworks/kservice- **
-~kde-frameworks/ktexteditor- **
-~kde-frameworks/ktextwidgets- **
-~kde-frameworks/kunitconversion- **
-~kde-frameworks/kwallet- **
+# TODO: future: dev-libs/kuserfeedback
 ~kde-frameworks/kwayland- **
 ~kde-frameworks/kwidgetsaddons- **
 ~kde-frameworks/kwindowsystem- **
-~kde-frameworks/kxmlgui- **
-~kde-frameworks/kxmlrpcclient- **
 ~kde-frameworks/modemmanager-qt- **
 ~kde-frameworks/networkmanager-qt- **
 ~kde-frameworks/oxygen-icons- **
-~kde-frameworks/plasma- **
 ~kde-frameworks/prison- **
-~kde-frameworks/purpose- **
 ~kde-frameworks/qqc2-desktop-style- **
 ~kde-frameworks/solid- **
 ~kde-frameworks/sonnet- **
-~kde-frameworks/syndication- **
 ~kde-frameworks/syntax-highlighting- **
 ~kde-frameworks/threadweaver- **
+
+# Tier 2
+~kde-frameworks/kactivities- **
+~kde-frameworks/kauth- **
+~kde-frameworks/kcompletion- **
+~kde-frameworks/kcontacts- **
+~kde-frameworks/kcrash- **
+~kde-frameworks/kdoctools- **
+~kde-frameworks/kfilemetadata- **
+~kde-frameworks/kimageformats- **
+~kde-frameworks/kjobwidgets- **
+~kde-frameworks/knotifications- **
+~kde-frameworks/kpackage- **
+~kde-frameworks/kpeople- **
+~kde-frameworks/kpty- **
+# TODO: future: kquickimageeditor (not packaged)
+~kde-frameworks/kunitconversion- **
+~kde-frameworks/syndication- **
+
+# Tier 3
+~kde-frameworks/baloo- **
+~kde-frameworks/kactivities-stats- **
+~kde-frameworks/kbookmarks- **
+~kde-fram

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

2020-06-22 Thread Andreas Sturmlechner
commit: 2277a65031501095b0a4bee6d7eb87c26a11e541
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jun 22 11:28:53 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 22 19:52:46 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=2277a650

sets: Add kde-frameworks-{tier{1,2,3},portingaids}-live

Split from and now referenced within kde-frameworks-live.

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

 sets/kde-frameworks-live | 100 ++-
 sets/kde-frameworks-portingaids-live |  10 
 sets/kde-frameworks-tier1-live   |  37 +
 sets/kde-frameworks-tier2-live   |  17 ++
 sets/kde-frameworks-tier3-live   |  26 +
 5 files changed, 95 insertions(+), 95 deletions(-)

diff --git a/sets/kde-frameworks-live b/sets/kde-frameworks-live
index 83bb6b725c..99ce848353 100644
--- a/sets/kde-frameworks-live
+++ b/sets/kde-frameworks-live
@@ -1,96 +1,6 @@
-# Tier 1
-~kde-frameworks/attica-
-~kde-frameworks/bluez-qt-
-~kde-frameworks/breeze-icons-
-~kde-frameworks/breeze-icons-rcc-
-~kde-frameworks/extra-cmake-modules-
-~kde-frameworks/kapidox-
-~kde-frameworks/karchive-
-~kde-frameworks/kcalendarcore-
-# TODO: future: kcgroups (not packaged)
-~kde-frameworks/kcodecs-
-~kde-frameworks/kconfig-
-~kde-frameworks/kcoreaddons-
-~kde-frameworks/kdbusaddons-
-~kde-frameworks/kdnssd-
-~kde-frameworks/kguiaddons-
-~kde-frameworks/kholidays-
-~kde-frameworks/ki18n-
-~kde-frameworks/kidletime-
-~kde-frameworks/kirigami-
-~kde-frameworks/kitemmodels-
-~kde-frameworks/kitemviews-
-~kde-frameworks/kplotting-
-~kde-frameworks/kquickcharts-
-# TODO: future: dev-libs/kuserfeedback
-~kde-frameworks/kwayland-
-~kde-frameworks/kwidgetsaddons-
-~kde-frameworks/kwindowsystem-
-~kde-frameworks/modemmanager-qt-
-~kde-frameworks/networkmanager-qt-
-~kde-frameworks/oxygen-icons-
-~kde-frameworks/prison-
-~kde-frameworks/qqc2-desktop-style-
-~kde-frameworks/solid-
-~kde-frameworks/sonnet-
-~kde-frameworks/syntax-highlighting-
-~kde-frameworks/threadweaver-
-
-# Tier 2
-~kde-frameworks/kactivities-
-~kde-frameworks/kauth-
-~kde-frameworks/kcompletion-
-~kde-frameworks/kcontacts-
-~kde-frameworks/kcrash-
-~kde-frameworks/kdoctools-
-~kde-frameworks/kfilemetadata-
-~kde-frameworks/kimageformats-
-~kde-frameworks/kjobwidgets-
-~kde-frameworks/knotifications-
-~kde-frameworks/kpackage-
-~kde-frameworks/kpeople-
-~kde-frameworks/kpty-
-# TODO: future: kquickimageeditor (not packaged)
-~kde-frameworks/kunitconversion-
-~kde-frameworks/syndication-
-
-# Tier 3
-~kde-frameworks/baloo-
-~kde-frameworks/kactivities-stats-
-~kde-frameworks/kbookmarks-
-~kde-frameworks/kcmutils-
-~kde-frameworks/kconfigwidgets-
-# TODO: KF 5.72: ~kde-frameworks/kdav-
-~kde-frameworks/kdeclarative-
-~kde-frameworks/kded-
-~kde-frameworks/kdesu-
-~kde-frameworks/kemoticons-
-~kde-frameworks/kglobalaccel-
-~kde-frameworks/kiconthemes-
-~kde-frameworks/kinit-
-~kde-frameworks/kio-
-~kde-frameworks/knewstuff-
-~kde-frameworks/knotifyconfig-
-~kde-frameworks/kparts-
-~kde-frameworks/krunner-
-~kde-frameworks/kservice-
-~kde-frameworks/ktexteditor-
-~kde-frameworks/ktextwidgets-
-~kde-frameworks/kwallet-
-~kde-frameworks/kxmlgui-
-~kde-frameworks/plasma-
-~kde-frameworks/purpose-
-
-# Tier 4
+@kde-frameworks-tier1-live
+@kde-frameworks-tier2-live
+@kde-frameworks-tier3-live
+# Tier 4: Provide extra features to other Frameworks to integrate with Plasma.
 ~kde-frameworks/frameworkintegration-
-
-# Porting Aids
-~kde-frameworks/kdelibs4support-
-~kde-frameworks/kdesignerplugin-
-~kde-frameworks/kdewebkit-
-~kde-frameworks/khtml-
-~kde-frameworks/kjs-
-~kde-frameworks/kjsembed-
-~kde-frameworks/kmediaplayer-
-~kde-frameworks/kross-
-~kde-frameworks/kxmlrpcclient-
+@kde-frameworks-portingaids-live

diff --git a/sets/kde-frameworks-portingaids-live 
b/sets/kde-frameworks-portingaids-live
new file mode 100644
index 00..bd9a466e58
--- /dev/null
+++ b/sets/kde-frameworks-portingaids-live
@@ -0,0 +1,10 @@
+# PortingAids: Code and utilities for transition from kdelibs 4 to Frameworks 
5.
+~kde-frameworks/kdelibs4support-
+~kde-frameworks/kdesignerplugin-
+~kde-frameworks/kdewebkit-
+~kde-frameworks/khtml-
+~kde-frameworks/kjs-
+~kde-frameworks/kjsembed-
+~kde-frameworks/kmediaplayer-
+~kde-frameworks/kross-
+~kde-frameworks/kxmlrpcclient-

diff --git a/sets/kde-frameworks-tier1-live b/sets/kde-frameworks-tier1-live
new file mode 100644
index 00..d208b829d2
--- /dev/null
+++ b/sets/kde-frameworks-tier1-live
@@ -0,0 +1,37 @@
+# Tier 1: Depend only on Qt and possibly a few thi

[gentoo-commits] proj/kde:master commit in: Documentation/package.accept_keywords/.kde-frameworks-live/, ...

2020-06-22 Thread Andreas Sturmlechner
commit: 1f33b790785c10366832eb5c634fff02c6d25fda
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jun 22 11:39:52 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 22 19:52:46 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=1f33b790

Documentation: Regenerate KF live after Tier/PortingAids set split

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

 .../kde-frameworks-portingaids-live|  1 +
 .../kde-frameworks-tier1-live  |  1 +
 .../kde-frameworks-tier2-live  |  1 +
 .../kde-frameworks-tier3-live  |  1 +
 .../.kde-frameworks-live/kde-frameworks-live   | 96 +-
 .../kde-frameworks-portingaids-live| 10 +++
 .../.kde-frameworks-live/kde-frameworks-tier1-live | 37 +
 .../.kde-frameworks-live/kde-frameworks-tier2-live | 17 
 .../.kde-frameworks-live/kde-frameworks-tier3-live | 26 ++
 .../kde-frameworks-live.keywords   | 34 
 Documentation/package.mask/kde-frameworks-live | 34 
 .../kde-frameworks-portingaids-live|  1 +
 .../.kde-frameworks-live/kde-frameworks-tier1-live |  1 +
 .../.kde-frameworks-live/kde-frameworks-tier2-live |  1 +
 .../.kde-frameworks-live/kde-frameworks-tier3-live |  1 +
 Documentation/package.unmask/kde-frameworks-live   | 34 
 16 files changed, 144 insertions(+), 152 deletions(-)

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-live.base/kde-frameworks-portingaids-live
 
b/Documentation/package.accept_keywords/.kde-frameworks-live.base/kde-frameworks-portingaids-live
new file mode 12
index 00..527e05749d
--- /dev/null
+++ 
b/Documentation/package.accept_keywords/.kde-frameworks-live.base/kde-frameworks-portingaids-live
@@ -0,0 +1 @@
+../../../sets/kde-frameworks-portingaids-live
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-live.base/kde-frameworks-tier1-live
 
b/Documentation/package.accept_keywords/.kde-frameworks-live.base/kde-frameworks-tier1-live
new file mode 12
index 00..9fe4d1075e
--- /dev/null
+++ 
b/Documentation/package.accept_keywords/.kde-frameworks-live.base/kde-frameworks-tier1-live
@@ -0,0 +1 @@
+../../../sets/kde-frameworks-tier1-live
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-live.base/kde-frameworks-tier2-live
 
b/Documentation/package.accept_keywords/.kde-frameworks-live.base/kde-frameworks-tier2-live
new file mode 12
index 00..38aa45c19d
--- /dev/null
+++ 
b/Documentation/package.accept_keywords/.kde-frameworks-live.base/kde-frameworks-tier2-live
@@ -0,0 +1 @@
+../../../sets/kde-frameworks-tier2-live
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-live.base/kde-frameworks-tier3-live
 
b/Documentation/package.accept_keywords/.kde-frameworks-live.base/kde-frameworks-tier3-live
new file mode 12
index 00..25221d33a4
--- /dev/null
+++ 
b/Documentation/package.accept_keywords/.kde-frameworks-live.base/kde-frameworks-tier3-live
@@ -0,0 +1 @@
+../../../sets/kde-frameworks-tier3-live
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-live/kde-frameworks-live
 
b/Documentation/package.accept_keywords/.kde-frameworks-live/kde-frameworks-live
index 624ea87fea..6b7f779264 100644
--- 
a/Documentation/package.accept_keywords/.kde-frameworks-live/kde-frameworks-live
+++ 
b/Documentation/package.accept_keywords/.kde-frameworks-live/kde-frameworks-live
@@ -1,96 +1,2 @@
-# Tier 1
-~kde-frameworks/attica- **
-~kde-frameworks/bluez-qt- **
-~kde-frameworks/breeze-icons- **
-~kde-frameworks/breeze-icons-rcc- **
-~kde-frameworks/extra-cmake-modules- **
-~kde-frameworks/kapidox- **
-~kde-frameworks/karchive- **
-~kde-frameworks/kcalendarcore- **
-# TODO: future: kcgroups (not packaged)
-~kde-frameworks/kcodecs- **
-~kde-frameworks/kconfig- **
-~kde-frameworks/kcoreaddons- **
-~kde-frameworks/kdbusaddons- **
-~kde-frameworks/kdnssd- **
-~kde-frameworks/kguiaddons- **
-~kde-frameworks/kholidays- **
-~kde-frameworks/ki18n- **
-~kde-frameworks/kidletime- **
-~kde-frameworks/kirigami- **
-~kde-frameworks/kitemmodels- **
-~kde-frameworks/kitemviews- **
-~kde-frameworks/kplotting- **
-~kde-frameworks/kquickcharts- **
-# TODO: future: dev-libs/kuserfeedback
-~kde-frameworks/kwayland- **
-~kde-frameworks/kwidgetsaddons- **
-~kde-frameworks/kwindowsystem- **
-~kde-frameworks/modemmanager-qt- **
-~kde-frameworks/networkmanager-qt- **
-~kde-frameworks/oxygen-icons- **
-~kde-frameworks/prison- **
-~kde-frameworks/qqc2-desktop-style- **
-~kde-frameworks/solid- **
-~kde-frameworks/sonnet- **
-~kde-frameworks/syntax-highlighting- **
-~kde-frameworks/thread

[gentoo-commits] proj/kde:master commit in: Documentation/maintainers/

2020-06-22 Thread Andreas Sturmlechner
commit: a9ca853e0d0ef629bf8fe8dd8c37698e86969c40
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jun 22 15:18:42 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 22 19:52:41 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=a9ca853e

regenerate-files: Break up some of the longer lines

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

 Documentation/maintainers/regenerate-files | 24 
 1 file changed, 16 insertions(+), 8 deletions(-)

diff --git a/Documentation/maintainers/regenerate-files 
b/Documentation/maintainers/regenerate-files
index 947fb8daa9..94f3a20cee 100755
--- a/Documentation/maintainers/regenerate-files
+++ b/Documentation/maintainers/regenerate-files
@@ -23,7 +23,8 @@ pushd ../package.accept_keywords/ > /dev/null
 for release in $KF_RELEASES; do
echo -e "${HEADER}" > "kde-frameworks-${release}.keywords"
if [[ -d ".kde-frameworks-${release}" ]]; then
-   cat ".kde-frameworks-${release}/"* | grep -P -v 
'^>=kde-frameworks/(?!kf-env)' | sed -e '/^~.*[.-]$/s/$/ **/' -e '/^@/d' >> 
"kde-frameworks-${release}.keywords"
+   cat ".kde-frameworks-${release}/"* | grep -P -v 
'^>=kde-frameworks/(?!kf-env)' | \
+   sed -e '/^~.*[.-]$/s/$/ **/' -e '/^@/d' >> 
"kde-frameworks-${release}.keywords"
fi
 done
 
@@ -37,7 +38,8 @@ done
 for release in $SERVICE_RELEASES; do
echo -e "${HEADER}" > "kde-release-service-${release}.keywords"
if [[ -d ".kde-release-service-${release}" ]]; then
-   cat ".kde-release-service-${release}/"* | sed -e 
'/^~.*[.-]$/s/$/ **/' -e '/^@/d' >> 
"kde-release-service-${release}.keywords"
+   cat ".kde-release-service-${release}/"* | \
+   sed -e '/^~.*[.-]$/s/$/ **/' -e '/^@/d' >> 
"kde-release-service-${release}.keywords"
fi
 done
 
@@ -49,7 +51,8 @@ for release in $SERVICE_RELEASES; do
echo -e "${HEADER}" > 
"kde-release-service-${release}.49..keywords"
for file in ".kde-release-service-${release}"/*; do

newfile=".kde-release-service-${release}.49."/$(basename "${file}")
-   sed -e 
"/^<[a-z-]*\/.*\.50$/{s/\.50/.49./;s/^ "${newfile}"
+   sed -e 
"/^<[a-z-]*\/.*\.50$/{s/\.50/.49./;s/^ "${newfile}"
# echo "${newfile}"
done
cat ".kde-release-service-${release}.49."/* >> 
"kde-release-service-${release}.49..keywords"
@@ -103,7 +106,8 @@ pushd ../package.unmask/ > /dev/null
 for release in $KF_RELEASES live; do
echo -e "${HEADER}" > "kde-frameworks-${release}"
if [[ -d ".kde-frameworks-${release}" ]]; then
-   cat ".kde-frameworks-${release}/"* | grep -P -v 
'^>=kde-frameworks/(?!kf-env)' >> "kde-frameworks-${release}"
+   cat ".kde-frameworks-${release}/"* | \
+   grep -P -v '^>=kde-frameworks/(?!kf-env)' >> 
"kde-frameworks-${release}"
sed -i "kde-frameworks-${release}" -e "/^@/d"
fi
 done
@@ -129,8 +133,10 @@ pushd ../package.mask/ > /dev/null
 for release in $KF_RELEASES live; do
echo -e "${HEADER}" > "kde-frameworks-${release}"
if [[ -d "../package.unmask/.kde-frameworks-${release}" ]]; then
-   cat "../package.unmask/.kde-frameworks-${release}/"* | grep -P 
-v '^>=kde-frameworks/(?!kf-env)' >> "kde-frameworks-${release}"
-   sed -i "kde-frameworks-${release}" -e 
"/^=/}" -e 
'/^@/d'
+   cat "../package.unmask/.kde-frameworks-${release}/"* | \
+   grep -P -v '^>=kde-frameworks/(?!kf-env)' >> 
"kde-frameworks-${release}"
+   sed -i "kde-frameworks-${release}" \
+   -e 
"/^=/}" -e 
'/^@/d'
fi
 done
 
@@ -138,7 +144,8 @@ for release in $PLASMA_RELEASES live; do
echo -e "${HEADER}" > "kde-plasma-${release}"
if [[ -d "../package.unmask/.kde-plasma-${release}" ]]; then
cat "../package.unmask/.kde-plasma-${release}/"* >> 
"kde-plasma-${release}"
-   sed -i "kde-plasma-${release}" -e 
"/^=/}"
+   sed -i "kde-plasma-${release}" \
+   -e 
"/^=/}"
fi
 done
 
@@ -146,7 +153,8 @@ for release in $SERVICE_RELEASES live; do
echo -e "${HEADER}" > "kde-release-service-${release}"
if [[ -d "../package.unmask/.kde-release-service-${release}" ]]; then
cat "../package.unmask/.kde-release-service-${release}/"* >> 
"kde-release-service-${release}"
-   sed -i "kde-release-service-${release}" -e 
"/^=/}" 
-e '/^@/d'
+   sed -i "kde-release-service-${release}" \
+   -e 
"/^=/}" 
-e '/^@/d'
fi
 done
 popd > /dev/null



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

2020-06-22 Thread Andreas Sturmlechner
commit: e515864b436881151b249386c3424d238064ef48
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jun 22 11:15:54 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 22 19:49:54 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e515864b

sets: kde-frameworks-live: Separate Tier {1,2,3,4} and PortingAids

Add TODO for future Frameworks.
See also: https://api.kde.org/frameworks/index.html

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

 sets/kde-frameworks-live | 111 ++-
 1 file changed, 62 insertions(+), 49 deletions(-)

diff --git a/sets/kde-frameworks-live b/sets/kde-frameworks-live
index 3d80869b32..83bb6b725c 100644
--- a/sets/kde-frameworks-live
+++ b/sets/kde-frameworks-live
@@ -1,83 +1,96 @@
+# Tier 1
 ~kde-frameworks/attica-
-~kde-frameworks/baloo-
 ~kde-frameworks/bluez-qt-
 ~kde-frameworks/breeze-icons-
 ~kde-frameworks/breeze-icons-rcc-
 ~kde-frameworks/extra-cmake-modules-
-~kde-frameworks/frameworkintegration-
-~kde-frameworks/kactivities-
-~kde-frameworks/kactivities-stats-
 ~kde-frameworks/kapidox-
 ~kde-frameworks/karchive-
-~kde-frameworks/kauth-
-~kde-frameworks/kbookmarks-
 ~kde-frameworks/kcalendarcore-
-~kde-frameworks/kcmutils-
+# TODO: future: kcgroups (not packaged)
 ~kde-frameworks/kcodecs-
-~kde-frameworks/kcompletion-
 ~kde-frameworks/kconfig-
-~kde-frameworks/kconfigwidgets-
-~kde-frameworks/kcontacts-
 ~kde-frameworks/kcoreaddons-
-~kde-frameworks/kcrash-
 ~kde-frameworks/kdbusaddons-
-~kde-frameworks/kdeclarative-
-~kde-frameworks/kded-
-~kde-frameworks/kdelibs4support-
-~kde-frameworks/kdesignerplugin-
-~kde-frameworks/kdesu-
-~kde-frameworks/kdewebkit-
 ~kde-frameworks/kdnssd-
-~kde-frameworks/kdoctools-
-~kde-frameworks/kemoticons-
-~kde-frameworks/kfilemetadata-
-~kde-frameworks/kglobalaccel-
 ~kde-frameworks/kguiaddons-
 ~kde-frameworks/kholidays-
-~kde-frameworks/khtml-
 ~kde-frameworks/ki18n-
-~kde-frameworks/kiconthemes-
 ~kde-frameworks/kidletime-
-~kde-frameworks/kimageformats-
-~kde-frameworks/kinit-
-~kde-frameworks/kio-
 ~kde-frameworks/kirigami-
 ~kde-frameworks/kitemmodels-
 ~kde-frameworks/kitemviews-
-~kde-frameworks/kjobwidgets-
-~kde-frameworks/kjs-
-~kde-frameworks/kjsembed-
-~kde-frameworks/kmediaplayer-
-~kde-frameworks/knewstuff-
-~kde-frameworks/knotifications-
-~kde-frameworks/knotifyconfig-
-~kde-frameworks/kpackage-
-~kde-frameworks/kparts-
-~kde-frameworks/kpeople-
 ~kde-frameworks/kplotting-
-~kde-frameworks/kpty-
 ~kde-frameworks/kquickcharts-
-~kde-frameworks/kross-
-~kde-frameworks/krunner-
-~kde-frameworks/kservice-
-~kde-frameworks/ktexteditor-
-~kde-frameworks/ktextwidgets-
-~kde-frameworks/kunitconversion-
-~kde-frameworks/kwallet-
+# TODO: future: dev-libs/kuserfeedback
 ~kde-frameworks/kwayland-
 ~kde-frameworks/kwidgetsaddons-
 ~kde-frameworks/kwindowsystem-
-~kde-frameworks/kxmlgui-
-~kde-frameworks/kxmlrpcclient-
 ~kde-frameworks/modemmanager-qt-
 ~kde-frameworks/networkmanager-qt-
 ~kde-frameworks/oxygen-icons-
-~kde-frameworks/plasma-
 ~kde-frameworks/prison-
-~kde-frameworks/purpose-
 ~kde-frameworks/qqc2-desktop-style-
 ~kde-frameworks/solid-
 ~kde-frameworks/sonnet-
-~kde-frameworks/syndication-
 ~kde-frameworks/syntax-highlighting-
 ~kde-frameworks/threadweaver-
+
+# Tier 2
+~kde-frameworks/kactivities-
+~kde-frameworks/kauth-
+~kde-frameworks/kcompletion-
+~kde-frameworks/kcontacts-
+~kde-frameworks/kcrash-
+~kde-frameworks/kdoctools-
+~kde-frameworks/kfilemetadata-
+~kde-frameworks/kimageformats-
+~kde-frameworks/kjobwidgets-
+~kde-frameworks/knotifications-
+~kde-frameworks/kpackage-
+~kde-frameworks/kpeople-
+~kde-frameworks/kpty-
+# TODO: future: kquickimageeditor (not packaged)
+~kde-frameworks/kunitconversion-
+~kde-frameworks/syndication-
+
+# Tier 3
+~kde-frameworks/baloo-
+~kde-frameworks/kactivities-stats-
+~kde-frameworks/kbookmarks-
+~kde-frameworks/kcmutils-
+~kde-frameworks/kconfigwidgets-
+# TODO: KF 5.72: ~kde-frameworks/kdav-
+~kde-frameworks/kdeclarative-
+~kde-frameworks/kded-
+~kde-frameworks/kdesu-
+~kde-frameworks/kemoticons-
+~kde-frameworks/kglobalaccel-
+~kde-frameworks/kiconthemes-
+~kde-frameworks/kinit-
+~kde-frameworks/kio-
+~kde-frameworks/knewstuff-
+~kde-frameworks/knotifyconfig-
+~kde-frameworks/kparts-
+~kde-frameworks/krunner-
+~kde-frameworks/kservice-
+~kde-frameworks/ktexteditor-
+~kde-frameworks/ktextwidgets-
+~kde-frameworks/kwallet-
+~kde-frameworks/kxmlgui-
+~kde-frameworks/plasma-
+~kde-frameworks/

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

2020-06-22 Thread Mart Raudsepp
commit: 5f6855e67969b8860478e11d077b396c91b2d384
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:46:37 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f6855e6

dev-python/jaraco-collections: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-python/jaraco-collections/jaraco-collections-3.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/jaraco-collections/jaraco-collections-3.0.0.ebuild 
b/dev-python/jaraco-collections/jaraco-collections-3.0.0.ebuild
index fcddc6e1249..937044b5f9f 100644
--- a/dev-python/jaraco-collections/jaraco-collections-3.0.0.ebuild
+++ b/dev-python/jaraco-collections/jaraco-collections-3.0.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-06-22 Thread Mart Raudsepp
commit: 4f7c03c0d95dd900264ac4f145af7512bd20081b
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:57:20 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f7c03c0

dev-python/tempora: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/dev-python/tempora/tempora-3.0.0.ebuild 
b/dev-python/tempora/tempora-3.0.0.ebuild
index 6a6ecf1dc60..68cf5598085 100644
--- a/dev-python/tempora/tempora-3.0.0.ebuild
+++ b/dev-python/tempora/tempora-3.0.0.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_PN}-${PV}"
 
 LICENSE="MIT"
 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="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Tk-TableMatrix/

2020-06-22 Thread Mart Raudsepp
commit: f407bc681a8c76dfcc71d06b0263e2ca2a0f2570
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:32:14 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f407bc68

dev-perl/Tk-TableMatrix: arm64 keyworded (bug #722280)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-perl/Tk-TableMatrix/Tk-TableMatrix-1.230.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Tk-TableMatrix/Tk-TableMatrix-1.230.0-r2.ebuild 
b/dev-perl/Tk-TableMatrix/Tk-TableMatrix-1.230.0-r2.ebuild
index f08215ade93..cb194b28399 100644
--- a/dev-perl/Tk-TableMatrix/Tk-TableMatrix-1.230.0-r2.ebuild
+++ b/dev-perl/Tk-TableMatrix/Tk-TableMatrix-1.230.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ DESCRIPTION="Create and manipulate tables in Perl + Tk"
 
 LICENSE="Artistic"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~sparc ~x86"
 IUSE=""
 
 DEPEND="dev-perl/Tk"



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

2020-06-22 Thread Mart Raudsepp
commit: 0ba75c9870513cb02f0091f9c8fb3252a607c2a2
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 06:14:56 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ba75c98

dev-python/zope-testing: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-python/zope-testing/zope-testing-4.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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



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

2020-06-22 Thread Mart Raudsepp
commit: 52f4109a2cc9222494a9a362ac9b3025791b081f
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 06:13:16 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52f4109a

media-gfx/xdot: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/media-gfx/xdot/xdot-1.1.ebuild b/media-gfx/xdot/xdot-1.1.ebuild
index e7945acb322..ab6cb8df3ba 100644
--- a/media-gfx/xdot/xdot-1.1.ebuild
+++ b/media-gfx/xdot/xdot-1.1.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} = * ]]; then
GIT_ECLASS="git-r3"
SRC_URI=""
 else
-   KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
+   KEYWORDS="amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 x86"
MY_P="${MY_PN}-${PV}"
S="${WORKDIR}/${MY_P}"
SRC_URI="https://github.com/jrfonseca/${MY_PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"



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

2020-06-22 Thread Mart Raudsepp
commit: 99b4af4e23f587d1a0026bbaf88ae61b07affa4b
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 06:02:16 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99b4af4e

dev-python/repoze-lru: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-python/repoze-lru/repoze-lru-0.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/repoze-lru/repoze-lru-0.7-r1.ebuild 
b/dev-python/repoze-lru/repoze-lru-0.7-r1.ebuild
index 084a3b60077..46120582cb0 100644
--- a/dev-python/repoze-lru/repoze-lru-0.7-r1.ebuild
+++ b/dev-python/repoze-lru/repoze-lru-0.7-r1.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="repoze"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 x86"
 
 RDEPEND="dev-python/namespace-repoze[${PYTHON_USEDEP}]"
 



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

2020-06-22 Thread Mart Raudsepp
commit: 9e012080a685e0cdb2c4ad9d398ed6fd119e3b03
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:43:21 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e012080

dev-python/cheroot: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/dev-python/cheroot/cheroot-8.3.0.ebuild 
b/dev-python/cheroot/cheroot-8.3.0.ebuild
index 5a42020fdd3..0785fecc4cf 100644
--- a/dev-python/cheroot/cheroot-8.3.0.ebuild
+++ b/dev-python/cheroot/cheroot-8.3.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/C/${PN/c/C}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~x86"
 # Unit tests are temporarily disabled for this version, see below for
 # what needs to be done.
 #IUSE="test"



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

2020-06-22 Thread Mart Raudsepp
commit: 2174cf8cbb213153b0fac2a51462d608b8948a91
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:52:34 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2174cf8c

dev-python/zc-lockfile: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-python/zc-lockfile/zc-lockfile-2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/zc-lockfile/zc-lockfile-2.0.ebuild 
b/dev-python/zc-lockfile/zc-lockfile-2.0.ebuild
index 048092af73c..2fb597296ff 100644
--- a/dev-python/zc-lockfile/zc-lockfile-2.0.ebuild
+++ b/dev-python/zc-lockfile/zc-lockfile-2.0.ebuild
@@ -15,7 +15,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 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="test"
 
 RDEPEND=">=dev-python/setuptools-3.3[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/LWP-UserAgent-Determined/

2020-06-22 Thread Mart Raudsepp
commit: 7085d4df884491c6d29ef359cca07847fa1b20e4
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:30:56 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7085d4df

dev-perl/LWP-UserAgent-Determined: arm64 keyworded (bug #722280)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 .../LWP-UserAgent-Determined/LWP-UserAgent-Determined-1.70.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-perl/LWP-UserAgent-Determined/LWP-UserAgent-Determined-1.70.0.ebuild 
b/dev-perl/LWP-UserAgent-Determined/LWP-UserAgent-Determined-1.70.0.ebuild
index f1107b033f2..a145957af44 100644
--- a/dev-perl/LWP-UserAgent-Determined/LWP-UserAgent-Determined-1.70.0.ebuild
+++ b/dev-perl/LWP-UserAgent-Determined/LWP-UserAgent-Determined-1.70.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="A virtual browser that retries errors"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux 
~x86-solaris"
 IUSE=""
 
 RDEPEND="dev-perl/libwww-perl"



[gentoo-commits] repo/gentoo:master commit in: media-tv/tvheadend/

2020-06-22 Thread Mart Raudsepp
commit: 67175b75122ac4b287e61c80d7484dda6da2c149
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:34:17 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67175b75

media-tv/tvheadend: arm64 keyworded (bug #722280)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-tv/tvheadend/tvheadend-4.2.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-tv/tvheadend/tvheadend-4.2.8-r1.ebuild 
b/media-tv/tvheadend/tvheadend-4.2.8-r1.ebuild
index 9c12a6de1a1..17189591cf0 100644
--- a/media-tv/tvheadend/tvheadend-4.2.8-r1.ebuild
+++ b/media-tv/tvheadend/tvheadend-4.2.8-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 
 IUSE="+capmt +constcw +cwc dbus debug dvbcsa dvben50221 +dvb +ffmpeg hdhomerun 
+imagecache +inotify iptv libressl satip systemd +timeshift uriparser xmltv 
zeroconf zlib"
 



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

2020-06-22 Thread Mart Raudsepp
commit: c0f098270ce20b135bb2e419138e09fb869c5e0e
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:41:56 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0f09827

dev-python/pytest-services: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/dev-python/pytest-services/pytest-services-2.0.1.ebuild 
b/dev-python/pytest-services/pytest-services-2.0.1.ebuild
index 60d08abcefa..7b9808fa273 100644
--- a/dev-python/pytest-services/pytest-services-2.0.1.ebuild
+++ b/dev-python/pytest-services/pytest-services-2.0.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/pytest-dev/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="test"
 
 RDEPEND="



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

2020-06-22 Thread Mart Raudsepp
commit: 08b25e3b030593de8f8dc57b8a4b91fb670aa22f
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:55:40 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08b25e3b

dev-python/jaraco-functools: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/dev-python/jaraco-functools/jaraco-functools-3.0.1.ebuild 
b/dev-python/jaraco-functools/jaraco-functools-3.0.1.ebuild
index b997d09613d..cb0e63963d2 100644
--- a/dev-python/jaraco-functools/jaraco-functools-3.0.1.ebuild
+++ b/dev-python/jaraco-functools/jaraco-functools-3.0.1.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/${MY_PN}-${PV}"
 
 LICENSE="MIT"
 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="test"
 RESTRICT="!test? ( test )"
 



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

2020-06-22 Thread Mart Raudsepp
commit: 4775430519d4ca624bddbb2656a17b3b5a5b6f35
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:45:00 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47754305

dev-python/portend: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/dev-python/portend/portend-2.6.ebuild 
b/dev-python/portend/portend-2.6.ebuild
index 3fc08e4c32c..0e7cb595daa 100644
--- a/dev-python/portend/portend-2.6.ebuild
+++ b/dev-python/portend/portend-2.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 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="test"
 
 RDEPEND=">=dev-python/tempora-1.8[${PYTHON_USEDEP}]"



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

2020-06-22 Thread Mart Raudsepp
commit: 258c41bd3b5168a42462f1593a48aaeb5485
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:53:58 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=258c

dev-python/pylibmc: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/dev-python/pylibmc/pylibmc-1.6.1-r1.ebuild 
b/dev-python/pylibmc/pylibmc-1.6.1-r1.ebuild
index c07978f3890..42c032a8b63 100644
--- a/dev-python/pylibmc/pylibmc-1.6.1-r1.ebuild
+++ b/dev-python/pylibmc/pylibmc-1.6.1-r1.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/lericson/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-06-22 Thread Mart Raudsepp
commit: ea810ded3ff42cd1a078059f493f8825bd3a5446
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:49:36 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea810ded

dev-python/requests-toolbelt: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-python/requests-toolbelt/requests-toolbelt-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/requests-toolbelt/requests-toolbelt-0.9.1.ebuild 
b/dev-python/requests-toolbelt/requests-toolbelt-0.9.1.ebuild
index e56387117e4..c6e899c5d0f 100644
--- a/dev-python/requests-toolbelt/requests-toolbelt-0.9.1.ebuild
+++ b/dev-python/requests-toolbelt/requests-toolbelt-0.9.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="test"
 
 RDEPEND="

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

2020-06-22 Thread Mart Raudsepp
commit: c86ffb2c31e25fe8a2b1bd42a8fe07326036f65e
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 06:16:22 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c86ffb2c

dev-python/namespace-repoze: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/dev-python/namespace-repoze/namespace-repoze-1.ebuild 
b/dev-python/namespace-repoze/namespace-repoze-1.ebuild
index adf448164b3..ae9ae8dde34 100644
--- a/dev-python/namespace-repoze/namespace-repoze-1.ebuild
+++ b/dev-python/namespace-repoze/namespace-repoze-1.ebuild
@@ -12,7 +12,7 @@ SRC_URI=""
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 x86"
 IUSE=""
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



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

2020-06-22 Thread Mart Raudsepp
commit: ed9d92d7ff8c699275dda374ddca81d972d56af7
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:51:01 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed9d92d7

dev-python/routes: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/dev-python/routes/routes-2.4.1-r1.ebuild 
b/dev-python/routes/routes-2.4.1-r1.ebuild
index 06e5798198e..4af90af70c2 100644
--- a/dev-python/routes/routes-2.4.1-r1.ebuild
+++ b/dev-python/routes/routes-2.4.1-r1.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc"
 
 RDEPEND="



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

2020-06-22 Thread Mart Raudsepp
commit: 582327f7b60e29d20d89c5ad58721bc1af18ad11
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:47:52 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=582327f7

dev-python/objgraph: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/dev-python/objgraph/objgraph-3.4.1.ebuild 
b/dev-python/objgraph/objgraph-3.4.1.ebuild
index 86764006685..3c4bbdb00f8 100644
--- a/dev-python/objgraph/objgraph-3.4.1.ebuild
+++ b/dev-python/objgraph/objgraph-3.4.1.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://mg.pov.lt/objgraph/";
 SRC_URI="mirror://pypi/o/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 IUSE="doc"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/SOAP-Lite/

2020-06-22 Thread Mart Raudsepp
commit: a7aae7a9d04228094eb4ca2a88f3f79dda95a1cd
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:28:51 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7aae7a9

dev-perl/SOAP-Lite: arm64 keyworded (bug #722280)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-perl/SOAP-Lite/SOAP-Lite-1.260.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/SOAP-Lite/SOAP-Lite-1.260.0.ebuild 
b/dev-perl/SOAP-Lite/SOAP-Lite-1.260.0.ebuild
index c364c211460..0a4ca09d3d6 100644
--- a/dev-perl/SOAP-Lite/SOAP-Lite-1.260.0.ebuild
+++ b/dev-perl/SOAP-Lite/SOAP-Lite-1.260.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ DESCRIPTION="Lightweight interface to the SOAP protocol both 
on client and serve
 IUSE="ssl test xmpp"
 RESTRICT="!test? ( test )"
 SLOT="0"
-KEYWORDS="amd64 ~arm ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
 
 myconf="${myconf} --noprompt"
 



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

2020-06-22 Thread Mart Raudsepp
commit: 82e309eac7c9baf3c3009da18da0cb72c46f6e26
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 06:03:54 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82e309ea

dev-python/betamax: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/dev-python/betamax/betamax-0.8.1.ebuild 
b/dev-python/betamax/betamax-0.8.1.ebuild
index 93bbed43e93..f134539c79b 100644
--- a/dev-python/betamax/betamax-0.8.1.ebuild
+++ b/dev-python/betamax/betamax-0.8.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 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="test"
 
 RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"



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

2020-06-22 Thread Mart Raudsepp
commit: b2ab9c7baa1bae815f44dd27a791d597fe92ab15
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 06:00:24 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2ab9c7b

dev-python/jaraco-classes: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-python/jaraco-classes/jaraco-classes-3.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/jaraco-classes/jaraco-classes-3.1.0.ebuild 
b/dev-python/jaraco-classes/jaraco-classes-3.1.0.ebuild
index 360b3c03b64..35e7247e99a 100644
--- a/dev-python/jaraco-classes/jaraco-classes-3.1.0.ebuild
+++ b/dev-python/jaraco-classes/jaraco-classes-3.1.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
 
 LICENSE="MIT"
 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="test"
 RESTRICT="!test? ( test )"
 



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

2020-06-22 Thread Mart Raudsepp
commit: f1fb821da962af8b6cc1fe394a3f41f0fa9af570
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:40:26 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1fb821d

dev-python/cherrypy: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/dev-python/cherrypy/cherrypy-18.5.0.ebuild 
b/dev-python/cherrypy/cherrypy-18.5.0.ebuild
index 66e4cc80ed0..1156d983160 100644
--- a/dev-python/cherrypy/cherrypy-18.5.0.ebuild
+++ b/dev-python/cherrypy/cherrypy-18.5.0.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="ssl test"
 
 RDEPEND=">=dev-python/cheroot-8.2.1[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: media-tv/xmltv/

2020-06-22 Thread Mart Raudsepp
commit: de835a5e350024f470d79436d435df8d22ebbb4b
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:33:27 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de835a5e

media-tv/xmltv: arm64 keyworded (bug #722280)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-tv/xmltv/xmltv-0.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-tv/xmltv/xmltv-0.6.1.ebuild 
b/media-tv/xmltv/xmltv-0.6.1.ebuild
index e7906a788a6..c89237ffcaa 100644
--- a/media-tv/xmltv/xmltv-0.6.1.ebuild
+++ b/media-tv/xmltv/xmltv-0.6.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/XMLTV/xmltv/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-linux"
+KEYWORDS="~amd64 ~arm64 ~x86 ~x86-linux"
 
 IUSE="ar ch-search dk dtvla eu-dotmedia eu-epgdata eu-xmltvse fi fi-sv fr
 huro il is it na-dd na-dtv na-tvmedia pt-meo pt-vodafone se-swedb se-tvzon tr



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DateTime-Format-SQLite/

2020-06-22 Thread Mart Raudsepp
commit: bb39d2793ffbd9736cb6cf26253f984572c6a80f
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:29:46 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb39d279

dev-perl/DateTime-Format-SQLite: arm64 keyworded (bug #722280)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-perl/DateTime-Format-SQLite/DateTime-Format-SQLite-0.110.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-perl/DateTime-Format-SQLite/DateTime-Format-SQLite-0.110.0.ebuild 
b/dev-perl/DateTime-Format-SQLite/DateTime-Format-SQLite-0.110.0.ebuild
index 0c831634536..6a2e913495b 100644
--- a/dev-perl/DateTime-Format-SQLite/DateTime-Format-SQLite-0.110.0.ebuild
+++ b/dev-perl/DateTime-Format-SQLite/DateTime-Format-SQLite-0.110.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Parse and format SQLite dates and times"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~x86-solaris"
 IUSE=""
 
 RDEPEND=">=dev-perl/DateTime-0.51



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

2020-06-22 Thread Mart Raudsepp
commit: 97623f62359663a75dd6f600db5c9858eab8392d
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Jun 22 05:58:40 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jun 22 19:02:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97623f62

dev-python/jaraco-text: arm64 stable (bug #727058)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-python/jaraco-text/jaraco-text-3.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/jaraco-text/jaraco-text-3.2.0.ebuild 
b/dev-python/jaraco-text/jaraco-text-3.2.0.ebuild
index 2c978bef2db..5690e9e1e5b 100644
--- a/dev-python/jaraco-text/jaraco-text-3.2.0.ebuild
+++ b/dev-python/jaraco-text/jaraco-text-3.2.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] proj/kde:master commit in: kde-plasma/kwayland-integration/, kde-plasma/kdeplasma-addons/, ...

2020-06-22 Thread Andreas Sturmlechner
nt-.ebuild kde-plasma/powerdevil/powerdevil-5.19.49..ebuild 
kde-plasma/powerdevil/powerdevil-.ebuild 
kde-plasma/sddm-kcm/sddm-kcm-5.19.49..ebuild 
kde-plasma/sddm-kcm/sddm-kcm-.ebuild
X-VCS-Directories: kde-plasma/breeze/ kde-plasma/ksysguard/ 
kde-plasma/plasma-browser-integration/ kde-plasma/kscreen/ kde-plasma/khotkeys/ 
kde-plasma/plasma-vault/ kde-plasma/bluedevil/ kde-plasma/kwallet-pam/ 
kde-plasma/kwrited/ kde-plasma/kdecoration/ kde-plasma/polkit-kde-agent/ 
kde-plasma/plasma-integration/ kde-plasma/milou/ kde-plasma/oxygen/ 
kde-plasma/plasma-pa/ kde-plasma/discover/ kde-plasma/plymouth-kcm/ 
kde-plasma/kgamma/ kde-plasma/sddm-kcm/ kde-plasma/powerdevil/ 
kde-plasma/kscreenlocker/ kde-plasma/kwayland-integration/ 
kde-plasma/kdeplasma-addons/
X-VCS-Committer: asturm
X-VCS-Committer-Name: Andreas Sturmlechner
X-VCS-Revision: a9c608663f3b49ed873ea506430b499514593a4b
X-VCS-Branch: master
Date: Mon, 22 Jun 2020 19:02:40 + (UTC)

commit: a9c608663f3b49ed873ea506430b499514593a4b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jun 22 18:59:51 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 22 19:02:31 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=a9c60866

kde-plasma: Sort DEPENDs

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

 kde-plasma/bluedevil/bluedevil-.ebuild |  8 
 kde-plasma/breeze/breeze-5.19.49..ebuild   |  8 
 kde-plasma/breeze/breeze-.ebuild   |  8 
 kde-plasma/discover/discover-5.19.49..ebuild   | 14 +++---
 kde-plasma/discover/discover-.ebuild   | 14 +++---
 kde-plasma/kdecoration/kdecoration-5.19.49..ebuild |  2 +-
 kde-plasma/kdecoration/kdecoration-.ebuild |  2 +-
 .../kdeplasma-addons/kdeplasma-addons-5.19.49..ebuild  | 10 +-
 kde-plasma/kdeplasma-addons/kdeplasma-addons-.ebuild   | 10 +-
 kde-plasma/kgamma/kgamma-5.19.49..ebuild   |  4 ++--
 kde-plasma/kgamma/kgamma-.ebuild   |  4 ++--
 kde-plasma/khotkeys/khotkeys-5.19.49..ebuild   |  8 
 kde-plasma/khotkeys/khotkeys-.ebuild   |  8 
 kde-plasma/kscreen/kscreen-5.19.49..ebuild | 12 ++--
 kde-plasma/kscreen/kscreen-.ebuild | 12 ++--
 kde-plasma/kscreenlocker/kscreenlocker-5.19.49..ebuild | 14 +++---
 kde-plasma/kscreenlocker/kscreenlocker-.ebuild | 14 +++---
 kde-plasma/ksysguard/ksysguard-5.19.49..ebuild |  8 
 kde-plasma/ksysguard/ksysguard-.ebuild |  8 
 kde-plasma/kwallet-pam/kwallet-pam-5.19.49..ebuild |  2 +-
 kde-plasma/kwallet-pam/kwallet-pam-.ebuild |  2 +-
 .../kwayland-integration-5.19.49..ebuild   |  4 ++--
 .../kwayland-integration/kwayland-integration-.ebuild  |  4 ++--
 kde-plasma/kwrited/kwrited-5.19.49..ebuild |  4 ++--
 kde-plasma/kwrited/kwrited-.ebuild |  4 ++--
 kde-plasma/milou/milou-5.19.49..ebuild |  6 +++---
 kde-plasma/milou/milou-.ebuild |  6 +++---
 kde-plasma/oxygen/oxygen-5.19.49..ebuild   | 10 +-
 kde-plasma/oxygen/oxygen-.ebuild   | 10 +-
 .../plasma-browser-integration-5.19.49..ebuild |  6 +++---
 .../plasma-browser-integration-.ebuild |  6 +++---
 .../plasma-integration-5.19.49..ebuild | 10 +-
 .../plasma-integration/plasma-integration-.ebuild  | 10 +-
 kde-plasma/plasma-pa/plasma-pa-5.19.49..ebuild | 12 ++--
 kde-plasma/plasma-pa/plasma-pa-.ebuild | 12 ++--
 kde-plasma/plasma-vault/plasma-vault-.ebuild   |  8 
 kde-plasma/plymouth-kcm/plymouth-kcm-5.19.49..ebuild   |  8 
 kde-plasma/plymouth-kcm/plymouth-kcm-.ebuild   |  8 
 .../polkit-kde-agent/polkit-kde-agent-5.19.49..ebuild  |  6 +++---
 kde-plasma/polkit-kde-agent/polkit-kde-agent-.ebuild   |  6 +++---
 kde-plasma/powerdevil/powerdevil-5.19.49..ebuild   |  8 
 kde-plasma/powerdevil/powerdevil-.ebuild   |  8 
 kde-plasma/sddm-kcm/sddm-kcm-5.19.49..ebuild   |  6 +++---
 kde-plasma/sddm-kcm/sddm-kcm-.ebuild   |  6 +++---
 44 files changed, 170 insertions(+), 170 deletions(-)

diff --git a/kde-plasma/bluedevil/bluedevil-.ebuild 
b/kde-plasma/bluedevil/bluedevil-.ebuild
index 7c548964c7..25cd502942 100644
--- a/kde-plasma/bluedevil/bluedevil-.ebuild
+++ b/kde-plasma/bluedevil/bluedevil-.ebuild
@@ -17,6 +17,10 @@ KEYWORDS=""
 IUSE=""
 
 DEPEND="
+ 

[gentoo-commits] repo/gentoo:master commit in: net-wireless/unifi/

2020-06-22 Thread Ben Kohler
commit: 54ac722edd477c3a12a86962656e9a7e1439da5a
Author: Ben Kohler  gentoo  org>
AuthorDate: Sun Jun 21 12:56:51 2020 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Mon Jun 22 18:45:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54ac722e

net-wireless/unifi: 5.13.29 stable, drop 5.12 series

Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Ben Kohler  gentoo.org>

 net-wireless/unifi/Manifest |  1 -
 net-wireless/unifi/unifi-5.12.72.ebuild | 73 -
 net-wireless/unifi/unifi-5.13.29.ebuild |  2 +-
 3 files changed, 1 insertion(+), 75 deletions(-)

diff --git a/net-wireless/unifi/Manifest b/net-wireless/unifi/Manifest
index 6931d1ce3e5..92193c5cb20 100644
--- a/net-wireless/unifi/Manifest
+++ b/net-wireless/unifi/Manifest
@@ -1,4 +1,3 @@
-DIST unifi-5.12.72.zip 117402382 BLAKE2B 
a847982972aecfc344b3054ac8364270f8de38452e818a9a575266550292fbc9fe5554937191cdfb208002a412e3fd7956a85ae9edc12fed65461a95ee801915
 SHA512 
a3764d4a3b39a16bc08c3206a8ceb37614d9bbd356e2e56f18eb33cc42de5c9cf21ed2a99689d0e5b794356163a0159911916513eed154b6c8ad0aee9db0e01b
 DIST unifi-5.13.29.zip 151004470 BLAKE2B 
0980c012bddbbeb5d18d26ebc8427137e410577e22a9c49b799f0e8fa39343191bc361b9345919917e53ded5ff0af2b35fd71e48072a09d5533a5e89feb9a20c
 SHA512 
01b9811e288e377aff727416b32d966af5cc7a45e0f03f08f8892c89ad40a1833f4150bc42d8732468fcd2242c790bcd62b343132149a868c0d95f38b9f17dda
 DIST unifi-5.13.32.zip 151006051 BLAKE2B 
d853a05c361b26a47f2b3e296a41d3086a05347f6384ff71b4e78d156d5a0a5309eb5bb0b05de31721a8dd21f917d0c5b87697a337ec096a1701640796defbb8
 SHA512 
f1258d4f8fa73f43385260245ca31ee5d159c99db005609a22b09cbe551a886ebf685069bf95be5a0609335fe9d7290bc04158eb2430bdaa238aa7a13da681ab
 DIST unifi-5.14.7.zip 151237089 BLAKE2B 
0c00e282d5f2a3ca9077bd4455d21b28d63548be50ff3170cfde84620a9f482bf84f48047162cc9ecca247046ed49f6a3e0e77eedc5d472cc277cf85639d966e
 SHA512 
802b9338b333892e5f84a583f93eca29d9e421a5ab301f2f5e9bff9f61a5e8a0489dfb5a67320ccfcc923c9adac259ee4d7fe6153bc95aa18b613aeed02e6b45

diff --git a/net-wireless/unifi/unifi-5.12.72.ebuild 
b/net-wireless/unifi/unifi-5.12.72.ebuild
deleted file mode 100644
index 17ff873d18c..000
--- a/net-wireless/unifi/unifi-5.12.72.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-# Set this var for any releases except stable
-#RC_SUFFIX=""
-
-inherit systemd
-
-DESCRIPTION="A Management Controller for Ubiquiti Networks UniFi APs"
-HOMEPAGE="https://www.ubnt.com";
-SRC_URI="https://dl.ui.com/unifi/${PV}${RC_SUFFIX}/UniFi.unix.zip -> ${P}.zip"
-
-KEYWORDS="amd64"
-LICENSE="Apache-1.0 Apache-2.0 BSD-1 BSD-2 BSD CDDL EPL-1.0 GPL-2 LGPL-2.1 
LGPL-3 MIT ubiquiti"
-SLOT="0/5.12"
-IUSE="systemd"
-
-RDEPEND="
-   acct-group/unifi
-   acct-user/unifi
-   dev-db/mongodb
-   virtual/jre:1.8
-"
-
-DEPEND="app-arch/unzip"
-
-RESTRICT="bindist mirror"
-
-S="${WORKDIR}/UniFi"
-
-DOCS=( "readme.txt" )
-
-QA_PREBUILT="usr/lib/unifi/lib/native/Linux/x86_64/*.so"
-
-src_prepare() {
-   # Remove unneeded files Linux, Mac and Windows
-   rm -r lib/native/Linux/{aarch64,armv7} lib/native/{Mac,Windows} || die
-   if ! use systemd; then
-   rm lib/native/Linux/x86_64/libubnt_sdnotify_jni.so || die
-   fi
-
-   default
-}
-
-src_install() {
-   # Install MongoDB wrapper script, to avoid problems with >= 3.6.0
-   # See 
https://community.ubnt.com/t5/UniFi-Routing-Switching/MongoDB-3-6/td-p/2195435
-   exeinto /usr/lib/unifi/bin
-   newexe "${FILESDIR}"/mongod-wrapper mongod
-
-   insinto /usr/lib/unifi
-   doins -r dl lib webapps
-
-   diropts -o unifi -g unifi
-   keepdir /var/lib/unifi/{conf,data,run,tmp,work} /var/log/unifi
-
-   for symlink in conf data run tmp work; do
-   dosym ../../../var/lib/unifi/${symlink} 
/usr/lib/unifi/${symlink}
-   done
-   dosym ../../../var/log/unifi /usr/lib/unifi/logs
-
-   newinitd "${FILESDIR}"/unifi.initd-r1 unifi
-   systemd_dounit "${FILESDIR}"/unifi.service
-
-   newconfd "${FILESDIR}"/unifi.confd unifi
-
-   echo 'CONFIG_PROTECT="/var/lib/unifi"' > "${T}"/99unifi || die
-   doenvd "${T}"/99unifi
-
-   einstalldocs
-}

diff --git a/net-wireless/unifi/unifi-5.13.29.ebuild 
b/net-wireless/unifi/unifi-5.13.29.ebuild
index a8dc73fd3b7..c9bdb8d27e6 100644
--- a/net-wireless/unifi/unifi-5.13.29.ebuild
+++ b/net-wireless/unifi/unifi-5.13.29.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="A Management Controller for Ubiquiti Networks 
UniFi APs"
 HOMEPAGE="https://www.ubnt.com";
 SRC_URI="https://dl.ui.com/unifi/${PV}${RC_SUFFIX}/UniFi.unix.zip -> ${P}.zip"
 
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 LICENSE="Apache-1.0 Apache-2.0 BSD-1 BSD-2 BSD CDDL EPL-1.0 GPL-2 LGPL-2.1 
LGPL-3 MIT ubiquiti"
 SLOT="0/5.13"
 IUSE="systemd"



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/svn2git/files/, dev-vcs/svn2git/

2020-06-22 Thread Andreas Sturmlechner
commit: cd4dbe74372202a17c8d602b3d31db774617102a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri May 22 21:22:55 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 22 18:40:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd4dbe74

dev-vcs/svn2git: Drop <=1.0.13-r1

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

 dev-vcs/svn2git/Manifest   |  3 --
 dev-vcs/svn2git/files/svn2git-1.0.10-version.patch | 23 --
 dev-vcs/svn2git/files/svn2git-1.0.13-src-pro.patch | 23 --
 .../files/svn2git-1.0.2.1-include-path.patch   | 13 --
 dev-vcs/svn2git/svn2git-1.0.11-r1.ebuild   | 53 --
 dev-vcs/svn2git/svn2git-1.0.12.ebuild  | 47 ---
 dev-vcs/svn2git/svn2git-1.0.13-r1.ebuild   | 51 -
 dev-vcs/svn2git/svn2git-1.0.13.ebuild  | 47 ---
 8 files changed, 260 deletions(-)

diff --git a/dev-vcs/svn2git/Manifest b/dev-vcs/svn2git/Manifest
index 55b1f116f66..95e7a8d4c47 100644
--- a/dev-vcs/svn2git/Manifest
+++ b/dev-vcs/svn2git/Manifest
@@ -1,6 +1,3 @@
-DIST svn2git-1.0.11.tar.gz 30986 BLAKE2B 
76300c05e070364b4bec8340534dd494fb93bc6b3965c938918821c3321eb59d2e691163b418e2ab7ece131776d9fd550a05345fb56d449d68c530c3f90d3f95
 SHA512 
8fa082d8da2dfc9687ebb4269b3861a053f83afb71a5c0666155bdb179d7799de3f37f3d58cabe02069bda8e8fd306bb729ba04709c0654ba8a5c24952142de9
-DIST svn2git-1.0.12.tar.gz 43591 BLAKE2B 
b771c85c664e5721a345fa3437262ca80bf97b12fbeb45186973b878185b067b94145ba21e515acd55c44056ef2e5389f18a6ed63f3b7130dd35b672ef2af39b
 SHA512 
f8248b2bb7c21bd9803c33e070e1627e5b536eb5d50b239cedf8496979f7fe66aa55e298f92b777c1b28036ca6001f936b569238e5dd7a2dfc8282a06b2b7359
-DIST svn2git-1.0.13.tar.gz 43738 BLAKE2B 
97e9b90402d3c7eedf0fafd3b68429c99d93522dcfe190f88e64b744cb86e5fec0bdd0fabfef39018e290a425a53a2089df88250ff03e447f2963e2ad99fa0e0
 SHA512 
7cc9a9d70da285533f7f34672fb8f6571cb031d2dd4fc9df904b9e3acf64d97f42027a19bed82478c75a237febf3c8e12ba27a1abcd98403fe24247e5a26a96a
 DIST svn2git-1.0.16.tar.gz 44489 BLAKE2B 
0be673592a6032b0f46f7ab80e50862e6979a6540d17eadb2c0e4c3f40737283fb17cc51340810bbfc17dba7ee258537d5618de95da3843851e20ae843a47626
 SHA512 
11289c98fcae98ec2137b778c064e73f47957c987a8d413946a8cde44d679565eae878e69e3a60b5c48c0753dd4935d001eb6ba28253cea995ee4fd40379b583
 DIST svn2git-1.0.17.tar.gz 46473 BLAKE2B 
ab862a310f8d21b33d49f5152df458fb1524abe2e353e6395d7b20d80ee3967338ca04ff5e282623937ca13b38e9018ba81d4c3e89f3c69e1002bff7ddd8621a
 SHA512 
6d02ffa0923bcc80878c08e5a4f2f00476485e34d1c7361ddfa8bdfd521c0d36a22b46e7cd872e617ecd604f2d724166ea95008338bba41ee7e1200dc919baf4
 DIST svn2git-1.0.18.tar.gz 53514 BLAKE2B 
1e40318e484df4eee9ab3586b73cc6a7d9599f8f04e31531e2591dc0bb6f84190d35fb6b9128dd512bab59648e838f479fd81894f97cfce7af4365e0932b26e4
 SHA512 
ff851a5c3a225c8b6efa9fbf90bd72439bc1303f8138384c2bac779d6cfe52c77125ec3b80b320205e08bbee9910c5203a95c112909c3336750938d2271c2517

diff --git a/dev-vcs/svn2git/files/svn2git-1.0.10-version.patch 
b/dev-vcs/svn2git/files/svn2git-1.0.10-version.patch
deleted file mode 100644
index 894cf2c2a10..000
--- a/dev-vcs/svn2git/files/svn2git-1.0.10-version.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From d8b1c8c774a61666e7c62bf5beb8f0f1b4a3e01a Mon Sep 17 00:00:00 2001
-From: Sebastian Pipping 
-Date: Tue, 21 May 2013 23:11:25 +0200
-Subject: [PATCH] Stop using Git SHA1 version string
-
-diff --git a/src/src.pro b/src/src.pro
-index da6d40d..2626a6f 100644
 a/src/src.pro
-+++ b/src/src.pro
-@@ -6,10 +6,7 @@ SVN_INCLUDE = /usr/include/subversion-1 
/usr/local/include/subversion-1
- APR_INCLUDE = /usr/include/apr-1.0 /usr/include/apr-1 /usr/local/include/apr-1
- exists(local-config.pri):include(local-config.pri)
- 
--VERSION = $$system(git --no-pager show --pretty=oneline --no-notes | head -1 
| cut -b-40)
--!isEmpty(VERSION){
--  VERSION = $${VERSION}
--}
-+VERSION = $$(SVN_ALL_FAST_EXPORT_VERSION)
- 
- VERSTR = '\\"$${VERSION}\\"'  # place quotes around the version string
- DEFINES += VER=\"$${VERSTR}\" # create a VER macro containing the version 
string
--- 
-1.8.2.1

diff --git a/dev-vcs/svn2git/files/svn2git-1.0.13-src-pro.patch 
b/dev-vcs/svn2git/files/svn2git-1.0.13-src-pro.patch
deleted file mode 100644
index 74ee4306b3c..000
--- a/dev-vcs/svn2git/files/svn2git-1.0.13-src-pro.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From 59a038796e6bb55b11b6d82f7d5aae42399da38a Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Bj=C3=B6rn=20Kautler?= 
-Date: Fri, 12 Apr 2019 01:39:51 +0200
-Subject: [PATCH] Fix evaluation of emptyness of SVN_LIBDIR that sometimes
- always gives false, sometime always true, but never what is intended
-

- src/src.pro | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/src.pro b/src/src.pro
-index 426d304..cfbd865 100644
 a/src/src.pro
-+++ b/src/sr

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

2020-06-22 Thread Mike Pagano
commit: f426ab7e10dc7d3ae1fa54c8f5c3026d5ac663c8
Author: Mike Pagano  gentoo  org>
AuthorDate: Mon Jun 22 18:35:32 2020 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Jun 22 18:35:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f426ab7e

sys-kernel/gentoo-sources: Linux patch 5.4.48

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Mike Pagano  gentoo.org>

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-5.4.48.ebuild| 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 0fd0089ca3d..c78ffc5e5f0 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -73,6 +73,9 @@ DIST genpatches-5.4-46.extras.tar.xz 1764 BLAKE2B 
80470783d8e6f2fc3ef681e113bc51
 DIST genpatches-5.4-47.base.tar.xz 1555488 BLAKE2B 
4662bd4c69d3c3f59c85620c2be6dcefdb31ebd76ecbd8e65f264fe6815c6f4619693329e9d2ae30aad7c4a2b7bd726be0bf3ba77bd35b489a964502feacbda7
 SHA512 
71a1dc9d9f3ad4ddcf323455ff0de17a8a7825d54edef4cda8c17809d213550f2cff2e7e181dd087a6cdaa96e038105a141273ed10fb5ea01d170352ee498a2f
 DIST genpatches-5.4-47.experimental.tar.xz 6144 BLAKE2B 
c8960836306beb9db234f6b8f853971efd16ce581356eb3f7ca438b2c0122608bb97b3f52ca862f9170163fef0809b4a466cbf3c50f550ab985056de91df5d43
 SHA512 
e5b0d03101e2bbd879942392675d5b0825ad2fdfd44346607cfda9098734b3e7a3b160a2936b8b95297dd2d942b8f92142d55527d696d5c7eb7e1bed71fc5fde
 DIST genpatches-5.4-47.extras.tar.xz 1764 BLAKE2B 
e8e7f4b48c5b9d74f3a76d9dd07a9a549a96a402670207658e15e5f2c8f6f24f1e4f2f68ad8709f2d13d1b7931c421556eb2771b4854dce8d9fd579561f6d66b
 SHA512 
d8b3daf929a7fbfb1623677f8295c70c7fb37c3a7cfe233cda909a39c429f62fd527400bda45e3956e937bbfdb607a2e155f1dc4942565d0b419e201c05d65ea
+DIST genpatches-5.4-48.base.tar.xz 1620972 BLAKE2B 
45f358c85092ba422f8c411e91da90ccfc4b607f9c095dbe9ff02bc6adfbab4b35b03763316999810364d18ed3323fa613b70117e6f8454b2ba74744c1266b0e
 SHA512 
b99974f5491b6103bb3e6b3b97e613322001bec40e49a4edc53893e94df66b7cc03370ca28af62d21dda995a477e395c16c22b8595ac96723ae66f2747fc9df4
+DIST genpatches-5.4-48.experimental.tar.xz 6144 BLAKE2B 
33e0e921370e8224026984f721ddf952ae05980c405b4e7de930ac76e25097f4fbecd13a1ca4fbdd73afa6c68c8dd32dd7e6938212c79daf52f705289b91809a
 SHA512 
c12c332f115843369010cb049872ec8c190e001abf537bc793c9a120a5dd8ec773fe971b749d95f96c590b659fac22e2a7f9b2b1e55093c4d0d542c6486b2536
+DIST genpatches-5.4-48.extras.tar.xz 1768 BLAKE2B 
3f281c1c36c2a52e4fe2419592377baf4553c5fc61088911e50a901f96a1f4d89dc3e1b441b4b02575fca77ef6c371ccbecf8c55ff2eb9fbe14a7047451ae873
 SHA512 
9d2dbd829c53a310549811c2f133b19e4525c103827c5c5935cbd09d790eec105957dcbaee10cbe6409e0b7e00065c91b29a52e6d2bbf8e41859f5e4987de98a
 DIST genpatches-5.6-20.base.tar.xz 474872 BLAKE2B 
ee8eb1db2f33a8f3b6dbc700f92b7ba124072b5c39ed7a7ceea114daf6d571eb7ced5d36e09fc90b5d3d9a9c36b87a6c4372f92b8f422f5d45aaa56eb7b20641
 SHA512 
05e69032d1152692dd93d47212e80d2ad816aa3d3290b0019db41f77e9ab486adb8312472c753ada6c94d715553cc9d205920580297c9c49e173ef4dd0e5
 DIST genpatches-5.6-20.experimental.tar.xz 13704 BLAKE2B 
40dd9f344fbbfde4a7cd1efa7dab9c5b5155d3e0431b0c6bcfec26c484dd8111f4a1e525340e5a26d67d3675ae77ca9be6e326e42f1332d91c18c2ec3d2b8ba1
 SHA512 
874de82056c0be899f028ba3318af6e18708b2b89cb0536ab0e46163aa813bffe05395c29c6993cd7612fde73faa2061fd8d9040479de9c00c0b966bdf6439c7
 DIST genpatches-5.6-20.extras.tar.xz 1764 BLAKE2B 
ffa3cdebb5e9a0f22d23f106d0a3f4395d878277d3c62e2df1e2d333542b9c8ab3cb076a50092d1d19b6288bd39571275037246380b3944c003cc2c309b09732
 SHA512 
704b9c25aea54d746c83eb96797068af3c7fd1e39966f4e21a3f6242a3b0ad5bf749865088d1df9b93f4fb765e49f96dcca5929c5c194abdb25d7fd3e36d531c

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.4.48.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.4.48.ebuild
new file mode 100644
index 000..bfd86bf6334
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.4.48.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="48"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches";
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



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

2020-06-22 Thread Sergei Trofimovich
commit: de8e45392a8228b38d349f7448a90a0bf11a6808
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 22 18:30:49 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 22 18:35:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de8e4539

dev-libs/iniparser: stable 3.1-r2 for hppa, bug #647588

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

 dev-libs/iniparser/iniparser-3.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/iniparser/iniparser-3.1-r2.ebuild 
b/dev-libs/iniparser/iniparser-3.1-r2.ebuild
index 85704921387..357f9b4f3b5 100644
--- a/dev-libs/iniparser/iniparser-3.1-r2.ebuild
+++ b/dev-libs/iniparser/iniparser-3.1-r2.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://ndevilla.free.fr/iniparser/";
 SRC_URI="http://ndevilla.free.fr/iniparser/${P}.tar.gz";
 LICENSE="MIT"
 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="doc examples static-libs"
 
 DEPEND="doc? ( app-doc/doxygen )



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

2020-06-22 Thread Sergei Trofimovich
commit: 9644b465808f5708269e705c04ceff087d4b8273
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 22 18:32:33 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 22 18:35:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9644b465

dev-libs/tre: stable 0.8.0-r2 for hppa, bug #597616

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

 dev-libs/tre/tre-0.8.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/tre/tre-0.8.0-r2.ebuild b/dev-libs/tre/tre-0.8.0-r2.ebuild
index e0fc19639f1..aad4e57c486 100644
--- a/dev-libs/tre/tre-0.8.0-r2.ebuild
+++ b/dev-libs/tre/tre-0.8.0-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://laurikari.net/tre/${P}.tar.bz2";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ~ppc64 sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="nls static-libs"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-libs/qtav/, media-libs/qtav/files/

2020-06-22 Thread Andreas Sturmlechner
commit: ae5836a1f3059809069c07510c3ed960492accfe
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jun 21 17:28:20 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 22 18:31:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae5836a1

media-libs/qtav: Fix build with Qt 5.15

Reported-by: Daniel Rammelt  icloud.com>
Closes: https://bugs.gentoo.org/727410
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-libs/qtav/files/qtav-1.12.0-qt5.15.patch | 22 ++
 media-libs/qtav/qtav-1.12.0-r2.ebuild  |  1 +
 2 files changed, 23 insertions(+)

diff --git a/media-libs/qtav/files/qtav-1.12.0-qt5.15.patch 
b/media-libs/qtav/files/qtav-1.12.0-qt5.15.patch
new file mode 100644
index 000..a992f59fac3
--- /dev/null
+++ b/media-libs/qtav/files/qtav-1.12.0-qt5.15.patch
@@ -0,0 +1,22 @@
+From 5263d9d9ee29303a919d33d52b15acda554226c5 Mon Sep 17 00:00:00 2001
+From: rezso 
+Date: Mon, 1 Jun 2020 13:30:21 +0200
+Subject: [PATCH] Fix build with Qt 5.15
+
+Solves https://github.com/wang-bin/QtAV/issues/1309
+---
+ src/QtAV/FilterContext.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/QtAV/FilterContext.h b/src/QtAV/FilterContext.h
+index 6d2f9a041..7cc2fc1c5 100644
+--- a/src/QtAV/FilterContext.h
 b/src/QtAV/FilterContext.h
+@@ -26,6 +26,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ /*
+  * QPainterFilterContext, D2DFilterContext, ...
+  */

diff --git a/media-libs/qtav/qtav-1.12.0-r2.ebuild 
b/media-libs/qtav/qtav-1.12.0-r2.ebuild
index 93df9f4f72c..e9b3bbd54ae 100644
--- a/media-libs/qtav/qtav-1.12.0-r2.ebuild
+++ b/media-libs/qtav/qtav-1.12.0-r2.ebuild
@@ -37,6 +37,7 @@ PATCHES=(
"${FILESDIR}"/${P}-installpaths.patch
"${FILESDIR}"/${P}-ffmpeg4-{1,2}.patch # bugs 660852, 670765
"${FILESDIR}"/${P}-qt5.14.patch
+   "${FILESDIR}"/${P}-qt5.15.patch
 )
 
 src_prepare() {



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

2020-06-22 Thread Andreas Sturmlechner
commit: 0881f14b2da1e08e0f038fc5c18aac11bf63cd6c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jun 21 12:02:33 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 22 18:31:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0881f14b

media-gfx/meshlab: Fix build with Qt 5.15

Closes: https://bugs.gentoo.org/727764
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../files/2016.12/meshlab-2016.12-qt-5.15.patch| 33 ++
 media-gfx/meshlab/meshlab-2016.12-r4.ebuild|  1 +
 2 files changed, 34 insertions(+)

diff --git a/media-gfx/meshlab/files/2016.12/meshlab-2016.12-qt-5.15.patch 
b/media-gfx/meshlab/files/2016.12/meshlab-2016.12-qt-5.15.patch
new file mode 100644
index 000..ab052cd69eb
--- /dev/null
+++ b/media-gfx/meshlab/files/2016.12/meshlab-2016.12-qt-5.15.patch
@@ -0,0 +1,33 @@
+From c57222e79f1c7840e1ed01a4abd17d089f5e5185 Mon Sep 17 00:00:00 2001
+From: alemuntoni 
+Date: Tue, 26 May 2020 12:35:03 +0200
+Subject: [PATCH] missing include
+
+---
+ meshlab/glarea.cpp  | 1 +
+ meshlab/meshlab.pro | 1 +
+ 2 files changed, 2 insertions(+)
+
+diff --git a/meshlab/glarea.cpp b/meshlab/glarea.cpp
+index 6c0421062..dfd7af229 100644
+--- a/meshlab/glarea.cpp
 b/meshlab/glarea.cpp
+@@ -34,6 +34,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #include 
+ #include 
+diff --git a/meshlab/meshlab.pro b/meshlab/meshlab.pro
+index 26ef88d00..842eb5ea5 100644
+--- a/meshlab/meshlab.pro
 b/meshlab/meshlab.pro
+@@ -1,5 +1,6 @@
+ # You have to copy the file by hand into the meshlab.app/Contents/Resources 
directory.
+ # ICON += images/meshlab_obj.icns
++QT += gui
+ QT += opengl
+ QT += xml
+ QT += xmlpatterns

diff --git a/media-gfx/meshlab/meshlab-2016.12-r4.ebuild 
b/media-gfx/meshlab/meshlab-2016.12-r4.ebuild
index 35b63858d6b..505a20ab0b5 100644
--- a/media-gfx/meshlab/meshlab-2016.12-r4.ebuild
+++ b/media-gfx/meshlab/meshlab-2016.12-r4.ebuild
@@ -62,6 +62,7 @@ PATCHES=(
"${FILESDIR}/${PV}/${P}-asString.patch"
"${FILESDIR}/${PV}/${P}-qprintable.patch"
"${FILESDIR}/${PV}/${P}-qt-includes.patch"
+   "${FILESDIR}/${PV}/${P}-qt-5.15.patch"
 )
 
 src_prepare() {



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

2020-06-22 Thread Andreas Sturmlechner
commit: dd17ac1e1c3f2767544d347fdca60692128b0708
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jun 21 11:54:47 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 22 18:31:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd17ac1e

media-gfx/meshlab: EAPI-7 bump, add missing desktop.eclass

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

 media-gfx/meshlab/meshlab-2016.12-r4.ebuild | 65 +++--
 1 file changed, 33 insertions(+), 32 deletions(-)

diff --git a/media-gfx/meshlab/meshlab-2016.12-r4.ebuild 
b/media-gfx/meshlab/meshlab-2016.12-r4.ebuild
index bea9e285755..35b63858d6b 100644
--- a/media-gfx/meshlab/meshlab-2016.12-r4.ebuild
+++ b/media-gfx/meshlab/meshlab-2016.12-r4.ebuild
@@ -1,21 +1,22 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit qmake-utils
+inherit desktop qmake-utils
 
-DESCRIPTION="the open source system for processing and editing 3D triangular 
meshes"
+DESCRIPTION="The open source system for processing and editing 3D triangular 
meshes"
 HOMEPAGE="http://www.meshlab.net";
 VCG_VERSION="1.0.1"
 SRC_URI="https://github.com/cnr-isti-vclab/meshlab/archive/v${PV}.tar.gz -> 
${P}.tar.gz
-
https://github.com/cnr-isti-vclab/vcglib/archive/v${VCG_VERSION}.tar.gz -> 
vcglib-${VCG_VERSION}.tar.gz
+   https://github.com/cnr-isti-vclab/vcglib/archive/v${VCG_VERSION}.tar.gz 
-> vcglib-${VCG_VERSION}.tar.gz
 "
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="-minimal"
+
 DEPEND="dev-cpp/eigen:3
dev-cpp/muParser
dev-qt/qtcore:5
@@ -35,33 +36,33 @@ RDEPEND="${DEPEND}"
 S="${WORKDIR}/meshlab-${PV}/src"
 
 PATCHES=(
-   "${FILESDIR}/${PV}/0001-set-shader-and-texture-paths.patch"
-   #remove ot working plugins
-   "${FILESDIR}/${PV}/remove-edit_mutualcorrs.patch"
-   "${FILESDIR}/${PV}/remove-io_TXT.patch"
-   #since structure synth doesn't seem to be compiling
-   "${FILESDIR}/${PV}/0001-disable-filter-ssynth.patch"
-   #this has been fixed in the tree
-   "${FILESDIR}/${PV}/0001-disable-edit-quality.patch"
-   #this causes segfaults
-   "${FILESDIR}/${PV}/0001-disable-filter-layer.patch"
-   #for when we use minimal
-   "${FILESDIR}/${PV}/0001-compile-server.patch"
-   "${FILESDIR}/${PV}/0001-use-external-lib3ds.patch"
-   "${FILESDIR}/${PV}/0001-use-external-openctm.patch"
-   "${FILESDIR}/${PV}/0001-use-external-muParser.patch"
-   "${FILESDIR}/${PV}/0001-use-external-bzip.patch"
-   "${FILESDIR}/${PV}/0001-use-external-jhead.patch"
-   "${FILESDIR}/${PV}/0001-use-external-glew.patch"
-   #cause gnu stack quickstart related qa
-   "${FILESDIR}/${PV}/0001-remove-not-sane-plugins.patch"
-   "${FILESDIR}/${PV}/${P}-fix-plugins-path.patch"
-   "${FILESDIR}/${PV}/${P}-align1.patch"
-   "${FILESDIR}/${PV}/${P}-align2.patch"
-   "${FILESDIR}/${PV}/${P}-asString.patch"
-   "${FILESDIR}/${PV}/${P}-qprintable.patch"
-   "${FILESDIR}/${PV}/${P}-qt-includes.patch"
-   )
+   "${FILESDIR}/${PV}/0001-set-shader-and-texture-paths.patch"
+   #remove ot working plugins
+   "${FILESDIR}/${PV}/remove-edit_mutualcorrs.patch"
+   "${FILESDIR}/${PV}/remove-io_TXT.patch"
+   #since structure synth doesn't seem to be compiling
+   "${FILESDIR}/${PV}/0001-disable-filter-ssynth.patch"
+   #this has been fixed in the tree
+   "${FILESDIR}/${PV}/0001-disable-edit-quality.patch"
+   #this causes segfaults
+   "${FILESDIR}/${PV}/0001-disable-filter-layer.patch"
+   #for when we use minimal
+   "${FILESDIR}/${PV}/0001-compile-server.patch"
+   "${FILESDIR}/${PV}/0001-use-external-lib3ds.patch"
+   "${FILESDIR}/${PV}/0001-use-external-openctm.patch"
+   "${FILESDIR}/${PV}/0001-use-external-muParser.patch"
+   "${FILESDIR}/${PV}/0001-use-external-bzip.patch"
+   "${FILESDIR}/${PV}/0001-use-external-jhead.patch"
+   "${FILESDIR}/${PV}/0001-use-external-glew.patch"
+   #cause gnu stack quickstart related qa
+   "${FILESDIR}/${PV}/0001-remove-not-sane-plugins.patch"
+   "${FILESDIR}/${PV}/${P}-fix-plugins-path.patch"
+   "${FILESDIR}/${PV}/${P}-align1.patch"
+   "${FILESDIR}/${PV}/${P}-align2.patch"
+   "${FILESDIR}/${PV}/${P}-asString.patch"
+   "${FILESDIR}/${PV}/${P}-qprintable.patch"
+   "${FILESDIR}/${PV}/${P}-qt-includes.patch"
+)
 
 src_prepare() {
mv "${WORKDIR}/vcglib-${VCG_VERSION}" "${WORKDIR}/vcglib" || die 
"vcglib mv failed"
@@ -93,7 +94,7 @@ src_configure() {
 
 src_install() {
dobin distrib/{meshlab,meshlabserver}
-  

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

2020-06-22 Thread Fabian Groffen
commit: cf750927d63e81bed003dd2d4aab7ca34be12b1f
Author: Fabian Groffen  gentoo  org>
AuthorDate: Mon Jun 22 18:27:51 2020 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Mon Jun 22 18:27:51 2020 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=cf750927

eclass/toolchain: fix SDK Framework path on Darwin

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

 eclass/toolchain.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index 744d68853f..293158b91e 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -538,7 +538,7 @@ toolchain_src_prepare() {
"${S}"/gcc/config/darwin.h || die "sed gcc/config/darwin.h 
failed"
# add prefixed Frameworks to default search paths (may want to
# change this in a cross-compile)
-   sed -i -e "/\"\/System\/Library\/Frameworks\"\,/i\ \   
\"${EPREFIX}/MacOSX.sdk/Frameworks\"\, \"${EPREFIX}/Frameworks\"\, " \
+   sed -i -e "/\"\/System\/Library\/Frameworks\"\,/i\ \   
\"${EPREFIX}/MacOSX.sdk/System/Library/Frameworks\"\, 
\"${EPREFIX}/Frameworks\"\, " \
"${S}"/gcc/config/darwin-c.c || die "sed gcc/config/darwin-c.c 
failed"
 
# make sure the pkg config files install into multilib dirs.



  1   2   >