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

2020-11-20 Thread Michał Górny
commit: a71cb0dbbebad259b16df4686c0229d3abc5a0ff
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 21 07:19:34 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 21 07:52:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a71cb0db

dev-python/boto3: Bump to 1.16.23

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

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

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index 70c37adde87..b77e066f967 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -3,4 +3,5 @@ DIST boto3-1.16.16.tar.gz 338959 BLAKE2B 
e34c14b89ddd402e4ca7037e1fdbb5121ff9eb2
 DIST boto3-1.16.20.tar.gz 339432 BLAKE2B 
fefe33be5baca95880a52856a6d6fb166895951b7eb83500420ef07058d91b465c2acc4ea5eb72a46b4de013fcd9136df2d60398cb75a46f199415ff43e366bb
 SHA512 
7e88a70d7ae9065c3b749510b3bbfc36e2645abedf173cd8be79666895ede34f98c9a33bbe43b05843a4c809a29b4d2d925fd2398ab778f0f096597e98b204bc
 DIST boto3-1.16.21.tar.gz 339637 BLAKE2B 
122025941b38dd94ccea22a5561ccac29f3033320da4e3f332a1200c84215bef1a320dc36ce59733265816d867c409449a32830df4f20fa08f943ca754fb9257
 SHA512 
b811e153b9c356e9e414e8a82076000d885e29778273d9e839d73e2b35405d23ae8236bb57c657c0f2ee6def48636bf024548cdc0f6e5e642c7b97d97b76307a
 DIST boto3-1.16.22.tar.gz 339781 BLAKE2B 
d6703055d57f9d3486218efc3014439a1ca1335d28281793ddcf2c37dd42c1557e85503841e0d7306168d0eb546dbfc16fabeb53a7a00ee32b3b10e74cbfff94
 SHA512 
dd0df65efea8dc2138b1bfa3a1eb4e40c8e3408f34a36b38cd51346debb01a3e5179b841adbef6cf6fe1535adee9f09d19ff40ae284cfd3c2fabb42a4113f5a6
+DIST boto3-1.16.23.tar.gz 339889 BLAKE2B 
0a41c084beba187a89ddf8a743c6dc4f3663aebae035468a76967e4b732abdad496bb2f0a516b5af76affa18f99d4c1a3405d0e152fb41fb1fae22a6728542e6
 SHA512 
942b0a540cdd6ed744bc1b4285ca8d9e3121193a59717fa247431d232f25cf042625abf82709cecef20611feb68735415be2e3187ebd4e6a1efd7488c0db14ff
 DIST boto3-1.16.9.tar.gz 337905 BLAKE2B 
ed01e28fd7e62e5e5028307c93f92004bfbecffa77bc2ba1d6574b92ec2c515d910eb5107ac5ee03e0aca909f97f379aa65b5f839c8067634fa69266c58de33f
 SHA512 
7343b8432788ef981819f91fe2ba27c4ec3947d01ff55914f7c89607250ecf60db2da8d25c8a2c7001ef546a9abed4cb744c5937ca09497aa1a983049648bd5e

diff --git a/dev-python/boto3/boto3-1.16.23.ebuild 
b/dev-python/boto3/boto3-1.16.23.ebuild
new file mode 100644
index 000..ccc99e1c241
--- /dev/null
+++ b/dev-python/boto3/boto3-1.16.23.ebuild
@@ -0,0 +1,56 @@
+# 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
+   BOTOCORE_PV=${PV}
+else
+   SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+
+   # botocore is x.(y+3).z
+   BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)"
+fi
+
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${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/botocore/

2020-11-20 Thread Michał Górny
commit: 913540a9db6654dc9e983586a6af98b97c85e535
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 21 07:19:25 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 21 07:52:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=913540a9

dev-python/botocore: Bump to 1.19.23

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

 dev-python/botocore/Manifest|  1 +
 dev-python/botocore/botocore-1.19.23.ebuild | 59 +
 2 files changed, 60 insertions(+)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 5dd8239783c..7963321d420 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -3,4 +3,5 @@ DIST botocore-1.19.16.tar.gz 7009239 BLAKE2B 
d582538f25c500297ab8a5ce3f054a5ba2f
 DIST botocore-1.19.20.tar.gz 7055105 BLAKE2B 
f25a6aff2073d8fa8de0c787b34239ee434c0616b2666b7191c5303e6d76389c883aca9a2b03243caf989f270f981bb69873ddbbf21a6afdd1073d8a6bb959dd
 SHA512 
24c0e6e6a67d03374f86608762030e42cd14f2010763c57ed06d74a6a514a81dd25f9681bec890795ed6ec1f488aafeaeb3175e7264deb72438dde35e6e8398d
 DIST botocore-1.19.21.tar.gz 7060392 BLAKE2B 
2539996a3aed89d9e76143c4e899cc09b278ef5fb23ea3b8cacc4af4a3b5287043f193e40ab07937147db70085aef688c8fe432124a0c0fe89f1ae7e2f003bec
 SHA512 
43a656c29944dc3b0c84f321d251b3d135634ac8cd639a9c13a1f04a0e0e1421bd0c2ed8200f7e032faab6b45d7ea64f03991a90e5db837542501ae9f1843d6e
 DIST botocore-1.19.22.tar.gz 7073938 BLAKE2B 
41ec38e7abdff5e6fd4530dd39522a13d10c7048564002f5c4c99f9c13cf25b3b4a108ca651bee44f1e00d0b8b560e7c364021793a7fd50e3501ef54c153960e
 SHA512 
69efd9f01cb9cb83d4234be6ad46d2f2584bfd274a96c27279c96d717de4ea83e8bb1b92baa29b06aacf21e0af9e40ab216e5ac7ffe004cc4a53bfcf6c32f59e
+DIST botocore-1.19.23.tar.gz 7090433 BLAKE2B 
c5b6801e169b7c0325b33b005be0e4096442d5f9e09e7223d6668cdbd7a68b977284b4e660be5dfbf30ae661202691866dff2b3b1639d7467b3ff21ed6c90702
 SHA512 
9e984c48109f17126e380b0194e998c65ef02cba83ce3be6b3398a5913a41e23607779c82b90814d8193abdeb3a6cecedb443a6fc5d8d6b7ccb68ed0a0e0bc37
 DIST botocore-1.19.9.tar.gz 6972834 BLAKE2B 
3407c056c7995cc1ccb1b5b4c5b3a6254e38672b52e7889a7a022520283416e4dfcabd05c8ca0ed78e4624c7a20c9f43bfde87a76d7a72660b4c95256e4f9ca4
 SHA512 
8433f22ae7652e524a82da8d2ccda48da9eef44788333898b7526335d57a7757b80754f0d5c6a2c84ec3bde2ec9fc7da5cf872cbda7286f620b4f4878fe9a583

diff --git a/dev-python/botocore/botocore-1.19.23.ebuild 
b/dev-python/botocore/botocore-1.19.23.ebuild
new file mode 100644
index 000..ca40b64d111
--- /dev/null
+++ b/dev-python/botocore/botocore-1.19.23.ebuild
@@ -0,0 +1,59 @@
+# 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 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+fi
+
+RDEPEND="
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/jmespath[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   >=dev-python/urllib3-1.25.4[${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"
+)
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests nose
+
+src_prepare() {
+   # unpin deps
+   sed -i -e "s:>=.*':':" setup.py || 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/flask-mongoengine/

2020-11-20 Thread Michał Górny
commit: 0f3b90afbcbd533b5fea642b56f53b4727e95b62
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 21 07:51:23 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 21 07:52:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f3b90af

dev-python/flask-mongoengine: Bump to 1.0.0

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

 dev-python/flask-mongoengine/Manifest  |  1 +
 .../flask-mongoengine-1.0.0.ebuild | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/dev-python/flask-mongoengine/Manifest 
b/dev-python/flask-mongoengine/Manifest
index 8219285ce80..5082bdcff31 100644
--- a/dev-python/flask-mongoengine/Manifest
+++ b/dev-python/flask-mongoengine/Manifest
@@ -1 +1,2 @@
 DIST flask-mongoengine-0.9.5.gh.tar.gz 120281 BLAKE2B 
454602e7e7f26db731379b01492c6cb1adf01369fd268236407c57753aeb68f17ce62d4c2e665e493d3c7c632e4f263af02b59e6580893afcc7b8659247fb42f
 SHA512 
3588ae25e2f3643f5e240990f424b4f3754cea2f880b7b454c98afb3ea98fd81b783d74a45cf685fe59cfa8159b1ac39e840071f364ce98fb1a25cc9a09e0d5f
+DIST flask-mongoengine-1.0.0.gh.tar.gz 123516 BLAKE2B 
5dd6cf1d774973ef1883d824bdf467b53306773eff5f7016f6440a7ec55648012755a1270b8fca0974aff00dfb189c0f3f7d6985a01c098729517c0018513c8b
 SHA512 
bd95a8248a972a41c92dc2711f866420aabba56062322801e473e0b347c95ad47da39439992ba6cf23a0981c422ae84756af3af95d1171acd6b321f9cbc63085

diff --git a/dev-python/flask-mongoengine/flask-mongoengine-1.0.0.ebuild 
b/dev-python/flask-mongoengine/flask-mongoengine-1.0.0.ebuild
new file mode 100644
index 000..37bd9cae8e2
--- /dev/null
+++ b/dev-python/flask-mongoengine/flask-mongoengine-1.0.0.ebuild
@@ -0,0 +1,36 @@
+# 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="Flask support for MongoDB and with WTF model forms"
+HOMEPAGE="https://pypi.org/project/flask-mongoengine/";
+SRC_URI="
+   https://github.com/MongoEngine/flask-mongoengine/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# TODO: make it spawn a local mongodb instance
+RESTRICT="test"
+
+RDEPEND=">=dev-python/flask-1.1.2[${PYTHON_USEDEP}]
+   >=dev-python/mongoengine-0.20[${PYTHON_USEDEP}]
+   >=dev-python/flask-wtf-0.14.3[${PYTHON_USEDEP}]"
+
+distutils_enable_sphinx docs
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   sed -i -e '/addopts/d' setup.cfg || die
+
+   # fails with mongomock installed
+   sed -e 's:test_connection__should_parse_mongo_mock_uri:_&:' \
+   -i tests/test_connection.py || die
+
+   distutils-r1_python_prepare_all
+}



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

2020-11-20 Thread Hans de Graaff
commit: 254cb48b0f1b7929daea2199a011fcbd6d3503d9
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Nov 21 07:49:37 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Nov 21 07:49:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=254cb48b

www-servers/puma: add 5.0.4

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

 www-servers/puma/Manifest  |  1 +
 www-servers/puma/puma-5.0.4.ebuild | 65 ++
 2 files changed, 66 insertions(+)

diff --git a/www-servers/puma/Manifest b/www-servers/puma/Manifest
index eabbfd911f9..047899e6c29 100644
--- a/www-servers/puma/Manifest
+++ b/www-servers/puma/Manifest
@@ -1,2 +1,3 @@
 DIST puma-3.12.5.tar.gz 219175 BLAKE2B 
55e80fba8fd84004090cb8d30b6fd01652f1beb1d1216c5d41ce46c616677504fa867f9701ed2631f4edc956c9377d72c6fd4a1b61e99fdbb50ea371b170a0c0
 SHA512 
1e6721844cbabab0cfb8b1707625723061821dae3ee06a3330075f787ae580e6836d9cbe436e63dc4602253ad1da3b56135316c923c03bbbae454d9457a44aec
 DIST puma-4.3.4.tar.gz 241806 BLAKE2B 
5450f14112ad45c48794186c7e9f078feed28a4194a917c949f4058b9d3a115273df6d93260de330047fa59730cb3ad45f31eb05e5880569e95a0b2c9de99a42
 SHA512 
619bf44c17622233b673dbf6c8f34b0463cd32684df81c20f31045d3106a86e110753b4da80e7b51b46fe18d90ee107d9a84a975dc3116840d9a9b5962178873
+DIST puma-5.0.4.tar.gz 275942 BLAKE2B 
1e607d7ff44ae9b677f6fb41355fe3b660bd880a642e5d3859e177c9327b68c0db729621ef0b3d7a5bb08917249fb7eac688027ceb62f072dabe7ba30086bf79
 SHA512 
6804ef3bfd4fa3a6695c213e3550244adace91121cb2c45f06fa4c68fb502787c5fdebba41b4754216eab880ca8738ab6f83d0ec9456a86fc6db99a4d4405bd8

diff --git a/www-servers/puma/puma-5.0.4.ebuild 
b/www-servers/puma/puma-5.0.4.ebuild
new file mode 100644
index 000..4ae517dd995
--- /dev/null
+++ b/www-servers/puma/puma-5.0.4.ebuild
@@ -0,0 +1,65 @@
+# 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_GEMSPEC="puma.gemspec"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="a simple, fast, threaded, and highly concurrent HTTP 1.1 server 
for Ruby/Rack"
+HOMEPAGE="https://puma.io/";
+SRC_URI="https://github.com/puma/puma/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="3"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+DEPEND+=" dev-libs/openssl:0 test? ( net-misc/curl )"
+RDEPEND+=" dev-libs/openssl:0"
+
+ruby_add_bdepend "virtual/ruby-ssl
+   test? ( dev-ruby/rack >=dev-ruby/minitest-5.9:5 
>=dev-ruby/test-unit-3.0:2 )"
+
+ruby_add_rdepend "dev-ruby/nio4r:2"
+
+all_ruby_prepare() {
+   sed -e '/bundler/ s:^:#:' \
+   -e '/prove/ s:^:#:' \
+   -e '/stub_const/ s:^:#:' \
+   -i test/helper.rb || die
+
+   # Avoid tests failing inconsistently
+   sed -i -e '/test_bad_client/askip "inconsistent results"' 
test/test_web_server.rb || die
+
+   # Avoid launcher tests since they make assumptions about bundler use
+   rm -f test/test_launcher.rb || die
+
+   # Skip integration tests since they make a lot of assumptions about
+   # the environment
+   rm -f test/test_integration_* test/test_preserve_bundler_env.rb|| die
+
+   # Avoid test that uses unpackaged stub_const
+   sed -i -e '/test_shutdown_with_grace/,/^  end/ s:^:#:' 
test/test_thread_pool.rb || die
+
+   sed -e 's/git ls-files --/find/' \
+   -e 's:_relative ": "./:' \
+   -i ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/puma_http11 extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake V=1 -Cext/puma_http11
+   cp ext/puma_http11/puma_http11$(get_modname) lib/puma/ || die
+}
+
+each_ruby_test() {
+   einfo "Running test suite"
+   ${RUBY} -Ilib:.:test -e "gem 'minitest', '~>5.9'; gem 'test-unit', 
'~>3.0'; require 'minitest/autorun'; Dir['test/**/*test_*.rb'].each{|f| require 
f}" || die
+}



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

2020-11-20 Thread Hans de Graaff
commit: d8fd0fcfba27e5c2cb507ed24545f386a19a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Nov 21 07:36:42 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Nov 21 07:36:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8fd0bbb

app-admin/r10k: cleanup of broken versions

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

 app-admin/r10k/Manifest |  5 -
 app-admin/r10k/r10k-3.4.1-r1.ebuild | 44 -
 app-admin/r10k/r10k-3.5.0-r1.ebuild | 44 -
 app-admin/r10k/r10k-3.5.1-r1.ebuild | 44 -
 app-admin/r10k/r10k-3.5.2-r1.ebuild | 44 -
 app-admin/r10k/r10k-3.6.0-r1.ebuild | 44 -
 app-admin/r10k/r10k-3.7.0-r1.ebuild | 44 -
 7 files changed, 269 deletions(-)

diff --git a/app-admin/r10k/Manifest b/app-admin/r10k/Manifest
index 8fec325ea53..0143c5caf1c 100644
--- a/app-admin/r10k/Manifest
+++ b/app-admin/r10k/Manifest
@@ -1,6 +1 @@
-DIST r10k-3.4.1.gem 210944 BLAKE2B 
7e4df4786a332264738f3483b9f2e14739cde2a9c1cf33788692ecf6f783b956856cefeb603f3d29338104bc9a89b0a6773e922189a412e01131cf7c77b58823
 SHA512 
b8d214cd6b6bc9ce00b9de22c706213be4c480cdf293b4fb47c0ff0e0dafcb3e16fe2b1ceb8d3abd22810630c4163919ded80ff697dff728b165821de61502f8
-DIST r10k-3.5.0.gem 212992 BLAKE2B 
65acdd8ccf0d3bde1c40f1eab19ba2dc8421db2b2585aae6a9eabe204d7dea42922dcfc9ff20c2e8b6c8a1d8f927c360bb06124d4431c402665a6663b82c1d43
 SHA512 
f4094adb20870e6bb0c68e1b80ee8fcee7eebe9c0040b5e0f2f765f95642ea675c9faff6b4a98e9f38ee0cefb1069af827612997b96c3715d46d40a883da7a61
-DIST r10k-3.5.1.gem 212992 BLAKE2B 
7ec9777a0d6916d960c603da1085365fd30df0e50f89b40c759e947a4b61f5e59081e3d725f5e18fcb0a40ef6345347b90e46de7930cec77abf3b2801ed6dff0
 SHA512 
04588e00951220d5746710d1dddc9930493a5e3ddcb9ad0e78016b924b83c92da3025519d038c85aaff55d6654aced09c90b90bb6cc9949eea992665cdcdfff2
-DIST r10k-3.5.2.gem 213504 BLAKE2B 
50ee6230c5e2bde8413a3bc89f4abc14ae935f29c91d5e65a89181277fad56743be35c3d79a927f7a4315f812143b128b954a0a5b24cc65cd38691499be5
 SHA512 
023e01d77efa4da876afd384b7342666f8a3bf703276c0cc0d6a50599f9c9a7333cd1c230c43c94e2c37f57123b51b0a2d1489e93a91b9c856cd5a2e05df
-DIST r10k-3.6.0.gem 215552 BLAKE2B 
2f8b2df0ae4e47ea4ff33312c2b802be4b7508f03a08c654f963a0816720eda8f16e9930eb3993700b4c935cde1df3e1b4e3bb3dccd07cc3e7b723d6f7e6bbdc
 SHA512 
3b495bf951fd5040378769e78a88c7b1fee33d8f2bb80691666425770707d3e23bc58a35c76a7bc2af1a86ed4ce63578e84d125f77d418fdf1e414ab79975bcb
 DIST r10k-3.7.0.gem 217600 BLAKE2B 
03af5829d027cf4e84c6a04a3977a4fe97c030c1668f6b77792553fbb23265684232215b4fad1b48282bf55fcc14afe65906ca745722bf14436d27a294b47cc6
 SHA512 
31d96b69db34e79439a25b83bae73011b81b0e2eb412f944fc68ef4d087f4715ba30e3821c2a12b79fadf01b95a6922bc7cb5c0ed1c3f6ae8e29785d180925ad

diff --git a/app-admin/r10k/r10k-3.4.1-r1.ebuild 
b/app-admin/r10k/r10k-3.4.1-r1.ebuild
deleted file mode 100644
index b34c3d7d971..000
--- a/app-admin/r10k/r10k-3.4.1-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_RECIPE_DOC="none"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-RUBY_FAKEGEM_EXTRAINSTALL=locales
-
-inherit ruby-fakegem
-
-DESCRIPTION="Puppet environment and module deployment"
-HOMEPAGE="https://github.com/puppetlabs/r10k";
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+git"
-
-ruby_add_rdepend "
-   ~dev-ruby/colored-1.2
-   >=dev-ruby/cri-2.15.10:0
-   >=dev-ruby/gettext-setup-0.24:0
-   ~dev-ruby/log4r-1.1.10
-   >=dev-ruby/multi_json-1.10:0
-   =dev-ruby/puppet_forge-2.3*
-"
-
-ruby_add_bdepend "test? (
-   >=dev-ruby/minitar-0.9
-)"
-
-RDEPEND="${RDEPEND} git? ( >=dev-vcs/git-1.6.6 )"
-
-all_ruby_prepare() {
-   sed -i -e '/s.files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
-
-   # Avoid specs for unpackaged rugget git provider
-   rm -rf spec/unit/git_spec.rb spec/unit/git/rugged || die
-}

diff --git a/app-admin/r10k/r10k-3.5.0-r1.ebuild 
b/app-admin/r10k/r10k-3.5.0-r1.ebuild
deleted file mode 100644
index b34c3d7d971..000
--- a/app-admin/r10k/r10k-3.5.0-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_RECIPE_DOC="none"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-RUBY_FAKEGEM_EXTRAINSTALL=locales
-
-inherit ruby-fakegem
-
-DESCRIPTION="Puppet environment and module deployment"
-HOMEPAGE="https://github.com/puppetlabs/r10k";
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+git"
-
-ruby_add_rdepend "
-   

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

2020-11-20 Thread Hans de Graaff
commit: 4545522d7b70aac67a291e64e2754f6242d8e161
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Nov 21 07:11:48 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Nov 21 07:32:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4545522d

dev-ruby/gettext-setup: cleanup

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

 dev-ruby/gettext-setup/Manifest|  1 -
 dev-ruby/gettext-setup/gettext-setup-0.31.ebuild   | 39 
 .../gettext-setup/gettext-setup-0.34-r1.ebuild | 42 --
 dev-ruby/gettext-setup/gettext-setup-0.34.ebuild   | 39 
 4 files changed, 121 deletions(-)

diff --git a/dev-ruby/gettext-setup/Manifest b/dev-ruby/gettext-setup/Manifest
index 4818cee71f5..d9d3c7ca35c 100644
--- a/dev-ruby/gettext-setup/Manifest
+++ b/dev-ruby/gettext-setup/Manifest
@@ -1,3 +1,2 @@
 DIST gettext-setup-0.30.tar.gz 15952 BLAKE2B 
d224e0fee34b0735fdf22abe2efe81b45c6494fc48ca509daf076cda9d3b83dc6dcd3e44c20ae9776d98b7d6128e5b9a93fa49ba1f2daa4b00929714e8d7365c
 SHA512 
6ee398a131098f46dcc2951d166081a90872330b6ba5637292eb326b1bd6f40f46350f6be7b2b9ebee0c62442609700e06d25befcbcbf6510f3d96e656855124
-DIST gettext-setup-0.31.tar.gz 16043 BLAKE2B 
762d40295644acaaae27045a8a03ddb6a9e0f44093754492da3af4ce9a65fe4f58b9eb53a5d837dd1e553a7301dde29cbe27d4f6a6e7c7fc737ca9516b6eb3c4
 SHA512 
ac408d37a4feb03043368db6dd1e0fe3cc1f08c5d0c161ae8e9b80d0ac514e7d5891fdbdbcafa7bc72c960d38b6965b73c56d5d4e9a3fe1da0502667c33142ef
 DIST gettext-setup-0.34.tar.gz 16010 BLAKE2B 
3da3810bba89205a0a2856760b7fbe7a415207ccc45a3cd2e8aad658131dc751b1ad44178beaee2d0c67164a5e3e7b1ee0aba1c4e1b099f77643d72aec753de3
 SHA512 
479e2a79768923796960b45f1e3b3963939a4166c636ad4c3af60840a5c8449fa7fff81271b4c938e5a441146b25fcdd9fd8bb60e1df7ef31bb39efc56577572

diff --git a/dev-ruby/gettext-setup/gettext-setup-0.31.ebuild 
b/dev-ruby/gettext-setup/gettext-setup-0.31.ebuild
deleted file mode 100644
index 0fc883565d7..000
--- a/dev-ruby/gettext-setup/gettext-setup-0.31.ebuild
+++ /dev/null
@@ -1,39 +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_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A gem to ease i18n"
-HOMEPAGE="https://github.com/puppetlabs/gettext-setup-gem";
-SRC_URI="https://github.com/puppetlabs/gettext-setup-gem/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
-RUBY_S="${PN}-gem-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
-IUSE=""
-
-ruby_add_rdepend "
-   >=dev-ruby/fast_gettext-1.1.0:0
-   >=dev-ruby/ruby-gettext-3.0.2
-   dev-ruby/locale
-"
-
-all_ruby_prepare() {
-   sed -i -e 's/1.1.0/1.1/' \
-   -e "s/spec.version.*$/spec.version = '${PV}'/" 
${RUBY_FAKEGEM_GEMSPEC} || die
-
-   sed -i -e '/simplecov/,/^end/ s:^:#: ; 1irequire "date"' 
spec/spec_helper.rb || die
-
-   # Avoid spec with specific locale requirements
-   sed -i -e '/can clear the locale/,/^end/ s:^:#:' 
spec/lib/gettext-setup/gettext_setup_spec.rb || die
-}

diff --git a/dev-ruby/gettext-setup/gettext-setup-0.34-r1.ebuild 
b/dev-ruby/gettext-setup/gettext-setup-0.34-r1.ebuild
deleted file mode 100644
index e56f46d8242..000
--- a/dev-ruby/gettext-setup/gettext-setup-0.34-r1.ebuild
+++ /dev/null
@@ -1,42 +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 ruby27"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A gem to ease i18n"
-HOMEPAGE="https://github.com/puppetlabs/gettext-setup-gem";
-SRC_URI="https://github.com/puppetlabs/gettext-setup-gem/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
-RUBY_S="${PN}-gem-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
-IUSE=""
-
-RDEPEND+=" dev-vcs/git"
-DEPEND+=" test? ( dev-vcs/git )"
-
-ruby_add_rdepend "
-   >=dev-ruby/fast_gettext-1.1.0:0
-   >=dev-ruby/ruby-gettext-3.0.2
-   dev-ruby/locale
-"
-
-all_ruby_prepare() {
-   sed -i -e 's/1.1.0/1.1/' \
-   -e "s/spec.version.*$/spec.version = '${PV}'/" 
${RUBY_FAKEGEM_GEMSPEC} || die
-
-   sed -i -e '/simplecov/,/^end/ s:^:#: ; 1irequire "date"' 
spec/spec_helper.rb || die
-
-   # Avoid spec with specific locale requirements
-   sed -i -e '/can clear the locale/,/^end/ s:^:#:' 
spec/lib/gettext-setup/gettext_setup_spec.rb || die
-}

diff --git a/dev-ruby/gettext-setup/gettext-setup-0.34.ebuild 
b/dev-ruby/gettext-setup/gettext-setup-0.34.ebuild
deleted file mode 100644
index 1acc0f83dc3..000
--- a/dev-ruby/gettext-setup/gettext-setup-0

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

2020-11-20 Thread Hans de Graaff
commit: 8d6f2e57f22ac828d3d8b194746395e449dfb717
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Nov 21 07:31:33 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Nov 21 07:32:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d6f2e57

app-admin/r10k: fix dependencies

Add and fix gettext related dependencies similar to
dev-ruby/gettext-setup since we don't need to support ruby24.

Fix colored2 dependency.

Closes: https://bugs.gentoo.org/742629
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Hans de Graaff  gentoo.org>

 app-admin/r10k/r10k-3.7.0-r2.ebuild | 49 +
 1 file changed, 49 insertions(+)

diff --git a/app-admin/r10k/r10k-3.7.0-r2.ebuild 
b/app-admin/r10k/r10k-3.7.0-r2.ebuild
new file mode 100644
index 000..0d4f8948a75
--- /dev/null
+++ b/app-admin/r10k/r10k-3.7.0-r2.ebuild
@@ -0,0 +1,49 @@
+# 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_DOC="none"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+RUBY_FAKEGEM_EXTRAINSTALL=locales
+
+inherit ruby-fakegem
+
+DESCRIPTION="Puppet environment and module deployment"
+HOMEPAGE="https://github.com/puppetlabs/r10k";
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+git"
+
+ruby_add_rdepend "
+   ~dev-ruby/colored2-3.1.2
+   >=dev-ruby/cri-2.15.10:0
+   >=dev-ruby/gettext-setup-0.24:0
+   >=dev-ruby/fast_gettext-1.1:0
+   >=dev-ruby/ruby-gettext-3.0.2:0
+   ~dev-ruby/log4r-1.1.10
+   >=dev-ruby/multi_json-1.10:0
+   =dev-ruby/puppet_forge-2.3*
+"
+
+ruby_add_bdepend "test? (
+   >=dev-ruby/minitar-0.9
+)"
+
+RDEPEND="${RDEPEND} git? ( >=dev-vcs/git-1.6.6 )"
+
+all_ruby_prepare() {
+   sed -e '/s.files/d' \
+   -e '/fast_gettext/ s/1.1.0/1.1/' \
+   -e "/gettext/ s/'< 3.3.0'//" \
+   -i ${RUBY_FAKEGEM_GEMSPEC} || die
+
+   # Avoid specs for unpackaged rugget git provider
+   rm -rf spec/unit/git_spec.rb spec/unit/git/rugged || die
+}



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

2020-11-20 Thread Joonas Niilola
commit: 2bea48644045490092fbb754058a8a3496bf85ba
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sat Nov 21 07:20:55 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Nov 21 07:20:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bea4864

www-servers/nginx-unit: stabilize 1.20.0 on amd64

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

 www-servers/nginx-unit/nginx-unit-1.20.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/nginx-unit/nginx-unit-1.20.0.ebuild 
b/www-servers/nginx-unit/nginx-unit-1.20.0.ebuild
index ac0c6c8fc95..49c2f106174 100644
--- a/www-servers/nginx-unit/nginx-unit-1.20.0.ebuild
+++ b/www-servers/nginx-unit/nginx-unit-1.20.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://unit.nginx.org/download/${MY_P}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 MY_USE="perl python ruby"
 MY_USE_PHP="php7-2 php7-3 php7-4"
 IUSE="${MY_USE} ${MY_USE_PHP} ssl"



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

2020-11-20 Thread Joonas Niilola
commit: 7b6a479b5d503a73673ae72f7f8593f09478cc0e
Author: Hank Leininger  korelogic  com>
AuthorDate: Sat Nov 21 05:00:04 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Nov 21 07:06:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b6a479b

sys-apps/firejail: restored removed USE flag description

Restored and renamed the old 'x11' USE flag description now that that
flag has been renamed to 'X'.

Signed-off-by: Hank Leininger  korelogic.com>
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Closes: https://github.com/gentoo/gentoo/pull/18345
Signed-off-by: Joonas Niilola  gentoo.org>

 sys-apps/firejail/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-apps/firejail/metadata.xml b/sys-apps/firejail/metadata.xml
index ecbe0447e62..a41213b778f 100644
--- a/sys-apps/firejail/metadata.xml
+++ b/sys-apps/firejail/metadata.xml
@@ -33,5 +33,6 @@
Enable private home feature
Enable attaching a new user namespace to a 
sandbox (--noroot option)
Enable whitelist
+   Enable X11 sandboxing

 



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

2020-11-20 Thread Joonas Niilola
commit: 7f0381a4b36d125edd3590e1a115dfa1a4964725
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sat Nov 21 06:58:25 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Nov 21 06:58:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f0381a4

app-emulation/lxc: stabilize 4.0.5 on amd64

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

 app-emulation/lxc/lxc-4.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/lxc/lxc-4.0.5.ebuild 
b/app-emulation/lxc/lxc-4.0.5.ebuild
index 49ed1aadcbe..2613f38a518 100644
--- a/app-emulation/lxc/lxc-4.0.5.ebuild
+++ b/app-emulation/lxc/lxc-4.0.5.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://linuxcontainers.org/ 
https://github.com/lxc/lxc";
 SRC_URI="https://linuxcontainers.org/downloads/lxc/${P}.tar.gz
verify-sig? ( https://linuxcontainers.org/downloads/lxc/${P}.tar.gz.asc 
)"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
 
 LICENSE="LGPL-3"
 SLOT="0"



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

2020-11-20 Thread Joonas Niilola
commit: 4e6772b82059b96c9460f84908e19ebbcfb127be
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sat Nov 21 06:58:01 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Nov 21 06:58:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e6772b8

app-emulation/lxc: stabilize 4.0.5 on x86

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

 app-emulation/lxc/lxc-4.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/lxc/lxc-4.0.5.ebuild 
b/app-emulation/lxc/lxc-4.0.5.ebuild
index 5b2fa2cc8df..49ed1aadcbe 100644
--- a/app-emulation/lxc/lxc-4.0.5.ebuild
+++ b/app-emulation/lxc/lxc-4.0.5.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://linuxcontainers.org/ 
https://github.com/lxc/lxc";
 SRC_URI="https://linuxcontainers.org/downloads/lxc/${P}.tar.gz
verify-sig? ( https://linuxcontainers.org/downloads/lxc/${P}.tar.gz.asc 
)"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 
 LICENSE="LGPL-3"
 SLOT="0"



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

2020-11-20 Thread Hans de Graaff
commit: c79407021747161ea702d621c0160a94d5cc0a02
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Nov 21 06:35:29 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Nov 21 06:35:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7940702

dev-ruby/vcard: add 0.3.0

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

 dev-ruby/vcard/Manifest   |  1 +
 dev-ruby/vcard/vcard-0.3.0.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/dev-ruby/vcard/Manifest b/dev-ruby/vcard/Manifest
index bb311958aac..a03df8b0bc0 100644
--- a/dev-ruby/vcard/Manifest
+++ b/dev-ruby/vcard/Manifest
@@ -1 +1,2 @@
 DIST vcard-0.2.16.gem 52224 BLAKE2B 
b8ee48d597e00fad376d632813fba61a22ae5b6b16ce3fc9c7b79839fd2f0d0f87b8bede3d3f6ebd41bb205a222fde540f4d3c46fcef8eb9b5a014ce8abf14da
 SHA512 
33c8183d05b160e65a89747587f174dfa91b299c178c265645d271b54506734e818e3d3ac51a5b20fcddbc489b9ff910e321e5a1160f7b6254bc16faa185634b
+DIST vcard-0.3.0.gem 54272 BLAKE2B 
ed019b7f771dbe2da574fc059dacdc8eb5b5eca735abe15c2d8aec08b4f91b22c413f317d4f39f100bc78d16bf8e3edf0e0a99d55b8fbdda5b47315bc33d37b1
 SHA512 
5b54bada881f4d6cce66bb76c15b3594e310659024d163598f857c4c434379c57e07f28873646d0a5a5aecef4313c8fc731313e80df5542e982f333c05802d4d

diff --git a/dev-ruby/vcard/vcard-0.3.0.ebuild 
b/dev-ruby/vcard/vcard-0.3.0.ebuild
new file mode 100644
index 000..8c9fdf412fb
--- /dev/null
+++ b/dev-ruby/vcard/vcard-0.3.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby25 ruby26 ruby27"
+
+# Avoid the complexity of the "rake" recipe and run testrb-2 manually.
+RUBY_FAKEGEM_RECIPE_TEST=none
+RUBY_FAKEGEM_RECIPE_DOC=none
+
+inherit ruby-fakegem
+
+DESCRIPTION="Ruby vcard support extracted from Vpim"
+HOMEPAGE="https://github.com/qoobaa/vcard";
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_bdepend "test? ( dev-ruby/test-unit:2 )"
+
+each_ruby_test() {
+   ruby-ng_testrb-2 --load-path=lib --pattern='.*_test\.rb' test/
+}



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

2020-11-20 Thread Hans de Graaff
commit: 72897b0351d7b425dd5a186228e1fc581ad8d827
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Nov 21 06:34:19 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Nov 21 06:34:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72897b03

dev-ruby/test-unit: add 3.3.7

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

 dev-ruby/test-unit/Manifest   |  1 +
 dev-ruby/test-unit/test-unit-3.3.7.ebuild | 33 +++
 2 files changed, 34 insertions(+)

diff --git a/dev-ruby/test-unit/Manifest b/dev-ruby/test-unit/Manifest
index c6ce105367f..e5a2fc99a28 100644
--- a/dev-ruby/test-unit/Manifest
+++ b/dev-ruby/test-unit/Manifest
@@ -2,3 +2,4 @@ DIST test-unit-3.3.3.gem 133120 BLAKE2B 
37fc200b121e84046d1ee483277fc1274dc3bbcd
 DIST test-unit-3.3.4.gem 133120 BLAKE2B 
1f0122ddfd6337a6dcf16c09f294b3632aff6b20491a6d6dd6ebead18570f4db42fcbc656aada7b11a46c0d04c4a1134356db3d101138739973687695221d819
 SHA512 
f8fb546ab764cc01f374fd387b26c0d49b5a572b4a428be9b7a583c449fcb73d4aa755fd16c7a62e24f263f91329e9e9f997646923b38a1e30af1bb3d168
 DIST test-unit-3.3.5.gem 133120 BLAKE2B 
8a799d05fc25a11421eb2385b435de5fc53ffdbffb3ee9c3d4761b11f3b40461ef12b4e2a5583d5ae20fc468846b923317a65cbfbded8dc6ddc066764f1cded4
 SHA512 
eab194e2361b7aa82dbe18d87dd309e81ddb1cb063e289b63a99c4803c0b88d0323a2028afd6585c14e11e458d4cd5ceb67e674bb7d5065d31b91649be2cbd68
 DIST test-unit-3.3.6.gem 133120 BLAKE2B 
bbe79ee41f1e25b49099eb00c8c72dcdafd1b7cbae723c1b78240da000f433877790549c6b0503f654f28d86c87bb125578a6d87b41e8b0a28caba87dad1477c
 SHA512 
af8a632117410b486920e77a5bf91afb774a548166ca5cdb2bdeac6c995bf2da6206d2b00e6904024e5e9bf0f68edf9872192faa471297e64c5d4bd4c554fae3
+DIST test-unit-3.3.7.gem 121856 BLAKE2B 
507c9c538e89156d620b229e0144258def17975d41fa569178bb0c47761d5afdfd6cc8a99e3255e72df7a3eeeb65358faf1ed81571c12242559990762a09f69c
 SHA512 
42419c94740f06d68a26dc2c5e8309658d75aac44f6e391e02085eae1819937fa3ba86e86231dfca91e8de86252b7bc79dc5ffa1e1fb8b0f0ec9074a0056

diff --git a/dev-ruby/test-unit/test-unit-3.3.7.ebuild 
b/dev-ruby/test-unit/test-unit-3.3.7.ebuild
new file mode 100644
index 000..b77e6df078c
--- /dev/null
+++ b/dev-ruby/test-unit/test-unit-3.3.7.ebuild
@@ -0,0 +1,33 @@
+# 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_EXTRADOC="README.md doc-install/text/*.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="An xUnit family unit testing framework for Ruby"
+HOMEPAGE="https://rubygems.org/gems/test-unit";
+
+LICENSE="|| ( Ruby GPL-2 ) PSF-2"
+SLOT="2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~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="doc test"
+
+ruby_add_rdepend "dev-ruby/power_assert"
+
+all_ruby_prepare() {
+   mv doc doc-install || die "moving doc directory out of the way failed"
+}
+
+each_ruby_test() {
+   ${RUBY} test/run-test.rb || die "testsuite failed"
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   newbin "${FILESDIR}"/testrb-3 testrb-2
+}



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

2020-11-20 Thread Matthew Thode
commit: 1d8c033ba4b9f6aad155a74b62b27b57531e2def
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Nov 21 06:04:18 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Nov 21 06:04:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d8c033b

net-misc/memcached: 1.6.9 bump

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

 net-misc/memcached/Manifest   |  1 +
 net-misc/memcached/memcached-1.6.9.ebuild | 99 +++
 2 files changed, 100 insertions(+)

diff --git a/net-misc/memcached/Manifest b/net-misc/memcached/Manifest
index 6944c842e00..ed88ef0e388 100644
--- a/net-misc/memcached/Manifest
+++ b/net-misc/memcached/Manifest
@@ -2,3 +2,4 @@ DIST memcached-1.5.22.tar.gz 532713 BLAKE2B 
90787522f36d9d4389438334572725df1805
 DIST memcached-1.6.6.tar.gz 543661 BLAKE2B 
04de48d6450961585ac3b1c8ae6f803c59e5bbf34e45aa27c9e53309350608dc3c899cf169095361c4ccdc44e0bcc2860662d7066477abd7fdc8e80e34d22d36
 SHA512 
dfd19bf42d35fff391bb479338706a83082e3cdd3ff6e225d3d4da9df01b0a1f659a012dc30766651ffd57f0c19128fc4c3df29b721e588c909656d02cfdaa0a
 DIST memcached-1.6.7.tar.gz 547791 BLAKE2B 
7ee39a5867cfaa52eb5cfb947ce42f711e030422b03b5c5547284d5cab91c044d04293cc355da3b868fb0ca02e151aec5980e455c1bb8067e38682209b1e3e4e
 SHA512 
8b4c44ae4da8577cc5431aaca6118fdba27c42418a51a6d319d9040a975371a2fda9fcea2cb44c3d20c92f08961cb5f0ddd28c2f4cd12986b73c9342d91ea2c8
 DIST memcached-1.6.8.tar.gz 548024 BLAKE2B 
ab20f2c2e5a8f6cc4e0e1ef26e21f5d5b0baae35df887abd427d460591f9eadebbc08217a52e153c60b98098051ef855b918b74983bcb26f50b413caf508dca8
 SHA512 
256dd2b62fe9365183a44d9df99510f99f2fbb01d2afdf1558987331e7e746407f1caf5b93c82cb3e9b22ca8f8bc3d021706faf3849e60e43d9fdf7c1ec7cdcb
+DIST memcached-1.6.9.tar.gz 556137 BLAKE2B 
429d0d5de480d0a17a2c9942f595fab125d60ef1f3ff88754ab6e97eb9acdb71b26e40323babc7197e41d1605a82d2f094ce5638d2f4442467c8f652e20aaa44
 SHA512 
2169225aefe6bd7481d919ae3ef95ed85d2ed595f49daceeb13d2dc268097d4aee98cf604824fca103efcdffa7461bb26814209906a5dabf1a5d30af43f6a66c

diff --git a/net-misc/memcached/memcached-1.6.9.ebuild 
b/net-misc/memcached/memcached-1.6.9.ebuild
new file mode 100644
index 000..d1349f310a7
--- /dev/null
+++ b/net-misc/memcached/memcached-1.6.9.ebuild
@@ -0,0 +1,99 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools eutils flag-o-matic systemd
+
+MY_PV="${PV/_rc/-rc}"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="High-performance, distributed memory object caching system"
+HOMEPAGE="http://memcached.org/";
+SRC_URI="https://www.memcached.org/files/${MY_P}.tar.gz
+   https://www.memcached.org/files/old/${MY_P}.tar.gz";
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="debug sasl seccomp selinux slabs-reassign test" # hugetlbfs later
+
+RDEPEND=">=dev-libs/libevent-1.4:=
+   dev-lang/perl
+   sasl? ( dev-libs/cyrus-sasl )
+   seccomp? ( sys-libs/libseccomp )
+   selinux? ( sec-policy/selinux-memcached )"
+DEPEND="${RDEPEND}
+   acct-user/memcached
+   test? ( virtual/perl-Test-Harness >=dev-perl/Cache-Memcached-1.24 )"
+
+S="${WORKDIR}/${MY_P}"
+
+RESTRICT="!test? ( test )"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.2.2-fbsd.patch"
+   "${FILESDIR}/${PN}-1.4.0-fix-as-needed-linking.patch"
+   "${FILESDIR}/${PN}-1.4.4-as-needed.patch"
+   "${FILESDIR}/${PN}-1.4.17-EWOULDBLOCK.patch"
+)
+
+src_prepare() {
+   sed -i -e 's,-Werror,,g' configure.ac || die
+   sed -i -e 's,AM_CONFIG_HEADER,AC_CONFIG_HEADERS,' configure.ac || die
+   eautoreconf
+   use slabs-reassign && append-flags -DALLOW_SLABS_REASSIGN
+
+   # Tweak upstream systemd unit to use Gentoo variables/envfile.
+   # As noted by bug #587440
+   sed -i -e '/^ExecStart/{
+   s,{USER},{MEMCACHED_RUNAS},g;
+   s,{CACHESIZE},{MEMUSAGE},g;
+   s,OPTIONS,MISC_OPTS,g;
+   };
+   /Environment=/{s,OPTIONS,MISC_OPTS,g;};
+   /EnvironmentFile=/{s,/sysconfig/,/conf.d/,g;};
+   ' \
+   "${S}"/scripts/memcached.service
+   default
+}
+
+src_configure() {
+   econf \
+   --disable-docs \
+   $(use_enable sasl)
+   # The xml2rfc tool to build the additional docs requires TCL :-(
+   # `use_enable doc docs`
+}
+
+src_compile() {
+   # There is a heavy degree of per-object compile flags
+   # Users do NOT know better than upstream. Trying to compile the testapp 
and
+   # the -debug version with -DNDEBUG _WILL_ fail.
+   append-flags -UNDEBUG -pthread
+   emake testapp memcached-debug CFLAGS="${CFLAGS}"
+   filter-flags -UNDEBUG
+   emake
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+  

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

2020-11-20 Thread Matthew Thode
commit: 5d57459987f50987476e8dd2958abfc853f71abb
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Nov 21 05:56:18 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Nov 21 05:57:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d574599

sys-cluster/nova: 22.0.1 bump

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

 sys-cluster/nova/Manifest   |   2 +
 sys-cluster/nova/nova-22.0.1.ebuild | 213 
 2 files changed, 215 insertions(+)

diff --git a/sys-cluster/nova/Manifest b/sys-cluster/nova/Manifest
index ef01e7be3c9..d0c8578df84 100644
--- a/sys-cluster/nova/Manifest
+++ b/sys-cluster/nova/Manifest
@@ -1,8 +1,10 @@
 DIST nova-21.1.0.tar.gz 9213435 BLAKE2B 
e84bc5131c4bd5ca50ab2783b8b6c606eac0abdaf622fb9a32b9c86fb91ac569f92459da199b4d4bbf679710e593f7ce5539c7f85f89446a463064a108b58d3b
 SHA512 
abb6db64bf25806a9037df1b54bb5874e0599654b8cabafbb6ac659358124a5aa62668117e0a529677e1997d7d89b4265fbb9de4613f28d00d71bdfc4e94c471
 DIST nova-21.1.1.tar.gz 9300545 BLAKE2B 
757e7da69a10da73f7786e71e81ffc126304f8bff65910d3cb7ee8bf8fddc70490451b8173ac1a26e0b256e6cf54f4292617481c5fc7394e727ad2da20ed4607
 SHA512 
c44f0ca3b689cf3a3f364654bbdc8d4a425c702506be2d4e2d2baf3395b5212807f1cc696488602d642c3565a7a84a407357d3621028c39e844c2ac4c466
 DIST nova-22.0.0.tar.gz 9168828 BLAKE2B 
6ae28abd6e14a50c7d28564bcd7df0ab5681c5a89b4b561a68231d14f92faca4d394b2669b0f60292bc0a00589e36663f6529059a26fd6a5e3991066abda0070
 SHA512 
4b6b889550f839711462dba8b541977e35aecc062a3f86414b94338666807d31b330084ac3f6ebf889b8ef3f4fddec324d6af6fadeea76edd96baa48c00df7f7
+DIST nova-22.0.1.tar.gz 9254552 BLAKE2B 
b676ef872a9c14331860cd907a74c30f41dfb64908af9ac9e93bbc966a43daf1b3ef74d8a9e80e6f50ac25713a65a0082a02ecb276731ea3ea704dad210d6e7e
 SHA512 
002b4fac8807b0a993e281fe6438b3e1db5cba31f12b2570c3bfd7cc495a5334668db4cc75a66f11186a8f0409f84e47e9e8b38220a1b3af762e543481ab0b7c
 DIST nova.conf.sample-2020.1. 191182 BLAKE2B 
9b1b42b9ecc6a7f404c9874c5065591dfd8e896c97d261307f7f3b5e935e12db1b4650182660cf1eb97bcfb993d41a1f89e079120adc00b339b5a4ac1c98
 SHA512 
af22ba8dcfbafdb07ba2785bdcb40efd201adb81d47bee15ee11bb76437bc7a5b7c88390f995432ffa92b64b849df754bd15264e97530334f3eac6f8f93e828d
 DIST nova.conf.sample-2020.2. 187107 BLAKE2B 
e577126b67f2cc1aa6597f89b1632007f726ad85875d5f27041d0f9ac88923b944fe7f45ae2b3332157713b5f93034dad4da2860917b025649a52d7d71986612
 SHA512 
4149f8f19a573e8717f521183ba330853742bb6731f0e9ef02842d3be1c188ea3a2cdbeb6043086869360b9b1174a17e221c4ad1f543f74220c46cf31b1ca970
 DIST nova.conf.sample-21.1.0 191182 BLAKE2B 
9b1b42b9ecc6a7f404c9874c5065591dfd8e896c97d261307f7f3b5e935e12db1b4650182660cf1eb97bcfb993d41a1f89e079120adc00b339b5a4ac1c98
 SHA512 
af22ba8dcfbafdb07ba2785bdcb40efd201adb81d47bee15ee11bb76437bc7a5b7c88390f995432ffa92b64b849df754bd15264e97530334f3eac6f8f93e828d
 DIST nova.conf.sample-21.1.1 191182 BLAKE2B 
9b1b42b9ecc6a7f404c9874c5065591dfd8e896c97d261307f7f3b5e935e12db1b4650182660cf1eb97bcfb993d41a1f89e079120adc00b339b5a4ac1c98
 SHA512 
af22ba8dcfbafdb07ba2785bdcb40efd201adb81d47bee15ee11bb76437bc7a5b7c88390f995432ffa92b64b849df754bd15264e97530334f3eac6f8f93e828d
 DIST nova.conf.sample-22.0.0 187107 BLAKE2B 
e577126b67f2cc1aa6597f89b1632007f726ad85875d5f27041d0f9ac88923b944fe7f45ae2b3332157713b5f93034dad4da2860917b025649a52d7d71986612
 SHA512 
4149f8f19a573e8717f521183ba330853742bb6731f0e9ef02842d3be1c188ea3a2cdbeb6043086869360b9b1174a17e221c4ad1f543f74220c46cf31b1ca970
+DIST nova.conf.sample-22.0.1 187107 BLAKE2B 
e577126b67f2cc1aa6597f89b1632007f726ad85875d5f27041d0f9ac88923b944fe7f45ae2b3332157713b5f93034dad4da2860917b025649a52d7d71986612
 SHA512 
4149f8f19a573e8717f521183ba330853742bb6731f0e9ef02842d3be1c188ea3a2cdbeb6043086869360b9b1174a17e221c4ad1f543f74220c46cf31b1ca970

diff --git a/sys-cluster/nova/nova-22.0.1.ebuild 
b/sys-cluster/nova/nova-22.0.1.ebuild
new file mode 100644
index 000..4f4d7b2b35e
--- /dev/null
+++ b/sys-cluster/nova/nova-22.0.1.ebuild
@@ -0,0 +1,213 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_7 python3_8 )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+inherit distutils-r1 eutils linux-info multilib
+
+DESCRIPTION="Cloud computing fabric controller"
+HOMEPAGE="https://launchpad.net/nova";
+
+if [[ ${PV} == * ]];then
+   inherit git-r3
+   
SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/nova/victoria/nova.conf.sample
 -> nova.conf.sample-${PV}"
+   EGIT_REPO_URI="https://github.com/openstack/nova.git";
+   EGIT_BRANCH="stable/victoria"
+else
+   
SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/nova/victoria/nova.conf.sample
 -> nova.conf.sample-${PV}
+   https://tarballs.openstack.org/${PN}/${P}.tar.gz";
+   KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="+c

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

2020-11-20 Thread Matthew Thode
commit: e4d030536b3ca9e373e6de4b2ca3c464369e84da
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Nov 21 05:52:25 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Nov 21 05:57:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4d03053

dev-ruby/facter: 3.14.14 stable amd64/x86

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

 dev-ruby/facter/Manifest  |  1 -
 dev-ruby/facter/facter-3.14.12.ebuild | 99 ---
 dev-ruby/facter/facter-3.14.14.ebuild |  2 +-
 3 files changed, 1 insertion(+), 101 deletions(-)

diff --git a/dev-ruby/facter/Manifest b/dev-ruby/facter/Manifest
index 41baa7f3d54..4aee4cb4dc8 100644
--- a/dev-ruby/facter/Manifest
+++ b/dev-ruby/facter/Manifest
@@ -1,3 +1,2 @@
-DIST facter-3.14.12.tar.gz 406896 BLAKE2B 
5f25e9da754931c6318370877b0ab1158e47920c8d9776a24689b3b906a91beddfe6c32b584888f6c9131d8338eb3fcb3983f062767d16eb9da51572d0156c60
 SHA512 
599984d0cc86f65ab9c487963fe6e12513895079cf145d924910a53ceb702e3b59785ea073e695ec9acac36f8a7405ffcd1130eb338ce261a3af4213ef11f7d0
 DIST facter-3.14.13.tar.gz 407204 BLAKE2B 
12019c20284eb2a62fb65f2ab09246b98708b1aecb485700c2074865d02bb836f140802ad3b54f28c90fdd225b72e9216d21fb57dc0d82b8b3854607d5ba0eb7
 SHA512 
62910dc71aff0a0b0ef1ece054e0d1eea095c65ca6a34e17331aea943e217baa1a12bba1176143b652bb322195248a4aab1379eb69d6be419b73eb6ae3a8afac
 DIST facter-3.14.14.tar.gz 407276 BLAKE2B 
5f911581773ef9a19ee42b5ed64114e2519ff88e024490d74bf9b1e777221d92d3ed502c8e6a0df573a5390fca323fcf0bcfdce6aeed25826c84efb3971307a5
 SHA512 
22e0ff0a9280be129f7587e24109f76f34660d99086378dd7e9ccc004c08a4fa5dd6f9ba50957c146ea40e26344ee87dbafd45b885f8f576192b6e572b084af7

diff --git a/dev-ruby/facter/facter-3.14.12.ebuild 
b/dev-ruby/facter/facter-3.14.12.ebuild
deleted file mode 100644
index f2b40c9e3b7..000
--- a/dev-ruby/facter/facter-3.14.12.ebuild
+++ /dev/null
@@ -1,99 +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 ruby27"
-
-# git-r3 goes after ruby-ng so that it overrides src_unpack properly
-inherit cmake-utils eutils ruby-ng
-
-DESCRIPTION="A cross-platform ruby library for retrieving facts from operating 
systems"
-HOMEPAGE="http://www.puppetlabs.com/puppet/related-projects/facter/";
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="test"
-if [[ ${PV} ==  ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/puppetlabs/facter.git";
-   EGIT_BRANCH="master"
-else
-   [[ "${PV}" = *_rc* ]] || \
-   KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86"
-   SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-fi
-
-RESTRICT="!test? ( test )"
-
-ruby_add_bdepend "test? ( dev-ruby/rake dev-ruby/rspec:2 dev-ruby/mocha:0.14 )"
-
-RDEPEND="
-   >=dev-cpp/cpp-hocon-0.2.1:=
-   >=dev-libs/leatherman-1.0.0:=
-   dev-libs/openssl:0=
-   sys-apps/util-linux
-   app-emulation/virt-what
-   net-misc/curl
-   dev-libs/boost:=[nls]
-   >=dev-cpp/yaml-cpp-0.5.1
-   !https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 fi
 



[gentoo-commits] proj/musl:master commit in: media-tv/kodi/files/musl/, media-tv/kodi/

2020-11-20 Thread Jory Pratt
commit: 2b12b064c2d357c5c80d5a68c7bed4fb3e2c5842
Author: Jory Pratt  gentoo  org>
AuthorDate: Sat Nov 21 01:12:27 2020 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Sat Nov 21 01:12:27 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=2b12b064

media-tv/kodi: drop insecure version

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

 media-tv/kodi/Manifest |   3 -
 .../files/musl/0001-add-missing-stdint.h.patch |  24 --
 media-tv/kodi/files/musl/0002-fix-fileemu.patch|  94 --
 .../kodi/files/musl/0003_use_stdint_for_musl.patch |  34 ---
 .../kodi/files/musl/0004-Fix-ldt-for-musl.patch|  25 --
 .../kodi/files/musl/0005-fix-fortify-sources.patch |  25 --
 .../kodi/files/musl/0006-remove-filewrap.patch |  57 
 .../musl/0007-set-default-stacksize-for-musl.patch |  24 --
 media-tv/kodi/kodi-18.9.ebuild | 333 -
 9 files changed, 619 deletions(-)

diff --git a/media-tv/kodi/Manifest b/media-tv/kodi/Manifest
index 25d5653..b864149 100644
--- a/media-tv/kodi/Manifest
+++ b/media-tv/kodi/Manifest
@@ -1,7 +1,4 @@
-DIST ffmpeg-kodi-4.0.4-Leia-18.4.tar.gz 12430413 BLAKE2B 
6de6fde2c16264f851466b46f87c23c34e7d503203f69d47342d46034f153860190d196da51221f866315405c8a33325b216028256ee5d5e293336afae99
 SHA512 
c6dd75dbff7119adeeda246cfb640b5e8d3b4c242ef83e5ba070207b60f0c715c3fe3cb328d87687b70a133f122a03aba990f0e95f3aac7d5dbcee25bec59078
 DIST ffmpeg-kodi-4.3.1-Matrix-Beta1.tar.gz 13477440 BLAKE2B 
49415f76fd2a888b0efadb19597bd89db65c3d9e1224ab529ff0d73ab5734a23982b4d4905ddeb105ce59a816c4642cdb9f5568b0c39c29f5fb9431f9623d4ec
 SHA512 
ce43390e816dabeed4ca231f5f7adade6c721c38e17996a57810fb6025ea49b812133c2a6e29aac7c674d4e4af3a21dbd7e605d85fb966935a01bda983b884ac
-DIST kodi-18.2-no-java-required.patch 991361 BLAKE2B 
ec58367d2ac378107bf84ab0b675a74f4eac620984811f50051e1fa0ccae5b52520eb106e3508c4bf4d98899a5068279370a2ddcebe33278d20642208d3a17e2
 SHA512 
8267f3ca7156c9498473ac33c24419f62541f68beffbb090a5e3da18fc6e9c32e509c10c91bc2721d07fc0d3ffc723966306d44cc0a00a51e363b1c24ac5d03f
-DIST kodi-18.9.tar.gz 51052509 BLAKE2B 
e7cd888a38ed81e90566ae5e8a6f28c93688c8293af4b210674f224b02e7452ac81c25128cfbeaa3c67980fc00e18631060640ddff61263c782c807f8c5ea00e
 SHA512 
72e4e2afa46d5d2061ed348af5c9a4218474589cb38d630e6d0643b35aff3b0aefb3db81333d52da6c799c530a1b709b1d7ccb6ec77dcb0cba06fce6791cb353
 DIST kodi-19.0b1.tar.gz 52314501 BLAKE2B 
35090e969160f7ea6619d6c720f92a3ecf97391d12548927fcfd03ccc15091132f795f4636a4c4b8c15b2a623ee8b892c4b395e2e4e811152c63ffc19474ff90
 SHA512 
51a5a060c9ee51dd05303259cf59164bf273b05430f0987998a90879dfb52c1e95669e1c432476df65247fb70e920058119713a627ed7e12bf8dcd13645ffc40
 DIST libdvdcss-1.4.2-Leia-Beta-5.tar.gz 101068 BLAKE2B 
283aa2cec0a2200d3569bc280cb9659e9224a6b3a77db8a35b269cd8caf1337ac9d8b92b806df66f63ef7458a46bd6261f0b8b14678b10e26644a79dcbeea5da
 SHA512 
5185dbdbeb1bd13ea9d8723f1f4ab599d6f3102f5ba1096cd085aa1cda252c045f327c719227bba8e1b742352ade5e335106c8d0c1637a5a6b93ce661620dd7e
 DIST libdvdnav-6.0.0-Leia-Alpha-3.tar.gz 137942 BLAKE2B 
7573434a0ae8e8ccabf48173f81fcde29074eb138e119a2ae9156cde3c3d8bfd716f5d0e605b97f2dcac21f570781137c8533c5ae306b51e3905822fda318355
 SHA512 
11c93eaacd156f8fd7dec7c43d366438b201f31ad55b2870463a9e286912b6ada08882319a021fb7992190f87b909a49f2b83e0321cc17aedc29f7fe5898fa72

diff --git a/media-tv/kodi/files/musl/0001-add-missing-stdint.h.patch 
b/media-tv/kodi/files/musl/0001-add-missing-stdint.h.patch
deleted file mode 100644
index 8a1bfcd..000
--- a/media-tv/kodi/files/musl/0001-add-missing-stdint.h.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From 014f4b37a13366d1df37ab86db7fcb7c7cb6da7c Mon Sep 17 00:00:00 2001
-From: Jory Pratt 
-Date: Wed, 24 Apr 2019 10:09:26 -0500
-Subject: [PATCH 1/7] add missing stdint.h
-

- xbmc/filesystem/ZipManager.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/xbmc/filesystem/ZipManager.h b/xbmc/filesystem/ZipManager.h
-index f24d459..4cd899c 100644
 a/xbmc/filesystem/ZipManager.h
-+++ b/xbmc/filesystem/ZipManager.h
-@@ -21,6 +21,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- class CURL;
- 
--- 
-2.21.0
-

diff --git a/media-tv/kodi/files/musl/0002-fix-fileemu.patch 
b/media-tv/kodi/files/musl/0002-fix-fileemu.patch
deleted file mode 100644
index 25b8e5a..000
--- a/media-tv/kodi/files/musl/0002-fix-fileemu.patch
+++ /dev/null
@@ -1,94 +0,0 @@
-From eee360d98c2a506a3124b538a9f6629596607698 Mon Sep 17 00:00:00 2001
-From: Jory Pratt 
-Date: Wed, 24 Apr 2019 10:10:22 -0500
-Subject: [PATCH 2/7] fix fileemu
-

- xbmc/cores/DllLoader/exports/emu_msvcrt.cpp | 15 +--
- xbmc/cores/DllLoader/exports/emu_msvcrt.h   |  2 +-
- xbmc/cores/DllLoader/exports/wrapper.c  |  2 +-
- 3 files changed, 11 insertions(+), 8 deletions(-)
-
-diff --git a/xbmc/cores/DllLoader/exports/emu_msvcrt.cpp 
b/xbmc/cores/DllLoader/exports/emu_msvcrt.cpp
-index 5546f6e.

[gentoo-commits] proj/musl:master commit in: media-tv/kodi/

2020-11-20 Thread Jory Pratt
commit: c4a5efdd6c1f4abd92f21ababceaed5dc0c944e0
Author: Jory Pratt  gentoo  org>
AuthorDate: Sat Nov 21 01:11:22 2020 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Sat Nov 21 01:11:22 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=c4a5efdd

media-tv/kodi: sync with ::gentoo

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

 media-tv/kodi/Manifest|  4 ++--
 ..._alpha3_p20201109.ebuild => kodi-19.0_beta1-r1.ebuild} | 15 ++-
 2 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/media-tv/kodi/Manifest b/media-tv/kodi/Manifest
index c2a5f07..25d5653 100644
--- a/media-tv/kodi/Manifest
+++ b/media-tv/kodi/Manifest
@@ -1,8 +1,8 @@
 DIST ffmpeg-kodi-4.0.4-Leia-18.4.tar.gz 12430413 BLAKE2B 
6de6fde2c16264f851466b46f87c23c34e7d503203f69d47342d46034f153860190d196da51221f866315405c8a33325b216028256ee5d5e293336afae99
 SHA512 
c6dd75dbff7119adeeda246cfb640b5e8d3b4c242ef83e5ba070207b60f0c715c3fe3cb328d87687b70a133f122a03aba990f0e95f3aac7d5dbcee25bec59078
-DIST ffmpeg-kodi-4.3.1-Matrix-Alpha1-2.tar.gz 13477450 BLAKE2B 
c33a2aad8b895be3ea5be76de238680284487d38a8c22ce57f17c3944a6ba214c0dfa9ef1e4717244ff8f70f6dd640b36715842d61ddaed65867a6c096470283
 SHA512 
7f614d0dd2b319414cb31853be9cd52e5e81b780a4049e36470f992e78e52bcd65e99bfd268df5f8781ad030bb60f99d15bd5e8c4d7c2fd9a4011b55a3efc40c
+DIST ffmpeg-kodi-4.3.1-Matrix-Beta1.tar.gz 13477440 BLAKE2B 
49415f76fd2a888b0efadb19597bd89db65c3d9e1224ab529ff0d73ab5734a23982b4d4905ddeb105ce59a816c4642cdb9f5568b0c39c29f5fb9431f9623d4ec
 SHA512 
ce43390e816dabeed4ca231f5f7adade6c721c38e17996a57810fb6025ea49b812133c2a6e29aac7c674d4e4af3a21dbd7e605d85fb966935a01bda983b884ac
 DIST kodi-18.2-no-java-required.patch 991361 BLAKE2B 
ec58367d2ac378107bf84ab0b675a74f4eac620984811f50051e1fa0ccae5b52520eb106e3508c4bf4d98899a5068279370a2ddcebe33278d20642208d3a17e2
 SHA512 
8267f3ca7156c9498473ac33c24419f62541f68beffbb090a5e3da18fc6e9c32e509c10c91bc2721d07fc0d3ffc723966306d44cc0a00a51e363b1c24ac5d03f
 DIST kodi-18.9.tar.gz 51052509 BLAKE2B 
e7cd888a38ed81e90566ae5e8a6f28c93688c8293af4b210674f224b02e7452ac81c25128cfbeaa3c67980fc00e18631060640ddff61263c782c807f8c5ea00e
 SHA512 
72e4e2afa46d5d2061ed348af5c9a4218474589cb38d630e6d0643b35aff3b0aefb3db81333d52da6c799c530a1b709b1d7ccb6ec77dcb0cba06fce6791cb353
-DIST kodi-19.0_alpha3_p20201109.tar.gz 52322634 BLAKE2B 
4a6942289ecc4b706a1b1f950b19bae16088ea8717b22c3015fe1dd448d37dccc46b2f756049ab71519c72a2e8a639f07128590dd94f227fce73e12efe10
 SHA512 
2fe0abfa8a8e4c3dd73021cf1aedb6dadda9c14588380276fc5ab05dee13e397d4f893ee5a62301fc79ebe5fe9129b8d37489edc0014c5a15564c63696d89d93
+DIST kodi-19.0b1.tar.gz 52314501 BLAKE2B 
35090e969160f7ea6619d6c720f92a3ecf97391d12548927fcfd03ccc15091132f795f4636a4c4b8c15b2a623ee8b892c4b395e2e4e811152c63ffc19474ff90
 SHA512 
51a5a060c9ee51dd05303259cf59164bf273b05430f0987998a90879dfb52c1e95669e1c432476df65247fb70e920058119713a627ed7e12bf8dcd13645ffc40
 DIST libdvdcss-1.4.2-Leia-Beta-5.tar.gz 101068 BLAKE2B 
283aa2cec0a2200d3569bc280cb9659e9224a6b3a77db8a35b269cd8caf1337ac9d8b92b806df66f63ef7458a46bd6261f0b8b14678b10e26644a79dcbeea5da
 SHA512 
5185dbdbeb1bd13ea9d8723f1f4ab599d6f3102f5ba1096cd085aa1cda252c045f327c719227bba8e1b742352ade5e335106c8d0c1637a5a6b93ce661620dd7e
 DIST libdvdnav-6.0.0-Leia-Alpha-3.tar.gz 137942 BLAKE2B 
7573434a0ae8e8ccabf48173f81fcde29074eb138e119a2ae9156cde3c3d8bfd716f5d0e605b97f2dcac21f570781137c8533c5ae306b51e3905822fda318355
 SHA512 
11c93eaacd156f8fd7dec7c43d366438b201f31ad55b2870463a9e286912b6ada08882319a021fb7992190f87b909a49f2b83e0321cc17aedc29f7fe5898fa72
 DIST libdvdread-6.0.0-Leia-Alpha-3.tar.gz 130649 BLAKE2B 
0c206acdaf0776841ab792c74e023af07d9539eb72e03ae164382a31ed950f60e5e15f1d055979d28f1398924471b294d11f064b11b8373353b3962a3777ff3c
 SHA512 
b3419ba0a1a2dd70f1bb6236afdfe1c6e88c9ad4264198b289e3bba9375e077cecf7f89848c7b09debaa445327f3507101f3d157e692f7a7163b2bb52643e1e7

diff --git a/media-tv/kodi/kodi-19.0_alpha3_p20201109.ebuild 
b/media-tv/kodi/kodi-19.0_beta1-r1.ebuild
similarity index 96%
rename from media-tv/kodi/kodi-19.0_alpha3_p20201109.ebuild
rename to media-tv/kodi/kodi-19.0_beta1-r1.ebuild
index a0b3d87..98f4f67 100644
--- a/media-tv/kodi/kodi-19.0_alpha3_p20201109.ebuild
+++ b/media-tv/kodi/kodi-19.0_beta1-r1.ebuild
@@ -9,7 +9,7 @@ LIBDVDREAD_VERSION="6.0.0-Leia-Alpha-3"
 LIBDVDNAV_VERSION="6.0.0-Leia-Alpha-3"
 FFMPEG_VERSION="4.3.1"
 CODENAME="Matrix"
-FFMPEG_KODI_VERSION="Alpha1-2"
+FFMPEG_KODI_VERSION="Beta1"
 PYTHON_COMPAT=( python3_{6,7,8,9} )
 SRC_URI="https://github.com/xbmc/libdvdcss/archive/${LIBDVDCSS_VERSION}.tar.gz 
-> libdvdcss-${LIBDVDCSS_VERSION}.tar.gz
https://github.com/xbmc/libdvdread/archive/${LIBDVDREAD_VERSION}.tar.gz 
-> libdvdread-${LIBDVDREAD_VERSION}.tar.gz
@@ -19,10 +19,14 @@ if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://github.com/xbmc/xbmc.git";
inherit git-r3
 else
-   GIT_

[gentoo-commits] repo/gentoo:master commit in: profiles/, net-im/swift/

2020-11-20 Thread Conrad Kostecki
commit: a1871d18aec4587199f312b3ebd67256d51f7667
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sat Nov 21 00:37:48 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Nov 21 00:39:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1871d18

net-im/swift: migrate to lua-single eclass

Closes: https://bugs.gentoo.org/752807
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Conrad Kostecki  gentoo.org>

 net-im/swift/swift-4.0.2-r100.ebuild | 229 +++
 profiles/package.mask|   1 +
 2 files changed, 230 insertions(+)

diff --git a/net-im/swift/swift-4.0.2-r100.ebuild 
b/net-im/swift/swift-4.0.2-r100.ebuild
new file mode 100644
index 000..c41fea304bf
--- /dev/null
+++ b/net-im/swift/swift-4.0.2-r100.ebuild
@@ -0,0 +1,229 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+LUA_COMPAT=( lua5-{1..2} luajit )
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit lua-single python-any-r1 scons-utils toolchain-funcs xdg-utils
+
+DESCRIPTION="An elegant, secure, adaptable and intuitive XMPP Client"
+HOMEPAGE="https://www.swift.im/";
+SRC_URI="
+   https://swift.im/downloads/releases/${P}/${P}.tar.gz
+   
https://dev.gentoo.org/~conikost/distfiles/patches/swift-4.0.2-python3-compatibility.patch.gz";
+
+LICENSE="BSD BSD-1 CC-BY-3.0 GPL-3 OFL-1.1"
+SLOT="4/0"
+KEYWORDS="~amd64"
+IUSE="+client expat gconf +icu +idn lua spell test zeroconf"
+REQUIRED_USE="
+   || ( icu idn )
+   gconf? ( client )
+   lua? ( ${LUA_REQUIRED_USE} )
+   spell? ( client )
+"
+
+RDEPEND="
+   dev-db/sqlite:3
+   dev-libs/boost:=
+   dev-libs/openssl:0=
+   net-libs/libnatpmp
+   net-libs/miniupnpc:=
+   sys-libs/zlib
+   client? (
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtmultimedia:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtwebkit:5
+   dev-qt/qtx11extras:5
+   net-dns/avahi
+   )
+   expat? ( dev-libs/expat )
+   !expat? ( dev-libs/libxml2:2 )
+   gconf? ( gnome-base/gconf:2 )
+   icu? ( dev-libs/icu:= )
+   idn? ( net-dns/libidn:= )
+   lua? ( ${LUA_DEPS} )
+   spell? ( app-text/hunspell:= )
+"
+
+DEPEND="
+   ${RDEPEND}
+   >=dev-util/scons-3.0.1-r3
+   client? ( dev-qt/linguist-tools:5 )
+   test? ( net-dns/avahi )
+"
+
+# Tests don't run, as they fail with "[QA/UnitTest/**dummy**] Error -6".
+RESTRICT="test"
+
+DOCS=(
+   "DEVELOPMENT.md"
+   "README.md"
+   "Swiften/ChangeLog.md"
+)
+
+PATCHES=(
+   "${FILESDIR}"/${P}-boost-1.69-compatibility.patch
+   "${WORKDIR}"/${P}-python3-compatibility.patch
+   "${FILESDIR}"/${P}-qt-5.11-compatibility.patch
+   "${FILESDIR}"/${P}-qt-5.15-compatibility.patch
+)
+
+pkg_setup() {
+   python-any-r1_pkg_setup
+   use lua && lua-single_pkg_setup
+}
+
+src_prepare() {
+   default
+
+   # Don't include '/usr/lib*' in the link command line for 
`swiften-config`
+   sed -e '/_LIBDIRFLAGS/d' -i Swiften/Config/SConscript || die
+
+   # Use correct LIBDIR for Lua
+   sed -e "s/lib/$(get_libdir)/g" -i Sluift/SConscript.variant || die
+
+   # Hack for finding Qt system libs
+   mkdir "${T}"/qt || die
+   ln -s "${EPREFIX}"/usr/$(get_libdir)/qt5/bin "${T}"/qt/bin || die
+   ln -s "${EPREFIX}"/usr/$(get_libdir)/qt5 "${T}"/qt/lib || die
+   ln -s "${EPREFIX}"/usr/include/qt5 "${T}"/qt/include || die
+
+   # Remove parts of Swift, which a user don't want to compile
+   if ! use client; then rm -fr Swift Slimber || die; fi
+   if ! use lua; then rm -fr Sluift || die; fi
+   if ! use zeroconf; then
+   rm -fr Limber || die
+   if use client; then rm -fr Slimber || die; fi
+   fi
+
+   # Remove '3rdParty', as the system libs should be used
+   # `CppUnit`, `GoogleTest` and `HippoMocks` are needed for tests
+   local my3rdparty=(
+   Boost
+   Breakpad
+   DocBook
+   Expat
+   LCov
+   Ldns
+   LibIDN
+   LibMiniUPnPc
+   LibNATPMP
+   Lua
+   OpenSSL
+   SCons
+   SQLite
+   Unbound
+   ZLib
+   )
+
+   if use test; then
+   cd 3rdParty && rm -fr "${my3rdparty[@]}" || die
+   else
+   rm -fr 3rdParty || die
+   fi
+}
+
+src_configure() {
+   MYSCONS=(
+   ar="$(tc-getAR)"
+   allow_warnings="yes"
+   assertions="no"
+   build_examples="yes"
+   boost_bundled_enable="false"
+   boost_force_bundled="false"
+   cc="$(tc-getCC)"

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

2020-11-20 Thread Sam James
commit: 990bfb83db1fc688565ce29c7ec0417e7139a5f5
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 20 23:43:41 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 23:43:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=990bfb83

net-dns/c-ares: Stabilize 1.17.1 arm, #754939

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

 net-dns/c-ares/c-ares-1.17.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/c-ares/c-ares-1.17.1.ebuild 
b/net-dns/c-ares/c-ares-1.17.1.ebuild
index b1d5352f3a3..de9bc1461ee 100644
--- a/net-dns/c-ares/c-ares-1.17.1.ebuild
+++ b/net-dns/c-ares/c-ares-1.17.1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://c-ares.haxx.se/";
 SRC_URI="https://${PN}.haxx.se/download/${P}.tar.gz";
 
 LICENSE="MIT"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris"
 IUSE="static-libs"
 
 # Subslot = SONAME of libcares.so.2



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

2020-11-20 Thread Sam James
commit: 95e826354b0168194f8965d590eaff8d9b1b240f
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 20 23:43:08 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 23:43:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95e82635

net-dns/c-ares: Stabilize 1.17.1 x86, #754939

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

 net-dns/c-ares/c-ares-1.17.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/c-ares/c-ares-1.17.1.ebuild 
b/net-dns/c-ares/c-ares-1.17.1.ebuild
index f2714b1d212..de9b917adcf 100644
--- a/net-dns/c-ares/c-ares-1.17.1.ebuild
+++ b/net-dns/c-ares/c-ares-1.17.1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://c-ares.haxx.se/";
 SRC_URI="https://${PN}.haxx.se/download/${P}.tar.gz";
 
 LICENSE="MIT"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris"
 IUSE="static-libs"
 
 # Subslot = SONAME of libcares.so.2



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

2020-11-20 Thread Sam James
commit: acba204d4c278ca097c63f80bc05c6cdde269ccb
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 20 23:43:24 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 23:43:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acba204d

net-dns/c-ares: Stabilize 1.17.1 amd64, #754939

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

 net-dns/c-ares/c-ares-1.17.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/c-ares/c-ares-1.17.1.ebuild 
b/net-dns/c-ares/c-ares-1.17.1.ebuild
index de9b917adcf..b1d5352f3a3 100644
--- a/net-dns/c-ares/c-ares-1.17.1.ebuild
+++ b/net-dns/c-ares/c-ares-1.17.1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://c-ares.haxx.se/";
 SRC_URI="https://${PN}.haxx.se/download/${P}.tar.gz";
 
 LICENSE="MIT"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris"
 IUSE="static-libs"
 
 # Subslot = SONAME of libcares.so.2



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

2020-11-20 Thread Sam James
commit: 42f5f3be26abd0075c03d8bb07d51eb1b902c93d
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 20 23:43:59 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 23:43:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42f5f3be

net-dns/c-ares: Stabilize 1.17.1 arm64, #754939

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

 net-dns/c-ares/c-ares-1.17.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/c-ares/c-ares-1.17.1.ebuild 
b/net-dns/c-ares/c-ares-1.17.1.ebuild
index de9bc1461ee..141ed080a47 100644
--- a/net-dns/c-ares/c-ares-1.17.1.ebuild
+++ b/net-dns/c-ares/c-ares-1.17.1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://c-ares.haxx.se/";
 SRC_URI="https://${PN}.haxx.se/download/${P}.tar.gz";
 
 LICENSE="MIT"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris"
 IUSE="static-libs"
 
 # Subslot = SONAME of libcares.so.2



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

2020-11-20 Thread Andreas Sturmlechner
commit: 6d369a03bd098977934052a920611dd35fe91805
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Nov 20 22:37:19 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Nov 20 22:42:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d369a03

profiles: Add dev-qt/qtwebkit to package.deprecated

Bug: https://bugs.gentoo.org/684580
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 profiles/package.deprecated | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/package.deprecated b/profiles/package.deprecated
index a08ef1f2b83..429d872be61 100644
--- a/profiles/package.deprecated
+++ b/profiles/package.deprecated
@@ -17,6 +17,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Andreas Sturmlechner  (2020-11-20)
+# dev-qt/qtwebkit is in the process of being removed, tracker bug #684580
+dev-qt/qtwebkit
+
 # Thomas Deutschmann  (2020-09-08)
 # Dead implementations, please migrate to >=zeromq-4
 dev-perl/ZMQ-LibZMQ2



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

2020-11-20 Thread Sam James
commit: dd4fb3c135157fc8552af5e7f1b266466464f2cb
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 20 22:25:53 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 22:25:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd4fb3c1

sys-cluster/ceph: arm64 keyworded (bug #755659)

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

 sys-cluster/ceph/ceph-15.2.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/ceph/ceph-15.2.6.ebuild 
b/sys-cluster/ceph/ceph-15.2.6.ebuild
index f8190628700..9e98afd12a0 100644
--- a/sys-cluster/ceph/ceph-15.2.6.ebuild
+++ b/sys-cluster/ceph/ceph-15.2.6.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == ** ]]; then
SRC_URI=""
 else
SRC_URI="https://download.ceph.com/tarballs/${P}.tar.gz";
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~arm64"
 fi
 
 DESCRIPTION="Ceph distributed filesystem"



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

2020-11-20 Thread Sam James
commit: 686946f09bceebd6c5c1b1e28daa7451c58e9e42
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 20 22:26:02 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 22:26:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=686946f0

dev-libs/rocksdb: arm64 keyworded (bug #755659)

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

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

diff --git a/dev-libs/rocksdb/rocksdb-6.14.5.ebuild 
b/dev-libs/rocksdb/rocksdb-6.14.5.ebuild
index a1c12d2cf0b..9b4a7a55f53 100644
--- a/dev-libs/rocksdb/rocksdb-6.14.5.ebuild
+++ b/dev-libs/rocksdb/rocksdb-6.14.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/facebook/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_sse4_2 jemalloc 
static-libs"
 
 COMMON_DEPEND="



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

2020-11-20 Thread Andreas Sturmlechner
commit: 1eac756c2e7d76058e6d6eecab21289612191cae
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Nov 20 19:58:32 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Nov 20 21:33:54 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=1eac756c

kde-apps/umbrello: Disable Qt5WebKitWidgets in cmake

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

 kde-apps/umbrello/umbrello-20.11.80.ebuild  | 1 +
 kde-apps/umbrello/umbrello-20.12.49..ebuild | 1 +
 kde-apps/umbrello/umbrello-.ebuild  | 1 +
 3 files changed, 3 insertions(+)

diff --git a/kde-apps/umbrello/umbrello-20.11.80.ebuild 
b/kde-apps/umbrello/umbrello-20.11.80.ebuild
index 4e598fc2e7..6bd2c973c7 100644
--- a/kde-apps/umbrello/umbrello-20.11.80.ebuild
+++ b/kde-apps/umbrello/umbrello-20.11.80.ebuild
@@ -59,6 +59,7 @@ PATCHES=(
 src_configure() {
local mycmakeargs=(
-DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=ON # broken, re-enable w/ 
ECM_QTHELP
+   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5WebKitWidgets=ON
-DBUILD_APIDOC=OFF
-DBUILD_KF5=ON
-DBUILD_PHP_IMPORT=$(usex php)

diff --git a/kde-apps/umbrello/umbrello-20.12.49..ebuild 
b/kde-apps/umbrello/umbrello-20.12.49..ebuild
index 1a532daeed..565df30d3d 100644
--- a/kde-apps/umbrello/umbrello-20.12.49..ebuild
+++ b/kde-apps/umbrello/umbrello-20.12.49..ebuild
@@ -59,6 +59,7 @@ PATCHES=(
 src_configure() {
local mycmakeargs=(
-DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=ON # broken, re-enable w/ 
ECM_QTHELP
+   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5WebKitWidgets=ON
-DBUILD_APIDOC=OFF
-DBUILD_KF5=ON
-DBUILD_PHP_IMPORT=$(usex php)

diff --git a/kde-apps/umbrello/umbrello-.ebuild 
b/kde-apps/umbrello/umbrello-.ebuild
index 1a532daeed..565df30d3d 100644
--- a/kde-apps/umbrello/umbrello-.ebuild
+++ b/kde-apps/umbrello/umbrello-.ebuild
@@ -59,6 +59,7 @@ PATCHES=(
 src_configure() {
local mycmakeargs=(
-DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=ON # broken, re-enable w/ 
ECM_QTHELP
+   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5WebKitWidgets=ON
-DBUILD_APIDOC=OFF
-DBUILD_KF5=ON
-DBUILD_PHP_IMPORT=$(usex php)



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

2020-11-20 Thread James Le Cuirot
commit: 471fde557815a5b16edfebb5c5848ac749e2757b
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Nov 20 22:17:56 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Nov 20 22:21:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=471fde55

www-client/vivaldi-snapshot: Drop old 3.4.2066.70_p1

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

 www-client/vivaldi-snapshot/Manifest   |   4 -
 .../vivaldi-snapshot-3.4.2066.70_p1.ebuild | 106 -
 2 files changed, 110 deletions(-)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index 321a2a89cfb..3fce795db91 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -1,7 +1,3 @@
-DIST vivaldi-snapshot-3.4.2066.70_p1-amd64.deb 75591304 BLAKE2B 
33d7f5120e98228dd29f1aa3ed722d4f2f191c8d6e41bd073867479ff54782b747d2659f9085cc19e81161e616364cae7ac20c15ded4ed1c29098edda37e6a3e
 SHA512 
3c1ba6cbb94ff6da98a5ce602a340962e1427b53cf2068ded72434159d09fef67cdf98e55f46414169324c3f8635063c085dff790fa0ef41f7235a04d455f684
-DIST vivaldi-snapshot-3.4.2066.70_p1-arm64.deb 68012848 BLAKE2B 
df7926527388ad9646362b9ee026567f316b7541b255fe39e155454ee2ca1905938783069d8e5e16822693609ef227d625c99bf3dd4d926839bb5dc552954759
 SHA512 
f7569de9400b929b85a4450133d27a8b81bd3d33d5ae7f48c864caf97aa5db2c4040990d5467f7e7b68c9ee495629b216887315399d6e5443a600d34f071800c
-DIST vivaldi-snapshot-3.4.2066.70_p1-armhf.deb 66969164 BLAKE2B 
44b28ddb82358d5d68329eea3500429bbe059bb0499639c261788387066809e8f3eb41a6efbdd9eac6a0a4ac083abd67cf48dee28ca6315174b0d6711f5eab2b
 SHA512 
8dd70ef5f90e2a49b8e8db33809f295365466e59db4066bdfe2d7ad08a1144e4d03f8f5fa46f45838eaf5e0e69b05169cb69c4eb5ff9e1a1f61bb577ccd24301
-DIST vivaldi-snapshot-3.4.2066.70_p1-i386.deb 72746984 BLAKE2B 
dc9beec3a3277cfc33c2d4c8690de7a505e5add89190d228eb30d7952d3e671d0b1b8a161df861431edd76a55b61212341e1f0ae7218483a15c3552d30c2f304
 SHA512 
257a7bf5dd489deb7eb568d4a69be1bd9f53ef17b9f10e638d36710e38c3590744ba8acaf27570027b5f863ca175ea9dcacb72c9b6cd17ffd8db4fb58325e36b
 DIST vivaldi-snapshot-3.5.2088.7_p1-amd64.deb 75752868 BLAKE2B 
f5c83366b5a505e9673a714716ad54e952f031903e57d6462c0b4c204ac3ec8561fadcc6d78322ad19850271f8df33c2a7851ab237ae4b53eba80030ff900be2
 SHA512 
1b4d540560f2276b8f3b8870a4080f28f9e7467ef4da81249f9a4e809be2bf40d929f9912dea0e45a6aad5198e0f2329ca29968261cd560f7653c9e8ddadcd4a
 DIST vivaldi-snapshot-3.5.2088.7_p1-arm64.deb 68156456 BLAKE2B 
4d2ea0defb0174f9c7487ae7c3c4ad2a24630b19e71f997e9e55e0f06f378609994b87ca8ee96b8716762d6ed073cf35a8cd6b8f31d0587e595697c3b9f81afe
 SHA512 
4f285098d9304b6cd70f90cd7663f408f2da352115a2af39ceaaa0467561057f70bcb15385033b456e3ac04115fa9dd392861c42d5e8cacd69bfdfaf2bcdd0f3
 DIST vivaldi-snapshot-3.5.2088.7_p1-armhf.deb 67085320 BLAKE2B 
673973b731fe3701be09b0b5896700101cc1255e8b329beccb46e57dc14314095cce60b629e8c877aacc0e41955c976f5c3cb3820fded740c254b99e98ca2f5f
 SHA512 
e554917546363cff91adc34498efad01250a9f72787b65bc06a84e3fef894981a7fafe12c9502a41b693fc829aaefd3fa56ce848d675fac1a6ac305c23ee460f

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

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

2020-11-20 Thread James Le Cuirot
commit: 5bf1f7164689ec8919b7f8baf5d0d76207bf0f8c
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Nov 20 22:15:29 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Nov 20 22:21:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bf1f716

www-client/vivaldi-snapshot: Other miscellaneous cleanups

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

 .../vivaldi-snapshot-3.5.2110.3.ebuild | 32 --
 1 file changed, 12 insertions(+), 20 deletions(-)

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild
index 73a74a24df6..f69da1d681b 100644
--- a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild
+++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild
@@ -2,6 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+
 CHROMIUM_LANGS="
af
am
@@ -76,7 +77,8 @@ CHROMIUM_LANGS="
zh-CN
zh-TW
 "
-inherit chromium-2 desktop multilib unpacker toolchain-funcs xdg
+
+inherit chromium-2 desktop unpacker xdg
 
 VIVALDI_PN="${PN/%vivaldi/vivaldi-stable}"
 VIVALDI_HOME="opt/${PN}"
@@ -103,9 +105,6 @@ KEYWORDS="-* ~amd64 ~arm ~arm64 ~x86"
 IUSE="proprietary-codecs widevine"
 RESTRICT="bindist mirror"
 
-DEPEND="
-   virtual/libiconv
-"
 RDEPEND="
dev-libs/expat
dev-libs/glib:2
@@ -136,33 +135,27 @@ RDEPEND="
proprietary-codecs? ( media-video/ffmpeg:0/56.58.58[chromium(-)] )
widevine? ( www-plugins/chrome-binary-plugins )
 "
+
 QA_PREBUILT="*"
-S=${WORKDIR}
+S="${WORKDIR}"
 
 src_unpack() {
unpack_deb ${A}
 }
 
 src_prepare() {
-   iconv -c -t UTF-8 usr/share/applications/${VIVALDI_PN}.desktop > 
"${T}"/${VIVALDI_PN}.desktop || die
-   mv "${T}"/${VIVALDI_PN}.desktop 
usr/share/applications/${VIVALDI_PN}.desktop || die
-
-   mv usr/share/doc/${VIVALDI_PN} usr/share/doc/${PF} || die
-   chmod 0755 usr/share/doc/${PF} || die
+   # Rename docs directory to our needs.
+   mv usr/share/doc/{${VIVALDI_PN},${PF}}/ || die
 
+   # Decompress the docs.
gunzip usr/share/doc/${PF}/changelog.gz || die
 
# The appdata directory is deprecated.
mv usr/share/{appdata,metainfo}/ || die
 
-   rm \
-   _gpgbuilder \
-   etc/cron.daily/${PN} \
-   || die
-   rmdir \
-   etc/cron.daily/ \
-   etc/ \
-   || die
+   # Remove cron job for updating from Debian repos.
+   rm etc/cron.daily/${PN} ${VIVALDI_HOME}/cron/${PN} || die
+   rmdir etc/{cron.daily/,} ${VIVALDI_HOME}/cron/ || die
 
# Remove scripts that will most likely break things.
rm ${VIVALDI_HOME}/update-{ffmpeg,widevine} || die
@@ -176,9 +169,8 @@ src_prepare() {
 }
 
 src_install() {
-   mv * "${D}" || die
+   mv */ "${D}" || die
dosym /${VIVALDI_HOME}/${PN} /usr/bin/${PN}
-
fperms 4711 /${VIVALDI_HOME}/vivaldi-sandbox
 
local logo size



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

2020-11-20 Thread James Le Cuirot
commit: 6820eedb820d48207ddc90be02f276662401e7a1
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Nov 20 22:07:02 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Nov 20 22:21:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6820eedb

www-client/vivaldi-snapshot: Add proprietary-codecs and widevine flags

This also removes the upstream "update" scripts that are most likely
to just break thing.

Bug: https://bugs.gentoo.org/647738
Bug: https://bugs.gentoo.org/653448
Bug: https://bugs.gentoo.org/733904
Bug: https://bugs.gentoo.org/753973
Package-Manager: Portage-3.0.9, Repoman-3.0.1
Signed-off-by: James Le Cuirot  gentoo.org>

 www-client/vivaldi-snapshot/metadata.xml   |  4 
 .../vivaldi-snapshot-3.5.2110.3.ebuild | 18 ++
 2 files changed, 22 insertions(+)

diff --git a/www-client/vivaldi-snapshot/metadata.xml 
b/www-client/vivaldi-snapshot/metadata.xml
index 3b94165dd3d..91c75704fe9 100644
--- a/www-client/vivaldi-snapshot/metadata.xml
+++ b/www-client/vivaldi-snapshot/metadata.xml
@@ -5,4 +5,8 @@
ch...@gentoo.org
James Le Cuirot

+   
+   Use system 
media-video/ffmpeg to support patent-encumbered media codecs
+   Unsupported closed-source DRM capability 
(required by Netflix VOD)
+   
 

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild
index 2884f5b9712..0041affa320 100644
--- a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild
+++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild
@@ -32,6 +32,7 @@ SRC_URI="
 LICENSE="Vivaldi"
 SLOT="0"
 KEYWORDS="-* ~amd64 ~arm ~arm64 ~x86"
+IUSE="proprietary-codecs widevine"
 RESTRICT="bindist mirror"
 
 DEPEND="
@@ -64,6 +65,8 @@ RDEPEND="
x11-libs/libXrender
x11-libs/libXtst
x11-libs/pango[X]
+   proprietary-codecs? ( media-video/ffmpeg:0/56.58.58[chromium(-)] )
+   widevine? ( www-plugins/chrome-binary-plugins )
 "
 QA_PREBUILT="*"
 S=${WORKDIR}
@@ -98,6 +101,9 @@ src_prepare() {
usr/share/icons/hicolor/${d}x${d}/apps/${PN}.png || die
done
 
+   # Remove scripts that will most likely break things.
+   rm ${VIVALDI_HOME}/update-{ffmpeg,widevine} || die
+
pushd "${VIVALDI_HOME}/locales" > /dev/null || die
chromium_remove_language_paks
popd > /dev/null || die
@@ -111,4 +117,16 @@ src_install() {
dosym /${VIVALDI_HOME}/${PN} /usr/bin/${PN}
 
fperms 4711 /${VIVALDI_HOME}/vivaldi-sandbox
+
+   if use proprietary-codecs; then
+   dosym ../../../usr/$(get_libdir)/chromium/libffmpeg.so \
+ /${VIVALDI_HOME}/lib/libffmpeg.so
+   fi
+
+   if use widevine; then
+   dosym ../../usr/$(get_libdir)/chromium-browser/WidevineCdm \
+ /${VIVALDI_HOME}/WidevineCdm
+   else
+   rm "${ED}"/${VIVALDI_HOME}/WidevineCdm || die
+   fi
 }



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

2020-11-20 Thread James Le Cuirot
commit: fee47c72ba7b42e6615e6f0664b30b9faa100a5c
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Nov 20 22:11:21 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Nov 20 22:21:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fee47c72

www-client/vivaldi-snapshot: Properly handle deprecated appdata dir

Instead of just deleting it.

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

 www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild
index d6fc7f5a6fa..6a8463950f6 100644
--- a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild
+++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild
@@ -152,6 +152,9 @@ src_prepare() {
 
gunzip usr/share/doc/${PF}/changelog.gz || die
 
+   # The appdata directory is deprecated.
+   mv usr/share/{appdata,metainfo}/ || die
+
rm \
_gpgbuilder \
etc/cron.daily/${PN} \
@@ -181,7 +184,6 @@ src_prepare() {
 }
 
 src_install() {
-   rm -r usr/share/appdata || die
mv * "${D}" || die
dosym /${VIVALDI_HOME}/${PN} /usr/bin/${PN}
 



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

2020-11-20 Thread James Le Cuirot
commit: 44508de635712c471c5a48744a3710925c9e8cfe
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Nov 20 21:47:36 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Nov 20 22:21:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44508de6

www-client/vivaldi-snapshot: Add version 3.5.2110.3

This switches back to the upstream .deb filenames. I don't know why
jer stopped using these.

This also drops the _p1 suffix for the first Debian revision so that
our packages better align with other distros on sites like
Repology. Vivaldi very rarely releases a second Debian revision
anyway.

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

 www-client/vivaldi-snapshot/Manifest   |   4 +
 .../vivaldi-snapshot-3.5.2110.3.ebuild | 114 +
 2 files changed, 118 insertions(+)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index 8c38e163b3e..321a2a89cfb 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -6,3 +6,7 @@ DIST vivaldi-snapshot-3.5.2088.7_p1-amd64.deb 75752868 BLAKE2B 
f5c83366b5a505e96
 DIST vivaldi-snapshot-3.5.2088.7_p1-arm64.deb 68156456 BLAKE2B 
4d2ea0defb0174f9c7487ae7c3c4ad2a24630b19e71f997e9e55e0f06f378609994b87ca8ee96b8716762d6ed073cf35a8cd6b8f31d0587e595697c3b9f81afe
 SHA512 
4f285098d9304b6cd70f90cd7663f408f2da352115a2af39ceaaa0467561057f70bcb15385033b456e3ac04115fa9dd392861c42d5e8cacd69bfdfaf2bcdd0f3
 DIST vivaldi-snapshot-3.5.2088.7_p1-armhf.deb 67085320 BLAKE2B 
673973b731fe3701be09b0b5896700101cc1255e8b329beccb46e57dc14314095cce60b629e8c877aacc0e41955c976f5c3cb3820fded740c254b99e98ca2f5f
 SHA512 
e554917546363cff91adc34498efad01250a9f72787b65bc06a84e3fef894981a7fafe12c9502a41b693fc829aaefd3fa56ce848d675fac1a6ac305c23ee460f
 DIST vivaldi-snapshot-3.5.2088.7_p1-i386.deb 72172488 BLAKE2B 
b59c82e62daaa16c902ee98e45a6985be510a587e671c503e4789be9cad79e5d289d4e28d6f802ab794f1a59024fec6515b6e4c23ee3c684f273f016d7cc
 SHA512 
d8c1024ef419dc30161247587c3e6150c0c20c5ed40c304ebaa10996b88fb95f056cbe7dc673593b46c17813860379edc9f7c09845139af51ae696f6c9b3c65f
+DIST vivaldi-snapshot_3.5.2110.3-1_amd64.deb 76322716 BLAKE2B 
5b659e4fede5006037da997ae4e62cc54ba1264c3f5f16d286dc00d1acd8047581b193e6b97a1134143532a348e660847d6f6fc399c0898affe316e5dcce352b
 SHA512 
7352bc542953a8be51cafcda7b99bf0f3716283c7681ee5c5cef85dcdb3b9abe5d36dd42561a283159e47b11f46e004d3d33d2f39a7e3605efd96fd20082280d
+DIST vivaldi-snapshot_3.5.2110.3-1_arm64.deb 68579824 BLAKE2B 
52110e4b5b18771b97c4e114aa2f99e4681ea9ae0ea90b11dfaa4cb6549d6cd03b7e6fcdbedf1e433f2e59cba1b042620d081b25a75f3c04fc0c10159cf98750
 SHA512 
7f05001ad96aabde3fe70e7a6be5d8fa23b46c14bbe6d69f5b8b77fd30ae58fed55d7680916d037e51bbd97836cbcfc6583bb98f6ee0ac0fdcdc60a847d43238
+DIST vivaldi-snapshot_3.5.2110.3-1_armhf.deb 67678904 BLAKE2B 
9839d71df8299a0d84b2ec6cf5e3a4aab22a4e7e9e6136edfffb4779943cf69fb7dfb8ce47c01cb345a92a56cd01443d20bf3cbd40fb0b7fbb36cada3c54fb71
 SHA512 
22a8e1a85fdc00291311e78b0c75c9aca6cdb060fb46677244ab8ab39793fbe290496ff9df640fab4e5504a43e3ffb293fcc1f5596178494e460c9e9abb6f623
+DIST vivaldi-snapshot_3.5.2110.3-1_i386.deb 73163460 BLAKE2B 
84c33d2fe509889235dc2b0a03063328aea19c3908d84e418a34b65a6d4dd3f929724b3dff544c55aa4df333152e87e0e226087cabb09b64ce16b3b5403967ab
 SHA512 
e860ded27d62043b36bb6bc1bcf80246e6569e617a77a2d72afce6312804ea16cb43d63fa5971246bef26dcd4cc7a1d5ea46c256100ca44a091d132b6ed8678a

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild
new file mode 100644
index 000..2884f5b9712
--- /dev/null
+++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild
@@ -0,0 +1,114 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+CHROMIUM_LANGS="
+   af am ar be bg bn ca cs da de de-CH el en-GB en-US eo es es-419 es-PE 
et eu
+   fa fi fil fr fy gd gl gu he hi hr hu hy id io is it ja jbo ka kn ko ku 
lt
+   lv mk ml mr ms nb nl nn pl pt-BR pt-PT ro ru sc sk sl sq sr sv sw ta te 
th
+   tr uk vi zh-CN zh-TW
+"
+inherit chromium-2 multilib unpacker toolchain-funcs xdg
+
+VIVALDI_PN="${PN/%vivaldi/vivaldi-stable}"
+VIVALDI_HOME="opt/${PN}"
+DESCRIPTION="A browser for our friends"
+HOMEPAGE="https://vivaldi.com/";
+
+if [[ ${PV} = *_p* ]]; then
+   DEB_REV="${PV#*_p}"
+else
+   DEB_REV=1
+fi
+
+VIVALDI_BASE_URI="https://downloads.vivaldi.com/${VIVALDI_PN#vivaldi-}/${VIVALDI_PN}_${PV%_p*}-${DEB_REV}_";
+SRC_URI="
+   amd64? ( ${VIVALDI_BASE_URI}amd64.deb )
+   arm64? ( ${VIVALDI_BASE_URI}arm64.deb )
+   arm? ( ${VIVALDI_BASE_URI}armhf.deb )
+   x86? ( ${VIVALDI_BASE_URI}i386.deb )
+"
+
+LICENSE="Vivaldi"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm ~arm64 ~x86"
+RESTRICT="bindist mirror"
+
+DEPEND="
+   virtual/libiconv
+"

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

2020-11-20 Thread James Le Cuirot
commit: 5f79006dd5952b9b832557b698ceddd3ed7c824e
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Nov 20 22:13:11 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Nov 20 22:21:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f79006d

www-client/vivaldi-snapshot: Install icons with newicon

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

 .../vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild | 17 -
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild
index 6a8463950f6..73a74a24df6 100644
--- a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild
+++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild
@@ -76,7 +76,7 @@ CHROMIUM_LANGS="
zh-CN
zh-TW
 "
-inherit chromium-2 multilib unpacker toolchain-funcs xdg
+inherit chromium-2 desktop multilib unpacker toolchain-funcs xdg
 
 VIVALDI_PN="${PN/%vivaldi/vivaldi-stable}"
 VIVALDI_HOME="opt/${PN}"
@@ -164,14 +164,6 @@ src_prepare() {
etc/ \
|| die
 
-   local c d
-   for d in 16 22 24 32 48 64 128 256; do
-   mkdir -p usr/share/icons/hicolor/${d}x${d}/apps || die
-   cp \
-   ${VIVALDI_HOME}/product_logo_${d}.png \
-   usr/share/icons/hicolor/${d}x${d}/apps/${PN}.png || die
-   done
-
# Remove scripts that will most likely break things.
rm ${VIVALDI_HOME}/update-{ffmpeg,widevine} || die
 
@@ -189,6 +181,13 @@ src_install() {
 
fperms 4711 /${VIVALDI_HOME}/vivaldi-sandbox
 
+   local logo size
+   for logo in "${ED}"/${VIVALDI_HOME}/product_logo_*.png; do
+   size=${logo##*_}
+   size=${size%.*}
+   newicon -s "${size}" "${logo}" ${PN}.png
+   done
+
if use proprietary-codecs; then
dosym ../../../usr/$(get_libdir)/chromium/libffmpeg.so \
  /${VIVALDI_HOME}/lib/libffmpeg.so



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

2020-11-20 Thread James Le Cuirot
commit: 54a2f784d5d5676e3f01d78003c00654e5f44f9a
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Nov 20 21:53:43 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Nov 20 22:21:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54a2f784

profiles: Mask widevine USE flag against Vivaldi on applicable arches

Signed-off-by: James Le Cuirot  gentoo.org>

 profiles/arch/arm/package.use.mask   | 2 ++
 profiles/arch/arm64/package.use.mask | 2 ++
 profiles/arch/x86/package.use.mask   | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/profiles/arch/arm/package.use.mask 
b/profiles/arch/arm/package.use.mask
index a111dd5abd8..809a40418d9 100644
--- a/profiles/arch/arm/package.use.mask
+++ b/profiles/arch/arm/package.use.mask
@@ -282,6 +282,8 @@ media-libs/freeimage tiff
 # Google does not distribute the widevine plugin for ARM. It must be extracted 
from a Chromebook,
 # and this kind of reverse engineering work likely violates many agreements, 
so we mask the flag.
 www-client/chromium widevine
+www-client/vivaldi widevine
+www-client/vivaldi-snapshot widevine
 
 # Markus Meier  (2015-01-17)
 # Unkeyworded deps, bug #536226

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index a179c5dfba1..807bc489f0b 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -250,6 +250,8 @@ net-fs/samba dmapi
 sci-libs/gdal armadillo netcdf
 sys-fs/btrfs-progs reiserfs
 www-client/chromium widevine
+www-client/vivaldi widevine
+www-client/vivaldi-snapshot widevine
 
 # Matthew Thode  (2018-02-23)
 # net-proxy/haproxy isn't keyworded for arm64

diff --git a/profiles/arch/x86/package.use.mask 
b/profiles/arch/x86/package.use.mask
index f924ec26af0..8cf9762c70e 100644
--- a/profiles/arch/x86/package.use.mask
+++ b/profiles/arch/x86/package.use.mask
@@ -247,6 +247,8 @@ dev-db/mariadb -jdbc
 # Mike Gilbert  (2016-03-03)
 # chrome-binary-plugins dropped x86 support
 www-client/chromium widevine
+www-client/vivaldi widevine
+www-client/vivaldi-snapshot widevine
 
 # Ian Delaney  (2015-12-02)
 # mask revdeps of xen that emply a hypervisor in arch x86



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

2020-11-20 Thread James Le Cuirot
commit: dc9a8ee7a3a234deaf71ea36cdb7b3149ed31707
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Nov 20 22:09:21 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Nov 20 22:21:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc9a8ee7

www-client/vivaldi-snapshot: Fix warning about ja-KS locale

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

 .../vivaldi-snapshot-3.5.2110.3.ebuild | 79 --
 1 file changed, 74 insertions(+), 5 deletions(-)

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild
index 0041affa320..d6fc7f5a6fa 100644
--- a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild
+++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild
@@ -3,10 +3,78 @@
 
 EAPI=7
 CHROMIUM_LANGS="
-   af am ar be bg bn ca cs da de de-CH el en-GB en-US eo es es-419 es-PE 
et eu
-   fa fi fil fr fy gd gl gu he hi hr hu hy id io is it ja jbo ka kn ko ku 
lt
-   lv mk ml mr ms nb nl nn pl pt-BR pt-PT ro ru sc sk sl sq sr sv sw ta te 
th
-   tr uk vi zh-CN zh-TW
+   af
+   am
+   ar
+   be
+   bg
+   bn
+   ca
+   cs
+   da
+   de
+   de-CH
+   el
+   en-GB
+   en-US
+   eo
+   es
+   es-419
+   es-PE
+   et
+   eu
+   fa
+   fi
+   fil
+   fr
+   fy
+   gd
+   gl
+   gu
+   he
+   hi
+   hr
+   hu
+   hy
+   id
+   io
+   is
+   it
+   ja
+   jbo
+   ka
+   kn
+   ko
+   ku
+   lt
+   lv
+   mk
+   ml
+   mr
+   ms
+   nb
+   nl
+   nn
+   pl
+   pt-BR
+   pt-PT
+   ro
+   ru
+   sc
+   sk
+   sl
+   sq
+   sr
+   sv
+   sw
+   ta
+   te
+   th
+   tr
+   uk
+   vi
+   zh-CN
+   zh-TW
 "
 inherit chromium-2 multilib unpacker toolchain-funcs xdg
 
@@ -104,7 +172,8 @@ src_prepare() {
# Remove scripts that will most likely break things.
rm ${VIVALDI_HOME}/update-{ffmpeg,widevine} || die
 
-   pushd "${VIVALDI_HOME}/locales" > /dev/null || die
+   pushd ${VIVALDI_HOME}/locales > /dev/null || die
+   rm ja-KS.pak || die # No flag for Kansai as not in IETF list.
chromium_remove_language_paks
popd > /dev/null || die
 



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

2020-11-20 Thread Sergei Trofimovich
commit: f38cd933b1a9b72ad0ab8c2549e09f1dce1e29bd
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Nov 20 22:15:26 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Nov 20 22:15:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f38cd933

sys-apps/unscd: drop old

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

 sys-apps/unscd/Manifest  |  1 -
 sys-apps/unscd/unscd-0.53.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/sys-apps/unscd/Manifest b/sys-apps/unscd/Manifest
index 2c8fedc46f2..9e99f818833 100644
--- a/sys-apps/unscd/Manifest
+++ b/sys-apps/unscd/Manifest
@@ -1,2 +1 @@
-DIST nscd-0.53.c 73206 BLAKE2B 
ce3b8e02ce8879664bde7ee7362ee0d920ad9e9cd24da08b02e83d49b2e0bef7fb1b3c6635bc4e8a26d901170943a78bae608903459e4447edf004e5ef716468
 SHA512 
d14362d21282d0ea919af3b353f7838d1514c293b49df084bc8df424392b4121dba3443a07118f4c8c1cfdca0cbf8ebddde24cf73459b06349e9d1a68801403c
 DIST nscd-0.54-r1.c 73304 BLAKE2B 
5c35fec2f4f3447c5d6500a7fc50c97347923d62d084134ced5c412307e8db6079e01302b16ac3e1940ee9194a31ebec464e3bd838fd8b6a650b8c0bdc66349d
 SHA512 
88f40a10ff9ba0f46ef6f266a8ab610bf54c1d322d11df47e616e3cc007edaebdf673ec71a314b7c672d2aa7a2eac799abb0bdf87aaebd71fb8d2f7ef4e33ab6

diff --git a/sys-apps/unscd/unscd-0.53.ebuild b/sys-apps/unscd/unscd-0.53.ebuild
deleted file mode 100644
index f3e81790194..000
--- a/sys-apps/unscd/unscd-0.53.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit systemd toolchain-funcs
-
-DESCRIPTION="simple & stable nscd replacement"
-HOMEPAGE="https://busybox.net/~vda/unscd/README";
-SRC_URI="https://busybox.net/~vda/unscd/nscd-${PV}.c";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="sys-libs/glibc[nscd(+)]"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}
-
-src_unpack() {
-   cp "${DISTDIR}"/nscd-${PV}.c ${PN}.c || die
-}
-
-src_compile() {
-   tc-export CC
-   emake unscd
-}
-
-src_install() {
-   newinitd "${FILESDIR}"/unscd.initd-r1 unscd
-   systemd_newtmpfilesd "${FILESDIR}"/unscd-tmpfiles.conf unscd.conf
-   systemd_dounit "${FILESDIR}"/unscd.service
-   dosbin unscd
-}



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

2020-11-20 Thread Sergei Trofimovich
commit: d950bd144bd57e68b9d6246b7b58bae3c1dd38f6
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Nov 20 22:15:05 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Nov 20 22:15:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d950bd14

dev-lang/erlang: drop old

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

 dev-lang/erlang/Manifest |   1 -
 dev-lang/erlang/erlang-23.0.3.ebuild | 158 ---
 2 files changed, 159 deletions(-)

diff --git a/dev-lang/erlang/Manifest b/dev-lang/erlang/Manifest
index 5de91a4721d..55113b64c12 100644
--- a/dev-lang/erlang/Manifest
+++ b/dev-lang/erlang/Manifest
@@ -1,4 +1,3 @@
-DIST erlang-23.0.3.tar.gz 56388263 BLAKE2B 
58f41ab2956c93fbabc6b91f89e3c3f3c23a7dc7dc5473f1cf99817043aa18949933d6182e7e7daefa394529d2b2be8efb51462d8e7a8beb23ed70dbe2c0a319
 SHA512 
f7752bfa06dd283b36e330ba4270ee37ca759be697c804e6ac249becdc67de4bccb43f60a8d47f9a094d778f11fb17cf6d29de8ce60471aeb18c5fbd64cdfb4d
 DIST erlang-23.0.4.tar.gz 56394805 BLAKE2B 
10a4e9e3084ad2d1bb10fa736d86eb03fa6b249f83b9d06bfef4c37f99ad86dd1415c2fbaa1524cddaf57dd228d25f388fa9fe9f5b4a03ba7477080e11020fb1
 SHA512 
53d4b7a5e76113bb3a9695a266e58dbebb57887b1eea4e8acb56bb85d194295231d739719d526dfc6d1f0bf745d7f059fdf5ec9dc79859f5b16a75c4d0a6b348
 DIST erlang-23.1.1.tar.gz 56498218 BLAKE2B 
cd513a2d45aecc12503df8765e0f4170001373c0e6b35b4c01d7471906408558a3b6bbf9c189858fce3cb8fd7020270813550e2099f04c8094afc49dcd070016
 SHA512 
572164e601796bc7b0df3818c859b23872f148dcc72f44f611d9d5684b0c9974b00496aa0fd521dc01d0d3481556b6641d3cbd859bd7bfadefd15115728d16d9
 DIST erlang-23.1.2.tar.gz 56501379 BLAKE2B 
ebedf3ebec4b5c4b6818b1f5279536059bdf58eba98bd3328952f2ff4ce3d121443b377a2cd2fc0537135daf8d986428905d6321bd26a626456949e68dd3b5e7
 SHA512 
c6f097c5cfb3a188b7c5e411a2cbd3f95eab50be18292a5e84d5f628dfb791497800d79810367e9d1ac1c8e6aa5c7622c9bef5e58eef02226a77b5307742360e

diff --git a/dev-lang/erlang/erlang-23.0.3.ebuild 
b/dev-lang/erlang/erlang-23.0.3.ebuild
deleted file mode 100644
index d5356fa36a4..000
--- a/dev-lang/erlang/erlang-23.0.3.ebuild
+++ /dev/null
@@ -1,158 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-WX_GTK_VER="3.0-gtk3"
-
-inherit elisp-common java-pkg-opt-2 systemd wxwidgets
-
-# NOTE: If you need symlinks for binaries please tell maintainers or
-# open up a bug to let it be created.
-
-UPSTREAM_V="$(ver_cut 1-2)"
-
-DESCRIPTION="Erlang programming language, runtime environment and libraries 
(OTP)"
-HOMEPAGE="https://www.erlang.org/";
-SRC_URI="https://github.com/erlang/otp/archive/OTP-${PV}.tar.gz -> ${P}.tar.gz
-   http://erlang.org/download/otp_doc_man_${UPSTREAM_V}.tar.gz -> 
${PN}_doc_man_${UPSTREAM_V}.tar.gz
-   doc? ( http://erlang.org/download/otp_doc_html_${UPSTREAM_V}.tar.gz -> 
${PN}_doc_html_${UPSTREAM_V}.tar.gz )"
-
-LICENSE="Apache-2.0"
-# We use this subslot because Compiled HiPE Code can be loaded on the exact
-# same build of ERTS that was used when compiling the code.  See
-# http://erlang.org/doc/system_principles/misc.html for more information.
-SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
-IUSE="doc emacs +hipe java +kpoll libressl odbc sctp ssl systemd tk wxwidgets"
-
-RDEPEND="
-   acct-group/epmd
-   acct-user/epmd
-   sys-libs/ncurses:0
-   sys-libs/zlib
-   emacs? ( >=app-editors/emacs-23.1:* )
-   java? ( >=virtual/jdk-1.8:* )
-   odbc? ( dev-db/unixODBC )
-   sctp? ( net-misc/lksctp-tools )
-   ssl? (
-   !libressl? ( >=dev-libs/openssl-0.9.7d:0= )
-   libressl? ( dev-libs/libressl:0= )
-   )
-   systemd? ( sys-apps/systemd )
-   wxwidgets? ( x11-libs/wxGTK:${WX_GTK_VER}[X,opengl] )
-"
-DEPEND="${RDEPEND}
-   dev-lang/perl
-"
-
-S="${WORKDIR}/otp-OTP-${PV}"
-
-PATCHES=(
-   "${FILESDIR}/18.2.1-wx3.0.patch"
-   "${FILESDIR}/${PN}-22.0-dont-ignore-LDFLAGS.patch"
-)
-
-SITEFILE=50"${PN}"-gentoo.el
-
-src_prepare() {
-   default
-
-   ./otp_build autoconf || die
-}
-
-src_configure() {
-   use wxwidgets && setup-wxwidgets
-
-   local myconf=(
-   --disable-builtin-zlib
-   $(use_enable hipe)
-   $(use_enable kpoll kernel-poll)
-   $(use_with java javac)
-   $(use_enable sctp)
-   $(use_with ssl ssl "${EPREFIX}"/usr)
-   $(use_enable ssl dynamic-ssl-lib)
-   $(use_enable systemd)
-   $(usex wxwidgets "--with-wx-config=${WX_CONFIG}" 
"--with-wxdir=/dev/null")
-   )
-   econf "${myconf[@]}"
-}
-
-src_compile() {
-   emake
-
-   if use emacs ; then
-   pushd lib/tools/emacs &>/dev/null || die
-   elisp-compile *.el
- 

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

2020-11-20 Thread Mart Raudsepp
commit: f85d181d73c396cb186f4cb1e81499e8ee5d05db
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Fri Nov 20 19:23:19 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Fri Nov 20 22:03:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f85d181d

net-libs/webkit-gtk: allow python3.8 for build

Bug: https://bugs.gentoo.org/737706
Package-Manager: Portage-2.3.103, Repoman-2.3.20
Signed-off-by: Mart Raudsepp  gentoo.org>

 net-libs/webkit-gtk/webkit-gtk-2.28.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/webkit-gtk/webkit-gtk-2.28.4.ebuild 
b/net-libs/webkit-gtk/webkit-gtk-2.28.4.ebuild
index 27ed996c0ab..1a0c147ba35 100644
--- a/net-libs/webkit-gtk/webkit-gtk-2.28.4.ebuild
+++ b/net-libs/webkit-gtk/webkit-gtk-2.28.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 CMAKE_MAKEFILE_GENERATOR="ninja"
-PYTHON_COMPAT=( python{3_6,3_7} )
+PYTHON_COMPAT=( python3_{6..8} )
 USE_RUBY="ruby24 ruby25 ruby26 ruby27"
 CMAKE_MIN_VERSION=3.10
 



[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/qgis/, sci-geosciences/qgis/files/

2020-11-20 Thread Andreas Sturmlechner
commit: ca2e91369b76276e44cfd8355f209f60f92ef580
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Nov 20 19:28:48 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Nov 20 20:39:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca2e9136

sci-geosciences/qgis: 3.16.1 version bump

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

 sci-geosciences/qgis/Manifest   |  1 +
 ...lt-qmldir.patch => qgis-3.16.1-default-qmldir.patch} | 13 +++--
 ...resummary.patch => qgis-3.16.1-featuresummary.patch} | 17 +
 .../qgis/{qgis-.ebuild => qgis-3.16.1.ebuild}   |  7 ---
 sci-geosciences/qgis/qgis-.ebuild   |  4 ++--
 5 files changed, 23 insertions(+), 19 deletions(-)

diff --git a/sci-geosciences/qgis/Manifest b/sci-geosciences/qgis/Manifest
index 93502ed3377..d86c91000ad 100644
--- a/sci-geosciences/qgis/Manifest
+++ b/sci-geosciences/qgis/Manifest
@@ -1,2 +1,3 @@
 DIST qgis-3.16.0.tar.bz2 113238659 BLAKE2B 
42bdf8d0d69b28c20aa0decd79883c3b83d2ff9aa9d7633866b6c7d624ad20cb602beeca0e22585077c3d0ceba791e51b81ba221bc305c9bd2ebff71a4ea4bd4
 SHA512 
c87959a6412f85b6e4d30d4677e0e0914fd9a1009348c8bfe6063d7e1a9416f0a33ae63ded15273d8edde26ae0e6c32ba4d62d83c33c2c6251c444360dc47d10
+DIST qgis-3.16.1.tar.bz2 113943328 BLAKE2B 
0c0f9c0a038e87d7f16e66a00cd6844db27b9238ef4f42cf2504a5e498843d4f93bde42542cf7bedcc7f58303daa4fdc7d9cb9e1954958a0de29e294e502a461
 SHA512 
2df53731468b734c95ad32cd8ecc930dd113b1084c4d3971aba2aaf58b473dc8e0dd204d979b74ee79d443cd95e4f91c51d071eb645254142a76d7a4d0bc3dc8
 DIST qgis_sample_data-2.8.14.tar.gz 22119181 BLAKE2B 
2d0565e91ec8119382bc9ab8e262dc04227fe8289146794891759ff5a32012245270614ba1119a6329fc45cf56852830c2079589309aa3467873f71f5c608eac
 SHA512 
6b2653d5b57ffc2c2317639dac212429840984ac917ca3e452b39aabb99ea106d1a77c1c1dd967244ef16ede9deae751b170affdf08b72239eafed5b8977da3d

diff --git a/sci-geosciences/qgis/files/qgis--default-qmldir.patch 
b/sci-geosciences/qgis/files/qgis-3.16.1-default-qmldir.patch
similarity index 68%
rename from sci-geosciences/qgis/files/qgis--default-qmldir.patch
rename to sci-geosciences/qgis/files/qgis-3.16.1-default-qmldir.patch
index afcaa693ced..9a57d45984e 100644
--- a/sci-geosciences/qgis/files/qgis--default-qmldir.patch
+++ b/sci-geosciences/qgis/files/qgis-3.16.1-default-qmldir.patch
@@ -1,17 +1,18 @@
-From 9d095f7d502cbcea8c70c127be322568b71f6663 Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Sun, 28 Apr 2019 12:41:51 +0200
+From ad432e066fcc3d985fb5a451ad128cdf35c1dad9 Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Fri, 20 Nov 2020 20:41:36 +0100
 Subject: [PATCH] cmake: Fix DEFAULT_QML_DIR path to comply with LFS layout
 
+Signed-off-by: Andreas Sturmlechner 
 ---
  CMakeLists.txt | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 4626042ca4..fe93ff3c4f 100644
+index 61b4c863d0..e7d0bdc8d3 100644
 --- a/CMakeLists.txt
 +++ b/CMakeLists.txt
-@@ -660,7 +660,7 @@ IF (WITH_CORE)
+@@ -750,7 +750,7 @@ if (WITH_CORE)
set (DEFAULT_LIBEXEC_SUBDIR lib${LIB_SUFFIX}/qgis)
set (DEFAULT_PLUGIN_SUBDIR  lib${LIB_SUFFIX}/qgis/plugins)
set (DEFAULT_INCLUDE_SUBDIR include/qgis)
@@ -21,5 +22,5 @@ index 4626042ca4..fe93ff3c4f 100644
set (DEFAULT_SERVER_MODULE_SUBDIR ${DEFAULT_LIBEXEC_SUBDIR}/server)
  endif()
 -- 
-2.21.0
+2.29.2
 

diff --git a/sci-geosciences/qgis/files/qgis--featuresummary.patch 
b/sci-geosciences/qgis/files/qgis-3.16.1-featuresummary.patch
similarity index 60%
rename from sci-geosciences/qgis/files/qgis--featuresummary.patch
rename to sci-geosciences/qgis/files/qgis-3.16.1-featuresummary.patch
index 8fa7ab0e842..b1098175647 100644
--- a/sci-geosciences/qgis/files/qgis--featuresummary.patch
+++ b/sci-geosciences/qgis/files/qgis-3.16.1-featuresummary.patch
@@ -1,18 +1,19 @@
-From 0744b51784b779eab4bb2e78ed084d31258b5b4d Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Sun, 28 Apr 2019 00:10:21 +0200
+From f0fd6e80ad034cf7c49f4ba3708819424b6857b2 Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Fri, 20 Nov 2020 20:41:06 +0100
 Subject: [PATCH] cmake: Use FeatureSummary
 
+Signed-off-by: Andreas Sturmlechner 
 ---
  CMakeLists.txt | 4 
  1 file changed, 4 insertions(+)
 
 diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 4dff8ea0f4..4626042ca4 100644
+index f581b2c889..61b4c863d0 100644
 --- a/CMakeLists.txt
 +++ b/CMakeLists.txt
-@@ -71,6 +71,8 @@ IF(NOT MSVC)
-   endif(USE_CCACHE)
+@@ -111,6 +111,8 @@ if (FORCE_STATIC_PROVIDERS)
+   set (HAVE_STATIC_PROVIDERS TRUE)
  endif()
  
 +include(FeatureSummary)
@@ -20,12 +21,12 @@ index 4dff8ea0f4..4626042ca4 100644
  # in generated makefiles use relative paths so the project dir is moveable
  # Note commented out since it cause problems but it would be nice to

[gentoo-commits] repo/gentoo:master commit in: kde-apps/umbrello/

2020-11-20 Thread Andreas Sturmlechner
commit: 154373846ad41a960d5a74c4da75fa1874c539c0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Nov 20 19:58:32 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Nov 20 20:39:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15437384

kde-apps/umbrello: Disable Qt5WebKitWidgets in cmake

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

 kde-apps/umbrello/umbrello-20.08.3.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-apps/umbrello/umbrello-20.08.3.ebuild 
b/kde-apps/umbrello/umbrello-20.08.3.ebuild
index d065a45bcb0..fee13abd9b3 100644
--- a/kde-apps/umbrello/umbrello-20.08.3.ebuild
+++ b/kde-apps/umbrello/umbrello-20.08.3.ebuild
@@ -60,6 +60,7 @@ PATCHES=(
 src_configure() {
local mycmakeargs=(
-DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=ON # broken, re-enable w/ 
ECM_QTHELP
+   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5WebKitWidgets=ON
-DBUILD_APIDOC=OFF
-DBUILD_KF5=ON
-DBUILD_PHP_IMPORT=$(usex php)



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

2020-11-20 Thread Andreas Sturmlechner
commit: 49c4d95cc1ce08fe1c9f50b6ff67bd1c3f8a4c43
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Nov 20 19:21:10 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Nov 20 20:39:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49c4d95c

media-libs/harfbuzz: Drop 2.6.5

Overshadowed by 2.6.7 and 2.7.2.

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

 media-libs/harfbuzz/Manifest  |   1 -
 media-libs/harfbuzz/harfbuzz-2.6.5.ebuild | 116 --
 2 files changed, 117 deletions(-)

diff --git a/media-libs/harfbuzz/Manifest b/media-libs/harfbuzz/Manifest
index de0e5be84a7..defad3d1ee5 100644
--- a/media-libs/harfbuzz/Manifest
+++ b/media-libs/harfbuzz/Manifest
@@ -1,4 +1,3 @@
-DIST harfbuzz-2.6.5.tar.xz 8510596 BLAKE2B 
e495fbba7e0cb58918afeb6beb3ebcf936be896ca606cef27dcbfb9b5f10add144f7fcaa50dec35a9f909d7e87deebadb7c9e6bbbadcbd799effd96076786cde
 SHA512 
ae66211f9b4233c1da4b22b703ab4912f684390294c5c88113e6c927d5aeda8960da3ff607a7c7be5968d9fbb5a95b1f6933070d0aab2aa442a3ec8a112cd16f
 DIST harfbuzz-2.6.7.tar.xz 9001936 BLAKE2B 
bd3a195506253a1446e877c35c067cc874826fc6fdae3bc3a9bfd2b7682ce12de7e6d7fd4ebe03b8178d8b678c06aa2d71715b27236347224a68e4d98a72039e
 SHA512 
6fdd6e0952a73e1949349aa5416ef8fb3fc351b15c95be4fe1f341b59fe58113b73a334db2697f4e3aaef5a761bd8f1d8964514406cad40f9862768d59de
 DIST harfbuzz-2.6.8.tar.xz 8976516 BLAKE2B 
46401ae06ec70172621d2aa354901f03173a273abdb0db909332946643e82b4286be690ac717a29304e9db121dd7f693b4ce19522de772f5d140986d6333e7ce
 SHA512 
651b23d7d4fab6fef472ee57db39bbaebc31c2f40ea3a482c1499ad1a7b549b86a2bccbe9da191c8e9ecdf464191dd3c9a7485546b51695ad8ab3c0329732d9d
 DIST harfbuzz-2.7.1.tar.gz 16603949 BLAKE2B 
4c1792dfb8f2c777efb2f01dfc7e4642bda507813d21db5beee467b1368e991db0f0c3f903662da0a267e7af9a6c30bb258fa057e42d3096f9f8d23ccf4bac9e
 SHA512 
a04864e0f5e523e9d025f066e0850afdfdf53acc9881c0284034ab4384088b118551a899ae5e77bbd821c344b97fb5e0a3d4506bbb812eb0019080be7b3f75f1

diff --git a/media-libs/harfbuzz/harfbuzz-2.6.5.ebuild 
b/media-libs/harfbuzz/harfbuzz-2.6.5.ebuild
deleted file mode 100644
index 63f6e1fd379..000
--- a/media-libs/harfbuzz/harfbuzz-2.6.5.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit autotools flag-o-matic libtool multilib-minimal python-any-r1 xdg-utils
-
-DESCRIPTION="An OpenType text shaping engine"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/HarfBuzz";
-
-if [[ ${PV} =  ]] ; then
-   EGIT_REPO_URI="https://github.com/harfbuzz/harfbuzz.git";
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-fi
-
-LICENSE="Old-MIT ISC icu"
-SLOT="0/0.9.18" # 0.9.18 introduced the harfbuzz-icu split; bug #472416
-
-IUSE="+cairo debug +glib +graphite icu +introspection static-libs test 
+truetype"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="introspection? ( glib )"
-
-RDEPEND="
-   cairo? ( x11-libs/cairo:= )
-   glib? ( >=dev-libs/glib-2.38:2[${MULTILIB_USEDEP}] )
-   graphite? ( >=media-gfx/graphite2-1.2.1:=[${MULTILIB_USEDEP}] )
-   icu? ( >=dev-libs/icu-51.2-r1:=[${MULTILIB_USEDEP}] )
-   introspection? ( >=dev-libs/gobject-introspection-1.34:= )
-   truetype? ( >=media-libs/freetype-2.5.0.1:2=[${MULTILIB_USEDEP}] )
-"
-DEPEND="${RDEPEND}
-   test? ( ${PYTHON_DEPS} )
-"
-BDEPEND="
-   dev-util/gtk-doc-am
-   virtual/pkgconfig
-"
-# eautoreconf requires gobject-introspection-common
-# ragel needed if regenerating *.hh files from *.rl
-if [[ ${PV} =  ]] ; then
-   DEPEND+="
-   >=dev-libs/gobject-introspection-common-1.34
-   dev-util/ragel
-   "
-fi
-
-pkg_setup() {
-   use test && python-any-r1_pkg_setup
-   if ! use debug ; then
-   append-cppflags -DHB_NDEBUG
-   fi
-}
-
-src_prepare() {
-   default
-
-   xdg_environment_reset
-
-   if [[ ${CHOST} == *-darwin* || ${CHOST} == *-solaris* ]] ; then
-   # on Darwin/Solaris we need to link with g++, like automake 
defaults
-   # to, but overridden by upstream because on Linux this is not
-   # necessary, bug #449126
-   sed -i \
-   -e 's/\/CXXLINK/' \
-   src/Makefile.am || die
-   sed -i \
-   -e '/libharfbuzz_la_LINK = /s/\/CXXLINK/' \
-   src/Makefile.in || die
-   sed -i \
-   -e '/AM_V_CCLD/s/\/CXXLINK/' \
-   test/api/Makefile.in || d

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

2020-11-20 Thread Andreas Sturmlechner
commit: 7f3eef7d929ffd857a448226449625db83fdce71
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Nov 20 19:16:33 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Nov 20 20:39:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f3eef7d

media-gfx/openscad: Drop 2019.05-r2

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

 media-gfx/openscad/openscad-2019.05-r2.ebuild | 86 ---
 1 file changed, 86 deletions(-)

diff --git a/media-gfx/openscad/openscad-2019.05-r2.ebuild 
b/media-gfx/openscad/openscad-2019.05-r2.ebuild
deleted file mode 100644
index 7b1bffdcad6..000
--- a/media-gfx/openscad/openscad-2019.05-r2.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit elisp-common qmake-utils xdg
-
-SITEFILE="50${PN}-gentoo.el"
-
-DESCRIPTION="The Programmers Solid 3D CAD Modeller"
-HOMEPAGE="https://www.openscad.org/";
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.src.tar.gz 
-> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="emacs"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-2019.05_fix-boost-1.72.0-build.patch"
-)
-
-# FIXME: add optional lib3mf
-RDEPEND="
-   dev-cpp/eigen:3
-   dev-libs/boost:=
-   dev-libs/double-conversion:=
-   dev-libs/glib:2
-   dev-libs/gmp:0=
-   dev-libs/hidapi
-   dev-libs/libspnav
-   dev-libs/libzip:=
-   dev-libs/mpfr:0=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5[-gles2-only]
-   dev-qt/qtmultimedia:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtopengl:5
-   dev-qt/qtwidgets:5
-   media-gfx/opencsg
-   media-libs/fontconfig
-   media-libs/freetype
-   >=media-libs/glew-2.0.0:0=
-   media-libs/harfbuzz:=
-   sci-mathematics/cgal:=
-   >=x11-libs/qscintilla-2.10.3:=
-   emacs? ( >=app-editors/emacs-23.1:* )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   sys-devel/bison
-   sys-devel/flex
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   default
-
-   # fix path prefix
-   sed -i "s/\/usr\/local/\/usr/g" ${PN}.pro || die
-}
-
-src_configure() {
-   eqmake5 "${PN}.pro"
-}
-
-src_compile() {
-   default
-
-   if use emacs ; then
-   elisp-compile contrib/*.el
-   fi
-}
-
-src_install() {
-   emake install INSTALL_ROOT="${D}"
-
-   if use emacs; then
-   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-   elisp-install ${PN} contrib/*.el contrib/*.elc
-   fi
-
-   einstalldocs
-}



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

2020-11-20 Thread Andreas Sturmlechner
commit: 1a5d03765f47a1eb23760e3b564616faa7e92990
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Nov 20 19:03:41 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Nov 20 20:39:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a5d0376

dev-util/clazy: 1.7-r1 amd64 stable

Since llvm-11 was stabilised we need to stabilise this independently.

Bug: https://bugs.gentoo.org/749876
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

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

diff --git a/dev-util/clazy/clazy-1.7-r1.ebuild 
b/dev-util/clazy/clazy-1.7-r1.ebuild
index 099f3b851ad..db6385b555d 100644
--- a/dev-util/clazy/clazy-1.7-r1.ebuild
+++ b/dev-util/clazy/clazy-1.7-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-arch/innoextract/

2020-11-20 Thread Andreas Sturmlechner
commit: fa74a332f7ca429882cd55d3e19566a4d90cb29f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Nov 20 19:09:08 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Nov 20 20:39:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa74a332

app-arch/innoextract: Drop 1.7 and 1.8

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

 app-arch/innoextract/Manifest   |  2 --
 app-arch/innoextract/innoextract-1.7.ebuild | 35 -
 app-arch/innoextract/innoextract-1.8.ebuild | 33 ---
 3 files changed, 70 deletions(-)

diff --git a/app-arch/innoextract/Manifest b/app-arch/innoextract/Manifest
index 571b0bdaa20..6bf2e9dbdd7 100644
--- a/app-arch/innoextract/Manifest
+++ b/app-arch/innoextract/Manifest
@@ -1,3 +1 @@
-DIST innoextract-1.7.tar.gz 195123 BLAKE2B 
5dffb49da7ec3f8e48a70d0809e059179e84610dd50397b8ca472b9f5a96a5edd0cf36898f0e513b3f70685829e2b8edbd7d7932c9f1b47706c2929f596867e5
 SHA512 
5e92625a411a4351dd4639d4b63e8664519c6697122a0679c010412e94a1e5da95324c33be16211f91c2b25b8cea40fe4ba4da5e19c12d0c27a4916159465ca4
-DIST innoextract-1.8.tar.gz 205553 BLAKE2B 
223f0997ae00f2a854912befca25595b275ece8e0fe4f4451d6aa3db14ad1ed98474a19c919c56d958e99c0175be647d3eb3c14d7869504405a7bf6db3a35957
 SHA512 
2c68009333f02a8a677c084e9c95c835d84a73e60c9b0c70fee5f23fd9a7a640cf2aa7e0476c55579774ac7079498fa24668f9388493bbc13415ff5a5b06ac9c
 DIST innoextract-1.9.tar.gz 206931 BLAKE2B 
1d5f0d13a7cd52262b277263f061ecab85a3419197bceb22938a0d1578603cc2c2b972a45474027cfea8e43b8bf89d680035034785210842477b147811fa
 SHA512 
2b18f7bb7f50744bcb1bdcd25e57e0760193b179c77b55e0f63c537e55afc98de3b0380da3cae470ce97660ed41a7ffbb48c8c25329c9ce9b3811d9aec74bcde

diff --git a/app-arch/innoextract/innoextract-1.7.ebuild 
b/app-arch/innoextract/innoextract-1.7.ebuild
deleted file mode 100644
index de8c2155627..000
--- a/app-arch/innoextract/innoextract-1.7.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils
-
-DESCRIPTION="A tool to unpack installers created by Inno Setup"
-HOMEPAGE="http://constexpr.org/innoextract/";
-SRC_URI="http://constexpr.org/innoextract/files/${P}.tar.gz";
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="debug +iconv +lzma"
-
-RDEPEND="
-   dev-libs/boost:=
-   iconv? ( virtual/libiconv )
-   lzma? ( app-arch/xz-utils )"
-DEPEND="${RDEPEND}"
-
-DOCS=( README.md CHANGELOG )
-
-src_configure() {
-   local mycmakeargs=(
-   -DDEBUG=$(usex debug)
-   -DSET_OPTIMIZATION_FLAGS=OFF
-   -DSTRICT_USE=ON
-   -DUSE_LZMA=$(usex lzma)
-   -DWITH_CONV=$(usex iconv iconv builtin)
-   )
-
-   cmake-utils_src_configure
-}

diff --git a/app-arch/innoextract/innoextract-1.8.ebuild 
b/app-arch/innoextract/innoextract-1.8.ebuild
deleted file mode 100644
index 5cf62179ba2..000
--- a/app-arch/innoextract/innoextract-1.8.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="A tool to unpack installers created by Inno Setup"
-HOMEPAGE="https://constexpr.org/innoextract/";
-SRC_URI="https://constexpr.org/innoextract/files/${P}.tar.gz";
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="debug +iconv +lzma"
-
-RDEPEND="
-   dev-libs/boost:=
-   iconv? ( virtual/libiconv )
-   lzma? ( app-arch/xz-utils )"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   local mycmakeargs=(
-   -DDEBUG=$(usex debug)
-   -DSET_OPTIMIZATION_FLAGS=OFF
-   -DSTRICT_USE=ON
-   -DUSE_LZMA=$(usex lzma)
-   -DWITH_CONV=$(usex iconv iconv builtin)
-   )
-
-   cmake_src_configure
-}



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

2020-11-20 Thread Andreas Sturmlechner
commit: 740a462626545890e164d9044911c6e712da56f2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Nov 20 20:24:03 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Nov 20 20:39:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=740a4626

media-gfx/iscan: Drop 3.62.0

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

 media-gfx/iscan/Manifest|  1 -
 media-gfx/iscan/iscan-3.62.0.ebuild | 89 -
 2 files changed, 90 deletions(-)

diff --git a/media-gfx/iscan/Manifest b/media-gfx/iscan/Manifest
index 20ecfd545e7..740a69344d0 100644
--- a/media-gfx/iscan/Manifest
+++ b/media-gfx/iscan/Manifest
@@ -1,4 +1,3 @@
-DIST imagescan_3.62.0.orig.tar.gz 12650003 BLAKE2B 
732283eb8370192fdd0fba8939bc81e277a7a227b024f14856b8d3d5c562b7320c7b40aa48cfa627e23dc654544c9bac27d35add5e10bf0ca65ab0279290b90c
 SHA512 
3b6188013d162c605a3ce1bcac9e5a7b16b1af6363bc7ef4b257aed1c0d3e3dfd402a048ec699b6b6cc42883d0b26f50f0c6f1bd0ddc917baed4ce8902a9d8fa
 DIST imagescan_3.63.0.orig.tar.gz 12776113 BLAKE2B 
d1a9f1d60ba4a2239c6ed74f7f9e0da078e2743e78e0abb67a69506bf90ac35b069f84b5a092a6eb8fd73f60eb668e78b4c7fae56b3a65b6b3d8600f082c064a
 SHA512 
3c9b18e630d6fb1c042244542675e89a8b467469d7212ab684f72100810d1f7d0ec16d13c472a83ca05a3a4fc44e366f692a36cd6b0e81c9a332dd3b40de9535
 DIST iscan_2.30.4-2.tar.gz 1236167 BLAKE2B 
598e55aa7099f7973b38f5c3227415c8ddfa7e8c645521981b4e8979047ab692427f5c1719fd83fe0635f2d4604f32f0baff8542f3e1a333298799c4cad7b980
 SHA512 
b12f374ff8ee1e1879fc6dbc579de39d7bcd4777ec7ad6e4345046f77b4ec13ae45ebdc2803d6907bc2747776aa7e32c313866138c7b8c7bcb53110a214154d2
 DIST userg_revQ_e.pdf 627189 BLAKE2B 
ff57871c58dc541e30d65127bd8f4cc2a20ec5341c1d0914116f7ec4ae002d896853b99488eec71e5f8cb150e6b63d353efb9be11977de26d017701bc051014a
 SHA512 
b09d5143855a759e0fa3e74794762566b6fbf734642f9d7f712e5f2f20e3dce6b830465fd65f83f9cc368292ce7a2c0cec709b0eba6356d95e1ba5114b3348fc

diff --git a/media-gfx/iscan/iscan-3.62.0.ebuild 
b/media-gfx/iscan/iscan-3.62.0.ebuild
deleted file mode 100644
index 92b60678600..000
--- a/media-gfx/iscan/iscan-3.62.0.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools desktop flag-o-matic udev xdg-utils
-
-DESCRIPTION="EPSON Image Scan v3 for Linux"
-HOMEPAGE="https://support.epson.net/linux/en/imagescanv3.php 
https://gitlab.com/utsushi/utsushi";
-SRC_URI="https://support.epson.net/linux/src/scanner/imagescanv3/common/imagescan_${PV}.orig.tar.gz";
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="graphicsmagick gui"
-KEYWORDS="~amd64 ~x86"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="
-   dev-libs/boost:=
-   media-gfx/sane-backends
-   media-libs/tiff
-   virtual/jpeg
-   virtual/libusb:1
-   graphicsmagick? ( media-gfx/graphicsmagick:=[cxx] )
-   !graphicsmagick? ( media-gfx/imagemagick:=[cxx] )
-   gui? ( dev-cpp/gtkmm:2.4 )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/utsushi-0.$(ver_cut 2-3)"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-3.61.0-ijg-libjpeg.patch
-   "${FILESDIR}"/${PN}-3.61.0-imagemagick-7.patch
-   "${FILESDIR}"/${PN}-3.62.0-gcc-10.patch
-   "${FILESDIR}"/${PN}-3.62.0-boost-1.73.patch
-)
-
-src_prepare() {
-   default
-
-   # Remove vendored libraries
-   rm -r upstream/boost || die
-   # Workaround for deprecation warnings:
-   # https://gitlab.com/utsushi/utsushi/issues/90
-   sed -e 's|=-Werror|="-Werror -Wno-error=deprecated-declarations"|g' -i 
configure.ac || die
-   eautoreconf
-}
-
-src_configure() {
-   # Workaround for:
-   # /usr/lib64/utsushi/libutsushi.so.0: undefined symbol: 
libcnx_usb_LTX_factory
-   append-ldflags $(no-as-needed)
-   # https://bugs.gentoo.org/720994
-   append-ldflags -pthread
-   local myconf=(
-   $(use_with gui gtkmm)
-   --enable-sane-config
-   --enable-udev-config
-   --with-boost=yes
-   --with-jpeg
-   --with-magick=$(usex graphicsmagick GraphicsMagick ImageMagick)
-   --with-magick-pp=$(usex graphicsmagick GraphicsMagick 
ImageMagick)
-   --with-sane
-   --with-tiff
-   --with-udev-confdir="$(get_udevdir)"
-   )
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   dodoc lib/devices.conf
-   find "${ED}" -name '*.la' -delete || die
-   if use gui; then
-   newicon -s scalable doc/icon.svg "${PN}".svg
-   make_desktop_entry utsushi "Image Scan"
-   fi
-}
-
-pkg_postinst() {
-   use gui && xdg_icon_cache_update
-   elog "If you encounter problems with media-gfx/xsane when scanning 
(e.g., bad resolution),"
-   elog "please try the built-in GUI and kde-misc/skanlite first before 
reporting bugs."
-}
-
-pkg_pos

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

2020-11-20 Thread Andreas Sturmlechner
commit: be84a18cbd4bcfbe98ac6c6e78989ee0b774f9dc
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Nov 20 19:21:42 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Nov 20 20:39:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be84a18c

media-libs/harfbuzz: Drop 2.6.8 and 2.7.1

Newer version is stable.

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

 media-libs/harfbuzz/Manifest  |   2 -
 media-libs/harfbuzz/harfbuzz-2.6.8.ebuild | 116 --
 media-libs/harfbuzz/harfbuzz-2.7.1.ebuild | 104 ---
 3 files changed, 222 deletions(-)

diff --git a/media-libs/harfbuzz/Manifest b/media-libs/harfbuzz/Manifest
index defad3d1ee5..e42f8b17308 100644
--- a/media-libs/harfbuzz/Manifest
+++ b/media-libs/harfbuzz/Manifest
@@ -1,4 +1,2 @@
 DIST harfbuzz-2.6.7.tar.xz 9001936 BLAKE2B 
bd3a195506253a1446e877c35c067cc874826fc6fdae3bc3a9bfd2b7682ce12de7e6d7fd4ebe03b8178d8b678c06aa2d71715b27236347224a68e4d98a72039e
 SHA512 
6fdd6e0952a73e1949349aa5416ef8fb3fc351b15c95be4fe1f341b59fe58113b73a334db2697f4e3aaef5a761bd8f1d8964514406cad40f9862768d59de
-DIST harfbuzz-2.6.8.tar.xz 8976516 BLAKE2B 
46401ae06ec70172621d2aa354901f03173a273abdb0db909332946643e82b4286be690ac717a29304e9db121dd7f693b4ce19522de772f5d140986d6333e7ce
 SHA512 
651b23d7d4fab6fef472ee57db39bbaebc31c2f40ea3a482c1499ad1a7b549b86a2bccbe9da191c8e9ecdf464191dd3c9a7485546b51695ad8ab3c0329732d9d
-DIST harfbuzz-2.7.1.tar.gz 16603949 BLAKE2B 
4c1792dfb8f2c777efb2f01dfc7e4642bda507813d21db5beee467b1368e991db0f0c3f903662da0a267e7af9a6c30bb258fa057e42d3096f9f8d23ccf4bac9e
 SHA512 
a04864e0f5e523e9d025f066e0850afdfdf53acc9881c0284034ab4384088b118551a899ae5e77bbd821c344b97fb5e0a3d4506bbb812eb0019080be7b3f75f1
 DIST harfbuzz-2.7.2.tar.gz 16605557 BLAKE2B 
246ab64e29afcadc692b57bad84acdea1f9200a63f6f8b1519d12b8515ec65dc45e2edf3abdde473b71364427a689d92ce2ee25c514edf4b1e680dd423d774ee
 SHA512 
2eeb198dab1ed1cc7d10c3890293ff40e9f37372413877a5bd44d66e88d8460a81f51cbe71c328b1300f542ca8de3269749d1d01d0c324c8b95a9c038fbe1521

diff --git a/media-libs/harfbuzz/harfbuzz-2.6.8.ebuild 
b/media-libs/harfbuzz/harfbuzz-2.6.8.ebuild
deleted file mode 100644
index bdc327af67b..000
--- a/media-libs/harfbuzz/harfbuzz-2.6.8.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit autotools flag-o-matic libtool multilib-minimal python-any-r1 xdg-utils
-
-DESCRIPTION="An OpenType text shaping engine"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/HarfBuzz";
-
-if [[ ${PV} =  ]] ; then
-   EGIT_REPO_URI="https://github.com/harfbuzz/harfbuzz.git";
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.xz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-fi
-
-LICENSE="Old-MIT ISC icu"
-SLOT="0/0.9.18" # 0.9.18 introduced the harfbuzz-icu split; bug #472416
-
-IUSE="+cairo debug +glib +graphite icu +introspection static-libs test 
+truetype"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="introspection? ( glib )"
-
-RDEPEND="
-   cairo? ( x11-libs/cairo:= )
-   glib? ( >=dev-libs/glib-2.38:2[${MULTILIB_USEDEP}] )
-   graphite? ( >=media-gfx/graphite2-1.2.1:=[${MULTILIB_USEDEP}] )
-   icu? ( >=dev-libs/icu-51.2-r1:=[${MULTILIB_USEDEP}] )
-   introspection? ( >=dev-libs/gobject-introspection-1.34:= )
-   truetype? ( >=media-libs/freetype-2.5.0.1:2=[${MULTILIB_USEDEP}] )
-"
-DEPEND="${RDEPEND}
-   test? ( ${PYTHON_DEPS} )
-"
-BDEPEND="
-   dev-util/gtk-doc-am
-   virtual/pkgconfig
-"
-# eautoreconf requires gobject-introspection-common
-# ragel needed if regenerating *.hh files from *.rl
-if [[ ${PV} =  ]] ; then
-   DEPEND+="
-   >=dev-libs/gobject-introspection-common-1.34
-   dev-util/ragel
-   "
-fi
-
-pkg_setup() {
-   use test && python-any-r1_pkg_setup
-   if ! use debug ; then
-   append-cppflags -DHB_NDEBUG
-   fi
-}
-
-src_prepare() {
-   default
-
-   xdg_environment_reset
-
-   if [[ ${CHOST} == *-darwin* || ${CHOST} == *-solaris* ]] ; then
-   # on Darwin/Solaris we need to link with g++, like automake 
defaults
-   # to, but overridden by upstream because on Linux this is not
-   # necessary, bug #449126
-   sed -i \
-   -e 's/\/CXXLINK/' \
-   src/Makefile.am || die
-   sed -i \
-   -e '/libharfbuzz_la_LINK = /s/\/CXXLINK/' \
-   src/Makefile.in || die
-   sed -i \
-   

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

2020-11-20 Thread Andreas Sturmlechner
commit: a1f0fb50d3fd83a087798f324c198b765aaafef1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Nov 20 19:04:04 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Nov 20 20:39:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1f0fb50

dev-util/clazy: Drop 1.7 (r0)

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

 dev-util/clazy/clazy-1.7.ebuild | 40 
 1 file changed, 40 deletions(-)

diff --git a/dev-util/clazy/clazy-1.7.ebuild b/dev-util/clazy/clazy-1.7.ebuild
deleted file mode 100644
index a364a426b70..000
--- a/dev-util/clazy/clazy-1.7.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="Compiler plugin which allows clang to understand Qt semantics"
-HOMEPAGE="https://apps.kde.org/en/clazy";
-SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="amd64"
-IUSE=""
-
-RDEPEND="
-   >=sys-devel/clang-5.0:=
-   >=sys-devel/llvm-5.0:=
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=( "${FILESDIR}/${P}-gnuinstalldirs.patch" )
-
-src_prepare() {
-   cmake_src_prepare
-
-   sed -e '/install(FILES README.md COPYING-LGPL2.txt checks.json 
DESTINATION/d' \
-   -i CMakeLists.txt || die
-}
-
-src_configure() {
-   # this package requires both llvm and clang of the same version.
-   # clang pulls in the equivalent llvm version, but not vice versa.
-   # so, we must find llvm based on the installed clang version.
-   # bug #681568
-   local clang_version=$(best_version "sys-devel/clang")
-   export LLVM_ROOT="/usr/lib/llvm/$(ver_cut 1 
${clang_version##sys-devel/clang-})"
-   cmake_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/util-linux/files/, sys-apps/util-linux/

2020-11-20 Thread Lars Wendler
commit: 96166c8ac1333556c1c547950247b0ab622f11f5
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Nov 20 20:30:44 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Nov 20 20:31:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96166c8a

sys-apps/util-linux: Revbump to fix user mount

Closes: https://bugs.gentoo.org/755878
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Lars Wendler  gentoo.org>

 ...-linux-2.36.1-libmount_dont_use_symfollow.patch | 40 ++
 ...x-2.36.1.ebuild => util-linux-2.36.1-r1.ebuild} |  4 +++
 2 files changed, 44 insertions(+)

diff --git 
a/sys-apps/util-linux/files/util-linux-2.36.1-libmount_dont_use_symfollow.patch 
b/sys-apps/util-linux/files/util-linux-2.36.1-libmount_dont_use_symfollow.patch
new file mode 100644
index 000..7c0b73f49d7
--- /dev/null
+++ 
b/sys-apps/util-linux/files/util-linux-2.36.1-libmount_dont_use_symfollow.patch
@@ -0,0 +1,40 @@
+From 76bb9b30cfcf54b59591a57a3d2a747e514469b2 Mon Sep 17 00:00:00 2001
+From: Karel Zak 
+Date: Thu, 19 Nov 2020 09:49:16 +0100
+Subject: [PATCH] libmount: don't use "symfollow" for helpers on user mounts
+
+Addresses: https://github.com/karelzak/util-linux/issues/1193
+Signed-off-by: Karel Zak 
+---
+ libmount/src/context_mount.c | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/libmount/src/context_mount.c b/libmount/src/context_mount.c
+index 8c394c1ff..dd1786176 100644
+--- a/libmount/src/context_mount.c
 b/libmount/src/context_mount.c
+@@ -415,6 +415,9 @@ static int generate_helper_optstr(struct libmnt_context 
*cxt, char **optstr)
+* string, because there is nothing like MS_EXEC (we only have
+* MS_NOEXEC in mount flags and we don't care about the original
+* mount string in libmount for VFS options).
++   *
++   * This use-case makes sense for MS_SECURE flags only (see
++   * mnt_optstr_get_flags() and mnt_context_merge_mflags()).
+*/
+   if (!(cxt->mountflags & MS_NOEXEC))
+   mnt_optstr_append_option(optstr, "exec", NULL);
+@@ -422,11 +425,8 @@ static int generate_helper_optstr(struct libmnt_context 
*cxt, char **optstr)
+   mnt_optstr_append_option(optstr, "suid", NULL);
+   if (!(cxt->mountflags & MS_NODEV))
+   mnt_optstr_append_option(optstr, "dev", NULL);
+-  if (!(cxt->mountflags & MS_NOSYMFOLLOW))
+-  mnt_optstr_append_option(optstr, "symfollow", NULL);
+   }
+ 
+-
+   if (cxt->flags & MNT_FL_SAVED_USER)
+   rc = mnt_optstr_set_option(optstr, "user", cxt->orig_user);
+   if (rc)
+-- 
+2.29.2
+

diff --git a/sys-apps/util-linux/util-linux-2.36.1.ebuild 
b/sys-apps/util-linux/util-linux-2.36.1-r1.ebuild
similarity index 99%
rename from sys-apps/util-linux/util-linux-2.36.1.ebuild
rename to sys-apps/util-linux/util-linux-2.36.1-r1.ebuild
index 902e36ad068..f7acbfdb151 100644
--- a/sys-apps/util-linux/util-linux-2.36.1.ebuild
+++ b/sys-apps/util-linux/util-linux-2.36.1-r1.ebuild
@@ -75,6 +75,10 @@ RESTRICT="!test? ( test )"
 
 S="${WORKDIR}/${MY_P}"
 
+PATCHES=(
+   "${FILESDIR}/${P}-libmount_dont_use_symfollow.patch" #755878
+)
+
 src_prepare() {
default
 



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

2020-11-20 Thread William Hubbs
commit: 9ce9b123961a4dc19932e4cc81908b624eeba282
Author: William Hubbs  gentoo  org>
AuthorDate: Fri Nov 20 20:21:46 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Nov 20 20:24:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ce9b123

net-libs/nodejs: add PaX support to 14.15.1

Bug: https://bugs.gentoo.org/735832
Signed-off-by: William Hubbs  gentoo.org>

 net-libs/nodejs/nodejs-14.15.1.ebuild | 12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/net-libs/nodejs/nodejs-14.15.1.ebuild 
b/net-libs/nodejs/nodejs-14.15.1.ebuild
index fad4f233fa0..0f1006e6788 100644
--- a/net-libs/nodejs/nodejs-14.15.1.ebuild
+++ b/net-libs/nodejs/nodejs-14.15.1.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 PYTHON_COMPAT=( python3_{7..9} )
 PYTHON_REQ_USE="threads(+)"
 
-inherit bash-completion-r1 flag-o-matic python-any-r1 toolchain-funcs xdg-utils
+inherit bash-completion-r1 flag-o-matic pax-utils python-any-r1 
toolchain-funcs xdg-utils
 
 DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine"
 HOMEPAGE="https://nodejs.org/";
@@ -16,7 +16,7 @@ LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT"
 SLOT="0/$(ver_cut 1)"
 KEYWORDS="amd64 arm arm64 ~ppc64 x86 ~amd64-linux ~x64-macos"
 
-IUSE="cpu_flags_x86_sse2 debug doc +icu inspector +npm +snapshot +ssl 
system-icu +system-ssl systemtap test"
+IUSE="cpu_flags_x86_sse2 debug doc +icu inspector +npm pax_kernel +snapshot 
+ssl system-icu +system-ssl systemtap test"
 REQUIRED_USE="inspector? ( icu ssl )
npm? ( ssl )
system-icu? ( icu )
@@ -35,7 +35,8 @@ RDEPEND=">=app-arch/brotli-1.0.9
 BDEPEND="${PYTHON_DEPS}
sys-apps/coreutils
systemtap? ( dev-util/systemtap )
-   test? ( net-misc/curl )"
+   test? ( net-misc/curl )
+   pax_kernel? ( sys-apps/elfix )"
 DEPEND="${RDEPEND}"
 
 PATCHES=(
@@ -85,6 +86,9 @@ src_prepare() {
BUILDTYPE=Debug
fi
 
+   # We need to disable mprotect on two files when it builds Bug 694100.
+   use pax_kernel && PATCHES+=( 
"${FILESDIR}"/${PN}-13.8.0-paxmarking.patch )
+
default
 }
 
@@ -144,6 +148,8 @@ src_install() {
local LIBDIR="${ED}/usr/$(get_libdir)"
default
 
+   pax-mark -m "${ED}"/usr/bin/node
+
# set up a symlink structure that node-gyp expects..
dodir /usr/include/node/deps/{v8,uv}
dosym . /usr/include/node/src



[gentoo-commits] repo/gentoo:master commit in: net-libs/nodejs/, net-libs/nodejs/files/

2020-11-20 Thread William Hubbs
commit: 3e4294ea80a70435fa09c3579da81c428fa15efc
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 20 19:16:17 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Nov 20 20:23:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e4294ea

net-libs/nodejs: restore PaX support

Reverts: 19add7ba6500e6c60c8699b6bdda397744dfa73b
Bug: https://bugs.gentoo.org/735832
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>
Signed-off-by: William Hubbs  gentoo.org>

 .../nodejs/files/nodejs-13.2.0-paxmarking.patch|  71 +
 .../nodejs/files/nodejs-13.8.0-paxmarking.patch| 111 +
 net-libs/nodejs/metadata.xml   |   3 +-
 net-libs/nodejs/nodejs-12.18.4-r1.ebuild   |   5 +-
 net-libs/nodejs/nodejs-12.19.1.ebuild  |   5 +-
 net-libs/nodejs/nodejs-14.2.0.ebuild   |  10 +-
 net-libs/nodejs/nodejs-.ebuild |  10 +-
 7 files changed, 208 insertions(+), 7 deletions(-)

diff --git a/net-libs/nodejs/files/nodejs-13.2.0-paxmarking.patch 
b/net-libs/nodejs/files/nodejs-13.2.0-paxmarking.patch
new file mode 100644
index 000..1061255e163
--- /dev/null
+++ b/net-libs/nodejs/files/nodejs-13.2.0-paxmarking.patch
@@ -0,0 +1,71 @@
+Bug: 694100
+Add actions for pax marking mkcodecache and node_mksnapshot
+to disable mprotect for pax enable kernel.
+Reported-by: Attila Tóth 
+Co-developed-by: Attila Tóth 
+Signed-off-by: Magnus Granberg 
+
+--- a/node.gyp 2019-10-23 11:52:41.0 +0200
 a/node.gyp 2019-11-12 20:58:43.957881862 +0100
+@@ -233,7 +233,9 @@
+   'deps/acorn-plugins/acorn-static-class-features/index.js',
+ ],
+ 'node_mksnapshot_exec': 
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)node_mksnapshot<(EXECUTABLE_SUFFIX)',
++'node_mksnapshot_u_exec': 
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)node_mksnapshot_u<(EXECUTABLE_SUFFIX)',
+ 'mkcodecache_exec': 
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mkcodecache<(EXECUTABLE_SUFFIX)',
++'mkcodecache_u_exec': 
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mkcodecache_u<(EXECUTABLE_SUFFIX)',
+ 'conditions': [
+   [ 'node_shared=="true"', {
+ 'node_target_type%': 'shared_library',
+@@ -436,10 +438,24 @@
+   ],
+   'actions': [
+ {
++  'action_name': 'run_pax_mkcodecache',
++  'inputs': [
++'<(mkcodecache_exec)',
++  ],
++  'outputs': [
++'<(mkcodecache_u_exec)',
++  ],
++  'action': [
++'bash',
++'-c',
++'mv <(mkcodecache_exec) <(mkcodecache_u_exec) && paxmark.sh m 
<(mkcodecache_u_exec)',
++  ],
++},
++{
+   'action_name': 'run_mkcodecache',
+   'process_outputs_as_sources': 1,
+   'inputs': [
+-'<(mkcodecache_exec)',
++'<(mkcodecache_u_exec)',
+   ],
+   'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/node_code_cache.cc',
+@@ -461,10 +477,24 @@
+   ],
+   'actions': [
+ {
++  'action_name': 'run_pax_mksnapshot',
++  'inputs': [
++'<(node_mksnapshot_exec)',
++  ],
++  'outputs': [
++'<(node_mksnapshot_u_exec)',
++  ],
++  'action': [
++'bash',
++'-c',
++'mv <(node_mksnapshot_exec) <(node_mksnapshot_u_exec) && 
paxmark.sh m <(node_mksnapshot_u_exec)',
++  ],
++},
++{
+   'action_name': 'node_mksnapshot',
+   'process_outputs_as_sources': 1,
+   'inputs': [
+-'<(node_mksnapshot_exec)',
++'<(node_mksnapshot_u_exec)',
+   ],
+   'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/node_snapshot.cc',

diff --git a/net-libs/nodejs/files/nodejs-13.8.0-paxmarking.patch 
b/net-libs/nodejs/files/nodejs-13.8.0-paxmarking.patch
new file mode 100644
index 000..8dbf5f43d48
--- /dev/null
+++ b/net-libs/nodejs/files/nodejs-13.8.0-paxmarking.patch
@@ -0,0 +1,111 @@
+Bug: 694100
+Add actions for pax marking mkcodecache, node_mksnapshot and mksnapshot
+to disable mprotect for pax enable kernel.
+Reported-by: Attila Tóth 
+Co-developed-by: Attila Tóth 
+Signed-off-by: Magnus Granberg 
+
+--- a/node.gyp 2019-10-23 11:52:41.0 +0200
 b/node.gyp 2019-11-12 20:58:43.957881862 +0100
+@@ -233,7 +233,9 @@
+   'deps/acorn-plugins/acorn-static-class-features/index.js',
+ ],
+ 'node_mksnapshot_exec': 
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)node_mksnapshot<(EXECUTABLE_SUFFIX)',
++'node_mksnapshot_u_exec': 
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)node_mksnapshot_u<(EXECUTABLE_SUFFIX)',
+ 'mkcodecache_exec': 
'<(P

[gentoo-commits] repo/gentoo:master commit in: app-doc/gnucash-docs/

2020-11-20 Thread Aaron W. Swenson
commit: 8eb6709eb0bf9bd1ab2654b4c1662f7881ee92d6
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Fri Nov 20 20:10:05 2020 +
Commit: Aaron W. Swenson  gentoo  org>
CommitDate: Fri Nov 20 20:10:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eb6709e

app-doc/gnucash-docs: Cleanup

Signed-off-by: Aaron W. Swenson  gentoo.org>

 app-doc/gnucash-docs/Manifest |  3 --
 app-doc/gnucash-docs/gnucash-docs-3.8b.ebuild | 66 ---
 app-doc/gnucash-docs/gnucash-docs-4.0.ebuild  | 66 ---
 app-doc/gnucash-docs/gnucash-docs-4.1.ebuild  | 66 ---
 4 files changed, 201 deletions(-)

diff --git a/app-doc/gnucash-docs/Manifest b/app-doc/gnucash-docs/Manifest
index d2f640faf8e..78b78705394 100644
--- a/app-doc/gnucash-docs/Manifest
+++ b/app-doc/gnucash-docs/Manifest
@@ -1,4 +1 @@
-DIST gnucash-docs-3.8b.tar.gz 71058053 BLAKE2B 
0a69db02faf6487f2ecc1b5f9a788fb50cec65ff7db53ca9ec6048510156f094c0ce457d1abb4a9a6694060f68780c0336de41dbd0736ad93055cce81b3a66ab
 SHA512 
3c30e88412e17960006517fb7c341220159c45760ca28c79c27c66551451c8ec14e000757f4d9a78c923e10d437351e38dbedaf0a1f3b11bbf5b87d80cb230fe
-DIST gnucash-docs-4.0.tar.gz 62498230 BLAKE2B 
39d711267a7ec0d45915659db8557fd2871c295aba82601c34878f56c5a24b0f56ffa68a4597e464050e3e59f62411ae6f5efc0870bea2fa46f313f58ed3826b
 SHA512 
4aa4510b86a6bf3a217c9809b73166c0ce777b9f5a506c15f51ca80a0aa45b93e774e1b7c07571ceb0aad6b6df67a4f268d5498874d23653cb0c94620f491d1d
-DIST gnucash-docs-4.1.tar.gz 62496616 BLAKE2B 
c1868c5a639c12fbc77dd8c46d504d9aa66574d577068c781f5c652ac3b385bffb61aede88953f0c9e89369b71d92ee94c7aa553b91e0adcfbb99b43244ce8b4
 SHA512 
dc63650ed989eec273ab720f802bdcbfdd3041bc4f6bedd02a4575cbc337eb2f264aa05986ecc99e4c7d3007827b213a0f306e3ae38821950dee17bb21b10615
 DIST gnucash-docs-4.2.tar.gz 62497632 BLAKE2B 
764387cbbc1d072ac3e245a86b78eb484cfa05371dcf4c17d0441bf08e00f85523975c50a88ecde24e9d949572228a723d53fcce7df397553b0e50145be28686
 SHA512 
e54082dcd7f92d7ca3f31cea5968ecd4167dc9e1e12f23d8684af3e2af4c696d8afed3cf477df771bb11da125ee5887d09ead1edff961ca4bedfb58fd61efdf2

diff --git a/app-doc/gnucash-docs/gnucash-docs-3.8b.ebuild 
b/app-doc/gnucash-docs/gnucash-docs-3.8b.ebuild
deleted file mode 100644
index 8547f41b9a7..000
--- a/app-doc/gnucash-docs/gnucash-docs-3.8b.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools gnome2 optfeature
-
-DESCRIPTION="Documentation package for GnuCash"
-HOMEPAGE="http://www.gnucash.org/";
-SRC_URI="https://github.com/Gnucash/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2 FDL-1.1"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
-LOCALES=( de it ja pt ru )
-IUSE="${LOCALES[*]/#/l10n_}"
-
-DEPEND="
-   app-text/docbook-xml-dtd
-   app-text/docbook-xsl-stylesheets
-   app-text/rarian
-   dev-libs/libxml2
-   dev-libs/libxslt
-"
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_compile() {
-   :
-}
-
-src_install() {
-   local doc_type my_lang
-
-   for doc_type in help guide; do
-   for my_lang in C ${L10N}; do
-   case $my_lang in
-   # Both help and guides translated
-   C|de|it|pt) ;;
-   ru|ja) # Only guides translated
-   if [[ ${doc_type} = "help" ]] ; then
-   elog "Help documentation hasn't 
been translated for $my_lang"
-   elog "Will do English instead."
-   continue
-   fi
-   ;;
-   *)
-   die "Invalid locale: $my_lang"
-   ;;
-   esac
-
-   emake -C "${doc_type}/${my_lang}" DESTDIR="${D}" install
-   done
-   done
-
-   einstalldocs
-}
-
-pkg_postinst() {
-   gnome2_pkg_postinst
-   optfeature "You need dev-java/fop to generate pdf files." dev-java/fop
-   optfeature "You need gnome-extra/yelp to view the docs." 
gnome-extra/yelp
-}

diff --git a/app-doc/gnucash-docs/gnucash-docs-4.0.ebuild 
b/app-doc/gnucash-docs/gnucash-docs-4.0.ebuild
deleted file mode 100644
index ccc9207cc0e..000
--- a/app-doc/gnucash-docs/gnucash-docs-4.0.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools gnome2 optfeature
-
-DESCRIPTION="Documentation package for GnuCash"
-HOMEPAGE="http://www.gnucash.org/";
-SRC_URI="https://github.com/Gnucash/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"

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

2020-11-20 Thread Aaron W. Swenson
commit: 921b1af897d0aa14cee93389cf03ff54a98940f7
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Fri Nov 20 20:06:53 2020 +
Commit: Aaron W. Swenson  gentoo  org>
CommitDate: Fri Nov 20 20:08:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=921b1af8

app-office/gnucash: Cleanup old

Signed-off-by: Aaron W. Swenson  gentoo.org>

 app-office/gnucash/Manifest   |   3 -
 app-office/gnucash/gnucash-3.8b-r1.ebuild | 212 ---
 app-office/gnucash/gnucash-3.8b.ebuild| 207 --
 app-office/gnucash/gnucash-4.0.ebuild | 235 --
 app-office/gnucash/gnucash-4.1.ebuild | 234 -
 5 files changed, 891 deletions(-)

diff --git a/app-office/gnucash/Manifest b/app-office/gnucash/Manifest
index 3693e01abc4..2ea7859d92f 100644
--- a/app-office/gnucash/Manifest
+++ b/app-office/gnucash/Manifest
@@ -1,4 +1 @@
-DIST gnucash-3.8b.tar.bz2 14285584 BLAKE2B 
304d73b04883b61b8a4e174f458206769483ca0f6d28d284c760397e0bc4061dbdb379ff3cca35e80d6736516549a8733bf36895a11c2202fb9f8f25e591e1d9
 SHA512 
e0529934e9ccafbef2b724f5fca9a0e300c78cf21596f0dcd4b5c11ff300c06a963b68eff1efe00834dc488ced604b86011075bb22480488ddf31d2d4c94ddca
-DIST gnucash-4.0.tar.bz2 13978744 BLAKE2B 
9718e365e1a3939357fabb98f43a95ed22d4d4ee13bb17a7dda5da8ed2c4fe6c4ec4951eb1b5a66bd71feb3f26a4e896d5cb7a177cd7d1b773ac26e643a24f0a
 SHA512 
29fd61352932ff0962e5c634711bc1ae09020e457bace5d2954b743976b607ad3632ddf6a7024148e989dc8e69769400cb7795eee097f8d88dea3ac8d6b7c7ee
-DIST gnucash-4.1.tar.bz2 13994973 BLAKE2B 
875ec0d9b2b6b8ec7144ad52f172f6727078746884d8d1d369a4b7535ebe5bcc0c70b4a25f1ba8e3f97d0603a8d511c9911e343f2610b557511b56eafbea8f39
 SHA512 
caf25d4ca0a950b1aa0c236c801938ff2235dc7c7710065a5b78fd3745904dd5e5103c6ed8abebfe3a4a68c8048372802f856c63cdde8aeaf71840daf2e9ec07
 DIST gnucash-4.2.tar.bz2 14225695 BLAKE2B 
be77c5876cd1720e9b7422c6afbb05f0144a20cf45d7dac0e8bd3362139f4b4d18f47f0edcb6db9db7a2485263d6bff5e0546f5691fe097fe1d4912852bc0ce4
 SHA512 
f730d2ba5d6b310e0c467767aa4c4e6a153b441b6b9aed948344b9a9b9dee351f3cba9fac1d655385136f5ce4313f8f37ef305e9b93b0ea32c40525d9293b070

diff --git a/app-office/gnucash/gnucash-3.8b-r1.ebuild 
b/app-office/gnucash/gnucash-3.8b-r1.ebuild
deleted file mode 100644
index d39ffce1160..000
--- a/app-office/gnucash/gnucash-3.8b-r1.ebuild
+++ /dev/null
@@ -1,212 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit cmake-utils gnome2-utils python-single-r1 xdg-utils
-
-DESCRIPTION="A personal finance manager"
-HOMEPAGE="http://www.gnucash.org/";
-SRC_URI="https://github.com/Gnucash/${PN}/releases/download/${PV}/${P}.tar.bz2";
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-
-IUSE="aqbanking debug doc examples gnome-keyring +gui mysql nls ofx postgres
- python quotes -register2 smartcard sqlite test"
-RESTRICT="!test? ( test )"
-
-# Examples doesn't build unless GUI is also built
-REQUIRED_USE="
-   examples? ( gui )
-   python? ( ${PYTHON_REQUIRED_USE} )
-   smartcard? ( aqbanking )"
-
-# libdbi version requirement for sqlite taken from bug #455134
-#
-# dev-libs/boost must always be built with nls enabled.
-# guile[deprecated] because of SCM_LIST*() use.
-# net-libs/aqbanking dropped gtk with v6, so to simplify the dependency,
-# we just rely on that.
-RDEPEND="
-   >=dev-libs/glib-2.46.0:2
-   >=dev-libs/libxml2-2.7.0:2
-   >=dev-scheme/guile-2.2.0:12=[deprecated,regex]
-   >=sys-libs/zlib-1.1.4
-   dev-libs/boost:=[icu,nls]
-   dev-libs/icu:=
-   dev-libs/libxslt
-   aqbanking? (
-   >=net-libs/aqbanking-6[ofx?]
-   sys-libs/gwenhywfar
-   smartcard? ( sys-libs/libchipcard )
-   )
-   gnome-keyring? ( >=app-crypt/libsecret-0.18 )
-   gui? (
-   >=x11-libs/gtk+-3.14.0:3
-   gnome-base/dconf
-   net-libs/webkit-gtk:4=
-   aqbanking? ( sys-libs/gwenhywfar[gtk] )
-   )
-   mysql? (
-   dev-db/libdbi
-   dev-db/libdbi-drivers[mysql]
-   )
-   ofx? ( >=dev-libs/libofx-0.9.1:= )
-   postgres? (
-   dev-db/libdbi
-   dev-db/libdbi-drivers[postgres]
-   )
-   python? ( ${PYTHON_DEPS} )
-   quotes? (
-   >=dev-perl/Finance-Quote-1.11
-   dev-perl/Date-Manip
-   dev-perl/HTML-TableExtract
-   )
-   sqlite? (
-   >=dev-db/libdbi-0.9.0
-   >=dev-db/libdbi-drivers-0.9.0[sqlite]
-   )
-"
-
-DEPEND="${RDEPEND}
-   >=dev-cpp/gtest-1.8.0
-   >=sys-devel/gettext-0.19.6
-   dev-lang/perl
-   dev-perl/XML-Parser
-   sys-devel/libtool
-   virtual/pkgconfig
-"
-
-PDEPEND="doc? (
-   ~app-doc/gnucash-docs-${PV}
-   gnome-extra/yel

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

2020-11-20 Thread Sergei Trofimovich
commit: 0eead35083059b153e3b739a83b4cbf9de3fa8aa
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Nov 20 20:00:55 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Nov 20 20:00:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eead350

sys-libs/libcap-ng: stable 0.7.11 for sparc

stable wrt bug #755482

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

 sys-libs/libcap-ng/libcap-ng-0.7.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/libcap-ng/libcap-ng-0.7.11.ebuild 
b/sys-libs/libcap-ng/libcap-ng-0.7.11.ebuild
index 0ab4c81205a..bdb1124c291 100644
--- a/sys-libs/libcap-ng/libcap-ng-0.7.11.ebuild
+++ b/sys-libs/libcap-ng/libcap-ng-0.7.11.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://people.redhat.com/sgrubb/${PN}/${P}.tar.gz";
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~x86-linux"
 IUSE="python static-libs"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 



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

2020-11-20 Thread Sergei Trofimovich
commit: a3958634a5f648a5cb0671774075cbd7d45751b1
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Nov 20 19:58:15 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Nov 20 20:00:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3958634

dev-lang/python: stable 3.8.6 for sparc

stable wrt bug #754786

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

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

diff --git a/dev-lang/python/python-3.8.6.ebuild 
b/dev-lang/python/python-3.8.6.ebuild
index c73c195fa99..67bec8f1773 100644
--- a/dev-lang/python/python-3.8.6.ebuild
+++ b/dev-lang/python/python-3.8.6.ebuild
@@ -19,7 +19,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86"
 IUSE="bluetooth build examples gdbm hardened ipv6 libressl +ncurses +readline 
sqlite +ssl test tk wininst +xml"
 RESTRICT="!test? ( test )"
 



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

2020-11-20 Thread Sergei Trofimovich
commit: 9126089cb224d5cdf581f99e09a69c8060d28e0b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Nov 20 19:58:05 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Nov 20 19:59:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9126089c

app-portage/euses: stable 2.6.0 for sparc

stable wrt bug #74

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

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

diff --git a/app-portage/euses/euses-2.6.0.ebuild 
b/app-portage/euses/euses-2.6.0.ebuild
index a218983e68e..30580848fc2 100644
--- a/app-portage/euses/euses-2.6.0.ebuild
+++ b/app-portage/euses/euses-2.6.0.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://www.xs4all.nl/~rooversj/gentoo/${P}.tar.bz2";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 sparc x86"
 
 S=${WORKDIR}
 



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

2020-11-20 Thread Sergei Trofimovich
commit: 589104b5ef306e92bde91bbdaad4339d2f6d2f57
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Nov 20 19:59:21 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Nov 20 19:59:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=589104b5

net-misc/netkit-telnetd: stable 0.17-r12 for sparc

stable wrt bug #755593

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

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild 
b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
index 6b5d53c7649..2628a601965 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=



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

2020-11-20 Thread Michał Górny
commit: 9a3c50024346c1152bfee1ca26605626e8bc15a5
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Nov 20 19:44:33 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov 20 19:46:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a3c5002

app-editors/mousepad: Bump to 0.4.90

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

 app-editors/mousepad/Manifest   |  1 +
 app-editors/mousepad/mousepad-0.4.90.ebuild | 35 +
 2 files changed, 36 insertions(+)

diff --git a/app-editors/mousepad/Manifest b/app-editors/mousepad/Manifest
index 9da862b189c..f7966813b6e 100644
--- a/app-editors/mousepad/Manifest
+++ b/app-editors/mousepad/Manifest
@@ -1 +1,2 @@
 DIST mousepad-0.4.2.tar.bz2 696014 BLAKE2B 
2591f177b59147e01502329939365c5f18031f3dc9100baa29cb1da04afbff26cc91cc612ea1e5ebbc2d15754375da6afbd4ae9d96399f41cf06191d7d8d7082
 SHA512 
f3266018ce61683dc62b6866649f3674cc363ea652de04d3f087341c61cf24fb5eb730411948e354d085792f88b59e3dba7e7712715d92711f750b33d8bfb69a
+DIST mousepad-0.4.90.tar.bz2 808320 BLAKE2B 
5a639001663d24a9d0ae126f672adb5d3a72825893e0f0d90e263596f214d76f973e0743248efee8562dc04afb09c0519ed649ca5d36b9221569490e289d687f
 SHA512 
e839584782b09ee9d485ca4dcf05e22afb459cba269b3a15fe2dc0e3f3240bc15b1a8d7db92160b735d97d7293e67b0484b50ac3e72946b499dc65ac1097390b

diff --git a/app-editors/mousepad/mousepad-0.4.90.ebuild 
b/app-editors/mousepad/mousepad-0.4.90.ebuild
new file mode 100644
index 000..8d5d963fcc2
--- /dev/null
+++ b/app-editors/mousepad/mousepad-0.4.90.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit gnome2-utils xdg-utils
+
+DESCRIPTION="GTK+-based editor for the Xfce Desktop Environment"
+HOMEPAGE="https://git.xfce.org/apps/mousepad/about/";
+SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2";
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND=">=dev-libs/glib-2.45.8:2=
+   >=xfce-base/xfconf-4.12:=
+   >=x11-libs/gtk+-3.20:3=
+   x11-libs/gtksourceview:3.0="
+DEPEND="${RDEPEND}
+   dev-lang/perl
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig"
+
+pkg_postinst() {
+   gnome2_schemas_update
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_schemas_update
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/dhcp/files/, net-misc/dhcp/

2020-11-20 Thread Mike Gilbert
commit: 65f86cdce2f35d916c5f3c41fd41900f3bf6bedb
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Nov 20 19:29:17 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Nov 20 19:29:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65f86cdc

net-misc/dhcp: backport build fix

Closes: https://bugs.gentoo.org/752402
Signed-off-by: Mike Gilbert  gentoo.org>

 net-misc/dhcp/dhcp-4.4.2-r3.ebuild |  1 +
 net-misc/dhcp/files/dhcp-4.4.2-variable-name.patch | 25 ++
 2 files changed, 26 insertions(+)

diff --git a/net-misc/dhcp/dhcp-4.4.2-r3.ebuild 
b/net-misc/dhcp/dhcp-4.4.2-r3.ebuild
index 0257824a08f..6cad24e7519 100644
--- a/net-misc/dhcp/dhcp-4.4.2-r3.ebuild
+++ b/net-misc/dhcp/dhcp-4.4.2-r3.ebuild
@@ -70,6 +70,7 @@ PATCHES=(
 
# Possible upstream candidates
"${FILESDIR}/${PN}-4.4.2-fno-common.patch" #710194
+   "${FILESDIR}/dhcp-4.4.2-variable-name.patch" #752402
 )
 
 src_prepare() {

diff --git a/net-misc/dhcp/files/dhcp-4.4.2-variable-name.patch 
b/net-misc/dhcp/files/dhcp-4.4.2-variable-name.patch
new file mode 100644
index 000..9f5085dd5e2
--- /dev/null
+++ b/net-misc/dhcp/files/dhcp-4.4.2-variable-name.patch
@@ -0,0 +1,25 @@
+From 261c84d91d1b4581df9f7f0ec031908299de7726 Mon Sep 17 00:00:00 2001
+From: Mark Andrews 
+Date: Thu, 19 Dec 2019 09:27:44 +1100
+Subject: [PATCH] fix variable name in conditional block
+
+---
+ lib/isc/stats.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/lib/isc/stats.c b/lib/isc/stats.c
+index 5bce3c1100..a7ab97ce53 100644
+--- a/bind/bind-9.11.14/lib/isc/stats.c
 b/bind/bind-9.11.14/lib/isc/stats.c
+@@ -297,7 +297,7 @@ setcounter(isc_stats_t *stats,
+   isc_atomic_store((int32_t *)&stats->counters[counter].lo,
+(uint32_t)(value & 0x));
+ # else
+-  stats->counters[counter] = val;
++  stats->counters[counter] = value;
+ # endif
+ #endif
+ }
+-- 
+GitLab
+



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

2020-11-20 Thread Fabian Groffen
commit: a444dde143f9c29e5331888ddc10d0139827666f
Author: Fabian Groffen  gentoo  org>
AuthorDate: Fri Nov 20 18:59:24 2020 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Fri Nov 20 18:59:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a444dde1

mail-client/mutt-2.0.2: bump for CVE-2020-28896

Bug: https://bugs.gentoo.org/755866
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Fabian Groffen  gentoo.org>

 mail-client/mutt/Manifest | 4 ++--
 mail-client/mutt/{mutt-2.0.0.ebuild => mutt-2.0.2.ebuild} | 3 ---
 2 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/mail-client/mutt/Manifest b/mail-client/mutt/Manifest
index 0d5727c40d5..1a31a0f8b3f 100644
--- a/mail-client/mutt/Manifest
+++ b/mail-client/mutt/Manifest
@@ -1,8 +1,8 @@
 DIST mutt-1.14.4.tar.gz 5007437 BLAKE2B 
89d4327ddd86ec320c63db6ee9d3c07b7540a74aba7efdcb9605e5c5c242dec99fb5137d1cfc62fd4401e2af7589f03ebce78dfa2deae262aef408b804544656
 SHA512 
86484f009ca8bd1e26206694e03609a16f8a4e8c83620a07a4376fe160535a838e8c918a8a30799fb3d9cf46c059d67124f7425c42093fb5e5bf8ea4ac310daa
 DIST mutt-1.14.5.tar.gz 5008208 BLAKE2B 
a7c2f7f63d2ee23e743114315cbb40903db720de7f2836f551739edb0b78857c525c40ebde083064dd2430b89b21d7a17745dfc1185672f86b15a9a082c3778e
 SHA512 
950c8df3bdc552b41ba6209aed8d5ade6fff80fe4018a75856d0fdbcd6389bd995a6dee69e7badd05a9b40d2e2293ada9a9f9a96632e88af36b61162f226e2b9
 DIST mutt-1.14.7.tar.gz 5009968 BLAKE2B 
f729412d3da97fe9bd76733705317660edfa3858a9eb1012179fb289b03da58d79b6e261dbdc4ab8b001e89ca455e9972bab8f270bac28e887afc7e0bd9fc8c1
 SHA512 
dc9739b5f0a99ca70fcbd495c71fbead23e3481f9c9e426feb827997c9c42e5f28355084f54788820c96a079dedb649fcc20e69436fb3c4df7e46f372b533e7c
-DIST mutt-2.0.0.tar.gz 5287742 BLAKE2B 
d45cae45e560548a3f278972e7bff820c860b194f06286a4e2c456141e7d421b1812f423e31594d0c4b0c82c8c9f59749a8e127d41b8c172a5319a23cc8e
 SHA512 
2f48bf7eb9bb79a477e3fb9bf4bcde6033d7aaa8922eee20b6e6a05f49a1aea152a7987b99f335343175d87180062064c90c5a7b5bfa82aed188eeab0ac4a90b
+DIST mutt-2.0.2.tar.gz 5293613 BLAKE2B 
215a4d54e6dd202ebced91d0536a7f70e774b3c41c129ef87a55ea75a298e485b72145e5dd3c654d9b28138800c4b3e87a3815ab789d952b6b58cfc068fd397b
 SHA512 
5dea02edf60b33e4873806481aa4256f91d90b05de99a9eccc620c459bd924197b656f85eb5a31757a61675389e6c4d76571128a757cfda255240934e82eec29
 DIST mutt-gentoo-1.14.4-patches-r0.tar.xz 31124 BLAKE2B 
a9774a5bb5af18a275f7ea171cb08a12a98d63cbff57320d5d3fb4f995aac16f409689ac0015f3b5d37cfc20004c9fca72a3f63663aaa679a129d5f3886bc5cc
 SHA512 
05506399a471c262479db88ef11d2a95d79598fd696fe50de5f5c1c3cae5adf30a2806a1500ba94a62bcbf7deed99acc59a8afb903f50169e41b77010e0ad8cc
 DIST mutt-gentoo-1.14.5-patches-r0.tar.xz 31100 BLAKE2B 
14525b54afa1414667ebe2dc0c58b9b5d5ad4dcc5dbae3c5db13cc23d33dbd9434fa929ad297625c891b2d690e34729a4f61c526fb94857e271ac85f5a07488e
 SHA512 
fd8e473efa02e412aeaba258afee6dc02f9ca24f9edff643e4ef53c759a091e54c6a544e39cd7faa94cd680546bfcf845e282638045ae65a88d140ebb03a4631
 DIST mutt-gentoo-1.14.7-patches-r0.tar.xz 31144 BLAKE2B 
5a9806dec79f8a991e39464afde1faf2ba988e67ffd85ec16943432a83ee1d05ddcb839095a475ab56aa80a4bbe25de58835d6bde84c0c95e4487df139e16e82
 SHA512 
ca57af137bc5a2663724cb97a7ea04e4d62b2fe8a3864489f15552ef361c1fb8c881ebc783a4f3a6d82c5e9bb45e83fbe6cad59158c831c54361729ada24b458
-DIST mutt-gentoo-2.0.0-patches-r0.tar.xz 26396 BLAKE2B 
80db2456871208050e5cccbd8ba22024dc45ffc69e9b8cbb892904010f0521061f0755f62984502c2cee58bb74aa0c30fafa4613709d2e8a6d0fe291bbc86e27
 SHA512 
f9b8f9abded13de54d7fcf991d58fa45e68d6e059c807dcca1530bdb927d7301faa30e31798e5a3f2d25504cb9db81dfa26f8cde3946a14f540f54955add2828
+DIST mutt-gentoo-2.0.2-patches-r0.tar.xz 26380 BLAKE2B 
3ce2dbe07f9340adbaeb0489fe88564b6cc44ef330d298915d42617357799a26f277cc0dcab2b78a5620f20a2533f2fe43287bab76eeb9529013e9f9c7659ffb
 SHA512 
79fb00ccf6084da805c75eedbdb1631b12e616318e91a4c246d0194a478b803e3dc5d2815f757fecc91316c010058c2d0e9ecaf3fe40d5664ac25af63a0d7e13

diff --git a/mail-client/mutt/mutt-2.0.0.ebuild 
b/mail-client/mutt/mutt-2.0.2.ebuild
similarity index 98%
rename from mail-client/mutt/mutt-2.0.0.ebuild
rename to mail-client/mutt/mutt-2.0.2.ebuild
index 353c1c707ea..098178a8242 100644
--- a/mail-client/mutt/mutt-2.0.0.ebuild
+++ b/mail-client/mutt/mutt-2.0.2.ebuild
@@ -97,9 +97,6 @@ src_prepare() {
sed -i \
-e '/ReachingUs = N_(/aThis release of Mutt is heavily 
enriched with patches.\\nFor this reason, any bugs are better reported at 
https://bugs.gentoo.org/\\nor re-emerge with USE=vanilla and try to reproduce 
your problem.\\n\\' \
main.c || die "Failed to add bug instructions"
-
-   # https://gitlab.com/muttmua/mutt/-/issues/294
-   sed -i -e 's/u_int32_t/uint32_t/g' mutt_random.c || die
fi
 
local upatches=



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

2020-11-20 Thread Maciej Barć
commit: 829b51d05864b3aa6f393b6939fce28cade6f30a
Author: Maciej Barć  protonmail  com>
AuthorDate: Fri Nov 20 14:40:39 2020 +
Commit: Maciej Barć  protonmail  com>
CommitDate: Fri Nov 20 14:41:04 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=829b51d0

app-office/pyspread: bump to 1.99.5; drop old

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

 app-office/pyspread/Manifest| 2 +-
 .../pyspread/{pyspread-1.99.2-r1.ebuild => pyspread-1.99.5.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/pyspread/Manifest b/app-office/pyspread/Manifest
index 8a0e83a0..e963fd64 100644
--- a/app-office/pyspread/Manifest
+++ b/app-office/pyspread/Manifest
@@ -1,2 +1,2 @@
-DIST pyspread-v1.99.2.tar.gz 2350002 BLAKE2B 
61550fa44ad32b32cf69a0aa423a053d90b91c54ee9a17a13a39665a2a7e719c1aa81063aca6216a6f0675e444bc705d21e5cdd927c542fcc229acba304ad2e0
 SHA512 
9261cf96f19d92a5743c09854236ccec5e1b103e22b78143ddee8fce0d25f793b86e7cc3775f13c5a43cf8dd4e3f434461677b6da5311fb439067d63ce6ac968
 DIST pyspread-v1.99.4.tar.gz 2344373 BLAKE2B 
033aec481812e37e30c8ab43962128f94ece11c9106460b33de51467ede959f30bd00c70cd7be6d9b496862337c21197a9ff8b231ff34b2aaf28c6f8697011f8
 SHA512 
e865238fbe32aca5785b4a83f3c901367925326d0b2c6d86b0fa0b3cc04b56605e8e0809df1f09f642553fd94e6bbacc6abc80153a50835b1ef49c6161efc5dc
+DIST pyspread-v1.99.5.tar.gz 2357630 BLAKE2B 
2a0d5ad1abd18898c921803793d2c19e56519257781b71287479b14a1e2cae348ac36f1b663362d996fef90913393d61221163b41ce92696b6fededff685176b
 SHA512 
b186e31931c7ae582dbb2b0b01ef22c5a93361002e26c00010391203eb0a41da21dfc7533f08c075f32831dac6667b2cf705cee7eca7c1d5bedfd34c78979e93

diff --git a/app-office/pyspread/pyspread-1.99.2-r1.ebuild 
b/app-office/pyspread/pyspread-1.99.5.ebuild
similarity index 100%
rename from app-office/pyspread/pyspread-1.99.2-r1.ebuild
rename to app-office/pyspread/pyspread-1.99.5.ebuild



[gentoo-commits] repo/gentoo:master commit in: app-emulation/open-vm-tools/files/

2020-11-20 Thread Mike Gilbert
commit: 7e51c6a6b2d0438b27e3a383c5878766bb5cce7e
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Fri Nov 20 17:22:41 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Nov 20 18:35:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e51c6a6

app-emulation/open-vm-tools: remove unused patch

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Mike Gilbert  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/18337

 .../files/11.0.1-udev-complaints.patch | 60 --
 1 file changed, 60 deletions(-)

diff --git a/app-emulation/open-vm-tools/files/11.0.1-udev-complaints.patch 
b/app-emulation/open-vm-tools/files/11.0.1-udev-complaints.patch
deleted file mode 100644
index b34e06d1a22..000
--- a/app-emulation/open-vm-tools/files/11.0.1-udev-complaints.patch
+++ /dev/null
@@ -1,60 +0,0 @@
-From f1dab8ded454b6993a4d96d0aefc700f1796 Mon Sep 17 00:00:00 2001
-From: Oliver Kurth 
-Date: Mon, 28 Oct 2019 16:12:42 -0700
-Subject: [PATCH] stop systemd-243 udev complaints #371
-
-Address issues from pull request #371 on github:
-- fix substiution variables for systemd-243
-- fix permissions of rules file
-See https://github.com/vmware/open-vm-tools/pull/371

- open-vm-tools/AUTHORS| 4 
- open-vm-tools/udev/99-vmware-scsi-udev.rules | 6 +++---
- open-vm-tools/udev/Makefile.am   | 4 ++--
- 3 files changed, 9 insertions(+), 5 deletions(-)
-
-diff --git a/open-vm-tools/AUTHORS b/open-vm-tools/AUTHORS
-index 08cc28ef2..026de07e6 100644
 a/open-vm-tools/AUTHORS
-+++ b/open-vm-tools/AUTHORS
-@@ -49,3 +49,7 @@ Josh PaetzelAdditional changes to vmmemctl.ko for 
FreeBSD 12.0 API changes.
- 
- Haruki TsurumotoFix Asianux identification
- - https://github.com/vmware/open-vm-tools/pull/325
-+
-+MilhouseVH  stop systemd-243 udev complaints
-+- https://github.com/vmware/open-vm-tools/pull/371
-+
-diff --git a/open-vm-tools/udev/99-vmware-scsi-udev.rules 
b/open-vm-tools/udev/99-vmware-scsi-udev.rules
-index 053b59706..fb4ed6844 100644
 a/open-vm-tools/udev/99-vmware-scsi-udev.rules
-+++ b/open-vm-tools/udev/99-vmware-scsi-udev.rules
-@@ -1,7 +1,7 @@
--# Copyright (C) 2016 VMware, Inc.  All rights reserved.
-+# Copyright (C) 2016,2019 VMware, Inc.  All rights reserved.
- #
- # This file is part of open-vm-tools
- 
--ACTION=="add", SUBSYSTEMS=="scsi", ATTRS{vendor}=="VMware*", 
ATTRS{model}=="Virtual disk*", ENV{DEVTYPE}=="disk", RUN+="/bin/sh -c 'echo 180 
>/sys$DEVPATH/device/timeout'"
--ACTION=="add", SUBSYSTEMS=="scsi", ATTRS{vendor}=="VMware*", 
ATTRS{model}=="VMware Virtual S", ENV{DEVTYPE}=="disk", RUN+="/bin/sh -c 'echo 
180 >/sys$DEVPATH/device/timeout'"
-+ACTION=="add", SUBSYSTEMS=="scsi", ATTRS{vendor}=="VMware*", 
ATTRS{model}=="Virtual disk*", ENV{DEVTYPE}=="disk", RUN+="/bin/sh -c 'echo 180 
>/sys$env{DEVPATH}/device/timeout'"
-+ACTION=="add", SUBSYSTEMS=="scsi", ATTRS{vendor}=="VMware*", 
ATTRS{model}=="VMware Virtual S", ENV{DEVTYPE}=="disk", RUN+="/bin/sh -c 'echo 
180 >/sys$env{DEVPATH}/device/timeout'"
- 
-diff --git a/open-vm-tools/udev/Makefile.am b/open-vm-tools/udev/Makefile.am
-index 68fbc3e27..c3baadf16 100644
 a/open-vm-tools/udev/Makefile.am
-+++ b/open-vm-tools/udev/Makefile.am
-@@ -1,5 +1,5 @@
- 

--### Copyright (C) 2016 VMware, Inc.  All rights reserved.
-+### Copyright (C) 2016,2019 VMware, Inc.  All rights reserved.
- ###
- ### This program is free software; you can redistribute it and/or modify
- ### it under the terms of version 2 of the GNU General Public License as
-@@ -17,5 +17,5 @@
- 
- install-data-local:
-   $(INSTALL) -d $(DESTDIR)$(UDEVRULESDIR)
--  $(INSTALL) $(srcdir)/99-vmware-scsi-udev.rules $(DESTDIR)$(UDEVRULESDIR)
-+  $(INSTALL) -m 644 $(srcdir)/99-vmware-scsi-udev.rules 
$(DESTDIR)$(UDEVRULESDIR)
- 



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

2020-11-20 Thread Sam James
commit: 771c79d318c46f3c88b39e3cc69a6516c0491d00
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 20 18:02:24 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 18:02:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=771c79d3

media-video/mpv: revbump for libass dep change

The one time I don't revbump! What was I thinking?

Fixes: 1d79551f66ff6e65b64d87a2060e546029d39ed8
Closes: https://bugs.gentoo.org/755857
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 media-video/mpv/{mpv-0.32.0-r1.ebuild => mpv-0.32.0-r2.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/media-video/mpv/mpv-0.32.0-r1.ebuild 
b/media-video/mpv/mpv-0.32.0-r2.ebuild
similarity index 100%
rename from media-video/mpv/mpv-0.32.0-r1.ebuild
rename to media-video/mpv/mpv-0.32.0-r2.ebuild



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

2020-11-20 Thread Daniel Pielmeier
commit: 05a4957e882d54957422ae9b6cd637fc729e5e09
Author: Daniel Pielmeier  gentoo  org>
AuthorDate: Fri Nov 20 17:48:50 2020 +
Commit: Daniel Pielmeier  gentoo  org>
CommitDate: Fri Nov 20 17:50:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05a4957e

net-print/hplip: Revison bump hplip-3.20.9-r5.

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

 net-print/hplip/{hplip-3.20.9-r4.ebuild => hplip-3.20.9-r5.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/net-print/hplip/hplip-3.20.9-r4.ebuild 
b/net-print/hplip/hplip-3.20.9-r5.ebuild
similarity index 100%
rename from net-print/hplip/hplip-3.20.9-r4.ebuild
rename to net-print/hplip/hplip-3.20.9-r5.ebuild



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

2020-11-20 Thread Sam James
commit: b8c4c84a73d281bc1cafcc29c16431616c2ad88f
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 20 17:47:35 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 17:47:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8c4c84a

dev-db/postgresql: regenerate manifest

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

 dev-db/postgresql/Manifest | 6 --
 1 file changed, 6 deletions(-)

diff --git a/dev-db/postgresql/Manifest b/dev-db/postgresql/Manifest
index 47dbd153fd0..48904b4d742 100644
--- a/dev-db/postgresql/Manifest
+++ b/dev-db/postgresql/Manifest
@@ -1,12 +1,6 @@
-DIST postgresql-10.14.tar.bz2 19042154 BLAKE2B 
af00179190780bd30ed97cf6881670d18fda77062cdb5dc7cc161c64c3d5522db288902d0612db30fc6fcc1b619c7a102887ed438e27739e936bf5659425
 SHA512 
eecd2aa8df7e4779606ec547b7bf0207ebb2be10a4b332f06c3b72116f0619fe27fb651f2fd4504c73b740ab7f92468919244a615d460bb9c35085174a0dbc78
 DIST postgresql-10.15.tar.bz2 19089779 BLAKE2B 
3b1b30fca0253122aa20eb3fc0cac0b022379b0f0daded46d3295e76167c0063698226198bc905bed5b689a71f4dd2bab5795861207767c2091f037a2b0e9663
 SHA512 
88fe322a8691692f8c1b8ca7f7a5a035c399c1d2a0e6276b60863f2c0cb8e4857b041d7364641e0738438aee0836688e712b9c176ac454ee98386dfd18754636
 DIST postgresql-11.10.tar.bz2 20003842 BLAKE2B 
21446b5e9202c84dad4d6c768f16aab539e656d0a836121343ca4051269845a9ef06859ea37dab09030467336599eb1b72175115d61ca965ed74b7c2fed9ffbf
 SHA512 
0cc0e9b0f76e00727dc699ea59a45d760d37d91ec736a62cbc9bda3e38eb1ef1565e4e399dd3ae96bad87f866e56e364f916de7740d8be6e1cfc2bf654dfbb68
-DIST postgresql-11.9.tar.bz2 19959019 BLAKE2B 
655d1c9e6eebde19402a4c220ee674c589641c5b6f4e6298c8c06d3330069178952455f5af58f90b9af196ba9c8fd03db0ccd70b8bc49335e465f0ed537eaf59
 SHA512 
2c5c2f51aa01f02af4aa0849441767383e30fef69dd52efa442892f39d2456bfa8bf01f633a265e00eca0745e792609d2c1d33f77d8f29a02f5f374c84f2bf6e
-DIST postgresql-12.4.tar.bz2 20669776 BLAKE2B 
fb3f865a8a5e5280e7cc5da43f8658029170cd15dae8cc5fb1e741a122ea1f13418ac7743ec417ab4436976bc0ce12753fc8a301200143c975e8739d59816fa7
 SHA512 
36daf10878ca153370829178786dd6ee366ab4d4d6dc9c527536740fdb14b688ae4c33f850eb4243a7667d23f87e4bfd1ddee0755447ad4f3996e423e391c2f3
 DIST postgresql-12.5.tar.bz2 20729654 BLAKE2B 
7f7458346a0823d155f5caea0061aa14048d6f3cac27b1ea23dba03b02a39f39314ad1d44e589520d5e287004ffd32e042fea99ebfeda24b2cc23867b402d336
 SHA512 
9895bcb1bb26206500666ab4441e663ef83702d428b85a6ff177a4eaf44b0ae06b35d5c4da2672ccb4ec18296649af95bf2f0aed526afaa6a216a8c2d2c5627e
-DIST postgresql-13.0.tar.bz2 20999465 BLAKE2B 
c2c6475ad3c1c79afac1bc181ae3f9b74c097f9679bf562a0f1b4e16f426c9b0235aec476582ef548d14987a9232b938f2920446a8d5a8aa08ae5752f40481f2
 SHA512 
1fde89487c3e50a7a07e1d42fba60d415645ea89c5d4c5c7fcc93fbd5330feca7ec991d5b274f6ab757d5d04667ca1a7efdf4eaaa760add19d2e02437465f8f5
 DIST postgresql-13.1.tar.bz2 21034192 BLAKE2B 
609ac10f87da800754223c7f7d6b02efa3ed1308a5d27cc793c937be983f4041576e20de3b2efe514e3f61dc863e6212ec01d73adb93f6bcc373a596b2946675
 SHA512 
b7bd378db1dcb74ebcd5fffba03b82d8117d182029e4caca48eef62d8bcdbeef2c2e10f18eef0cdafb9d7acf21aa164d040e56687709f97b08c51540a786eeca
-DIST postgresql-9.5.23.tar.bz2 17682366 BLAKE2B 
74713d6483ae1ad3d2dfc4b1ac9d30a6785ff34f61b735924f2d469861516ad5160cbfda9c09b96adf264237b6f3ad8fd6ddeef60b6af6b5b63d6c1a36fb9354
 SHA512 
b7a1e936a0043b57b3ece79610855820d2ea6a86e4a4be0c4c8358bf3e1ef8fa88bc60106d6b865d86231d16b5e3c098b4dbd93125a125b3cc5d468ffea64db1
 DIST postgresql-9.5.24.tar.bz2 17881872 BLAKE2B 
b86019c4616142a0f5a8db3d00422e16181650d1e1ba755bf6453b76e50b3feff75d7319839ee6f28949d743e46bbdaea32fa3d51f39dd4b4439c88943665d6d
 SHA512 
6e649cd31f2761e2d070d8028b59a690ad76ff3d83a3aa982c4b222c8ea2927fda5e8f473330526673e27ad4b3cc99e8c66810e097c3dfc6517571405c6aede3
-DIST postgresql-9.6.19.tar.bz2 18880036 BLAKE2B 
ad9c5684e2c0fb276589560f7dbe01241b5caf763f5a20991244ad7b473397576c9530658eb91e085e8416156b0ac81750f08ed85d5e5a689321891d10b6e114
 SHA512 
4d8d4a0e4645d71683a5fccb9cd88917e1870ba139f102e0ea82da9c8d1ad669f029e0feb6d409e2016dfd247229ec7daf04f7f2de3ab6c5b4053834ac244a26
 DIST postgresql-9.6.20.tar.bz2 18944478 BLAKE2B 
46c7b27ca60f967f71984d6b747c3054ae6ef4acdcbcd14cfbe3c1ede32a9303b99911e521ed0aa2ba6f899c0d8b9ec03e4e6804379ea6e2371a696f32a6f867
 SHA512 
6d247e5640a515fa6e6a4c68a992c83aeb19e35924b8e3d21191b3289200766588d1426c5863a13bfc4a11944da3202df9efebc94460d16454c29e5a79384c75



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

2020-11-20 Thread Daniel Pielmeier
commit: 223e8e44f5b2f7b283bb9d1a250cdbe06c922cbb
Author: Daniel Pielmeier  gentoo  org>
AuthorDate: Fri Nov 20 17:46:02 2020 +
Commit: Daniel Pielmeier  gentoo  org>
CommitDate: Fri Nov 20 17:46:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=223e8e44

net-print/hplip: Fix bug #755725.

Thanks to for the Jack MacNaught report.

Closes: https://bugs.gentoo.org/755725
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Daniel Pielmeier  gentoo.org>

 net-print/hplip/hplip-3.20.9-r4.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/net-print/hplip/hplip-3.20.9-r4.ebuild 
b/net-print/hplip/hplip-3.20.9-r4.ebuild
index f55a4176174..c7b0fa78fc6 100644
--- a/net-print/hplip/hplip-3.20.9-r4.ebuild
+++ b/net-print/hplip/hplip-3.20.9-r4.ebuild
@@ -209,9 +209,11 @@ src_configure() {
minimal_build="${minimal_build} --disable-scan-build"
fi
if use qt5 ; then
+   minimal_build="${minimal_build} --enable-qt5"
minimal_build="${minimal_build} --enable-gui-build"
else
minimal_build="${minimal_build} --disable-gui-build"
+   minimal_build="${minimal_build} --disable-qt5"
fi
fi
 



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

2020-11-20 Thread Anthony G. Basile
commit: d6600d021e75399365cb7ed7135174c62ba8f76a
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Nov 20 17:37:26 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Nov 20 17:37:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6600d02

net-dns/c-ares: version bump to 1.17.1

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Anthony G. Basile  gentoo.org>

 net-dns/c-ares/Manifest |  1 +
 net-dns/c-ares/c-ares-1.17.1.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/net-dns/c-ares/Manifest b/net-dns/c-ares/Manifest
index 4ebd15a41e7..e3cae6e2612 100644
--- a/net-dns/c-ares/Manifest
+++ b/net-dns/c-ares/Manifest
@@ -1 +1,2 @@
 DIST c-ares-1.16.1.tar.gz 1374637 BLAKE2B 
0d87538f5d6cac5b6b9c92d6ba5525af0e580e6506bee9270318f0951aaccdc7e135b446381e8150241d367789ccf2f73dbb333d45de4dbb5a87af05483063a8
 SHA512 
4ac2a5d5c6da74eb1d6155c4eadc7127ab1b53a8d13caec41bd6172db5417a79f3ab022e77ba37d8b13da6893d7ced5fd8baf5cc3950a4154b4de8743ad31471
+DIST c-ares-1.17.1.tar.gz 1518701 BLAKE2B 
31dac21ecae231e2a201dc1ba954c1a0663a06f93eb8e7e033ca3c6d385f53e07af0b04854739f1ee8a7f0693f67f620143e152ef092b49342c62279a0480905
 SHA512 
b11887bcc9274d368088e1a8b6aca62414f20675cf0bc58e948f54fa04c327c39dd23cefe7509eec6397db14b550a3f6b77f5c18b3d735b3eef48ce2da1dcd00

diff --git a/net-dns/c-ares/c-ares-1.17.1.ebuild 
b/net-dns/c-ares/c-ares-1.17.1.ebuild
new file mode 100644
index 000..f2714b1d212
--- /dev/null
+++ b/net-dns/c-ares/c-ares-1.17.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools eutils multilib-minimal
+
+DESCRIPTION="C library that resolves names asynchronously"
+HOMEPAGE="https://c-ares.haxx.se/";
+SRC_URI="https://${PN}.haxx.se/download/${P}.tar.gz";
+
+LICENSE="MIT"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc64-solaris"
+IUSE="static-libs"
+
+# Subslot = SONAME of libcares.so.2
+SLOT="0/2"
+
+DOCS=( AUTHORS CHANGES NEWS README.md RELEASE-NOTES TODO )
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/ares_build.h
+)
+
+multilib_src_configure() {
+   ECONF_SOURCE=${S} \
+   econf \
+   --enable-nonblocking \
+   --enable-symbol-hiding \
+   --disable-tests \
+   $(use_enable static-libs static)
+}
+
+multilib_src_install_all() {
+   einstalldocs
+   find "${ED}" -name "*.la" -delete || die
+}



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

2020-11-20 Thread Craig Andrews
commit: c0629c7e8e5a50d4a9ef8a86cc9f35ac6b63ae40
Author: Craig Andrews  gentoo  org>
AuthorDate: Fri Nov 20 17:04:53 2020 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Fri Nov 20 17:05:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0629c7e

media-tv/kodi: Cleanup old versions

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

 media-tv/kodi/Manifest  |   2 -
 media-tv/kodi/kodi-19.0_alpha3_p20201109.ebuild | 298 ---
 media-tv/kodi/kodi-19.0_beta1.ebuild| 302 
 3 files changed, 602 deletions(-)

diff --git a/media-tv/kodi/Manifest b/media-tv/kodi/Manifest
index 876fc65d057..b8641491316 100644
--- a/media-tv/kodi/Manifest
+++ b/media-tv/kodi/Manifest
@@ -1,6 +1,4 @@
-DIST ffmpeg-kodi-4.3.1-Matrix-Alpha1-2.tar.gz 13477450 BLAKE2B 
c33a2aad8b895be3ea5be76de238680284487d38a8c22ce57f17c3944a6ba214c0dfa9ef1e4717244ff8f70f6dd640b36715842d61ddaed65867a6c096470283
 SHA512 
7f614d0dd2b319414cb31853be9cd52e5e81b780a4049e36470f992e78e52bcd65e99bfd268df5f8781ad030bb60f99d15bd5e8c4d7c2fd9a4011b55a3efc40c
 DIST ffmpeg-kodi-4.3.1-Matrix-Beta1.tar.gz 13477440 BLAKE2B 
49415f76fd2a888b0efadb19597bd89db65c3d9e1224ab529ff0d73ab5734a23982b4d4905ddeb105ce59a816c4642cdb9f5568b0c39c29f5fb9431f9623d4ec
 SHA512 
ce43390e816dabeed4ca231f5f7adade6c721c38e17996a57810fb6025ea49b812133c2a6e29aac7c674d4e4af3a21dbd7e605d85fb966935a01bda983b884ac
-DIST kodi-19.0_alpha3_p20201109.tar.gz 52322634 BLAKE2B 
4a6942289ecc4b706a1b1f950b19bae16088ea8717b22c3015fe1dd448d37dccc46b2f756049ab71519c72a2e8a639f07128590dd94f227fce73e12efe10
 SHA512 
2fe0abfa8a8e4c3dd73021cf1aedb6dadda9c14588380276fc5ab05dee13e397d4f893ee5a62301fc79ebe5fe9129b8d37489edc0014c5a15564c63696d89d93
 DIST kodi-19.0b1.tar.gz 52314501 BLAKE2B 
35090e969160f7ea6619d6c720f92a3ecf97391d12548927fcfd03ccc15091132f795f4636a4c4b8c15b2a623ee8b892c4b395e2e4e811152c63ffc19474ff90
 SHA512 
51a5a060c9ee51dd05303259cf59164bf273b05430f0987998a90879dfb52c1e95669e1c432476df65247fb70e920058119713a627ed7e12bf8dcd13645ffc40
 DIST libdvdcss-1.4.2-Leia-Beta-5.tar.gz 101068 BLAKE2B 
283aa2cec0a2200d3569bc280cb9659e9224a6b3a77db8a35b269cd8caf1337ac9d8b92b806df66f63ef7458a46bd6261f0b8b14678b10e26644a79dcbeea5da
 SHA512 
5185dbdbeb1bd13ea9d8723f1f4ab599d6f3102f5ba1096cd085aa1cda252c045f327c719227bba8e1b742352ade5e335106c8d0c1637a5a6b93ce661620dd7e
 DIST libdvdnav-6.0.0-Leia-Alpha-3.tar.gz 137942 BLAKE2B 
7573434a0ae8e8ccabf48173f81fcde29074eb138e119a2ae9156cde3c3d8bfd716f5d0e605b97f2dcac21f570781137c8533c5ae306b51e3905822fda318355
 SHA512 
11c93eaacd156f8fd7dec7c43d366438b201f31ad55b2870463a9e286912b6ada08882319a021fb7992190f87b909a49f2b83e0321cc17aedc29f7fe5898fa72

diff --git a/media-tv/kodi/kodi-19.0_alpha3_p20201109.ebuild 
b/media-tv/kodi/kodi-19.0_alpha3_p20201109.ebuild
deleted file mode 100644
index fef35604a08..000
--- a/media-tv/kodi/kodi-19.0_alpha3_p20201109.ebuild
+++ /dev/null
@@ -1,298 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_REQ_USE="libressl?,sqlite,ssl"
-LIBDVDCSS_VERSION="1.4.2-Leia-Beta-5"
-LIBDVDREAD_VERSION="6.0.0-Leia-Alpha-3"
-LIBDVDNAV_VERSION="6.0.0-Leia-Alpha-3"
-FFMPEG_VERSION="4.3.1"
-CODENAME="Matrix"
-FFMPEG_KODI_VERSION="Alpha1-2"
-PYTHON_COMPAT=( python3_{6,7,8,9} )
-SRC_URI="https://github.com/xbmc/libdvdcss/archive/${LIBDVDCSS_VERSION}.tar.gz 
-> libdvdcss-${LIBDVDCSS_VERSION}.tar.gz
-   https://github.com/xbmc/libdvdread/archive/${LIBDVDREAD_VERSION}.tar.gz 
-> libdvdread-${LIBDVDREAD_VERSION}.tar.gz
-   https://github.com/xbmc/libdvdnav/archive/${LIBDVDNAV_VERSION}.tar.gz 
-> libdvdnav-${LIBDVDNAV_VERSION}.tar.gz
-   !system-ffmpeg? ( 
https://github.com/xbmc/FFmpeg/archive/${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz
 -> ffmpeg-${PN}-${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz )"
-if [[ ${PV} == * ]] ; then
-   EGIT_REPO_URI="https://github.com/xbmc/xbmc.git";
-   inherit git-r3
-else
-   GIT_COMMIT="5b06cdf3e64347085484435f2a4963e919edc8ec"
-   SRC_URI+=" https://github.com/xbmc/xbmc/archive/${GIT_COMMIT}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-   S=${WORKDIR}/xbmc-${GIT_COMMIT}
-fi
-
-inherit autotools cmake desktop linux-info pax-utils python-single-r1 xdg
-
-DESCRIPTION="A free and open source media-player and entertainment hub"
-HOMEPAGE="https://kodi.tv/ https://kodi.wiki/";
-
-LICENSE="GPL-2+"
-SLOT="0"
-# use flag is called libusb so that it doesn't fool people in thinking that
-# it is _required_ for USB support. Otherwise they'll disable udev and
-# that's going to be worse.
-IUSE="airplay alsa bluetooth bluray caps cec +css dbus dvd gbm gles lcms 
libressl libusb lirc mariadb mysql nfs +opengl pulseaudio raspberry-pi samba 
systemd +system-ffmpeg test udf udev udisks upnp upower vaapi vdpau w

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

2020-11-20 Thread Craig Andrews
commit: f94a3066cc63bf8a8fd229d64d7efbb648b42656
Author: Craig Andrews  gentoo  org>
AuthorDate: Fri Nov 20 17:03:10 2020 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Fri Nov 20 17:05:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f94a3066

media-tv/kodi: Fix setting CORE_PLATFORM_NAME

Closes: https://bugs.gentoo.org/755401
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Craig Andrews  gentoo.org>

 media-tv/kodi/{kodi-19..ebuild => kodi-19.0_beta1-r1.ebuild} | 3 ++-
 media-tv/kodi/kodi-19..ebuild| 3 ++-
 media-tv/kodi/kodi-.ebuild   | 3 ++-
 3 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/media-tv/kodi/kodi-19..ebuild 
b/media-tv/kodi/kodi-19.0_beta1-r1.ebuild
similarity index 99%
copy from media-tv/kodi/kodi-19..ebuild
copy to media-tv/kodi/kodi-19.0_beta1-r1.ebuild
index f951107635b..db37201ab5a 100644
--- a/media-tv/kodi/kodi-19..ebuild
+++ b/media-tv/kodi/kodi-19.0_beta1-r1.ebuild
@@ -220,6 +220,7 @@ src_configure() {
use gbm && platform+=( gbm )
use wayland && platform+=( wayland )
use X && platform+=( x11 )
+   local core_platform_name="${platform[@]}"
local mycmakeargs=(
-Ddocdir="${EPREFIX}/usr/share/doc/${PF}"
-DENABLE_LDGOLD=OFF # 
https://bugs.gentoo.org/show_bug.cgi?id=606124
@@ -263,7 +264,7 @@ src_configure() {
-DPYTHON_INCLUDE_DIR="$(python_get_includedir)"
-DPYTHON_LIBRARY="$(python_get_library_path)"
-DAPP_RENDER_SYSTEM="$(usex opengl gl gles)"
-   -DCORE_PLATFORM_NAME="${platform[@]}"
+   -DCORE_PLATFORM_NAME="${core_platform_name}"
)
 
use libusb && mycmakeargs+=( -DENABLE_LIBUSB=$(usex libusb) )

diff --git a/media-tv/kodi/kodi-19..ebuild 
b/media-tv/kodi/kodi-19..ebuild
index f951107635b..db37201ab5a 100644
--- a/media-tv/kodi/kodi-19..ebuild
+++ b/media-tv/kodi/kodi-19..ebuild
@@ -220,6 +220,7 @@ src_configure() {
use gbm && platform+=( gbm )
use wayland && platform+=( wayland )
use X && platform+=( x11 )
+   local core_platform_name="${platform[@]}"
local mycmakeargs=(
-Ddocdir="${EPREFIX}/usr/share/doc/${PF}"
-DENABLE_LDGOLD=OFF # 
https://bugs.gentoo.org/show_bug.cgi?id=606124
@@ -263,7 +264,7 @@ src_configure() {
-DPYTHON_INCLUDE_DIR="$(python_get_includedir)"
-DPYTHON_LIBRARY="$(python_get_library_path)"
-DAPP_RENDER_SYSTEM="$(usex opengl gl gles)"
-   -DCORE_PLATFORM_NAME="${platform[@]}"
+   -DCORE_PLATFORM_NAME="${core_platform_name}"
)
 
use libusb && mycmakeargs+=( -DENABLE_LIBUSB=$(usex libusb) )

diff --git a/media-tv/kodi/kodi-.ebuild b/media-tv/kodi/kodi-.ebuild
index f951107635b..db37201ab5a 100644
--- a/media-tv/kodi/kodi-.ebuild
+++ b/media-tv/kodi/kodi-.ebuild
@@ -220,6 +220,7 @@ src_configure() {
use gbm && platform+=( gbm )
use wayland && platform+=( wayland )
use X && platform+=( x11 )
+   local core_platform_name="${platform[@]}"
local mycmakeargs=(
-Ddocdir="${EPREFIX}/usr/share/doc/${PF}"
-DENABLE_LDGOLD=OFF # 
https://bugs.gentoo.org/show_bug.cgi?id=606124
@@ -263,7 +264,7 @@ src_configure() {
-DPYTHON_INCLUDE_DIR="$(python_get_includedir)"
-DPYTHON_LIBRARY="$(python_get_library_path)"
-DAPP_RENDER_SYSTEM="$(usex opengl gl gles)"
-   -DCORE_PLATFORM_NAME="${platform[@]}"
+   -DCORE_PLATFORM_NAME="${core_platform_name}"
)
 
use libusb && mycmakeargs+=( -DENABLE_LIBUSB=$(usex libusb) )



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

2020-11-20 Thread Lars Wendler
commit: 02d1673f6db375cca56d885c6982cf1907314abb
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Nov 20 16:54:35 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Nov 20 16:54:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02d1673f

sys-libs/libseccomp: Use release tarball instead of GitHub one

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

 sys-libs/libseccomp/Manifest| 2 +-
 sys-libs/libseccomp/libseccomp-2.5.1.ebuild | 9 -
 2 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/sys-libs/libseccomp/Manifest b/sys-libs/libseccomp/Manifest
index ddb87bd168c..0a32b48f4d9 100644
--- a/sys-libs/libseccomp/Manifest
+++ b/sys-libs/libseccomp/Manifest
@@ -1,4 +1,4 @@
 DIST libseccomp-2.4.3.tar.gz 598147 BLAKE2B 
272c9f1ca7e4059790f633a79cae8612831aa483d28630fb85b31dc2be0192907a8897819d835b61324e0b3fb0d77b8781e2a85e9750ef8d7974d8680b8cdea3
 SHA512 
7b7af2e98493243ffe1934fefff5723b24ae9b9bdc4bf039343ee8456c15acb0ea34e81ec292a41143848272aeca794ef92ad38fc3f42c77465170cb540479ef
 DIST libseccomp-2.4.4.tar.gz 604420 BLAKE2B 
04a2e22996d94f2525c1f4a890f325e7c75abb7ac84928a1ffde5e4cc569ef6355fcda8415e0c9937139e187f458602714cfd042008de74637c7bf30e9bd58e2
 SHA512 
53e5aa338a1c30ce826551e33be6ef877af43b1d8cfd2e1b6ffb70789eb2070d2610fb7cb5cec4a3a4c4a1221767f867f3d2bc07b6b1d9742719b1e053630b24
 DIST libseccomp-2.5.0.tar.gz 638793 BLAKE2B 
c1f30624e210d632175b734c49411ee3f95e8f0ee68819ad83a342434231baef10c292f23fca0127394365a37efb043f9f24ade9534deecd61f50e7111a6fbc8
 SHA512 
00ef5aeb4db8dafb546ae680b2d6d9b6aeed008df805d0f28f9dd15c074ff6ea7a5e5131ab503825b8011c59aa23046baedd5849ca040aa73352f43ab2d602ae
-DIST libseccomp-2.5.1.tar.gz 189916 BLAKE2B 
8d74764a03f154f29fe7a392ce3f7e13d0342cebd875cd2a8e8453aa362d8ee78e8aed466f4f26ea98bda9263283a0cf5ca31f34afacfd7c658de8942fffeea8
 SHA512 
fcb84b6714dce760387391c42de699897c1767802c4805a71d3221b9cfbc9c3cc20a3122e5f2153e754962faab2f214f892531e5985bacf28875ff1ba9a93996
+DIST libseccomp-2.5.1.tar.gz 638811 BLAKE2B 
683ae7536c0cba36f4d30640b42361171fc34b7cb04985ea56e64369df29c440361a0205385b14580cc0e481e0f9ffd0b0e8ebd4ac98817ed59298db6b274c35
 SHA512 
2be80a6323f9282dbeae8791724e5778b32e2382b2a3d1b0f77366371ec4072ea28128204f675cce101c091c0420d12c497e1a9ccbb7dc5bcbf61bfd777160af

diff --git a/sys-libs/libseccomp/libseccomp-2.5.1.ebuild 
b/sys-libs/libseccomp/libseccomp-2.5.1.ebuild
index cf8f9e8c84d..1375d590f41 100644
--- a/sys-libs/libseccomp/libseccomp-2.5.1.ebuild
+++ b/sys-libs/libseccomp/libseccomp-2.5.1.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 PYTHON_COMPAT=( python3_{6..9} )
 DISTUTILS_OPTIONAL=1
 
-inherit autotools distutils-r1 multilib-minimal
+inherit distutils-r1 multilib-minimal
 
 DESCRIPTION="high level interface to Linux seccomp filter"
 HOMEPAGE="https://github.com/seccomp/libseccomp";
@@ -16,9 +16,8 @@ if [[ ${PV} == * ]] ; then
PRERELEASE="2.6.0"
inherit autotools git-r3
 else
-   
#SRC_URI="https://github.com/seccomp/libseccomp/releases/download/v${PV}/${P}.tar.gz";
-   SRC_URI="https://github.com/seccomp/libseccomp/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="-* ~amd64 ~arm ~arm64 ~hppa -mips ~ppc ~ppc64 ~riscv ~s390 
~x86 ~amd64-linux ~x86-linux"
+   
SRC_URI="https://github.com/seccomp/libseccomp/releases/download/v${PV}/${P}.tar.gz";
+   KEYWORDS="-* ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 
~x86 ~amd64-linux ~x86-linux"
 fi
 
 LICENSE="LGPL-2.1"
@@ -46,8 +45,8 @@ src_prepare() {
default
if [[ "${PV}" == * ]] ; then
sed -i -e "s/0.0.0/${PRERELEASE}/" configure.ac
+   eautoreconf
fi
-   eautoreconf
 }
 
 multilib_src_configure() {



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2020-11-20 Thread Anthony G. Basile
commit: 62946cd7933fd9d468dd6e1083ea02f8dc94e227
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Nov 20 16:49:41 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Nov 20 16:49:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62946cd7

dev-perl/Search-Xapian: bump to 1.2.25.4, drop 1.2.25.3

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Anthony G. Basile  gentoo.org>

 dev-perl/Search-Xapian/Manifest | 2 +-
 .../{Search-Xapian-1.2.25.3.ebuild => Search-Xapian-1.2.25.4.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest
index b78953bd59b..c9f2cf24240 100644
--- a/dev-perl/Search-Xapian/Manifest
+++ b/dev-perl/Search-Xapian/Manifest
@@ -1,3 +1,3 @@
 DIST Search-Xapian-1.2.25.0.tar.gz 72097 BLAKE2B 
9e9f54718bf597c7592cc936e23ce4684ba4104f890ee7216e303af9a075eb895459a46d17bd2c32820eb436545a8a9e008b17f83fa586bf3e9160d80813872d
 SHA512 
2bb0bea59ddfd8159df0b3051034ca28478cb74832cfe7a103b8a4dbeddbd41f6223be6ad56eb3dcb8c7a785d2f7d500844c41f35da3997a843b3ba624a4e795
 DIST Search-Xapian-1.2.25.2.tar.gz 72424 BLAKE2B 
b959e1f111def3660f17669e49dfa9bff95bc421bdde35dac22d5cad4d350057cf7b077f030797158c3ae6c7c292775f44e88381e685b9fb5e8364bef3d03403
 SHA512 
92b92f28cf50d162905ef230a28956a4e57d3baca81d227751e905756239be0f843b58f38a8dfdb6c8b6ae827e37a60d7df7022cfab43164293223dd430d4d2d
-DIST Search-Xapian-1.2.25.3.tar.gz 73023 BLAKE2B 
a3a6c04c25ac623db1c5c0e873ff698382e3e610e90a6731b1fa6b4d8585181620bafa7431c6e133780e610011cfe50654244749d5e3e302b8b1d2e576074de2
 SHA512 
6e82a63b7fd7f1692e292edb1defc4cc2067e911780fa9698db29be408b9aa898a6d4c0f4a6bb143805632a1daf51c4a97cb62fb37adfbb0b77818773169bb6a
+DIST Search-Xapian-1.2.25.4.tar.gz 75336 BLAKE2B 
06e3fe3871f00c173f4c24303b33eb046867dda1274535c1d22b98027804df19b3dc6b80d6213c2090e05362c508d0e41b55cdc165ccedd8a45bfff19d4fe07b
 SHA512 
14d34641583fb3cce3e7cd4b16e5001be9c7808d07e4942b4842196f36906649053d1ff522a5a1b82200ecd714c55afaf7bd653bf7df9a462db91d05cd12cb01

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.3.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild
similarity index 100%
rename from dev-perl/Search-Xapian/Search-Xapian-1.2.25.3.ebuild
rename to dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild



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

2020-11-20 Thread Aaron W. Swenson
commit: 3099bcf4caafc9b2a972a8a3380ec9f616225996
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Fri Nov 20 16:46:43 2020 +
Commit: Aaron W. Swenson  gentoo  org>
CommitDate: Fri Nov 20 16:46:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3099bcf4

dev-db/postgresql: Cleanup

Bug: https://bugs.gentoo.org/754363

Signed-off-by: Aaron W. Swenson  gentoo.org>

 dev-db/postgresql/postgresql-10.14.ebuild  | 456 ---
 dev-db/postgresql/postgresql-11.9.ebuild   | 458 ---
 dev-db/postgresql/postgresql-12.4.ebuild   | 458 ---
 dev-db/postgresql/postgresql-13.0.ebuild   | 458 ---
 dev-db/postgresql/postgresql-9.5.23.ebuild | 476 
 dev-db/postgresql/postgresql-9.6.19.ebuild | 481 -
 6 files changed, 2787 deletions(-)

diff --git a/dev-db/postgresql/postgresql-10.14.ebuild 
b/dev-db/postgresql/postgresql-10.14.ebuild
deleted file mode 100644
index a0d0ae70a56..000
--- a/dev-db/postgresql/postgresql-10.14.ebuild
+++ /dev/null
@@ -1,456 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8,9} )
-
-inherit flag-o-matic linux-info multilib pam prefix python-single-r1 systemd
-
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~ppc-macos ~x86-solaris"
-
-SLOT=$(ver_cut 1)
-
-MY_PV=${PV/_/}
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-SRC_URI="https://ftp.postgresql.org/pub/source/v${MY_PV}/postgresql-${MY_PV}.tar.bz2";
-
-LICENSE="POSTGRESQL GPL-2"
-DESCRIPTION="PostgreSQL RDBMS"
-HOMEPAGE="https://www.postgresql.org/";
-
-IUSE="debug doc icu kerberos kernel_linux ldap libressl nls pam perl
- python +readline selinux +server systemd ssl static-libs tcl
- threads uuid xml zlib"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-CDEPEND="
->=app-eselect/eselect-postgresql-2.0
-acct-group/postgres
-acct-user/postgres
-sys-apps/less
-virtual/libintl
-icu? ( dev-libs/icu:= )
-kerberos? ( virtual/krb5 )
-ldap? ( net-nds/openldap )
-pam? ( sys-libs/pam )
-perl? ( >=dev-lang/perl-5.8:= )
-python? ( ${PYTHON_DEPS} )
-readline? ( sys-libs/readline:0= )
-server? ( systemd? ( sys-apps/systemd ) )
-ssl? (
-   !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= )
-   libressl? ( dev-libs/libressl:= )
-)
-tcl? ( >=dev-lang/tcl-8:0= )
-xml? ( dev-libs/libxml2 dev-libs/libxslt )
-zlib? ( sys-libs/zlib )
-"
-
-# uuid flags -- depend on sys-apps/util-linux for Linux libcs, or if no
-# supported libc in use depend on dev-libs/ossp-uuid. For BSD systems,
-# the libc includes UUID functions.
-UTIL_LINUX_LIBC=( elibc_{glibc,uclibc,musl} )
-BSD_LIBC=( elibc_{Free,Net,Open}BSD )
-
-nest_usedep() {
-   local front back
-   while [[ ${#} -gt 1 ]]; do
-   front+="${1}? ( "
-   back+=" )"
-   shift
-   done
-   echo "${front}${1}${back}"
-}
-
-IUSE+=" ${UTIL_LINUX_LIBC[@]} ${BSD_LIBC[@]}"
-CDEPEND+="
-uuid? (
-   ${UTIL_LINUX_LIBC[@]/%/? ( sys-apps/util-linux )}
-   $(nest_usedep ${UTIL_LINUX_LIBC[@]/#/!} ${BSD_LIBC[@]/#/!} 
dev-libs/ossp-uuid)
-)"
-
-DEPEND="${CDEPEND}
-sys-devel/bison
-sys-devel/flex
-nls? ( sys-devel/gettext )
-xml? ( virtual/pkgconfig )
-"
-
-RDEPEND="${CDEPEND}
-selinux? ( sec-policy/selinux-postgresql )
-"
-
-pkg_setup() {
-   use server && CONFIG_CHECK="~SYSVIPC" linux-info_pkg_setup
-
-   use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-   # Work around PPC{,64} compilation bug where bool is already defined
-   sed '/#ifndef __cplusplus/a #undef bool' -i src/include/c.h || die
-
-   # Set proper run directory
-   sed "s|\(PGSOCKET_DIR\s\+\)\"/tmp\"|\1\"${EPREFIX}/run/postgresql\"|" \
-   -i src/include/pg_config_manual.h || die
-
-   # Rely on $PATH being in the proper order so that the correct
-   # install program is used for modules utilizing PGXS in both
-   # hardened and non-hardened environments. (Bug #528786)
-   sed 's/@install_bin@/install -c/' -i src/Makefile.global.in || die
-
-   use server || eapply "${FILESDIR}/${PN}-10.2-no-server.patch"
-
-   if use pam ; then
-   sed -e "s/\(#define PGSQL_PAM_SERVICE 
\"postgresql\)/\1-${SLOT}/" \
-   -i src/backend/libpq/auth.c || \
-   die 'PGSQL_PAM_SERVICE rename failed.'
-   fi
-
-   eapply_user
-}
-
-src_configure() {
-   case ${CHOST} in
-   *-darwin*|*-solaris*)
-   use nls && append-libs intl
-   ;;
-   esac
-
-   export LDFLAGS_SL="${LDFLAGS}"
-   export LDFLAGS_EX="${LDFLAGS}"
-
-   local PO="${EPREFIX}"
-
-   local i uuid_config=""
-   if use uuid; then
-   for i in ${UTIL_LINUX_LIBC[@]}; do
-   use ${i} && uuid_confi

[gentoo-commits] repo/gentoo:master commit in: app-arch/innoextract/

2020-11-20 Thread Joonas Niilola
commit: 9e209243a69fe3c9b58d455a9d89771f6a2d9de8
Author: Joonas Niilola  gentoo  org>
AuthorDate: Fri Nov 20 16:25:18 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Nov 20 16:25:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e209243

app-arch/innoextract: stabilize 1.9 on x86

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

 app-arch/innoextract/innoextract-1.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/innoextract/innoextract-1.9.ebuild 
b/app-arch/innoextract/innoextract-1.9.ebuild
index 33a201d4285..31ff8072913 100644
--- a/app-arch/innoextract/innoextract-1.9.ebuild
+++ b/app-arch/innoextract/innoextract-1.9.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://constexpr.org/innoextract/files/${P}.tar.gz";
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="debug +iconv +lzma"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-arch/innoextract/

2020-11-20 Thread Joonas Niilola
commit: 23f0e941cda76f31c42733b535779851d3597e7a
Author: Joonas Niilola  gentoo  org>
AuthorDate: Fri Nov 20 16:24:55 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Nov 20 16:24:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23f0e941

app-arch/innoextract: stabilize 1.9 on amd64

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

 app-arch/innoextract/innoextract-1.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/innoextract/innoextract-1.9.ebuild 
b/app-arch/innoextract/innoextract-1.9.ebuild
index 4067b8b4a68..33a201d4285 100644
--- a/app-arch/innoextract/innoextract-1.9.ebuild
+++ b/app-arch/innoextract/innoextract-1.9.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://constexpr.org/innoextract/files/${P}.tar.gz";
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 IUSE="debug +iconv +lzma"
 
 RDEPEND="



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

2020-11-20 Thread Andrew Ammerlaan
commit: d80dda2dca7eda7d38b7c08165cda54d83a86715
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Fri Nov 20 16:05:13 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Nov 20 16:05:13 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d80dda2d

dev-python/backrefs: remove blank line

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>

 dev-python/backrefs/backrefs-4.5.0.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-python/backrefs/backrefs-4.5.0.ebuild 
b/dev-python/backrefs/backrefs-4.5.0.ebuild
index e921fdaa..3a9895e7 100644
--- a/dev-python/backrefs/backrefs-4.5.0.ebuild
+++ b/dev-python/backrefs/backrefs-4.5.0.ebuild
@@ -43,4 +43,3 @@ src_compile() {
 
distutils-r1_src_compile
 }
-



[gentoo-commits] repo/proj/guru:master commit in: games-action/technic-launcher/

2020-11-20 Thread Andrew Ammerlaan
commit: f7e5731bca19c3a32c374551b42fed576a158418
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Fri Nov 20 15:14:44 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Nov 20 15:14:44 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f7e5731b

games-action/technic-launcher: version bump

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>

 games-action/technic-launcher/Manifest  | 2 +-
 .../{technic-launcher-4.603.ebuild => technic-launcher-4.607.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-action/technic-launcher/Manifest 
b/games-action/technic-launcher/Manifest
index 4f25f083..b0f2d0a4 100644
--- a/games-action/technic-launcher/Manifest
+++ b/games-action/technic-launcher/Manifest
@@ -1,2 +1,2 @@
-DIST technic-launcher-4.603.jar 5738275 BLAKE2B 
6b2b3b441f99774853ba97b3a8fa306fb9edf94cb8fb30c82929027fee8cbe4f4ec2f480b14880dec953d0e44ca8e3f9bd24580cd28adc37e0d3d0324280008f
 SHA512 
10372b9456bfdf58e987136de65fe70ae976b84891f95471fa4a1626e42369809c3887aae40bbeac99cbe06d0c9c8acfbf2080a800807b83e8bf0c159c82dca9
+DIST technic-launcher-4.607.jar 5739994 BLAKE2B 
34703786b42fbca3bfb70f4ade57bae06dda452ac86aeec6579486d35832c69af194943999f2f61e88d468945c5444e0f2ef5afc4bb999a0fa82cfe5939d291c
 SHA512 
01b6a6cc0e1208cdf18e3720e72897b681bbe4e295deae0704283f2ffe007c4954d81874ffbf81a638b206d7c369890456e943ab44c5ffb522cb97543b0e576f
 DIST technic-launcher.ico 15086 BLAKE2B 
4f5be0661bfbdca971cf022767618acef1e912b60c3f0574f383a8bd0281a6d66ca1b8b105412ec9579f3999514a471412fb16da66d937acfb4d3236b8f99663
 SHA512 
c109113a0e1be10bc013bfb79b742396a768fa683860a83d734e158b709e66b9e21067e1791ae5f7a854ccd21b1bf9adf6eeb27bc33d9da03f902dfe5d8be710

diff --git a/games-action/technic-launcher/technic-launcher-4.603.ebuild 
b/games-action/technic-launcher/technic-launcher-4.607.ebuild
similarity index 100%
rename from games-action/technic-launcher/technic-launcher-4.603.ebuild
rename to games-action/technic-launcher/technic-launcher-4.607.ebuild



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

2020-11-20 Thread Andrew Ammerlaan
commit: 829b51d05864b3aa6f393b6939fce28cade6f30a
Author: Maciej Barć  protonmail  com>
AuthorDate: Fri Nov 20 14:40:39 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Nov 20 14:41:04 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=829b51d0

app-office/pyspread: bump to 1.99.5; drop old

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

 app-office/pyspread/Manifest| 2 +-
 .../pyspread/{pyspread-1.99.2-r1.ebuild => pyspread-1.99.5.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/pyspread/Manifest b/app-office/pyspread/Manifest
index 8a0e83a0..e963fd64 100644
--- a/app-office/pyspread/Manifest
+++ b/app-office/pyspread/Manifest
@@ -1,2 +1,2 @@
-DIST pyspread-v1.99.2.tar.gz 2350002 BLAKE2B 
61550fa44ad32b32cf69a0aa423a053d90b91c54ee9a17a13a39665a2a7e719c1aa81063aca6216a6f0675e444bc705d21e5cdd927c542fcc229acba304ad2e0
 SHA512 
9261cf96f19d92a5743c09854236ccec5e1b103e22b78143ddee8fce0d25f793b86e7cc3775f13c5a43cf8dd4e3f434461677b6da5311fb439067d63ce6ac968
 DIST pyspread-v1.99.4.tar.gz 2344373 BLAKE2B 
033aec481812e37e30c8ab43962128f94ece11c9106460b33de51467ede959f30bd00c70cd7be6d9b496862337c21197a9ff8b231ff34b2aaf28c6f8697011f8
 SHA512 
e865238fbe32aca5785b4a83f3c901367925326d0b2c6d86b0fa0b3cc04b56605e8e0809df1f09f642553fd94e6bbacc6abc80153a50835b1ef49c6161efc5dc
+DIST pyspread-v1.99.5.tar.gz 2357630 BLAKE2B 
2a0d5ad1abd18898c921803793d2c19e56519257781b71287479b14a1e2cae348ac36f1b663362d996fef90913393d61221163b41ce92696b6fededff685176b
 SHA512 
b186e31931c7ae582dbb2b0b01ef22c5a93361002e26c00010391203eb0a41da21dfc7533f08c075f32831dac6667b2cf705cee7eca7c1d5bedfd34c78979e93

diff --git a/app-office/pyspread/pyspread-1.99.2-r1.ebuild 
b/app-office/pyspread/pyspread-1.99.5.ebuild
similarity index 100%
rename from app-office/pyspread/pyspread-1.99.2-r1.ebuild
rename to app-office/pyspread/pyspread-1.99.5.ebuild



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

2020-11-20 Thread Andrew Ammerlaan
commit: 6581de1309538ce256b5588ab6004b597fcc376a
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Fri Nov 20 15:31:31 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Nov 20 15:31:31 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6581de13

dev-python/markdown-include: version bump 0.6.0, add py3.9

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>

 dev-python/markdown-include/Manifest| 2 +-
 .../{markdown-include-0.5.1.ebuild => markdown-include-0.6.0.ebuild}| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/markdown-include/Manifest 
b/dev-python/markdown-include/Manifest
index 23cf644e..8b34c8a7 100644
--- a/dev-python/markdown-include/Manifest
+++ b/dev-python/markdown-include/Manifest
@@ -1 +1 @@
-DIST markdown-include-0.5.1.tar.gz 3968 BLAKE2B 
d6de7fdee70de534b8247c5473347a2f29b6ee351b26fb744899190e9add1ded3f87963b321977266938c91ebeb1afd1e447b089166557cd404c08a363ebeef7
 SHA512 
f330c8d82100fb66115b7369d7c2121c58ea6b7f38c45633994f0fca99a4f314b852608f2cbac53b96e7944bce0ea46dfe9ab578976975699a8a1182b3d6d2c5
+DIST markdown-include-0.6.0.tar.gz 4661 BLAKE2B 
449e05b40ab3a8725f68a8c02dc32349de2435520790b955b708c39ac53782c91dd6b592a712fafe9442f6ba1fda0794436500a5a4148d16caaf38dd6af8b69f
 SHA512 
cbd83ff6ae64416410a7b6879c6f3fa4edd1b1d6e898508251651f0366bf7a121d2e0447f638069b84f872713dc9618128a4fa524d2eaddcfa8bfc2ed3be76de

diff --git a/dev-python/markdown-include/markdown-include-0.5.1.ebuild 
b/dev-python/markdown-include/markdown-include-0.6.0.ebuild
similarity index 92%
rename from dev-python/markdown-include/markdown-include-0.5.1.ebuild
rename to dev-python/markdown-include/markdown-include-0.6.0.ebuild
index 2daf7fc4..a26f9641 100644
--- a/dev-python/markdown-include/markdown-include-0.5.1.ebuild
+++ b/dev-python/markdown-include/markdown-include-0.6.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/proj/guru:master commit in: dev-python/timeout-decorator/

2020-11-20 Thread Andrew Ammerlaan
commit: 1967c5c2ae7278262d7457bb6ceebebf649d30f4
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Fri Nov 20 15:29:29 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Nov 20 15:29:29 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1967c5c2

dev-python/timeout-decorator: version bump 0.5.0, add py3.9

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>

 dev-python/timeout-decorator/Manifest   | 2 +-
 .../{timeout-decorator-0.4.1.ebuild => timeout-decorator-0.5.0.ebuild}  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/timeout-decorator/Manifest 
b/dev-python/timeout-decorator/Manifest
index f53b961f..821e6639 100644
--- a/dev-python/timeout-decorator/Manifest
+++ b/dev-python/timeout-decorator/Manifest
@@ -1 +1 @@
-DIST timeout-decorator-0.4.1.tar.gz 4771 BLAKE2B 
b8f8b4d8c69f4f6195b769295abc6b8e037aa7a8ae58499803d6d6fc0721cf6daf8dd07b65a5585305c0d2188989edc88dd361a1572489dff3e59f6e4f2497e5
 SHA512 
8d70e0df1720f37f85ffbe71fdc467fc9e4dc704cd434f03d99bcce4cd6b41f45d337b3a0aaeb0526e99778ee3ae46637a76bf4f51e02fbb13e133598c2b791b
+DIST timeout-decorator-0.5.0.tar.gz 4754 BLAKE2B 
d92581f196a246c3da978f351e223117bb1554c2abf5daac18f69ae42cafd11ef8722f1c10834f6169a1e311691b1edec326523e4c0adb0869b8a48e93d35db5
 SHA512 
ee6d47a27ad3ed7921bc5b98391c4f933e247dc3834c9571248bf2a3b0237acaad88daa8b071eb8d443f74c792318b5be5bb9fad99fa99df682198f90cd86b1b

diff --git a/dev-python/timeout-decorator/timeout-decorator-0.4.1.ebuild 
b/dev-python/timeout-decorator/timeout-decorator-0.5.0.ebuild
similarity index 91%
rename from dev-python/timeout-decorator/timeout-decorator-0.4.1.ebuild
rename to dev-python/timeout-decorator/timeout-decorator-0.5.0.ebuild
index e2a6d3b8..a50c002c 100644
--- a/dev-python/timeout-decorator/timeout-decorator-0.4.1.ebuild
+++ b/dev-python/timeout-decorator/timeout-decorator-0.5.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/proj/guru:master commit in: media-libs/amdvlk/

2020-11-20 Thread Andrew Ammerlaan
commit: 814bba966e905216d0577bb1cdcc5d7a37e2d0a2
Author: Denis Reva  gmail  com>
AuthorDate: Thu Nov 19 06:26:34 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Thu Nov 19 06:26:34 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=814bba96

media-libs/amdvlk: new version 2020.4.5

Official changes:
Add support for Navi21
Ebuild changes:
Ebuild no longer installs rule for Xorg.
Added tip for DXVK

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

 media-libs/amdvlk/Manifest |  8 
 ...dvlk-2020.4.4.ebuild => amdvlk-2020.4.5.ebuild} | 23 ++
 2 files changed, 10 insertions(+), 21 deletions(-)

diff --git a/media-libs/amdvlk/Manifest b/media-libs/amdvlk/Manifest
index 540c0af7..26ae47c1 100644
--- a/media-libs/amdvlk/Manifest
+++ b/media-libs/amdvlk/Manifest
@@ -1,8 +1,8 @@
-DIST AMDVLK-v-2020.Q4.4.tar.gz 32268 BLAKE2B 
e1cf7c61b7894e6d0d5d0253b08647056b4ad444aa0caaf1b6aed578c96571f7f5c2d6cde3faa3a72d729115534c58f6d1dc53b393132cc7a040e83b400a1f7d
 SHA512 
a90606520758d8114e117fa80ca1e08b70c5898ddc9a9c1e3e3508743a550a1bd7b264bdbe3ac29c9b090af9bbae213eb8981a0e1a551215405683fc9df7fcb2
+DIST AMDVLK-v-2020.Q4.5.tar.gz 32258 BLAKE2B 
e2acdbb87c0a53b45cbbceeda0b7a6432db5713891dc35d9c3c3932e20799fe0ab219de9f2d042ebd403c1904c5a1b0bdf23f8d1a033b7c6d7a17e7c65132373
 SHA512 
98158c82c08657d130d462f1e5e70f6c77749eb0f139c3b392984c1b44eed0828aab71c580747799a734fa0d581720c5b70779c4c5f5bd3dc269b128df95cec8
 DIST CWPack-7387247eb9889ddcabbc1053b9c2052e253b088e.tar.gz 24538 BLAKE2B 
76c4da32ea06df355f7e8f77a14c185b2ccab2ce2762988f04a04d65b674e089d4fc27206e744f89b4bd84c9d7226d324414a31941303290e7f574e9d64756cf
 SHA512 
38378ef325e42a7356511c2fc06b6c896581968079e85c4b924a1768d895feecaf1eb8fd65afb59bed0f66e0547104d67c2deb9f82a86f4b9fa65b36e57cd47d
 DIST MetroHash-3c566dd9cda44ca7fd97659e0b53ac953f9037d2.tar.gz 11804 BLAKE2B 
683ca8a9e4b93a945dc455c5cb78a2c6dd9dbdf22432ea9f447a6d2d1b05399cc57b621d1e304dc5695ab936a212a2df110e47ec9141764f4eaa2b184a01f4ba
 SHA512 
ae4fcf09a097ceddfcc9f0b721cae0018fff8a0360d8fbbb195d2a8c2809cf8f3c01090ba8129593d89fe1c041224e42a49e7a1c66f20e60958a5373f6d9027f
-DIST llpc-d2180485db6cde18b2ead1eda0925be409507b78.tar.gz 2056752 BLAKE2B 
8e1bf62ddadc4fd30630923f46a4be3041adc2b75a5cb9c775d821c7f91f7f479564f056764d70c3511a42b8c564d21af71b37d1542a0fca39fd179fddc47da6
 SHA512 
8a8d4d69c12f6a6126770cbb6c5c4092a7f9bf5038abab15defbc2b8d3e34d1299a3318dbb016fc7c8f6aeccd68a2d0e7090744d4434be993ff0fa107cf2c880
+DIST llpc-38dcb76aadf729b67cabe15c2cc07a784020f704.tar.gz 2079177 BLAKE2B 
eb3f594b195af82faeeb9e9f5d73cc294d8178d7390183c083b4231f17a8382f0e72480f3e883b7d3e3b1f7a654974efd4d2dec1c60f6d9ae019696f467f296a
 SHA512 
599ea375fc87621d0085bc9a1d68f00bbde42408c1b9f745ea7da8658c041cdc24722b763e53981a2ad844efa042348be7df939cee4459503ab66d462403ce32
 DIST llvm-project-7ff363c8283c1d41ecbdcdc45c8b724b52312d67.tar.gz 128585110 
BLAKE2B 
2902b68f08f6a978a08061a145e93d0cbea57e4c47431b0249a06ae986e739d9fbb749b2e59996abcc25834cff59ab2dc837debc7acc7ee12c3ec488cb300cab
 SHA512 
b8e4a6858f1c4ffb26206e545095e64641fef4cee47188d5481d14780f6b8276f70b5c485da1fc26025ee42b6b984c2901caf85ade1599f1a6aa73e0ab190087
-DIST pal-29117a3431d163a2e9e7bfe87e63d0d8d3c28b11.tar.gz 7706930 BLAKE2B 
bd6f20e76e3cfcdba086e42c9a0b71022baa9269e8de5426e24885996f0bf318b53e38bd911a5b757dcabe9f3f20e74adaec91437abb1492ff8b11137647570b
 SHA512 
6b6ec7840651abc4e16d4941dd265aa5ec8dfbe183c42f57693070d9c3f40a06db1513d3c19352560ebcbdd949494563abfb7ee496113ea8abf28161476ee25c
+DIST pal-b1e752d402592628f61eb7e1aa2a802a205de798.tar.gz 8029839 BLAKE2B 
776b85c0d5780a3b6a5a50d04609a20f1552a0afa0caff090013c2506bc9f97592b42f69941ac29697f3dced45e4619ca8be918e1b68fabd5c651893ba689d35
 SHA512 
5d98bcf1631d70620bb56a380c7b510f6f517d48e1cc0b2f7007687b929fc36af69d7478984756bf84e2f7e6934034c10f7bfce24b83df812de93e3a6b9b9faa
 DIST spvgen-fb798cb760a436e9496dbaab8827e4d183b74744.tar.gz 19475 BLAKE2B 
ace1afe0f9b129fdf3079341a09f0e761b1604a415412a3ea33325e770cecb62e67945a5d83b3248a29222b2dca86ad63c4c7d89e250851edc37d22543e75f20
 SHA512 
2c4f72518e6f1fbefebfe51d6e7d14187bad99b036b26f131ed726d0525244b33017549f5a56a4f7770239eaa411ff93561be53072458c6f491452ae496ee156
-DIST xgl-f623fc7ca78c3cec2123a16700a8819f3ccf0656.tar.gz 807009 BLAKE2B 
fdc5b67657467fa2843404558fd0a7452744bcf444652dc790c2a15285188f9360e2f8e46d2986fc87ca77cfe47e5f812b918427b44e92a9d3f0385ed7f59f31
 SHA512 
f35cdf0303a6125fd762484b02fa1f4b0d2fdfbb05e4f7c0a518edc8fa96c89fb5bf730f1b82c894a95354468877e47ceecf628b9f9b4a14b50852b76e7a9e86
+DIST xgl-fc11e79aab63337702d8efc05e5433dec9efdf06.tar.gz 810567 BLAKE2B 
452a9264df787d42f18618e8d49cad9fb79f4a6ece505d238f5a09652505886555db892c8c6f4f6139c28cf7db6efc387330f101e32c1262f00fc5c6e1c17e74
 SHA512 
db50fcdac279eb17b977f47ca66397c7194d021dd4db9b4e34e4a0eccb6fdbda5222a57c306ac8fba8eec2986703596a5cb1b2130d8a1bcf81c30f69be0f2808

diff --git

[gentoo-commits] repo/proj/guru:master commit in: dev-python/jupyter-sphinx/

2020-11-20 Thread Andrew Ammerlaan
commit: 7c5745fc9014edca61779b1e4ba176c9148786a6
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Fri Nov 20 15:27:23 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Nov 20 15:27:23 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7c5745fc

dev-python/jupyter-sphinx: version bump 0.3.2, add py3.9

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>

 dev-python/jupyter-sphinx/Manifest| 2 +-
 .../{jupyter-sphinx-0.2.4.ebuild => jupyter-sphinx-0.3.2.ebuild}  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/jupyter-sphinx/Manifest 
b/dev-python/jupyter-sphinx/Manifest
index b059f476..ec34bb28 100644
--- a/dev-python/jupyter-sphinx/Manifest
+++ b/dev-python/jupyter-sphinx/Manifest
@@ -1 +1 @@
-DIST jupyter-sphinx-0.2.4.tar.gz 23212 BLAKE2B 
5f1da1760d51a628af4bdf324e14f02cd6ffe7c572b04d74cab2ecbb89343d2ef2027a87dec9aadf9f2e512badba25ebc4d9a96d4e7959bb81fbe1637dbab807
 SHA512 
4c82b8ec48bb3fd68898f0a64ea94ec303bb6ffd63c7dff74e5cdd1ede569c75e76af108a6073c1c95d0298126df60c3c86c9d719aca3506f97bcd9f44784a97
+DIST jupyter-sphinx-0.3.2.tar.gz 25077 BLAKE2B 
9baea1e1c5f7a59200b073752b8a5ff0af43ecded1d7880758e58ca14610d67518beb7fb67dfe979008ea1f8503a1898d7cd0d589a52e245aafc1b7d6a280da3
 SHA512 
1e3c760a8151647b87c26b6ee38f90430f096f147e9b2aacfe46eb9fcfcd70f50f2b8a34a2240134766c6fc53987c932bee41d5d22ef60abc2aaa6cefedc7297

diff --git a/dev-python/jupyter-sphinx/jupyter-sphinx-0.2.4.ebuild 
b/dev-python/jupyter-sphinx/jupyter-sphinx-0.3.2.ebuild
similarity index 85%
rename from dev-python/jupyter-sphinx/jupyter-sphinx-0.2.4.ebuild
rename to dev-python/jupyter-sphinx/jupyter-sphinx-0.3.2.ebuild
index 7ac4665b..30d34d37 100644
--- a/dev-python/jupyter-sphinx/jupyter-sphinx-0.2.4.ebuild
+++ b/dev-python/jupyter-sphinx/jupyter-sphinx-0.3.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
 
 inherit distutils-r1
 
@@ -24,4 +24,4 @@ RDEPEND="
 "
 
 distutils_enable_tests pytest
-distutils_enable_sphinx doc/source dev-python/matplotlib
+distutils_enable_sphinx doc/source dev-python/matplotlib dev-python/alabaster



[gentoo-commits] repo/proj/guru:dev commit in: media-libs/amdvlk/

2020-11-20 Thread Andrew Ammerlaan
commit: eb6f11d8d2e67992825972ce4f15e8218e0fe0bf
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Fri Nov 20 16:02:17 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Nov 20 16:02:17 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=eb6f11d8

media-libs/amdvlk: remove blank line

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>

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

diff --git a/media-libs/amdvlk/amdvlk-2020.4.5.ebuild 
b/media-libs/amdvlk/amdvlk-2020.4.5.ebuild
index 0ab0eed4..d5c514a4 100644
--- a/media-libs/amdvlk/amdvlk-2020.4.5.ebuild
+++ b/media-libs/amdvlk/amdvlk-2020.4.5.ebuild
@@ -98,7 +98,6 @@ multilib_src_install() {
fi
 }
 
-
 pkg_postinst() {
elog "More information about the configuration can be found here:"
elog " https://github.com/GPUOpen-Drivers/AMDVLK";



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

2020-11-20 Thread Andrew Ammerlaan
commit: b1ffde9523fd716b8490b0a9ab48bbbc1a72dacd
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Fri Nov 20 15:38:20 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Nov 20 15:38:20 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b1ffde95

dev-python/mkdocs-material: version bump 6.1.5

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>

 dev-python/mkdocs-material/Manifest|  3 +--
 .../mkdocs-material/mkdocs-material-4.6.3.ebuild   | 30 --
 ...l-6.1.0.ebuild => mkdocs-material-6.1.5.ebuild} |  0
 3 files changed, 1 insertion(+), 32 deletions(-)

diff --git a/dev-python/mkdocs-material/Manifest 
b/dev-python/mkdocs-material/Manifest
index 26906c5e..a5b5b13d 100644
--- a/dev-python/mkdocs-material/Manifest
+++ b/dev-python/mkdocs-material/Manifest
@@ -1,5 +1,4 @@
-DIST mkdocs-material-4.6.3.tar.gz 1701136 BLAKE2B 
b3e68c0c751c37e7910fad99daa222706b48cd63bfb28a18b9ae96840691eb28b0948fb02810af4ed9e54407ec9e67478371bf31ce7c044d52596d65aea3
 SHA512 
11f02b8c89ec25bc38825a7614ca7a276a28c270f23dcbd991c69fced03810e65d45a74f0c3cc0d8e686985499f23c4d0f0e57e063f5b97b3870809b748dd544
 DIST mkdocs-material-5.0.0_rc2.tar.gz 1852974 BLAKE2B 
0cd56bd11df50a6628b6fddc3758037218ca1b5d9484b8ffe9d67d40c4ebda51bdb96edc10f08c87fb936b3a852616004994bad2e000b00936e62e25ce3e7e81
 SHA512 
29e1d8dcc972302302fdd5b91f0c7bc191420ff1c2ea117fd7b45a346623f587771469d04cbf25600e360d6d9c41ca060147269cdfe6c30c0ef9fd5915a70692
 DIST mkdocs-material-5.2.3.tar.gz 2309650 BLAKE2B 
66d1220bf4de7ed590e95431c85a99ff5e0cbf38ba07a8c95b4f3f35028b6fae4a107d247fa1e3edc120ca411065dd18ccc08b3fb639cb9dcaef7515894e5ac7
 SHA512 
1fea36f5638fe2fb1fba904d4c42e37b1ed35a4445bca9056955b9cad60a0d7624f06b0f68bf48a8b0dc48a04d2e2ee7b0827d298590b4bfffa33e60dfb1ab94
 DIST mkdocs-material-5.3.3.tar.gz 2356830 BLAKE2B 
0edd5540e213dbbcb21bf225e4e66eb7cf519dee539289b22493bdba0094650ecebb1293550692546d617f7a50ac5d02912963f5291ead910740b44417df928c
 SHA512 
7b2c3457d0db5a0b807a556270fd645dcba7a8352fc61886782f4f3cb7b878161cece8b4bedd4b83fddabda4128690d54ebc3bc5f880e7a768c547f4dae69fdc
-DIST mkdocs-material-6.1.0.tar.gz 2975356 BLAKE2B 
066725064718dfc8d21811f927cee3bce1ef40e8b0866b0d799c4142a831ce1332f0b44594410d2baa8275d2620ac940e01501dca71bbe2e69871da5939c6d7d
 SHA512 
d6764c7b9c70754a5a499e4065b1d1583fc16810a0b42f6f61adb605bae261e7acce58e6102ecc5879a40230100333170ee694bf82557093b451768d57ba92f9
+DIST mkdocs-material-6.1.5.tar.gz 4279544 BLAKE2B 
867f2bd31f4cba39505d40d16d82da2e0c5c5ceb03af4dfd3d3cf1ff5b8905239df597c9ffa0f963d358908ceb54fa75a076843667136212c768eecd08cfe1d2
 SHA512 
a6f93f592e89aa64e70cfc8e2bf6f74cc5d7cce0ef680119744a0a76383395b90d119d43e73776c4571b3c96618b0842522120d7e594008da97bd40b23038bc0

diff --git a/dev-python/mkdocs-material/mkdocs-material-4.6.3.ebuild 
b/dev-python/mkdocs-material/mkdocs-material-4.6.3.ebuild
deleted file mode 100644
index 3a63f30d..
--- a/dev-python/mkdocs-material/mkdocs-material-4.6.3.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_7 )
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-DOCBUILDER="mkdocs"
-DOCDEPEND="dev-python/mkdocs-minify-plugin"
-
-inherit distutils-r1 docs
-
-DESCRIPTION="A Material Design theme for MkDocs"
-HOMEPAGE="
-   https://github.com/squidfunk/mkdocs-material
-   https://pypi.org/project/mkdocs-material
-"
-SRC_URI="https://github.com/squidfunk/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   >=dev-python/markdown-3.2[${PYTHON_USEDEP}]
-   >=dev-python/mkdocs-1.0.1[${PYTHON_USEDEP}]
-   >=dev-python/pygments-2.4[${PYTHON_USEDEP}]
-   >=dev-python/pymdown-extensions-6.3[${PYTHON_USEDEP}]"

diff --git a/dev-python/mkdocs-material/mkdocs-material-6.1.0.ebuild 
b/dev-python/mkdocs-material/mkdocs-material-6.1.5.ebuild
similarity index 100%
rename from dev-python/mkdocs-material/mkdocs-material-6.1.0.ebuild
rename to dev-python/mkdocs-material/mkdocs-material-6.1.5.ebuild



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

2020-11-20 Thread Andrew Ammerlaan
commit: b174b62b66789fe697e44e20c8193ae6ae6dc50c
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Fri Nov 20 15:56:18 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Nov 20 15:56:18 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b174b62b

dev-python/backrefs: version bump 4.5.0, add py3.9

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>

 dev-python/backrefs/Manifest  |  2 +-
 dev-python/backrefs/backrefs-4.3.0.ebuild | 34 ---
 dev-python/backrefs/backrefs-4.5.0.ebuild | 46 +++
 3 files changed, 47 insertions(+), 35 deletions(-)

diff --git a/dev-python/backrefs/Manifest b/dev-python/backrefs/Manifest
index 9259c90a..fadf7bac 100644
--- a/dev-python/backrefs/Manifest
+++ b/dev-python/backrefs/Manifest
@@ -1 +1 @@
-DIST backrefs-4.3.0.tar.gz 4927989 BLAKE2B 
24e329c2002b471ccb5ec3d4930765b79dd1dd5666a29c55612559d306479e669bae849bacbfd9171a0a027e1bbf258e5a659cf6ba378f528e8abf2517ba72c0
 SHA512 
40ef55a4cc12d8aaf7307935eef2b89efbe56a567b62d04a543f871d0ebe3448554c567f79473010fba998af32d164cfb95584988918c84794cd86e61cff6b63
+DIST backrefs-4.5.0.tar.gz 5995247 BLAKE2B 
ce3d33b91ab307811e555689a2ece0ba47e53d8245fd4fa367156a76893c5ca342cb47d014a3c94c6f30ebb32487fb36975a2fa6c7acf0a626305d05e0d80048
 SHA512 
c1e30a78c2e7a86efce167612b6450b6cae78f8c799cec6832aa88e4145fee6ffc3e1b8c54b55091f7c21ea4b09c1ee36af852bb51973434b593273e04a8

diff --git a/dev-python/backrefs/backrefs-4.3.0.ebuild 
b/dev-python/backrefs/backrefs-4.3.0.ebuild
deleted file mode 100644
index 4dec1024..
--- a/dev-python/backrefs/backrefs-4.3.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-
-DOCBUILDER="mkdocs"
-DOCDEPEND="
-   ~dev-python/mkdocs-material-4.6.3
-   dev-python/pyspelling
-"
-
-inherit distutils-r1 docs
-
-DESCRIPTION="Wrapper around re or regex that adds additional back references"
-HOMEPAGE="
-   https://github.com/facelessuser/backrefs
-   https://pypi.org/project/backrefs
-"
-SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="
-   test? (
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/regex[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest

diff --git a/dev-python/backrefs/backrefs-4.5.0.ebuild 
b/dev-python/backrefs/backrefs-4.5.0.ebuild
new file mode 100644
index ..e921fdaa
--- /dev/null
+++ b/dev-python/backrefs/backrefs-4.5.0.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_{7,8,9} )
+
+DOCBUILDER="mkdocs"
+DOCDEPEND="
+   dev-python/mkdocs_pymdownx_material_extras
+   dev-python/mkdocs-minify-plugin
+   dev-python/mkdocs-git-revision-date-localized-plugin
+   dev-python/mkdocs-material
+   dev-python/pyspelling
+"
+
+inherit distutils-r1 docs
+
+DESCRIPTION="Wrapper around re or regex that adds additional back references"
+HOMEPAGE="
+   https://github.com/facelessuser/backrefs
+   https://pypi.org/project/backrefs
+"
+SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="test? ( dev-python/mock[${PYTHON_USEDEP}] )"
+
+distutils_enable_tests pytest
+
+src_compile() {
+   # mkdocs-git-revision-date-localized-plugin needs git repo
+   if use doc; then
+   git init
+   git config --global user.email "y...@example.com" || die
+   git config --global user.name "Your Name" || die
+   git add .
+   git commit -m 'init'
+   fi
+
+   distutils-r1_src_compile
+}
+



[gentoo-commits] repo/proj/guru:dev commit in: games-action/minecraft-launcher/

2020-11-20 Thread Andrew Ammerlaan
commit: 0b8ebbc156fd39b180ff8519c2316a73ac4bd4ae
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Fri Nov 20 15:13:36 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Nov 20 15:13:36 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0b8ebbc1

games-action/minecraft-launcher: add beta version

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>

 games-action/minecraft-launcher/Manifest   |  1 +
 .../minecraft-launcher-2.2.548_beta.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/games-action/minecraft-launcher/Manifest 
b/games-action/minecraft-launcher/Manifest
index 8903e334..6a0f7827 100644
--- a/games-action/minecraft-launcher/Manifest
+++ b/games-action/minecraft-launcher/Manifest
@@ -1,4 +1,5 @@
 DIST minecraft-launcher-1.6.93.jar 4481683 BLAKE2B 
29597977cc70f831bff7f77cb2493d8c8f8138518c79f5e92f91ed6440ae2224b4140546c37645370173c668d9db894ca6b548b6cfd41da40c4e1ff51f0d820b
 SHA512 
85739c0c0828af5b901b9933173f08229175aef1e8dec40c83981fb6fc330285b4c3a206cdf4405408106eff56ce1e516368d18bf44f631446ebac45e9aba125
 DIST minecraft-launcher-2.1.17785.tar.gz 90369245 BLAKE2B 
bbfb104ec8a223416145745f579a6fafaf979619058bbcdede3070dfe805f51d22fbf4091d96fd6b8ffcc50541844408dda76c1d7d08ba779262d7471a20a675
 SHA512 
d3c34efce03f12e1d7e1566ba7c99b9e4aea36d95417aa18c91f8ee621012ef7216e6d69008bacab23ddc0a12d06ba9ca7461c29c4855ff95477a3a15941
+DIST minecraft-launcher-2.2.548_beta.tar.gz 81468723 BLAKE2B 
4c54641809aa6aa4a9606c3d56e9753c7db025e38728a35797748125b16a597c80d77736022188b670345400d85ed7dec043c79c82664675bf4d90b5f2cc2014
 SHA512 
81e31e6bfc6c0d800e375db88500ac00dfedc8d2246ae3de242a8d52cee16e972d51138e9d920dfb8c180e2b4817db90ee11e7c4e0bb2ae5fcd5768bbafb6928
 DIST minecraft-launcher-legacy.svg 61803 BLAKE2B 
6527c869aec955f5e457e57f6c60b6391c29f2bc6f83d72b9a432cc9b77df6fb842549158f38e32a0bec6973d6fac4af3a1a5562cb84b5a4fd1d95de645da842
 SHA512 
aa08e8fa2a5c1c3e2d714644cb9648adb779c09fff5a9e5b79cea42c53be3f53631d199f72c1eec56e4b4f8e46be8f4ae88fbe456865621b589a7c4f9438549a
 DIST minecraft-launcher.svg 61803 BLAKE2B 
6527c869aec955f5e457e57f6c60b6391c29f2bc6f83d72b9a432cc9b77df6fb842549158f38e32a0bec6973d6fac4af3a1a5562cb84b5a4fd1d95de645da842
 SHA512 
aa08e8fa2a5c1c3e2d714644cb9648adb779c09fff5a9e5b79cea42c53be3f53631d199f72c1eec56e4b4f8e46be8f4ae88fbe456865621b589a7c4f9438549a

diff --git 
a/games-action/minecraft-launcher/minecraft-launcher-2.2.548_beta.ebuild 
b/games-action/minecraft-launcher/minecraft-launcher-2.2.548_beta.ebuild
new file mode 100644
index ..155e0667
--- /dev/null
+++ b/games-action/minecraft-launcher/minecraft-launcher-2.2.548_beta.ebuild
@@ -0,0 +1,64 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop xdg
+
+DESCRIPTION="An open-world game whose gameplay revolves around breaking and 
placing blocks"
+HOMEPAGE="https://www.minecraft.net/";
+SRC_URI="https://launcher.mojang.com/download/linux/x86_64/minecraft-launcher_${PV/_beta}.tar.gz
 -> ${P}.tar.gz
+   https://launcher.mojang.com/download/minecraft-launcher.svg";
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="Mojang"
+SLOT="2"
+
+RESTRICT="bindist mirror"
+
+RDEPEND="
+   >=x11-libs/gtk+-2.24.32-r1[X]
+   dev-libs/nss
+   dev-libs/libbsd
+   dev-libs/libffi
+   dev-libs/libpcre
+   media-libs/alsa-lib
+   media-libs/openal
+   net-libs/gnutls[idn]
+   net-print/cups
+   sys-apps/dbus
+   virtual/jre:1.8
+   virtual/opengl
+   x11-apps/xrandr
+   x11-libs/libXScrnSaver
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   x11-libs/libXrender
+   x11-libs/libXtst
+   x11-libs/xcb-util
+"
+
+S="${WORKDIR}/${PN}"
+
+QA_PRESTRIPPED="
+   /opt/minecraft-launcher/libcef.so
+   /opt/minecraft-launcher/liblauncher.so
+   /opt/minecraft-launcher/minecraft-launcher
+"
+
+src_install() {
+   dodir /opt/${PN}
+   insinto /opt/${PN}/
+   doins -r .
+
+   fperms +x /opt/${PN}/${PN}
+
+   dosym ../${PN}/${PN} /opt/bin/${PN}
+
+   doicon -s scalable "${DISTDIR}/${PN}.svg"
+   make_desktop_entry ${PN} "Minecraft" ${PN} Game
+}



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

2020-11-20 Thread Matthew Thode
commit: a6b8db77d0a210f5164713d56ab5411479194b3d
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Nov 20 15:48:19 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Nov 20 15:49:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6b8db77

dev-python/python-swiftclient: add python-kestoneclient dep

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

 dev-python/python-swiftclient/python-swiftclient-3.10.1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/python-swiftclient/python-swiftclient-3.10.1.ebuild 
b/dev-python/python-swiftclient/python-swiftclient-3.10.1.ebuild
index f93210d8fc8..9e9fed2e016 100644
--- a/dev-python/python-swiftclient/python-swiftclient-3.10.1.ebuild
+++ b/dev-python/python-swiftclient/python-swiftclient-3.10.1.ebuild
@@ -22,6 +22,7 @@ DEPEND="dev-python/pbr[${PYTHON_USEDEP}]
>=dev-python/coverage-4.0[${PYTHON_USEDEP}]
!~dev-python/coverage-4.4[${PYTHON_USEDEP}]
>=dev-python/keystoneauth-3.4.0[${PYTHON_USEDEP}]
+   dev-python/python-keystoneclient[${PYTHON_USEDEP}]
>=dev-python/mock-1.2.0[${PYTHON_USEDEP}]
>=dev-python/stestr-2.0.0[${PYTHON_USEDEP}]
!~dev-python/stestr-3.0.0[${PYTHON_USEDEP}]



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

2020-11-20 Thread Sam James
commit: 3f1aa82e37af623f263ee67847a6a2c07a7ab134
Author: Salah Coronya  gmail  com>
AuthorDate: Wed Nov 18 23:45:24 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 15:10:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f1aa82e

app-crypt/swtpm: Remove old

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Salah Coronya  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18320
Signed-off-by: Sam James  gentoo.org>

 app-crypt/swtpm/Manifest   |  1 -
 app-crypt/swtpm/swtpm-0.5.0.ebuild | 94 --
 2 files changed, 95 deletions(-)

diff --git a/app-crypt/swtpm/Manifest b/app-crypt/swtpm/Manifest
index eeda254b690..f4465c11d3c 100644
--- a/app-crypt/swtpm/Manifest
+++ b/app-crypt/swtpm/Manifest
@@ -1,2 +1 @@
-DIST swtpm-0.5.0.tar.gz 309011 BLAKE2B 
3977acef1e68adca82ed5b51adb5f8787f6eb874ee16768b5b413b043f8a39f534b2aa99ef92fb1608f0c4c805b51bb8fbc83297b71afcec2d99faff03d9
 SHA512 
ba7dafc9a9ddd28252615028a45fe3e68efd12df948c1e8ec938caabb840406a7a1935e1e4a6e1b6b8848bee08450673138dc5a0d63f0447f5e0e07350e4aed7
 DIST swtpm-0.5.1.tar.gz 309464 BLAKE2B 
630a9add9a17e016f0158666bd3f4eafa773b7a2645820346d5f2847023310f8df4c2491184c5f5d02a83aa2bb53f8c266e5f2a6b07ab92502f08c7f1fa697ea
 SHA512 
8a034b1da916797b9869a4ff478a4c7093b1343ce2556054d2228214520f0e2a63a1d69709bf2cc62fe45710dd9a41c0eee488af9396e8baf8099e697593638c

diff --git a/app-crypt/swtpm/swtpm-0.5.0.ebuild 
b/app-crypt/swtpm/swtpm-0.5.0.ebuild
deleted file mode 100644
index eb05b36e0f1..000
--- a/app-crypt/swtpm/swtpm-0.5.0.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-
-inherit autotools distutils-r1
-
-DESCRIPTION="Libtpms-based TPM emulator"
-HOMEPAGE="https://github.com/stefanberger/swtpm";
-SRC_URI="https://github.com/stefanberger/swtpm/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="fuse gnutls libressl seccomp test"
-
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND="
-   fuse? (
-   dev-libs/glib:2
-   sys-fs/fuse:0
-   )
-   gnutls? (
-   dev-libs/libtasn1:=
-   >=net-libs/gnutls-3.1.0[tools]
-   )
-   !libressl? (
-   dev-libs/openssl:0=
-   dev-libs/libtpms[-libressl]
-   )
-   libressl? (
-   dev-libs/libressl:0=
-   dev-libs/libtpms[libressl]
-   )
-   seccomp? ( sys-libs/libseccomp )
-"
-
-DEPEND="${COMMON_DEPEND}
-   test? (
-   net-misc/socat
-   dev-tcltk/expect
-   ${PYTHON_DEPS}
-   )
-"
-
-RDEPEND="${COMMON_DEPEND}
-   acct-group/tss
-   acct-user/tss
-   dev-python/cryptography[${PYTHON_USEDEP}]
-"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-0.5.0-fix-localca-path.patch"
-   "${FILESDIR}/${PN}-0.5.0-build-sys-Remove-WError.patch"
-)
-
-src_prepare() {
-   use test || eapply 
"${FILESDIR}/${PN}-0.5.0-disable-test-dependencies.patch"
-   default
-   eautoreconf
-   eautomake
-}
-
-src_configure() {
-   econf \
-   --disable-static \
-   --with-openssl \
-   --without-selinux \
-   $(use_with fuse cuse) \
-   $(use_with gnutls) \
-   $(use_with seccomp)
-}
-
-src_compile() {
-# We want the default src_compile, not the version distutils-r1 exports
-   default
-}
-
-src_install() {
-   default
-   python_foreach_impl python_optimize
-   fowners -R tss:root /var/lib/swtpm-localca
-   fperms 750 /var/lib/swtpm-localca
-   keepdir /var/lib/swtpm-localca
-   find "${D}" -name '*.la' -delete || die
-}
-
-src_test() {
-# We want the default src_test, not the version distutils-r1 exports
-   default
-}



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

2020-11-20 Thread Sam James
commit: 23d71ddf453f0083aae6831e03a6314f5b00ea25
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 20 15:10:22 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 15:10:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23d71ddf

app-crypt/swtpm: tiny post-merge fixups

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

 app-crypt/swtpm/swtpm-0.5.1.ebuild | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/app-crypt/swtpm/swtpm-0.5.1.ebuild 
b/app-crypt/swtpm/swtpm-0.5.1.ebuild
index afdecc396ec..9c7f465f8e4 100644
--- a/app-crypt/swtpm/swtpm-0.5.1.ebuild
+++ b/app-crypt/swtpm/swtpm-0.5.1.ebuild
@@ -15,7 +15,6 @@ LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64"
 IUSE="fuse gnutls libressl seccomp test"
-
 RESTRICT="!test? ( test )"
 
 COMMON_DEPEND="
@@ -26,7 +25,7 @@ COMMON_DEPEND="
gnutls? (
dev-libs/libtasn1:=
>=net-libs/gnutls-3.1.0[tools]
-   )
+   )
!libressl? (
dev-libs/openssl:0=
dev-libs/libtpms[-libressl]
@@ -61,7 +60,6 @@ src_prepare() {
use test || eapply 
"${FILESDIR}/${PN}-0.5.0-disable-test-dependencies.patch"
default
eautoreconf
-   eautomake
 }
 
 src_configure() {
@@ -75,7 +73,7 @@ src_configure() {
 }
 
 src_compile() {
-# We want the default src_compile, not the version distutils-r1 exports
+   # We want the default src_compile, not the version distutils-r1 exports
default
 }
 
@@ -89,6 +87,6 @@ src_install() {
 }
 
 src_test() {
-# We want the default src_test, not the version distutils-r1 exports
+   # We want the default src_test, not the version distutils-r1 exports
default
 }



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

2020-11-20 Thread Sam James
commit: 5fe4d21bad106b44dc1cb67113a630bd242ab21c
Author: Salah Coronya  gmail  com>
AuthorDate: Wed Nov 18 23:44:37 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 15:10:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fe4d21b

app-crypt/swtpm: Bump to 0.5.1 to fix CVE-2020-28407

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Salah Coronya  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 app-crypt/swtpm/Manifest   |  1 +
 app-crypt/swtpm/swtpm-0.5.1.ebuild | 94 ++
 2 files changed, 95 insertions(+)

diff --git a/app-crypt/swtpm/Manifest b/app-crypt/swtpm/Manifest
index 3a8b2fa15a3..eeda254b690 100644
--- a/app-crypt/swtpm/Manifest
+++ b/app-crypt/swtpm/Manifest
@@ -1 +1,2 @@
 DIST swtpm-0.5.0.tar.gz 309011 BLAKE2B 
3977acef1e68adca82ed5b51adb5f8787f6eb874ee16768b5b413b043f8a39f534b2aa99ef92fb1608f0c4c805b51bb8fbc83297b71afcec2d99faff03d9
 SHA512 
ba7dafc9a9ddd28252615028a45fe3e68efd12df948c1e8ec938caabb840406a7a1935e1e4a6e1b6b8848bee08450673138dc5a0d63f0447f5e0e07350e4aed7
+DIST swtpm-0.5.1.tar.gz 309464 BLAKE2B 
630a9add9a17e016f0158666bd3f4eafa773b7a2645820346d5f2847023310f8df4c2491184c5f5d02a83aa2bb53f8c266e5f2a6b07ab92502f08c7f1fa697ea
 SHA512 
8a034b1da916797b9869a4ff478a4c7093b1343ce2556054d2228214520f0e2a63a1d69709bf2cc62fe45710dd9a41c0eee488af9396e8baf8099e697593638c

diff --git a/app-crypt/swtpm/swtpm-0.5.1.ebuild 
b/app-crypt/swtpm/swtpm-0.5.1.ebuild
new file mode 100644
index 000..afdecc396ec
--- /dev/null
+++ b/app-crypt/swtpm/swtpm-0.5.1.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit autotools distutils-r1
+
+DESCRIPTION="Libtpms-based TPM emulator"
+HOMEPAGE="https://github.com/stefanberger/swtpm";
+SRC_URI="https://github.com/stefanberger/swtpm/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="fuse gnutls libressl seccomp test"
+
+RESTRICT="!test? ( test )"
+
+COMMON_DEPEND="
+   fuse? (
+   dev-libs/glib:2
+   sys-fs/fuse:0
+   )
+   gnutls? (
+   dev-libs/libtasn1:=
+   >=net-libs/gnutls-3.1.0[tools]
+   )
+   !libressl? (
+   dev-libs/openssl:0=
+   dev-libs/libtpms[-libressl]
+   )
+   libressl? (
+   dev-libs/libressl:0=
+   dev-libs/libtpms[libressl]
+   )
+   seccomp? ( sys-libs/libseccomp )
+"
+
+DEPEND="${COMMON_DEPEND}
+   test? (
+   net-misc/socat
+   dev-tcltk/expect
+   ${PYTHON_DEPS}
+   )
+"
+
+RDEPEND="${COMMON_DEPEND}
+   acct-group/tss
+   acct-user/tss
+   dev-python/cryptography[${PYTHON_USEDEP}]
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-0.5.0-fix-localca-path.patch"
+   "${FILESDIR}/${PN}-0.5.0-build-sys-Remove-WError.patch"
+)
+
+src_prepare() {
+   use test || eapply 
"${FILESDIR}/${PN}-0.5.0-disable-test-dependencies.patch"
+   default
+   eautoreconf
+   eautomake
+}
+
+src_configure() {
+   econf \
+   --disable-static \
+   --with-openssl \
+   --without-selinux \
+   $(use_with fuse cuse) \
+   $(use_with gnutls) \
+   $(use_with seccomp)
+}
+
+src_compile() {
+# We want the default src_compile, not the version distutils-r1 exports
+   default
+}
+
+src_install() {
+   default
+   python_foreach_impl python_optimize
+   fowners -R tss:root /var/lib/swtpm-localca
+   fperms 750 /var/lib/swtpm-localca
+   keepdir /var/lib/swtpm-localca
+   find "${D}" -name '*.la' -delete || die
+}
+
+src_test() {
+# We want the default src_test, not the version distutils-r1 exports
+   default
+}



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

2020-11-20 Thread Joonas Niilola
commit: fbb63cfc3ac9377006fbc8aee0d64b2e3ac79a19
Author: Joonas Niilola  gentoo  org>
AuthorDate: Fri Nov 20 14:58:44 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Nov 20 14:59:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbb63cfc

media-gfx/openscad: stabilize 2019.05-r3 on amd64

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

 media-gfx/openscad/openscad-2019.05-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/openscad/openscad-2019.05-r3.ebuild 
b/media-gfx/openscad/openscad-2019.05-r3.ebuild
index 79e4c30d804..e30ebab411a 100644
--- a/media-gfx/openscad/openscad-2019.05-r3.ebuild
+++ b/media-gfx/openscad/openscad-2019.05-r3.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.src.tar.gz -
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="ccache emacs"
 RESTRICT="test"
 



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

2020-11-20 Thread Joonas Niilola
commit: fc4927dd7ba029554e0a7109bad27e33b90a3d69
Author: Joonas Niilola  gentoo  org>
AuthorDate: Fri Nov 20 14:58:06 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Nov 20 14:59:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc4927dd

media-gfx/openscad: stabilize 2019.05-r3 on x86

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

 media-gfx/openscad/openscad-2019.05-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/openscad/openscad-2019.05-r3.ebuild 
b/media-gfx/openscad/openscad-2019.05-r3.ebuild
index 359b6566b45..79e4c30d804 100644
--- a/media-gfx/openscad/openscad-2019.05-r3.ebuild
+++ b/media-gfx/openscad/openscad-2019.05-r3.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.src.tar.gz -
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 x86"
 IUSE="ccache emacs"
 RESTRICT="test"
 



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

2020-11-20 Thread Joonas Niilola
commit: 5bc5cb6051834e81189b09353459498cd3b3eb64
Author: Joonas Niilola  gentoo  org>
AuthorDate: Fri Nov 20 14:33:37 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Nov 20 14:59:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bc5cb60

media-libs/lib3mf: stabilize 1.8.1 on amd64

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

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

diff --git a/media-libs/lib3mf/lib3mf-1.8.1.ebuild 
b/media-libs/lib3mf/lib3mf-1.8.1.ebuild
index c703e74d4fa..a4c13948eb4 100644
--- a/media-libs/lib3mf/lib3mf-1.8.1.ebuild
+++ b/media-libs/lib3mf/lib3mf-1.8.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/3MFConsortium/$PN/archive/v$PV.tar.gz -> $P.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 IUSE="doc test"
 RESTRICT="!test? ( test )"
 



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

2020-11-20 Thread Joonas Niilola
commit: fdfff5d446da408d0ad733ab13cdc464fb6aea53
Author: Joonas Niilola  gentoo  org>
AuthorDate: Fri Nov 20 14:34:01 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Nov 20 14:59:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdfff5d4

media-libs/lib3mf: stabilize 1.8.1 on x86

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

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

diff --git a/media-libs/lib3mf/lib3mf-1.8.1.ebuild 
b/media-libs/lib3mf/lib3mf-1.8.1.ebuild
index a4c13948eb4..6a9e8bdc83a 100644
--- a/media-libs/lib3mf/lib3mf-1.8.1.ebuild
+++ b/media-libs/lib3mf/lib3mf-1.8.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/3MFConsortium/$PN/archive/v$PV.tar.gz -> $P.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="doc test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: app-arch/innoextract/files/, app-arch/innoextract/

2020-11-20 Thread Sam James
commit: 7320f67eb4dbc13d3f123a99948b9d2d02ad0a63
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 20 14:47:51 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 14:47:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7320f67e

app-arch/innoextract: bump to 1.9

Bug: https://bugs.gentoo.org/738742
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 app-arch/innoextract/Manifest  |  1 +
 .../files/innoextract-1.9-fix-linkage.patch| 17 ++
 app-arch/innoextract/innoextract-1.9.ebuild| 37 ++
 3 files changed, 55 insertions(+)

diff --git a/app-arch/innoextract/Manifest b/app-arch/innoextract/Manifest
index 149c2f7dd31..571b0bdaa20 100644
--- a/app-arch/innoextract/Manifest
+++ b/app-arch/innoextract/Manifest
@@ -1,2 +1,3 @@
 DIST innoextract-1.7.tar.gz 195123 BLAKE2B 
5dffb49da7ec3f8e48a70d0809e059179e84610dd50397b8ca472b9f5a96a5edd0cf36898f0e513b3f70685829e2b8edbd7d7932c9f1b47706c2929f596867e5
 SHA512 
5e92625a411a4351dd4639d4b63e8664519c6697122a0679c010412e94a1e5da95324c33be16211f91c2b25b8cea40fe4ba4da5e19c12d0c27a4916159465ca4
 DIST innoextract-1.8.tar.gz 205553 BLAKE2B 
223f0997ae00f2a854912befca25595b275ece8e0fe4f4451d6aa3db14ad1ed98474a19c919c56d958e99c0175be647d3eb3c14d7869504405a7bf6db3a35957
 SHA512 
2c68009333f02a8a677c084e9c95c835d84a73e60c9b0c70fee5f23fd9a7a640cf2aa7e0476c55579774ac7079498fa24668f9388493bbc13415ff5a5b06ac9c
+DIST innoextract-1.9.tar.gz 206931 BLAKE2B 
1d5f0d13a7cd52262b277263f061ecab85a3419197bceb22938a0d1578603cc2c2b972a45474027cfea8e43b8bf89d680035034785210842477b147811fa
 SHA512 
2b18f7bb7f50744bcb1bdcd25e57e0760193b179c77b55e0f63c537e55afc98de3b0380da3cae470ce97660ed41a7ffbb48c8c25329c9ce9b3811d9aec74bcde

diff --git a/app-arch/innoextract/files/innoextract-1.9-fix-linkage.patch 
b/app-arch/innoextract/files/innoextract-1.9-fix-linkage.patch
new file mode 100644
index 000..79ecd805f49
--- /dev/null
+++ b/app-arch/innoextract/files/innoextract-1.9-fix-linkage.patch
@@ -0,0 +1,17 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index be9f08f..f7ce42a 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -316,12 +316,6 @@ if(NOT MSVC)
+   
+ endif()
+ 
+-if($ENV{PORTAGE_REPO_NAME} MATCHES "gentoo")
+-  # Meh
+-  unset(LIBRARIES)
+-endif()
+-
+-
+ # All sources:
+ 
+ set(DOCUMENTATION 0) # never build these

diff --git a/app-arch/innoextract/innoextract-1.9.ebuild 
b/app-arch/innoextract/innoextract-1.9.ebuild
new file mode 100644
index 000..4067b8b4a68
--- /dev/null
+++ b/app-arch/innoextract/innoextract-1.9.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A tool to unpack installers created by Inno Setup"
+HOMEPAGE="https://constexpr.org/innoextract/";
+SRC_URI="https://constexpr.org/innoextract/files/${P}.tar.gz";
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="debug +iconv +lzma"
+
+RDEPEND="
+   dev-libs/boost:=[bzip2,zlib]
+   iconv? ( virtual/libiconv )
+   lzma? ( app-arch/xz-utils )"
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.9-fix-linkage.patch"
+)
+
+src_configure() {
+   local mycmakeargs=(
+   -DDEBUG=$(usex debug)
+   -DSET_OPTIMIZATION_FLAGS=OFF
+   -DSTRICT_USE=ON
+   -DUSE_LZMA=$(usex lzma)
+   -DWITH_CONV=$(usex iconv iconv builtin)
+   )
+
+   cmake_src_configure
+}



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

2020-11-20 Thread Sam James
commit: 66e290e8d20e8927430a2b7739d27e7af39d7310
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 20 14:19:17 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 14:19:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66e290e8

dev-cpp/eigen: Stabilize 3.3.7-r1 amd64, #738380

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

 dev-cpp/eigen/eigen-3.3.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/eigen/eigen-3.3.7-r1.ebuild 
b/dev-cpp/eigen/eigen-3.3.7-r1.ebuild
index ab7874dd7e3..78cd681f6b1 100644
--- a/dev-cpp/eigen/eigen-3.3.7-r1.ebuild
+++ b/dev-cpp/eigen/eigen-3.3.7-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://gitlab.com/libeigen/eigen/-/archive/3.3.7/${P}.tar.bz2 -> ${P}-
 
 LICENSE="MPL-2.0"
 SLOT="3"
-KEYWORDS="~amd64 ~arm arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="cpu_flags_arm_neon cpu_flags_ppc_altivec cpu_flags_ppc_vsx cuda debug 
doc openmp test" #zvector
 
 RESTRICT="!test? ( test )"



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

2020-11-20 Thread Sam James
commit: 56e88b7daf31d2bb3b34783592f0d29416418752
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 20 14:16:22 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 14:16:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56e88b7d

dev-python/re-assert: ppc keyworded (bug #752228)

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

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

diff --git a/dev-python/re-assert/re-assert-1.1.0.ebuild 
b/dev-python/re-assert/re-assert-1.1.0.ebuild
index ed05f651844..0e701ccf39a 100644
--- a/dev-python/re-assert/re-assert-1.1.0.ebuild
+++ b/dev-python/re-assert/re-assert-1.1.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 RDEPEND="dev-python/regex[${PYTHON_USEDEP}]"
 



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

2020-11-20 Thread Sam James
commit: c76575a80688d473b29f55fe31330ddbb212a30f
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 20 14:16:05 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 14:16:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c76575a8

dev-python/aiohttp: ppc keyworded (bug #752228)

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

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

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



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

2020-11-20 Thread Sam James
commit: 51c7c1ac08e73c92afb652a452f7996947428d28
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 20 14:15:19 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 14:16:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51c7c1ac

dev-python/re-assert: ppc64 keyworded (bug #752228)

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

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

diff --git a/dev-python/re-assert/re-assert-1.1.0.ebuild 
b/dev-python/re-assert/re-assert-1.1.0.ebuild
index 9a5914b857f..ed05f651844 100644
--- a/dev-python/re-assert/re-assert-1.1.0.ebuild
+++ b/dev-python/re-assert/re-assert-1.1.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc64 ~sparc ~x86"
 
 RDEPEND="dev-python/regex[${PYTHON_USEDEP}]"
 



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

2020-11-20 Thread Sam James
commit: d351252f5bdbd2dd55ed6c0fe9fe2be5d1cd4cda
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 20 14:15:05 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 14:16:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d351252f

dev-python/aiohttp: ppc64 keyworded (bug #752228)

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

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

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



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

2020-11-20 Thread Craig Andrews
commit: a25117619ed8746b9e0593f4e5406e10b113438d
Author: Craig Andrews  gentoo  org>
AuthorDate: Fri Nov 20 14:15:30 2020 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Fri Nov 20 14:15:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2511761

dev-util/clinfo: 3.0.20.11.20 version bump

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

 dev-util/clinfo/Manifest   |  1 +
 dev-util/clinfo/clinfo-3.0.20.11.20.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-util/clinfo/Manifest b/dev-util/clinfo/Manifest
index 586b9a74ac1..8ccf248d144 100644
--- a/dev-util/clinfo/Manifest
+++ b/dev-util/clinfo/Manifest
@@ -1,2 +1,3 @@
 DIST clinfo-2.2.18.03.26.tar.gz 38519 BLAKE2B 
736036f4f84c170876b9b550bfe837c67a273cef9032af8734035edf5070d17d876d10f7d5c81889966df0a9ad4192c43c1501326188782cc674611ea57130ef
 SHA512 
dec90a314e6c52e5501339dbe594cb57cfc8cae6855db7bb88b36984fd661e55f2cc8eb29fa546998862c806ec752bfc2b6a9e0d9d962370f84b0091605c1bcb
 DIST clinfo-2.2.18.04.06.tar.gz 41459 BLAKE2B 
e90a515fd9318aeced510cd97cc477e1925b37e2c389ffee0ec484563acc9f0f9a8880cb38575b299c4f63e1b4a6959064d7d0d45487f67d6fcf32ce91962a47
 SHA512 
4aa1623bd08602e2104b4ba3150f36a9e8e8fb25728d4a1792a9cc81a2a5952a4a78ccad0928f098ce4e8bc05f30d09267e01ccd81d541fdfb0bc7de46908faf
+DIST clinfo-3.0.20.11.20.tar.gz 49196 BLAKE2B 
b9ea6a8dc8624ec717e5f2817d52e8284da870c1c1784f1d817e014f856df0bccd37a1b3b3e7cd0dd20dc831b7625e38bef237560826aa03bbe7f9158298b290
 SHA512 
eb582cf91bb5642a43207e653fef06f89c458b53264e2ce182429fc697ae1e3f6e2b66daa13ca22c758c58e2201007eb3f34182bba9912f136dab9c9db63d851

diff --git a/dev-util/clinfo/clinfo-3.0.20.11.20.ebuild 
b/dev-util/clinfo/clinfo-3.0.20.11.20.ebuild
new file mode 100644
index 000..fc1ca3477ce
--- /dev/null
+++ b/dev-util/clinfo/clinfo-3.0.20.11.20.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://github.com/Oblomov/clinfo.git";
+   inherit git-r3
+   SRC_URI=""
+else
+   SRC_URI="https://github.com/Oblomov/clinfo/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="A tool to display info about the system's OpenCL capabilities"
+HOMEPAGE="https://github.com/Oblomov/clinfo";
+LICENSE="CC0-1.0"
+SLOT="0"
+
+DEPEND=">=virtual/opencl-3"
+RDEPEND="${DEPEND}"
+
+src_install() {
+   emake MANDIR="${ED}"/usr/share/man PREFIX="${ED}"/usr install
+}



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

2020-11-20 Thread Sam James
commit: 48d540a6df70f182d54861b59d4a517c3a945f63
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 20 14:09:22 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 20 14:14:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48d540a6

dev-python/sentry-sdk: ppc keyworded (bug #752396)

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

 dev-python/sentry-sdk/sentry-sdk-0.19.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/sentry-sdk/sentry-sdk-0.19.4.ebuild 
b/dev-python/sentry-sdk/sentry-sdk-0.19.4.ebuild
index 4c64dd94f5c..8b4b5633c4f 100644
--- a/dev-python/sentry-sdk/sentry-sdk-0.19.4.ebuild
+++ b/dev-python/sentry-sdk/sentry-sdk-0.19.4.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/sentry-python-${PV}"
 
 LICENSE="PSF-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 
 RDEPEND="
dev-python/urllib3[${PYTHON_USEDEP}]



  1   2   >