[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-shell-extension-bing-wallpaper/files/, ...

2021-12-16 Thread Pacho Ramos
commit: 2ee5a868cab12150e57bb4afeef4f111fafc096e
Author: Pacho Ramos  gentoo  org>
AuthorDate: Thu Dec 16 08:32:35 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Thu Dec 16 08:32:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ee5a868

gnome-extra/gnome-shell-extension-bing-wallpaper: Drop old

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Pacho Ramos  gentoo.org>

 .../gnome-shell-extension-bing-wallpaper/Manifest  |  1 -
 ...nsion-bing-wallpaper-34-blur-enable-check.patch | 49 ---
 .../gnome-shell-extension-bing-wallpaper-34.ebuild | 55 --
 3 files changed, 105 deletions(-)

diff --git a/gnome-extra/gnome-shell-extension-bing-wallpaper/Manifest 
b/gnome-extra/gnome-shell-extension-bing-wallpaper/Manifest
index d6c279072c7c..124655f5b78c 100644
--- a/gnome-extra/gnome-shell-extension-bing-wallpaper/Manifest
+++ b/gnome-extra/gnome-shell-extension-bing-wallpaper/Manifest
@@ -1,3 +1,2 @@
-DIST gnome-shell-extension-bing-wallpaper-34.tar.gz 4308799 BLAKE2B 
5c14895fbb42fb726e1b6d93924eebfd7b93ccea893075bfd698476579962a88f8e0008d7e935304d56caba1db1f8afc8fee3498f63044e4a9da13f568025e84
 SHA512 
7e1e26b5494a9e66d74c3d1045827445935d1a0ed20b095cb72b3b06b622ae5fda7980313dcddedf25c5ed3b40717a8e322bc80764f502c5eb7fe7155ec84ca7
 DIST gnome-shell-extension-bing-wallpaper-36.tar.gz 6060192 BLAKE2B 
0daec2bdc94e25032b8ab04e63a673177edae9fe181ad02bcd9ceee7597d8c3f44187dcdb0bded5477be515dfea3cf81adc08e306a33b8c444e3e2c8295c5fab
 SHA512 
335c1e9f5dd1d93ec60f15eef2d0127be6f0149bb29b98f4751c9ea820fd0b28e119d0d2c9fabace4b8d2a5c0523b06bbbd337093ceafc1421a9d665eaa5
 DIST gnome-shell-extension-bing-wallpaper-37.tar.gz 6798688 BLAKE2B 
9dd8e651905f2b90848bd416d222667aa528994d3d06ddc180926efc603670346513270d588be85aefc62b9c85986e5913441d643e399c1384fd6996b1cfdfc2
 SHA512 
1c75ff6a6068232c9be717018b93a3bc8810e6dd1b446d9dbe4cc77beecb34a35ed3d6a9904f68b3d2d4487f45f2eccee03379f1abe4f8b351642b75411d5adc

diff --git 
a/gnome-extra/gnome-shell-extension-bing-wallpaper/files/gnome-shell-extension-bing-wallpaper-34-blur-enable-check.patch
 
b/gnome-extra/gnome-shell-extension-bing-wallpaper/files/gnome-shell-extension-bing-wallpaper-34-blur-enable-check.patch
deleted file mode 100644
index 64f72f388dec..
--- 
a/gnome-extra/gnome-shell-extension-bing-wallpaper/files/gnome-shell-extension-bing-wallpaper-34-blur-enable-check.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From d6350119bccb896744e574d0f10e34c1309bc1b1 Mon Sep 17 00:00:00 2001
-From: Michael Carroll 
-Date: Wed, 16 Jun 2021 00:11:26 +1000
-Subject: [PATCH] dont reset blur on disable() if never enabled #113
-

- blur.js | 8 ++--
- 1 file changed, 6 insertions(+), 2 deletions(-)
-
-diff --git a/blur.js b/blur.js
-index 613e301..c16af6f 100644
 a/blur.js
-+++ b/blur.js
-@@ -27,6 +27,7 @@ var blur_strength = 2;
- var blur_brightness = 55;
- var debug = false;
- 
-+let blurEnabled = false;
- var blurMode = whichVersion();
- 
- function log(msg) {
-@@ -63,6 +64,7 @@ var Blur = class Blur {
- let effect = new Shell.BlurEffect({ brightness: blur_brightness * 
0.01, sigma: blur_strength * themeContext.scale_factor / 5 }); // fix me, 
should this be /5?
- this._scaleChangedId = themeContext.connect('notify::scale-factor', 
() => { effect.sigma = blur_strength * themeContext.scale_factor / 5; });
- widget.add_effect(effect);
-+blurEnabled = true;
- }
- 
- _do_blur_v2(monitorIndex) {
-@@ -74,8 +76,8 @@ var Blur = class Blur {
- brightness: blur_brightness * 0.01,
- sigma: blur_strength * themeContext.scale_factor,
- });
--} 
--
-+}
-+blurEnabled = true;
- }
- 
- set_blur_strength(value) {
-@@ -119,6 +121,8 @@ var Blur = class Blur {
- }
- 
- _disable() {
-+if (blurEnabled == false) // nothing to do, don't clash without other 
extensions that do the same
-+return;
- log("_lockscreen_blur_disable() called");
- if (blurMode == 1) {
- UnlockDialog.prototype._createBackground = _createBackground;

diff --git 
a/gnome-extra/gnome-shell-extension-bing-wallpaper/gnome-shell-extension-bing-wallpaper-34.ebuild
 
b/gnome-extra/gnome-shell-extension-bing-wallpaper/gnome-shell-extension-bing-wallpaper-34.ebuild
deleted file mode 100644
index bca374834cfc..
--- 
a/gnome-extra/gnome-shell-extension-bing-wallpaper/gnome-shell-extension-bing-wallpaper-34.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit gnome2-utils
-
-DESCRIPTION="Changes your wallpaper daily to the bing.com background image"
-HOMEPAGE="https://github.com/neffo/bing-wallpaper-gnome-extension";
-SRC_URI="https://github.com/neffo/bing-wallpaper-gnome-extension/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT=

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-shell-extension-bing-wallpaper/

2021-12-16 Thread Pacho Ramos
commit: 05b5ba6a0a528a9c76ca49ef45b33089319f8c1b
Author: Pacho Ramos  gentoo  org>
AuthorDate: Thu Dec 16 08:31:59 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Thu Dec 16 08:31:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05b5ba6a

gnome-extra/gnome-shell-extension-bing-wallpaper: Bump to v37

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Pacho Ramos  gentoo.org>

 .../gnome-shell-extension-bing-wallpaper/Manifest  |  1 +
 .../gnome-shell-extension-bing-wallpaper-37.ebuild | 50 ++
 2 files changed, 51 insertions(+)

diff --git a/gnome-extra/gnome-shell-extension-bing-wallpaper/Manifest 
b/gnome-extra/gnome-shell-extension-bing-wallpaper/Manifest
index 865bf66117ed..d6c279072c7c 100644
--- a/gnome-extra/gnome-shell-extension-bing-wallpaper/Manifest
+++ b/gnome-extra/gnome-shell-extension-bing-wallpaper/Manifest
@@ -1,2 +1,3 @@
 DIST gnome-shell-extension-bing-wallpaper-34.tar.gz 4308799 BLAKE2B 
5c14895fbb42fb726e1b6d93924eebfd7b93ccea893075bfd698476579962a88f8e0008d7e935304d56caba1db1f8afc8fee3498f63044e4a9da13f568025e84
 SHA512 
7e1e26b5494a9e66d74c3d1045827445935d1a0ed20b095cb72b3b06b622ae5fda7980313dcddedf25c5ed3b40717a8e322bc80764f502c5eb7fe7155ec84ca7
 DIST gnome-shell-extension-bing-wallpaper-36.tar.gz 6060192 BLAKE2B 
0daec2bdc94e25032b8ab04e63a673177edae9fe181ad02bcd9ceee7597d8c3f44187dcdb0bded5477be515dfea3cf81adc08e306a33b8c444e3e2c8295c5fab
 SHA512 
335c1e9f5dd1d93ec60f15eef2d0127be6f0149bb29b98f4751c9ea820fd0b28e119d0d2c9fabace4b8d2a5c0523b06bbbd337093ceafc1421a9d665eaa5
+DIST gnome-shell-extension-bing-wallpaper-37.tar.gz 6798688 BLAKE2B 
9dd8e651905f2b90848bd416d222667aa528994d3d06ddc180926efc603670346513270d588be85aefc62b9c85986e5913441d643e399c1384fd6996b1cfdfc2
 SHA512 
1c75ff6a6068232c9be717018b93a3bc8810e6dd1b446d9dbe4cc77beecb34a35ed3d6a9904f68b3d2d4487f45f2eccee03379f1abe4f8b351642b75411d5adc

diff --git 
a/gnome-extra/gnome-shell-extension-bing-wallpaper/gnome-shell-extension-bing-wallpaper-37.ebuild
 
b/gnome-extra/gnome-shell-extension-bing-wallpaper/gnome-shell-extension-bing-wallpaper-37.ebuild
new file mode 100644
index ..3f94681a28bf
--- /dev/null
+++ 
b/gnome-extra/gnome-shell-extension-bing-wallpaper/gnome-shell-extension-bing-wallpaper-37.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit gnome2-utils
+
+DESCRIPTION="Changes your wallpaper daily to the bing.com background image"
+HOMEPAGE="https://github.com/neffo/bing-wallpaper-gnome-extension";
+SRC_URI="https://github.com/neffo/bing-wallpaper-gnome-extension/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-libs/glib:2
+   app-eselect/eselect-gnome-shell-extensions
+   >=gnome-base/gnome-shell-3.28
+"
+DEPEND=""
+BDEPEND=""
+
+S="${WORKDIR}/bing-wallpaper-gnome-extension-${PV}"
+extension_uuid="bingwallpa...@ineffable-gmail.com"
+
+src_install() {
+   einstalldocs
+   rm -f README.md LICENSE || die
+   insinto /usr/share/glib-2.0/schemas
+   doins schemas/*.xml
+   rm -rf schemas
+   insinto /usr/share/gnome-shell/extensions/"${extension_uuid}"
+   doins -r *
+}
+
+pkg_preinst() {
+   gnome2_schemas_savelist
+}
+
+pkg_postinst() {
+   gnome2_schemas_update
+   ebegin "Updating list of installed extensions"
+   eselect gnome-shell-extensions update
+   eend $?
+}
+
+pkg_postrm() {
+   gnome2_schemas_update
+}



[gentoo-commits] repo/gentoo:master commit in: dev-java/gradle-bin/

2021-12-16 Thread Florian Schmaus
commit: e1d7d3dc9657b9799ee6ec78970c3adb413a6a98
Author: Florian Schmaus  gentoo  org>
AuthorDate: Thu Dec 16 08:34:22 2021 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Thu Dec 16 08:35:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1d7d3dc

dev-java/gradle-bin: stabilize 7.1.1 for amd64, x86

Signed-off-by: Florian Schmaus  gentoo.org>

 dev-java/gradle-bin/gradle-bin-7.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/gradle-bin/gradle-bin-7.1.1.ebuild 
b/dev-java/gradle-bin/gradle-bin-7.1.1.ebuild
index dfbd1549205b..1e7b593a8227 100644
--- a/dev-java/gradle-bin/gradle-bin-7.1.1.ebuild
+++ b/dev-java/gradle-bin/gradle-bin-7.1.1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://www.gradle.org/";
 
 LICENSE="Apache-2.0"
 SLOT="${PV}"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 DEPEND="app-eselect/eselect-gradle"
 BDEPEND="app-arch/unzip"



[gentoo-commits] repo/gentoo:master commit in: dev-java/gradle-bin/

2021-12-16 Thread Florian Schmaus
commit: dd644d6624df7e0cf0dd8df3d089904e9f4e
Author: Florian Schmaus  gentoo  org>
AuthorDate: Thu Dec 16 08:34:06 2021 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Thu Dec 16 08:35:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd644d66

dev-java/gradle-bin: add 7.3.2, drop 7.3.1

Signed-off-by: Florian Schmaus  gentoo.org>

 dev-java/gradle-bin/Manifest| 2 +-
 .../gradle-bin/{gradle-bin-7.3.1.ebuild => gradle-bin-7.3.2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/gradle-bin/Manifest b/dev-java/gradle-bin/Manifest
index 1e5eed6cb248..79e79b181e52 100644
--- a/dev-java/gradle-bin/Manifest
+++ b/dev-java/gradle-bin/Manifest
@@ -1,4 +1,4 @@
 DIST gradle-bin-6.8.3.zip 150631445 BLAKE2B 
935a6631167481e289ac5a468b822ffeec204519edf42c8a0f05a911ef716715b706e3c22637763b4a7a0c7cbfa89f163673ef5631c115c025c5634b353fcee6
 SHA512 
fdd5c347142c2a8e2a1455d8886ddb103531de6e69d41f20d199a488d10165600924876761b452da213759a1dc6d47ed00a069f1a9f8af99fdbf1af3bb2e0564
 DIST gradle-bin-7.1.1.zip 154838841 BLAKE2B 
0a0ad08101f0c5fa7c0cb2a4c9ad6e53320cc6214fe1a139f390b73d9aa656ebfaf90c21816d57964f37e9cad51faed21f82f55b7e24fcf0f5a3ffd861c990ad
 SHA512 
95cc2de9b7c3d6019d7780b17238ff8f0db14c9a1e494b391c84d75619eb3064322bb2c56fa9127b0a5681c94b32283090a15b06fefeccdb95a1f8fb9e58c75c
 DIST gradle-bin-7.2.zip 157058280 BLAKE2B 
918213df58ac2afbd075c74588f60676cd7dc99030834828138c621348ac1abd368e0b54c2f6937cbfc9533e55e310b46cf841c92dcb1039b898c6f456032d38
 SHA512 
6ccc79f08afdc20b3d5abf876c3cabb69114d1ab4285cdb77158cd8c5e09207589edefb6c79f2bcffe4629a38c6b9e2f473de42dab29a24310965bc5816b907d
-DIST gradle-bin-7.3.1.zip 158871851 BLAKE2B 
45a7d94cb38e999c7e496d248325fceabcf0a4670e58d173207a80d86323e5be57837abd2bc6fc7b26fa5cb1aa06ac4f25fd4516080d62e144263150cb53084c
 SHA512 
f9fe4d7cef90076d8fe877d4710196cf5198a35baf5aad415762cd98b58408ce2798675f4fd3ca1a72d415070f0118bd0e4c83feac5809245798da58ee0b7a4a
+DIST gradle-bin-7.3.2.zip 158875135 BLAKE2B 
52ae669eb4bea61aa13ac734f8e660db63d0beb865bdb07250cfc14e4a2e8a7fea9613629ec8a1949042463d0a3056949f7bd7c9944e663eee64d900bd92bec4
 SHA512 
86ca78148bf1df1642ee8a89fb2d560522dd01666de8dd4002f5425ac17b178d108cca99a3311700a84b7dc1d962a2392ab5da6b446177702dfea52c29b6fa40

diff --git a/dev-java/gradle-bin/gradle-bin-7.3.1.ebuild 
b/dev-java/gradle-bin/gradle-bin-7.3.2.ebuild
similarity index 100%
rename from dev-java/gradle-bin/gradle-bin-7.3.1.ebuild
rename to dev-java/gradle-bin/gradle-bin-7.3.2.ebuild



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

2021-12-16 Thread Michał Górny
commit: 21727cfbd5a328b5bf049157fc60e7628c87ab4f
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 16 08:12:20 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 16 08:46:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21727cfb

dev-python/djangorestframework: Bump to 3.13.1

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

 dev-python/djangorestframework/Manifest|  1 +
 .../djangorestframework-3.13.1.ebuild  | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/djangorestframework/Manifest 
b/dev-python/djangorestframework/Manifest
index c5191d400bca..66fbe9674dbb 100644
--- a/dev-python/djangorestframework/Manifest
+++ b/dev-python/djangorestframework/Manifest
@@ -1,2 +1,3 @@
 DIST django-rest-framework-3.12.4.gh.tar.gz 8856507 BLAKE2B 
48150e8d966ddd169a2b58d90656efa8f9f549c9d2fdee6025254fba2a6221704fe6bcb246567c8acb963f76ea56046935d3190c7c391daf4773b100a641ba02
 SHA512 
406b5354809b94e371a2c7d4b62ce66c18a1f60bd02574cba603ad4c44faa4297bdbbd6ee50de63fe21d2aae18386e05d46983a506bddd17f06ce610d5b727c9
 DIST django-rest-framework-3.13.0.gh.tar.gz 8880253 BLAKE2B 
8acd6bf386ef20302c8fe52b3a5f1926c03701b32b8c409d13771d632a62e0e01bd8c2efde079e923342a08e6a3d21b3ab13a66817567fe2372f7b8e63eee61a
 SHA512 
2368f382e6dd01490366443ad944f4a48ebbc4928ed45ff58c77a63deb251b148b9e4b13d89b0d2e27a8e257239d75f58f91a11604402683c1c36fac8ce27acc
+DIST django-rest-framework-3.13.1.gh.tar.gz 8868916 BLAKE2B 
01a2e1c2459f99b1d3b38b62b305a57f3a3358d34a352ef2bbeb6b130c98f19fbbb83325d1013c28107f267a0a0227215646975de54542ab9ca6dfcf2bd88404
 SHA512 
a272cccf1f19b2cd09ef456a9588fb17ddc56ac3bd735cf7e130d85bb667ca87361d7de26c95b58a05d8cf693ab19c09d913b457f17ad63053ff9b516c13ec9b

diff --git a/dev-python/djangorestframework/djangorestframework-3.13.1.ebuild 
b/dev-python/djangorestframework/djangorestframework-3.13.1.ebuild
new file mode 100644
index ..db2bbeb43bbe
--- /dev/null
+++ b/dev-python/djangorestframework/djangorestframework-3.13.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+MY_P=django-rest-framework-${PV}
+DESCRIPTION="Web APIs with django made easy"
+HOMEPAGE="https://www.django-rest-framework.org/";
+SRC_URI="
+   https://github.com/encode/django-rest-framework/archive/${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   >=dev-python/django-2.2[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]"
+BDEPEND="
+   test? (
+   dev-python/coreapi[${PYTHON_USEDEP}]
+   dev-python/coreschema[${PYTHON_USEDEP}]
+   dev-python/pytest-django[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests pytest



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

2021-12-16 Thread Michał Górny
commit: d3a3bfc6e03e134947276d606fd5b4fa6f6ef40e
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 16 08:11:28 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 16 08:46:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3a3bfc6

dev-python/jsonschema: Bump to 4.3.0

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

 dev-python/jsonschema/Manifest|  1 +
 dev-python/jsonschema/jsonschema-4.3.0.ebuild | 50 +++
 2 files changed, 51 insertions(+)

diff --git a/dev-python/jsonschema/Manifest b/dev-python/jsonschema/Manifest
index 97f61f3ad7ca..56a4e906ffb4 100644
--- a/dev-python/jsonschema/Manifest
+++ b/dev-python/jsonschema/Manifest
@@ -1,2 +1,3 @@
 DIST jsonschema-3.2.0.tar.gz 167226 BLAKE2B 
f89a8198f6b7b4dd56b0320ddecdd834423cbeaf49fbbd1563007da61004322b92e25856ecc17b4d02e2162b2359ec5d7601826fe42cfcb7683ae16cf2baeb39
 SHA512 
acbb4cec730a8cdab9f070593ed896064fbe082d464ec362adc952e4985e9eaa12ad0f2d55a04018ffdaf675e54037999a7219533dad6b84bf609f5dfe21bbab
 DIST jsonschema-4.2.1.tar.gz 310668 BLAKE2B 
ba36be8abf0678fda773a9950f06e4d15f6a4c19fdd9f855310b80f45be1a25f44ce329c35667c4e107aab6ba381b02ff2caa305222932e2cbe733f293de82cc
 SHA512 
349993c00e663f3efa2304e60c8b75e90c012d29faa498a01d5d2a5c47ddf0485f28894fd2ddf4766f9ab91e468f4b4f24a53390c72b7a31fae37d75c6f2b774
+DIST jsonschema-4.3.0.tar.gz 311317 BLAKE2B 
6ec3d2cf05923657e9875b5f51b9356a730a7f9a1ab8e07bbf7226fdf1005f729a06c110ec52b62d12a4bba96a14dc647786398e66a6439de93fb38c02eef848
 SHA512 
3772952fb482660da86b0f71ed509ef267375a80ba2db0e4c12b9bb17f79c1f31f1a8ed2746a0bef76c620d61a63ccf967c77cc55255c7d3fe4e688dc0413b38

diff --git a/dev-python/jsonschema/jsonschema-4.3.0.ebuild 
b/dev-python/jsonschema/jsonschema-4.3.0.ebuild
new file mode 100644
index ..67432d9cab8c
--- /dev/null
+++ b/dev-python/jsonschema/jsonschema-4.3.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="An implementation of JSON-Schema validation for Python"
+HOMEPAGE="https://pypi.org/project/jsonschema/ 
https://github.com/Julian/jsonschema";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+   dev-python/attrs[${PYTHON_USEDEP}]
+   >=dev-python/pyrsistent-0.18.0[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   >=dev-python/importlib_resources-1.4.0[${PYTHON_USEDEP}]
+   ' pypy3 python3_8)
+"
+
+# formatter deps
+RDEPEND+="
+   dev-python/fqdn[${PYTHON_USEDEP}]
+   dev-python/idna[${PYTHON_USEDEP}]
+   dev-python/isoduration[${PYTHON_USEDEP}]
+   >=dev-python/jsonpointer-1.13[${PYTHON_USEDEP}]
+   dev-python/rfc3339-validator[${PYTHON_USEDEP}]
+   dev-python/rfc3986-validator[${PYTHON_USEDEP}]
+   dev-python/rfc3987[${PYTHON_USEDEP}]
+   dev-python/uritemplate[${PYTHON_USEDEP}]
+   >=dev-python/webcolors-1.11[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   dev-python/twisted[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # requires pip, does not make much sense for the users
+   jsonschema/tests/test_cli.py::TestCLIIntegration::test_license
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-debug-toolbar/

2021-12-16 Thread Michał Górny
commit: 8e5137502b508cb15508dc84a9fef872b7f3e258
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 16 08:07:17 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 16 08:46:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e513750

dev-python/django-debug-toolbar: Bump to 3.2.4

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

 dev-python/django-debug-toolbar/Manifest   |  1 +
 .../django-debug-toolbar-3.2.4.ebuild  | 48 ++
 2 files changed, 49 insertions(+)

diff --git a/dev-python/django-debug-toolbar/Manifest 
b/dev-python/django-debug-toolbar/Manifest
index af20df6534b6..5408efee5237 100644
--- a/dev-python/django-debug-toolbar/Manifest
+++ b/dev-python/django-debug-toolbar/Manifest
@@ -1,2 +1,3 @@
 DIST django-debug-toolbar-3.2.2.tar.gz 239313 BLAKE2B 
0e53709a3857cefc0ff7a7176ca248891122b2d758264c32171198a22b0c105af414eaba0095b1435b4f071120038f4665bd84438d77a8f65156c056d523f60f
 SHA512 
df1956d63e88d3cf9f831609b6191446a162afbf396cb6d20e5a42aab4276ab385943cc305cad58a9f388382b0dffabc8baedf2150182a4302e7da58ab3d6a5c
 DIST django-debug-toolbar-3.2.3.tar.gz 255447 BLAKE2B 
82265a855588d1a809ace7fe36c93f0b5d779acc66aa922b39c61c5e860b25e983ccf230b166f1654a41ce7e5ca32eb5f9e998c8621b14af0e3cabed2c094a40
 SHA512 
877df07a757525ea8b36ccb59e20bd7c928425dbb8520b7de065f5a9be29681ee68417ee1f7cdd7dee269556f2fcf3a7e2635005fbe578dd7f1237f0a450ee29
+DIST django-debug-toolbar-3.2.4.tar.gz 255283 BLAKE2B 
8be7f569c7f1eab06c4a60fca19bce6c348594406cdfe6de7e6be50849272714e9f3b51db4803e7cd58e97fe44a7422b07b05b2208f4447a4d69e0b77c856cb4
 SHA512 
19d3ba91b8738ade108f7eaded2859ad3e4bcae7cd0115e2cf63698d1fef01773f09a05f6bc0af53f9c3d4a2a288635a5cb2d215a2eb9f8acd6c65175a1ccaef

diff --git a/dev-python/django-debug-toolbar/django-debug-toolbar-3.2.4.ebuild 
b/dev-python/django-debug-toolbar/django-debug-toolbar-3.2.4.ebuild
new file mode 100644
index ..f64d97c58419
--- /dev/null
+++ b/dev-python/django-debug-toolbar/django-debug-toolbar-3.2.4.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="A configurable set of panels that display debug information"
+HOMEPAGE="
+   https://pypi.org/project/django-debug-toolbar/
+   https://github.com/jazzband/django-debug-toolbar/";
+SRC_URI="
+   https://github.com/jazzband/django-debug-toolbar/archive/${PV}.tar.gz
+   -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc examples test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/django-1.11[${PYTHON_USEDEP}]
+   >=dev-python/sqlparse-0.2.0[${PYTHON_USEDEP}]
+"
+DEPEND="
+   test? (
+   $(python_gen_impl_dep sqlite)
+   ${RDEPEND}
+   )
+"
+
+distutils_enable_sphinx docs
+
+python_test() {
+   emake TEST_ARGS='-v 2 tests' test
+}
+
+python_install_all() {
+   if use examples; then
+   docinto examples
+   dodoc -r example/.
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+
+   distutils-r1_python_install_all
+}



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

2021-12-16 Thread Michał Górny
commit: 0fd7c55a1ffb19bac54a3c93bb46ab3f9f3219f2
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 16 08:08:56 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 16 08:46:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fd7c55a

dev-python/fonttools: Bump to 4.28.4

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

 dev-python/fonttools/Manifest|  1 +
 dev-python/fonttools/fonttools-4.28.4.ebuild | 54 
 2 files changed, 55 insertions(+)

diff --git a/dev-python/fonttools/Manifest b/dev-python/fonttools/Manifest
index a8b56b4b7d0d..1a70a6f6fdc3 100644
--- a/dev-python/fonttools/Manifest
+++ b/dev-python/fonttools/Manifest
@@ -1,3 +1,4 @@
 DIST fonttools-4.28.1.tar.gz 2654329 BLAKE2B 
4d1f2f5caea6ee3ae73a7791ad34da0c49353ef8b8f834c29e990c3c937b05bfdbf32474a4279c9f32f9fce78b4935ba9ba8434576b318b70736c1e14763eb70
 SHA512 
abcc8b182436feae8e1cfe263488c87f2351079d25a2211529ccf3401a9533f5322a7028d20ba0e31405ec3acad369b46d3b07bf8b4dfe16e43f48859fc5a29f
 DIST fonttools-4.28.2.tar.gz 2940111 BLAKE2B 
32f67f2c270520d9e2091052242e504b9a8e459a87f233e22f50bfe3d17309a09a3c7ad5da20a3411df1c7c58b790dd395535407fdeddb02e7391c28d8d08fa3
 SHA512 
0295c571e92e71f6467b06bd89afacae76861e374147a2051fe3f5323176c3f3458b977ba2ed25cadcdba9e55b325b6febc50bc9c539d8806471730a15faed47
 DIST fonttools-4.28.3.tar.gz 2944993 BLAKE2B 
bac7408759ae2854023d5e6f840eb34d431daf0e14ec9fd8d4ac2ecc4ea8e473456611c3531b9131035164f69ba2363a3835206d068b71d4a2ae6ec179d2a32d
 SHA512 
b90d05cedbd06f476c210f2961ebd11c64043785ef43fda2b81fd22126b12642ab63e51363bc22524bb18ee781fa9a8a71edb187b6c69fbf838e0c20f3c9ba0b
+DIST fonttools-4.28.4.tar.gz 2945369 BLAKE2B 
f178552aca7b41dcec1c03d2a7c3de17cdb5f4b2e057a75e196e78a098b9959a038a9a3b14ee8546d5ea12e3546c22d2a8d9b34a922c0822bf52f78bc03f4f54
 SHA512 
9ecdf4186e24a8a44c6010432d71f1689ebf8461a404dde71259eb4712c4987d94bbe31b33ad6943fb2e0105fc9f8e9032a94e6ccbb4ac01fe330bb700a39c63

diff --git a/dev-python/fonttools/fonttools-4.28.4.ebuild 
b/dev-python/fonttools/fonttools-4.28.4.ebuild
new file mode 100644
index ..b98e2fa9734d
--- /dev/null
+++ b/dev-python/fonttools/fonttools-4.28.4.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_REQ_USE="xml(+)"
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Library for manipulating TrueType, OpenType, AFM and Type1 fonts"
+HOMEPAGE="https://github.com/fonttools/fonttools/";
+SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~x64-macos"
+
+RDEPEND=">=dev-python/fs-2.4.9[${PYTHON_USEDEP}]"
+BDEPEND="
+   ${RDEPEND}
+   dev-python/cython[${PYTHON_USEDEP}]
+   test? (
+   app-arch/brotli[python,${PYTHON_USEDEP}]
+   app-arch/zopfli
+   )"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # When dev-python/pytest-shutil is installed, we get weird import 
errors.
+   # This is due to incomplete nesting in the Tests/ tree:
+   #
+   #   Tests/feaLib/__init__.py
+   #   Tests/ufoLib/__init__.py
+   #   Tests/svgLib/path/__init__.py
+   #   Tests/otlLib/__init__.py
+   #   Tests/varLib/__init__.py
+   #
+   # This tree requires an __init__.py in Tests/svgLib/ too, bug #701148.
+   touch Tests/svgLib/__init__.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+src_configure() {
+   DISTUTILS_ARGS=( --with-cython )
+}
+
+python_test() {
+   distutils_install_for_testing
+   # virtualx used when matplotlib is installed causing plot module tests 
to run
+   virtx epytest Tests fontTools
+}



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

2021-12-16 Thread Michał Górny
commit: c05ded9f8a6c8f55bd2b89e9c4d486490becbf4b
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 16 08:14:04 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 16 08:46:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c05ded9f

dev-python/rich: Bump to 10.16.1

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

 dev-python/rich/Manifest|  1 +
 dev-python/rich/rich-10.16.1.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-python/rich/Manifest b/dev-python/rich/Manifest
index bb9efa444564..9bcbe1a2a8e8 100644
--- a/dev-python/rich/Manifest
+++ b/dev-python/rich/Manifest
@@ -5,3 +5,4 @@ DIST rich-10.15.0.tar.gz 16279650 BLAKE2B 
c169ca3d9144349770a0baf56d6267d5ac2e85
 DIST rich-10.15.1.tar.gz 16279572 BLAKE2B 
e91a9d168d88c1d8db4b0901809c4da29d32b2dd582b0a7584a2f20cc60ff4418a95e593c9085babb948c0ffb4568da3b752e60d36adfc85ee704d7dd4dfc7e7
 SHA512 
9544f00eaddbb69cb95a16a0cd780acff38a49cdc6e35217e88ed462333e17b295dc5fdd3bf1ae25ab5e9100804e1d055b0d81bd0bca805e7b433238313f2edd
 DIST rich-10.15.2.tar.gz 16282858 BLAKE2B 
7fe05eb357e5137319764b0d751c3bc68f8545e391575a9a360b252c395714ecb8ad7b944e7c77e74990413cb6bfb2a6c6db0fb8e72eb098f91c8d5d86bc9f8a
 SHA512 
02e851cc9a72cb62d1826f82a5b8919a8911cf3dbdfe5f5443a89b2b7bc48c575dcf5ba63c17da60cf2ef9de3d036c7b68a845610be72af63d082d487c3b61c2
 DIST rich-10.16.0.tar.gz 16280103 BLAKE2B 
af66398a4bc6e3e5503418721906679dc6f964b6dcbb56195f64d0ef4f504d9e0002f8b727c4fba7b42dda8790a03bb12a85150b99d5294712e38dea2800f841
 SHA512 
48c9e4d0b733cf79e9bceac284ca3cf37c14f52c0f3590f08acd9b0ea791da0200753f3cbae13a619b9c42fdb1167d55724c80123e2935bf2ed7133a15639ac8
+DIST rich-10.16.1.tar.gz 16280385 BLAKE2B 
dda2e6a64f9ecfe99fdda3a2e24c6a859e25eca48ebc2af63dbea3c8b90f977e10253721e85b876165c9f51c52ceed057e77b08cf2c77c28de67b8a2c49c4617
 SHA512 
341aa3fdb7fe608d15c867eb50f36fcc250e041a256e4bee86f0c69e7e0f9239c84be88833dad56f05edeb09a734d64f423b9080bd13b88c3a59d958e8ff1f4c

diff --git a/dev-python/rich/rich-10.16.1.ebuild 
b/dev-python/rich/rich-10.16.1.ebuild
new file mode 100644
index ..1b1b101a6a98
--- /dev/null
+++ b/dev-python/rich/rich-10.16.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Python library for renrering rich text, tables, etc. to the 
terminal"
+HOMEPAGE="https://github.com/willmcgugan/rich";
+SRC_URI="https://github.com/willmcgugan/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv ~x86"
+
+RDEPEND="
+   dev-python/colorama[${PYTHON_USEDEP}]
+   dev-python/commonmark[${PYTHON_USEDEP}]
+   dev-python/pygments[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest
+
+python_test() {
+   epytest -p no:pytest-qt
+}
+
+pkg_postinst() {
+   optfeature "integration with HTML widgets for Jupyter" 
dev-python/ipywidgets
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/lazy-object-proxy/

2021-12-16 Thread Michał Górny
commit: 052856944fc1052c48e9a8ed7dd1f8d0f3b05e7e
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 16 08:09:54 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 16 08:46:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05285694

dev-python/lazy-object-proxy: Bump to 1.7.1

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

 dev-python/lazy-object-proxy/Manifest  |  1 +
 .../lazy-object-proxy-1.7.1.ebuild | 33 ++
 2 files changed, 34 insertions(+)

diff --git a/dev-python/lazy-object-proxy/Manifest 
b/dev-python/lazy-object-proxy/Manifest
index 1bd3170b5ef4..00843ad6a6d2 100644
--- a/dev-python/lazy-object-proxy/Manifest
+++ b/dev-python/lazy-object-proxy/Manifest
@@ -1,2 +1,3 @@
 DIST lazy-object-proxy-1.5.0.tar.gz 35938 BLAKE2B 
11e091538f4bcddd5acb39963572e30535b01227481affcb160d55b39c5b4548fef2da316efe483d6b0450e204126b957884dfb7a96727b0a00209addd6097cc
 SHA512 
8d594df743694f01b9710e55d8e88831d6ac2e81a925ad310f0c39d061f20115550c5adf1da40d0d7c4749eb3a7ffbbb6000ebbda3dbb445c9efa1d05ff37cc3
 DIST lazy-object-proxy-1.7.0.tar.gz 42441 BLAKE2B 
8652697cf80f4fca6a4ad83daee2fafb203b7c1a1375fa504aba731e4717d40f3b130cbfeffd642a7d76ae35ab5532aaa819566d8706b37504863e7b433906c3
 SHA512 
462e04efccba1462a09bec66bdfa47f3cb4d8fa746f66d7dada0e9436416c6f7948363d11eac95f8d8734d3296794899f28f123cb289565af85d3bc29a635c61
+DIST lazy-object-proxy-1.7.1.tar.gz 41995 BLAKE2B 
f3945b3ddc8335be184542e23eb823effe83262a80f048e92441d60bee2ace2f0c9b09fc00a7d356e91a66676361979bc10555dc24ac65e2fdbdfa9ba0cf9e02
 SHA512 
cf80f2e43795cef09c0a6dde32276d54f5d66a2cf017d3e815868ec9925d989f7256bbf3e416c4445d13e0c9241733029d9a99f2556258f59c2c5267b3c35391

diff --git a/dev-python/lazy-object-proxy/lazy-object-proxy-1.7.1.ebuild 
b/dev-python/lazy-object-proxy/lazy-object-proxy-1.7.1.ebuild
new file mode 100644
index ..0ee1172ea06c
--- /dev/null
+++ b/dev-python/lazy-object-proxy/lazy-object-proxy-1.7.1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+inherit distutils-r1
+
+DESCRIPTION="A fast and thorough lazy object proxy"
+HOMEPAGE="
+   https://github.com/ionelmc/python-lazy-object-proxy
+   https://pypi.org/project/lazy-object-proxy/
+   https://python-lazy-object-proxy.readthedocs.org/";
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+BDEPEND="
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # No need to benchmark
+   sed \
+   -e '/benchmark/s:test_:_&:g' \
+   -e '/pytest.mark.benchmark/d' \
+   -i tests/test_lazy_object_proxy.py || die
+   distutils-r1_python_prepare_all
+}



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

2021-12-16 Thread Michał Górny
commit: 5e8bfa1d3146bb75b69391bf2f80ccfb8b754837
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 16 08:14:40 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 16 08:46:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e8bfa1d

dev-python/pylama: Bump to 8.3.6

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

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

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
index 111b62048ac5..273a7f03f942 100644
--- a/dev-python/pylama/Manifest
+++ b/dev-python/pylama/Manifest
@@ -3,3 +3,4 @@ DIST pylama-8.0.4.tar.gz 34064 BLAKE2B 
e6ec937b7716d8a64c19e71b370e557a30d04d908
 DIST pylama-8.0.6.tar.gz 34223 BLAKE2B 
690a0a1197f6512e9511083aa079843f2ca99c9bdb5d74756531db79f7d39e8e0f60a0955b24bc7739edce0376eb79821a796978fb2365789a97628f03f240f8
 SHA512 
5bc75e5b2a0b141dbe2ca993d13833914980c735b84f3df766bf750909af1eeaba0d554845d8c09f0d8186ff48c8330d9ffa5b565a577ef6506f32672a2c9209
 DIST pylama-8.3.3.tar.gz 36292 BLAKE2B 
e9ed2156c90af1ef33b8a3875dffbe6ee939e70b3a35e0bd9c6f29d5de6ef929e73cf7eda773f6693fdce96e763e81f336fc983a32f9cfa8d124441d5d34b060
 SHA512 
57db11480752a650dc2871bd8be139492cd5273c3770aefab160855d601e524a24754cf3b4e60973ce00072c1025749c7f9d9d39a5447ca27ab60979e743a72d
 DIST pylama-8.3.5.tar.gz 36117 BLAKE2B 
6ae876b7e1e0dbfba08c9b7460cbab129b1b43f79a274c191fb7710966fac4b100b1e1c81ac3a440c33b9ed076fb3a60eb5d732f484fc7150c096a7207c3b4d4
 SHA512 
8be5aa0490ad7e08e6def974c9b8c83c457679dfbdb2b7c161c71fc3f5f68b7e40c96ee41a57d1a1b8689356e22a028aa22400c747c17aa520b5be3e219569e7
+DIST pylama-8.3.6.tar.gz 36190 BLAKE2B 
f0c9944d3aa205c9f52fdfab6b47ad5ad08f1865db22eef20add0652fcb4355f878026aad9f1babbfcb4f98c13bc5cbaa069d9d7b5c7a775d994a8952f8a8cc5
 SHA512 
c279f3005e354be448f42addcfeae6025e1dd4acf84e5de0c3ae707ceac4f98e43a07f43be347b26bfb8db4167945db1db547ed7bd9eb73ca78bbc92d26fdfff

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
new file mode 100644
index ..fab10b0885f6
--- /dev/null
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Code audit tool for python"
+HOMEPAGE="https://github.com/klen/pylama";
+SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~mips ~x86"
+
+RDEPEND="
+   >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]
+   >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}]
+   >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}]
+   >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/eradicate[${PYTHON_USEDEP}]
+   dev-python/mypy[${PYTHON_USEDEP}]
+   dev-python/pylint[${PYTHON_USEDEP}]
+   dev-python/radon[${PYTHON_USEDEP}]
+   dev-vcs/git
+   )
+"
+
+distutils_enable_sphinx docs
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # not packaged
+   tests/test_linters.py::test_quotes
+   tests/test_linters.py::test_vulture
+)



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

2021-12-16 Thread Michał Górny
commit: 6ad5d2b88bac12959260e65956ac089e4a7f56c5
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 16 08:12:48 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 16 08:46:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ad5d2b8

dev-python/nuitka: Bump to 0.6.18.3

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

 dev-python/nuitka/Manifest   |  1 +
 dev-python/nuitka/nuitka-0.6.18.3.ebuild | 48 
 2 files changed, 49 insertions(+)

diff --git a/dev-python/nuitka/Manifest b/dev-python/nuitka/Manifest
index 99f4ddf78673..2ca182924964 100644
--- a/dev-python/nuitka/Manifest
+++ b/dev-python/nuitka/Manifest
@@ -2,4 +2,5 @@ DIST Nuitka-0.6.17.6.tar.gz 3148827 BLAKE2B 
4c898cac6ae5934e45ecfd37222670d7665a
 DIST Nuitka-0.6.17.7.tar.gz 3150990 BLAKE2B 
130c98e0499380591f3d3a4d6acabd396749624eca7a0ddcaa997e27ce0ae05d22230edb4fc7284b89dd3bfad1ac16092b7db5ae7c7b7e7c7a41c1f5a16ea8f3
 SHA512 
08f99cafbdedaca2df2967f452038a69827f291ab825c31231b434e80f56da0698b458f129c2639d2820257c7dc86e306b507742d4d695002d5a64ab8747cb3e
 DIST Nuitka-0.6.18.1.tar.gz 3688411 BLAKE2B 
4ddc98cfb34ff825c628200a72c8cb671a1053c7085a542bf49c96617155c69424b1de924cf6fb7fdaf5a5a52049781f687c1cda909fe4309410296e79f34435
 SHA512 
3638e6c8dd25a19f69eec3bafed22d758a1ec6c15d0491f91d9c6e5570014b87f6efd6d8944a3e85ade314f49128af8cee15b745e26660cfc466fc22bba3e717
 DIST Nuitka-0.6.18.2.tar.gz 3690219 BLAKE2B 
416e23500ce7739858e6393eef9783a385229509666c8fd814ce9b4110e77d69d2e7167e89d7db262ee98f60b48f43a07ffec76185154dbc50460623ac84e125
 SHA512 
7fa6cf48843d45b1d7a1cad11934b5cca2288939e07c12e6916b9c4a37e65d785599ada9e0001faa4117c50e4161fb54253fda27f186f5a660f59810b7254658
+DIST Nuitka-0.6.18.3.tar.gz 3690647 BLAKE2B 
7ab4fd2b788a63819b3cbd146e8508d781beb14eec3f0fc724fb4eb0e4805fb17917ab685ab2e28ea50d06c4235be1aa05a694b19e1a2cafd8542d8133aa3496
 SHA512 
b2aa249dff42c17e0f1c6a33e57cb5e40e17f4043c54467af68071e674ccbe01fd446bfce1e4f0488fd0094561c51ed9f1322e73b049ef19c3f2a9d4f0a6fc44
 DIST Nuitka-0.6.18.tar.gz 3687825 BLAKE2B 
f2c5655c610083065cc205c0a92ff9c57edfc87a479592f435c3dd194e2d6d71ff0ee9866bc97f222b3936190a4420e7d69cf9413b5b2a5e9439448dda82004f
 SHA512 
df4c81d890ce9c5dc24e648f65137d4bb91dcb92917859976a3400ace6c297f985cee4932b50cb3c2aedb2eaa806be7529a98a75a32fe3f59ec718ed3281003b

diff --git a/dev-python/nuitka/nuitka-0.6.18.3.ebuild 
b/dev-python/nuitka/nuitka-0.6.18.3.ebuild
new file mode 100644
index ..d42d1b9e532c
--- /dev/null
+++ b/dev-python/nuitka/nuitka-0.6.18.3.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..9} )
+inherit distutils-r1 flag-o-matic optfeature
+
+DESCRIPTION="Python to native compiler"
+HOMEPAGE="https://www.nuitka.net";
+SRC_URI="https://nuitka.net/releases/${P^}.tar.gz";
+S="${WORKDIR}/${P^}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-util/scons[${PYTHON_USEDEP}]"
+BDEPEND="
+   ${RDEPEND}
+   test? ( dev-util/ccache )
+"
+
+DOCS=( Changelog.pdf Developer_Manual.pdf README.pdf )
+
+distutils-r1_src_prepare() {
+   # remove vendored version of SCons that is Python2 only
+   # this should be removed when upstream removes support for Python2
+   rm -vR "${S}/${PN}/build/inline_copy/lib/scons-2.3.2/SCons"  || die
+   eapply_user
+}
+
+python_install() {
+   distutils-r1_python_install
+   python_optimize
+   doman doc/nuitka3.1 doc/nuitka3-run.1
+}
+
+python_test() {
+   append-ldflags -Wl,--no-warn-search-mismatch
+   ./tests/basics/run_all.py search || die
+}
+
+pkg_postinst() {
+   optfeature "support for stand-alone executables" app-admin/chrpath
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/google-api-core/

2021-12-16 Thread Michał Górny
commit: 1f418516f1e21546396c7b524578778b184ed474
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 16 08:08:05 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 16 08:46:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f418516

dev-python/google-api-core: Bump to 2.3.1

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

 dev-python/google-api-core/Manifest|  1 +
 .../google-api-core/google-api-core-2.3.1.ebuild   | 50 ++
 2 files changed, 51 insertions(+)

diff --git a/dev-python/google-api-core/Manifest 
b/dev-python/google-api-core/Manifest
index 8fb2f11472a6..a0eb2b496d77 100644
--- a/dev-python/google-api-core/Manifest
+++ b/dev-python/google-api-core/Manifest
@@ -1,2 +1,3 @@
 DIST google-api-core-2.2.2.tar.gz 140701 BLAKE2B 
4e90db4311fc88d3fc8e29d6d8f11ae1424000c0e293f219d679984ec4a2c1bbbaf72d734b937d6916302f3a9a8b1cb369dd719972f4eb2d3f7264bf16ffbc7f
 SHA512 
9b307c8ebd224b7614bd1d9f48d752852929b726c04df24f81e0b1b601f9a14d10654e9ef53b6a5ab677e8e57256f87b8683fa4dde0585f9c2e6d313d29d53fe
 DIST google-api-core-2.3.0.tar.gz 155449 BLAKE2B 
4aba324a18c8b6f9b9afd223688771fc6a57ee71f550736cfb5c9fac861a6a84369eb4e6ebec0664241590624c52cd0bcc8762afeb230debc16f0849fde049bf
 SHA512 
f85c9279822ab818aa9d183bc930e61be9cfb2e65ab6a46fcd8aaab2531b4258c6247b02fb8f4f29841d9ab13ca33e129198589cbc37b3c77677a72e72635285
+DIST google-api-core-2.3.1.tar.gz 156495 BLAKE2B 
fdc7f7d8457b96947181eee9992c5e51bbd18f9740a0415a32d4d0f45ade9c0c784e01f0aa78fe0dbbf3717ee860e78d6b4d1c5f154361afbf919abe033e5380
 SHA512 
ab1c333727e666f920d81186e6213d440052021d952efcb47eac487d10ab33a2e1116278925e54bfb3468de70c18837a0e241ba3426af09728ea59a725789a29

diff --git a/dev-python/google-api-core/google-api-core-2.3.1.ebuild 
b/dev-python/google-api-core/google-api-core-2.3.1.ebuild
new file mode 100644
index ..f67642816e93
--- /dev/null
+++ b/dev-python/google-api-core/google-api-core-2.3.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+inherit distutils-r1
+
+DESCRIPTION="Core Library for Google Client Libraries"
+HOMEPAGE="https://github.com/googleapis/python-api-core/
+   https://googleapis.dev/python/google-api-core/latest/index.html";
+SRC_URI="https://github.com/googleapis/${PN//google/python}/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
+S="${WORKDIR}/${P//google/python}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND="
+   dev-python/namespace-google[${PYTHON_USEDEP}]
+   dev-python/protobuf-python[${PYTHON_USEDEP}]
+   dev-python/googleapis-common-protos[${PYTHON_USEDEP}]
+   >=dev-python/google-auth-1.25.0[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.18.0[${PYTHON_USEDEP}]
+   

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

2021-12-16 Thread Pacho Ramos
commit: 7196487a84197faf119aeda975350cedc64b256b
Author: Pacho Ramos  gentoo  org>
AuthorDate: Thu Dec 16 08:46:32 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Thu Dec 16 08:46:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7196487a

sci-libs/libcifpp: Bump to 3.0.0

Closes: https://bugs.gentoo.org/823914
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Pacho Ramos  gentoo.org>

 sci-libs/libcifpp/Manifest  |  2 ++
 sci-libs/libcifpp/libcifpp-3.0.0.ebuild | 31 +++
 2 files changed, 33 insertions(+)

diff --git a/sci-libs/libcifpp/Manifest b/sci-libs/libcifpp/Manifest
index e3058c6df4bb..3f5a40d881c5 100644
--- a/sci-libs/libcifpp/Manifest
+++ b/sci-libs/libcifpp/Manifest
@@ -1,2 +1,4 @@
 DIST components-2.0.4.cif.gz 81445161 BLAKE2B 
80d538109a716af0273d109151a434e68cc1be16dc3a21653a4b78dd9719c93f59259146a6e980fbab4484a6b41d32064a276566411e23bf56b0a42b6dacf408
 SHA512 
a154305f1d3ba2df24ca3859b0a7d1a81cae79c927a708a531bee1689b0b65752fd68032d12335afa4b6b2f5969e003365abd49bed729d740c0f3055328f08ad
+DIST components-3.0.0.cif.gz 82114845 BLAKE2B 
9934110efb9848e8b71e75173bf9c8cfeec1daeef45648296dbcc41641308b9c4e6ff2ef16d86b44ebdb0a200fe6f2a8f13dadac1cce4d8ea2a2961927bf4c94
 SHA512 
625478378d236ec46130d83545c1b0fbdfb5e9cada3834ac14d4b052e9e460e73523e4438b3356a78d64f569e12cd4c13439b5de56462a10d5c11d0de09d52b8
 DIST libcifpp-2.0.4.tar.gz 960402 BLAKE2B 
4650478b187ece13d38c0a5f13c94e6098e3271088a7dd19d72645d52d085304a463387f9d1b1edacbcd03a051b32fbf2384e3287d5ff4835091f2eae2fe2805
 SHA512 
f4a6b126b376b245d399508e9bc360bcf0451e6bd3cad3127567dd95afb1965c8eb764bb9b0bf26be26695fc5636e509709bdbc9f8c9a00939d049c1634dcae0
+DIST libcifpp-3.0.0.tar.gz 950896 BLAKE2B 
8aad3ebea5cc82c2615b6dc6a8a50654375dd9f58ff6c27306bf1415d9658f29f196c5ea9bf0e4f913400b3eba48f19bc11dd97c84b59cf2df94f87afb06d5b7
 SHA512 
507abed829e4d5194eb22fe73d261295a9814577d7bc53743731e7a1ccb032f763f4bfa0e1b23665d52fabbfa38baca20e6373c14db029705427b6fa773df976

diff --git a/sci-libs/libcifpp/libcifpp-3.0.0.ebuild 
b/sci-libs/libcifpp/libcifpp-3.0.0.ebuild
new file mode 100644
index ..b2fd2f6f962e
--- /dev/null
+++ b/sci-libs/libcifpp/libcifpp-3.0.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit cmake
+
+DESCRIPTION="Code to work with mmCIF and PDB files"
+HOMEPAGE="https://github.com/PDB-REDO/libcifpp";
+SRC_URI="
+   https://github.com/PDB-REDO/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz
+   ftp://ftp.wwpdb.org/pub/pdb/data/monomers/components.cif.gz -> 
components-${PV}.cif.gz
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND=">=dev-libs/boost-1.70:=[threads(+)]"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   cp "${WORKDIR}"/components-${PV}.cif data/components.cif || die
+
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=ON
+   -DCIFPP_BUILD_TESTS="$(usex test)"
+   )
+   cmake_src_configure
+}



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

2021-12-16 Thread Denis Reva
commit: 7dac5c2206c41dd7855db2b5ef9830d7ee297c62
Author: Denis Reva  gmail  com>
AuthorDate: Thu Dec 16 08:47:25 2021 +
Commit: Denis Reva  gmail  com>
CommitDate: Thu Dec 16 08:47:52 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7dac5c22

media-libs/amdvlk: See #665590

I've burned out trying to make it buildable
https://bugs.gentoo.org/665590#c73

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

 media-libs/amdvlk/Manifest | 14 ---
 ...dvlk-2021.1.2.ebuild => amdvlk-2021.4.2.ebuild} | 44 +++---
 2 files changed, 29 insertions(+), 29 deletions(-)

diff --git a/media-libs/amdvlk/Manifest b/media-libs/amdvlk/Manifest
index 9e894294b..e329dd756 100644
--- a/media-libs/amdvlk/Manifest
+++ b/media-libs/amdvlk/Manifest
@@ -1,19 +1,21 @@
 DIST AMDVLK-v-2020.Q4.5.tar.gz 32258 BLAKE2B 
e2acdbb87c0a53b45cbbceeda0b7a6432db5713891dc35d9c3c3932e20799fe0ab219de9f2d042ebd403c1904c5a1b0bdf23f8d1a033b7c6d7a17e7c65132373
 SHA512 
98158c82c08657d130d462f1e5e70f6c77749eb0f139c3b392984c1b44eed0828aab71c580747799a734fa0d581720c5b70779c4c5f5bd3dc269b128df95cec8
 DIST AMDVLK-v-2020.Q4.6.tar.gz 32275 BLAKE2B 
f7bb0e5df49df9fe5d0a2f5bb169a2fdec7c36548f53c5bd23702465373a754aa43659a2fc7c4b57882ffe64be4438911dcda3766cba26d5a9c08a4e5816e66f
 SHA512 
be8b28ef15e9e7941c97296342393a645095617b96f189939be3885f1e430d7ee683868ec0b1aa6c9642f2572aa066f638b3f770bc425dcb5b284dbf655b32f3
-DIST AMDVLK-v-2021.Q1.2.tar.gz 32689 BLAKE2B 
13269d8cf77c4dd808c160cce50b03160c6f639a65fe69bafb654f2e5045b595a17c8dc0e6e8a5e4801bcfa1818d0b4a4f3099ba4475ff627b2ec01c625e32fd
 SHA512 
5f3a3cc408b18a5b6f94f816e0af14b499367097888bc28acd17f9ef4630f7f7fe9753d43855b4f9615f0bd73c0101151b2983174db73fe2b3477408ebce5dd2
+DIST AMDVLK-v-2021.Q4.2-CWPack-39f8940199e60c44d4211cf8165dfd12876316fa.tar.gz 
39581 BLAKE2B 
a3cf15d6525a886f5b95e7c3de7d283d4c637266c36312d7b44b7e240aa1b970ea1ee59e421e0fed4ad581ffcf5796cf91cf92162ac380b4fea9532e5c0ca28c
 SHA512 
d642e693856df0808f499e34f36204b748eb969d6eb5a51138d7f894d78f92c955b89b743fde3b8f28904e407e7694a6092b85f3a91fc68c37477c57e1b59d3c
+DIST 
AMDVLK-v-2021.Q4.2-MetroHash-3c566dd9cda44ca7fd97659e0b53ac953f9037d2.tar.gz 
11804 BLAKE2B 
683ca8a9e4b93a945dc455c5cb78a2c6dd9dbdf22432ea9f447a6d2d1b05399cc57b621d1e304dc5695ab936a212a2df110e47ec9141764f4eaa2b184a01f4ba
 SHA512 
ae4fcf09a097ceddfcc9f0b721cae0018fff8a0360d8fbbb195d2a8c2809cf8f3c01090ba8129593d89fe1c041224e42a49e7a1c66f20e60958a5373f6d9027f
+DIST AMDVLK-v-2021.Q4.2-llpc-80b124752f5f689b21d46a3fd459b2df659de187.tar.gz 
2259366 BLAKE2B 
a304f87ddbfd3dbc9a5599ffa43c85b2615b185368543bb82672239a1834ea3ecc919f7b7ed34718229a93e3983dc09e5530e6449f128bf53b5eba14365b8699
 SHA512 
3307846069f17478daeb4174377cf37d1e490137cdfaf738d5b15a4ce017b102699bad004bb17ce9e9efeb89190693f2fd24b73f64d81b43a89de9082e4fcb6e
+DIST 
AMDVLK-v-2021.Q4.2-llvm-project-63581e1504f3854df7d1ea7aab6af935da1b515d.tar.gz 
150625232 BLAKE2B 
07b7a6ad6f0a7443ba81d029191bbd8a8f94abf3445697f96a65df0ba17bcc2b21af1bcad669210e6049e8371da9e0908032f8490d00ba11a06045b86ba21ada
 SHA512 
651267c622e8e9d52a4732d7e7414e8c5b94ba98cd7d1ab59a5e36e69a26afbad98bd36c0cfd9a71c9b5e354a255c9807ebfe11d2105a1992402e576c18f7128
+DIST AMDVLK-v-2021.Q4.2-pal-61409c1cea19a2ca5ad00461b1e75b3ab46c4389.tar.gz 
8773968 BLAKE2B 
e79dda192865235831f07069deafe7b17113f415436026cff81ecae45192e725c45ea8d65ee910a08f3c23fc74be0915f19e43b9b9580d5d4a91a624b6b5c344
 SHA512 
3a56fa25c10c9b99aa77d3a5bef09817c48ef62d9b03bac0d7216099404120496b7fb13d979e6ded5b406ad59b1472d54729d75f6025b4469aa8343de8604c1c
+DIST AMDVLK-v-2021.Q4.2-spvgen-0aa19873514a8272dfdc5cb8861859a52f5de503.tar.gz 
20466 BLAKE2B 
7cce36d8f5a6952b4eb49a5c7bc7b5e5ffac268d6ba6e852f5a959004f5626d27f06db6ae3d318a12ca164406d042db09df610f09e664de358aadf3e20b6d604
 SHA512 
1cc221f8665ed35b4ea867ee0b1059f81d9b7009b847e4795d10817f2e357330b07e254118f73392f4bf6ee74e9b61f8961719564203cf43ee9917006aa0b802
+DIST AMDVLK-v-2021.Q4.2-xgl-da1a583a51c69c115f9144b68ec2bdf5b6519056.tar.gz 
960709 BLAKE2B 
825e7d349da18e8a0beb42c4125bb208bd2e62780d97d5131e76e9ddc08dc6d60b2d78455aa245bb4172bb7ee7d64084307e48df2c18598cee638911fce8074c
 SHA512 
a626459503b50a511ac04f4973036468336e9d55baecda5a84165f7209d867291ef35a9292734f38a53d13aaf70cd46fc8e3068fc3748d80278fcf3c5f8a54bb
+DIST AMDVLK-v-2021.Q4.2.tar.gz 30012 BLAKE2B 
27d11126d54df299ce702adb7c66bd0aa8a905074dac0e2cd8560f2fa9c39deafd16885c15ae9df4f70f4008a446d8e90e1dcc50514afa7ab0a874d12b2e5334
 SHA512 
15fb89bb78039c36435fb9534588f08e0e0e6e6099d5e803e9bacafef8b5e81eedc19e0fcc7cd7ca7dad919397cab8b87b30b22950ae32945a5465da542d6d99
 DIST CWPack-7387247eb9889ddcabbc1053b9c2052e253b088e.tar.gz 24538 BLAKE2B 
76c4da32ea06df355f7e8f77a14c185b2ccab2ce2762988f04a04d65b674e089d4fc27206e744f89b4bd84c9d7226d324414a31941303290e7f574e9d64756cf
 SHA512 
38378ef325e42a7356511c2fc06b6c896581968079e85c4b924a1768d895feecaf1eb8fd65afb59bed0f66e0547104d67c2deb9f

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

2021-12-16 Thread Bernard Cafarelli
commit: 6d3b5cc7dc347a709437510a6a1f1c89a597563a
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Dec 16 08:55:22 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Dec 16 08:55:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d3b5cc7

net-misc/owncloud-client: 2.9.2.6206 bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli  gentoo.org>

 net-misc/owncloud-client/Manifest  |  1 +
 .../owncloud-client-2.9.2.6206.ebuild  | 69 ++
 2 files changed, 70 insertions(+)

diff --git a/net-misc/owncloud-client/Manifest 
b/net-misc/owncloud-client/Manifest
index 8773e5ac937f..4ca16d38de32 100644
--- a/net-misc/owncloud-client/Manifest
+++ b/net-misc/owncloud-client/Manifest
@@ -1,2 +1,3 @@
 DIST ownCloud-2.9.0.5150.tar.xz 5775740 BLAKE2B 
c43044dd383d66dd212bcd3efd818fad289ac51b082eaa7b47db03778cdfc87725efbdffc567e416bf5444d7e58f795606f093a782ca783cefc2d4994df3fb2a
 SHA512 
c183b2d4340dc8880d2bf31aedaffb96da518fdb60f1e8c857ee2f8d02c36cb69552475fdbf536f7ecebd9af2a7732f52a9e02f20450452c78d346910be3cf57
 DIST ownCloud-2.9.1.5500.tar.xz 5787048 BLAKE2B 
6f7df0c1ca13e6074bbd75caaee838ddb822f9284a4f5cc95e1b2c1432adf2969e2413607bebc1542d4bc7790bd6e61edfba758d2205a23fbede6873b7e22316
 SHA512 
5c78cd0318b7cd35f32721cf364d6e807d32eb1f3651e7f22ff3f3c7737967193ad089062965b3dcee24c23c14cc0d7acdfc95094f4f90f8aaf718f45f22e18a
+DIST ownCloud-2.9.2.6206.tar.xz 5759996 BLAKE2B 
c328ea261a4fddecf93837dbcac01aab0971542d8dfb3f5b0a32a8432ca0e0904c3f4fc81c5c7811da8b3af64b58e929c055e7cec0649f00049e037372948eec
 SHA512 
d075a11ee92aa9771c631a766feddfa1a70907d7d341b58043e1ba96ac52786a6a750b15c2f9b7a0992fe02a45586cc3445755dc9df4cd267e72f070df0f

diff --git a/net-misc/owncloud-client/owncloud-client-2.9.2.6206.ebuild 
b/net-misc/owncloud-client/owncloud-client-2.9.2.6206.ebuild
new file mode 100644
index ..ff923bcd1dde
--- /dev/null
+++ b/net-misc/owncloud-client/owncloud-client-2.9.2.6206.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake xdg
+
+MY_PN="ownCloud"
+DESCRIPTION="Synchronize files from ownCloud Server with your computer"
+HOMEPAGE="https://owncloud.org/";
+SRC_URI="https://download.owncloud.com/desktop/${MY_PN}/stable/${PV}/source/${MY_PN}-${PV}.tar.xz";
+
+LICENSE="CC-BY-3.0 GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="dolphin gnome-keyring nautilus test"
+
+COMMON_DEPEND=">=dev-db/sqlite-3.4:3
+   dev-libs/qtkeychain[gnome-keyring?,qt5(+)]
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtxml:5
+   sys-fs/inotify-tools
+   dolphin? (
+   kde-frameworks/kcoreaddons:5
+   kde-frameworks/kio:5
+   )
+   nautilus? ( dev-python/nautilus-python )"
+
+RDEPEND="${COMMON_DEPEND}"
+DEPEND="${COMMON_DEPEND}
+   dev-qt/linguist-tools:5
+   kde-frameworks/extra-cmake-modules
+   test? (
+   dev-util/cmocka
+   dev-qt/qttest:5
+   )"
+
+RESTRICT="!test? ( test )"
+
+S=${WORKDIR}/${MY_PN}-${PV}
+
+src_prepare() {
+   # Keep tests in ${T}
+   sed -i -e "s#\"/tmp#\"${T}#g" test/test*.cpp || die
+
+   if ! use nautilus; then
+   pushd shell_integration > /dev/null || die
+   cmake_comment_add_subdirectory nautilus
+   popd > /dev/null || die
+   fi
+   cmake_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc
+   -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
+   -DBUILD_SHELL_INTEGRATION_DOLPHIN=$(usex dolphin)
+   -DBUILD_TESTING=$(usex test)
+   )
+
+   cmake_src_configure
+}



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

2021-12-16 Thread Andrew Ammerlaan
commit: 18225a5960b019c589ee7f265c2ba9943ec4ea3d
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 09:07:33 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 09:08:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18225a59

x11-libs/qwt: build with MOC_INCLUDE=1

also add a missing doc dep

Closes: https://bugs.gentoo.org/829301
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 x11-libs/qwt/{qwt-6.2.0.ebuild => qwt-6.2.0-r1.ebuild} | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/x11-libs/qwt/qwt-6.2.0.ebuild b/x11-libs/qwt/qwt-6.2.0-r1.ebuild
similarity index 97%
rename from x11-libs/qwt/qwt-6.2.0.ebuild
rename to x11-libs/qwt/qwt-6.2.0-r1.ebuild
index 1e6aff9a96a5..c2bc73d2417c 100644
--- a/x11-libs/qwt/qwt-6.2.0.ebuild
+++ b/x11-libs/qwt/qwt-6.2.0-r1.ebuild
@@ -6,6 +6,7 @@ EAPI=8
 DOCS_BUILDER="doxygen"
 DOCS_DIR="doc"
 DOCS_CONFIG_NAME="Doxyfile"
+DOCS_DEPEND="media-gfx/graphviz"
 
 inherit qmake-utils docs
 
@@ -62,6 +63,7 @@ src_prepare() {
 
cat > qwtbuild.pri <<-EOF || die
QWT_CONFIG += qt warn_on thread release no_keywords
+   DEFINES += QWT_MOC_INCLUDE=1
EOF
 
echo "QWT_CONFIG += QwtDll" >> qwtconfig.pri



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

2021-12-16 Thread Conrad Kostecki
commit: 8324feb1a645a78e4b1d2b96bd02d21a87a06819
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Thu Dec 16 09:58:07 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Thu Dec 16 09:59:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8324feb1

net-wireless/unifi: add 6.5.55

This releases fixes CVE-2021-45046.

Bug: https://bugs.gentoo.org/828853
Signed-off-by: Conrad Kostecki  gentoo.org>

 net-wireless/unifi/Manifest|  1 +
 net-wireless/unifi/unifi-6.5.55.ebuild | 89 ++
 2 files changed, 90 insertions(+)

diff --git a/net-wireless/unifi/Manifest b/net-wireless/unifi/Manifest
index f0ea86e993d5..2f716cc3aaa6 100644
--- a/net-wireless/unifi/Manifest
+++ b/net-wireless/unifi/Manifest
@@ -1 +1,2 @@
 DIST unifi-6.5.54.zip 157798500 BLAKE2B 
c49d8f6d1c33605fc29304d30895c6ddd19b8862a89fe792eb384964a40f836b623c99cc0f71525752f285f05753eda778cdec97bc9c0ef8962bb96b24984601
 SHA512 
dffafad544f40b0ac921d7be2223640ff9ec93f5b3e913a3028e393aa669a936f7789e58d5018d3452e902712090f00f97574e8c37aa384d509638415a9ed8b0
+DIST unifi-6.5.55.zip 157805689 BLAKE2B 
09a7b69143478d0b81dd6f7be1746b1a35cd00ee034471c512d04e4f91aa02688871857edf3c0ef538e601aaf8eccdd0c55193a9bde10924ddeff1fd333da355
 SHA512 
c2f677de819268366d65622238c1b8d6d8abcd5e06d6f1f635d9755573eff5a6aca0c84298a111b0da5e80bade8132e05339035edde3cc5fc08834f2d6c4b26e

diff --git a/net-wireless/unifi/unifi-6.5.55.ebuild 
b/net-wireless/unifi/unifi-6.5.55.ebuild
new file mode 100644
index ..707826628a0b
--- /dev/null
+++ b/net-wireless/unifi/unifi-6.5.55.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Set this var for any releases except stable
+RC_SUFFIX="-1d0581c00d"
+
+inherit systemd
+
+DESCRIPTION="A Management Controller for Ubiquiti Networks UniFi APs"
+HOMEPAGE="https://www.ubnt.com";
+SRC_URI="https://dl.ui.com/unifi/${PV}${RC_SUFFIX}/UniFi.unix.zip -> ${P}.zip"
+S="${WORKDIR}/UniFi"
+
+KEYWORDS="-* amd64 ~arm64"
+LICENSE="Apache-1.0 Apache-2.0 BSD-1 BSD-2 BSD CDDL EPL-1.0 GPL-2 LGPL-2.1 
LGPL-3 MIT ubiquiti"
+SLOT="0/$(ver_cut 1-2)"
+IUSE="systemd"
+RESTRICT="bindist mirror"
+
+RDEPEND="
+   acct-group/unifi
+   acct-user/unifi
+   dev-db/mongodb
+   virtual/jre:1.8
+"
+
+BDEPEND="app-arch/unzip"
+
+DOCS=( "readme.txt" )
+
+QA_PREBUILT="usr/lib/unifi/lib/native/Linux/x86_64/*.so"
+
+src_prepare() {
+   # Remove unneeded files Mac and Windows
+   rm -r lib/native/{Mac,Windows} || die
+
+   if [[ ${CHOST} != aarch64* ]]; then
+   rm -r lib/native/Linux/aarch64 || die "Failed in removing 
aarch64 native libraries"
+   fi
+   if [[ ${CHOST} != armv7* ]]; then
+   rm -r lib/native/Linux/armv7 || die "Failed in removing armv7 
native libraries"
+   fi
+   if [[ ${CHOST} != x86_64* ]]; then
+   rm -r lib/native/Linux/x86_64 || die "Failed in removing x86_64 
native libraries"
+   fi
+
+   if [[ ${CHOST} == aarch64* ]]; then
+   if ! use systemd; then
+   rm lib/native/Linux/aarch64/libubnt_sdnotify_jni.so || 
die
+   fi
+   fi
+   if [[ ${CHOST} == armv7* ]]; then
+   if ! use systemd; then
+   rm lib/native/Linux/armv7/libubnt_sdnotify_jni.so || die
+   fi
+   fi
+   if [[ ${CHOST} == x86_64* ]]; then
+   if ! use systemd; then
+   rm lib/native/Linux/x86_64/libubnt_sdnotify_jni.so || 
die
+   fi
+   fi
+
+   default
+}
+
+src_install() {
+   insinto /usr/lib/unifi
+   doins -r bin dl lib webapps
+
+   diropts -o unifi -g unifi
+   keepdir /var/lib/unifi/{conf,data,run,tmp,work} /var/log/unifi
+
+   for symlink in conf data run tmp work; do
+   dosym ../../../var/lib/unifi/${symlink} 
/usr/lib/unifi/${symlink}
+   done
+   dosym ../../../var/log/unifi /usr/lib/unifi/logs
+
+   newinitd "${FILESDIR}"/unifi.initd-r1 unifi
+   systemd_dounit "${FILESDIR}"/unifi.service
+
+   newconfd "${FILESDIR}"/unifi.confd unifi
+
+   echo 'CONFIG_PROTECT="/var/lib/unifi"' > "${T}"/99unifi || die
+   doenvd "${T}"/99unifi
+
+   einstalldocs
+}



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

2021-12-16 Thread Conrad Kostecki
commit: 4cef2a8d644d8e4f2f8c82e1b8c033ddc04e9421
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Thu Dec 16 10:01:02 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Thu Dec 16 10:01:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cef2a8d

net-wireless/unifi: drop 6.5.54-r1

Bug: https://bugs.gentoo.org/828853
Signed-off-by: Conrad Kostecki  gentoo.org>

 net-wireless/unifi/Manifest   |  1 -
 net-wireless/unifi/unifi-6.5.54-r1.ebuild | 89 ---
 2 files changed, 90 deletions(-)

diff --git a/net-wireless/unifi/Manifest b/net-wireless/unifi/Manifest
index 2f716cc3aaa6..843df77febff 100644
--- a/net-wireless/unifi/Manifest
+++ b/net-wireless/unifi/Manifest
@@ -1,2 +1 @@
-DIST unifi-6.5.54.zip 157798500 BLAKE2B 
c49d8f6d1c33605fc29304d30895c6ddd19b8862a89fe792eb384964a40f836b623c99cc0f71525752f285f05753eda778cdec97bc9c0ef8962bb96b24984601
 SHA512 
dffafad544f40b0ac921d7be2223640ff9ec93f5b3e913a3028e393aa669a936f7789e58d5018d3452e902712090f00f97574e8c37aa384d509638415a9ed8b0
 DIST unifi-6.5.55.zip 157805689 BLAKE2B 
09a7b69143478d0b81dd6f7be1746b1a35cd00ee034471c512d04e4f91aa02688871857edf3c0ef538e601aaf8eccdd0c55193a9bde10924ddeff1fd333da355
 SHA512 
c2f677de819268366d65622238c1b8d6d8abcd5e06d6f1f635d9755573eff5a6aca0c84298a111b0da5e80bade8132e05339035edde3cc5fc08834f2d6c4b26e

diff --git a/net-wireless/unifi/unifi-6.5.54-r1.ebuild 
b/net-wireless/unifi/unifi-6.5.54-r1.ebuild
deleted file mode 100644
index 4f62f0ff789c..
--- a/net-wireless/unifi/unifi-6.5.54-r1.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# Set this var for any releases except stable
-RC_SUFFIX="-3b5d40203c"
-
-inherit systemd
-
-DESCRIPTION="A Management Controller for Ubiquiti Networks UniFi APs"
-HOMEPAGE="https://www.ubnt.com";
-SRC_URI="https://dl.ui.com/unifi/${PV}${RC_SUFFIX}/UniFi.unix.zip -> ${P}.zip"
-S="${WORKDIR}/UniFi"
-
-KEYWORDS="-* amd64 ~arm64"
-LICENSE="Apache-1.0 Apache-2.0 BSD-1 BSD-2 BSD CDDL EPL-1.0 GPL-2 LGPL-2.1 
LGPL-3 MIT ubiquiti"
-SLOT="0/$(ver_cut 1-2)"
-IUSE="systemd"
-RESTRICT="bindist mirror"
-
-RDEPEND="
-   acct-group/unifi
-   acct-user/unifi
-   dev-db/mongodb
-   virtual/jre:1.8
-"
-
-BDEPEND="app-arch/unzip"
-
-DOCS=( "readme.txt" )
-
-QA_PREBUILT="usr/lib/unifi/lib/native/Linux/x86_64/*.so"
-
-src_prepare() {
-   # Remove unneeded files Mac and Windows
-   rm -r lib/native/{Mac,Windows} || die
-
-   if [[ ${CHOST} != aarch64* ]]; then
-   rm -r lib/native/Linux/aarch64 || die "Failed in removing 
aarch64 native libraries"
-   fi
-   if [[ ${CHOST} != armv7* ]]; then
-   rm -r lib/native/Linux/armv7 || die "Failed in removing armv7 
native libraries"
-   fi
-   if [[ ${CHOST} != x86_64* ]]; then
-   rm -r lib/native/Linux/x86_64 || die "Failed in removing x86_64 
native libraries"
-   fi
-
-   if [[ ${CHOST} == aarch64* ]]; then
-   if ! use systemd; then
-   rm lib/native/Linux/aarch64/libubnt_sdnotify_jni.so || 
die
-   fi
-   fi
-   if [[ ${CHOST} == armv7* ]]; then
-   if ! use systemd; then
-   rm lib/native/Linux/armv7/libubnt_sdnotify_jni.so || die
-   fi
-   fi
-   if [[ ${CHOST} == x86_64* ]]; then
-   if ! use systemd; then
-   rm lib/native/Linux/x86_64/libubnt_sdnotify_jni.so || 
die
-   fi
-   fi
-
-   default
-}
-
-src_install() {
-   insinto /usr/lib/unifi
-   doins -r bin dl lib webapps
-
-   diropts -o unifi -g unifi
-   keepdir /var/lib/unifi/{conf,data,run,tmp,work} /var/log/unifi
-
-   for symlink in conf data run tmp work; do
-   dosym ../../../var/lib/unifi/${symlink} 
/usr/lib/unifi/${symlink}
-   done
-   dosym ../../../var/log/unifi /usr/lib/unifi/logs
-
-   newinitd "${FILESDIR}"/unifi.initd-r1 unifi
-   systemd_dounit "${FILESDIR}"/unifi.service
-
-   newconfd "${FILESDIR}"/unifi.confd unifi
-
-   echo 'CONFIG_PROTECT="/var/lib/unifi"' > "${T}"/99unifi || die
-   doenvd "${T}"/99unifi
-
-   einstalldocs
-}



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

2021-12-16 Thread Lars Wendler
commit: a27b0b43f00bfe239f413edaf2da398ce1bf06ec
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Dec 16 10:01:20 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Dec 16 10:03:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a27b0b43

profiles/package.mask: Cancel last-rite of net-dns/pdnsd for now

Bug: https://bugs.gentoo.org/801688
Signed-off-by: Lars Wendler  gentoo.org>

 profiles/package.mask | 6 --
 1 file changed, 6 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 9ac6616c1f8a..0491f25cca12 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -96,12 +96,6 @@ games-action/multimc
 # Package without consumers. Bug #828740.  Removal in 30 days.
 www-apache/mod_caucho
 
-# Lars Wendler  (2021-12-07)
-# Fails to build with recent kernel headers (bug #801688).
-# Upstream is gone for a long time. Masked for removal in 30 days.
-# Users should switch over to net-dns/dnsmasq which provides similar features.
-net-dns/pdnsd
-
 # David Seifert  (2021-12-06)
 # Ancient release, EAPI 5, downloads random data,
 # latest version uses Gradle.



[gentoo-commits] repo/gentoo:master commit in: net-dns/pdnsd/, net-dns/pdnsd/files/

2021-12-16 Thread Lars Wendler
commit: 7ce35657f269c3b7016e8940ad36e59cf06e12a4
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Dec 16 09:59:03 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Dec 16 10:03:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ce35657

net-dns/pdnsd: Fixed build with >=sys-kernel/linux-headers-5.13

update EAPI 7 -> 8

Thanks-to: Alexandros C. Couloumbis  ozo.com>
Closes: https://bugs.gentoo.org/801688
Signed-off-by: Lars Wendler  gentoo.org>

 .../files/pdnsd-1.2.9a-linux-5.13_build_fix.patch  | 39 ++
 net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild   |  6 +++-
 2 files changed, 44 insertions(+), 1 deletion(-)

diff --git a/net-dns/pdnsd/files/pdnsd-1.2.9a-linux-5.13_build_fix.patch 
b/net-dns/pdnsd/files/pdnsd-1.2.9a-linux-5.13_build_fix.patch
new file mode 100644
index ..fbc1e0bfd4ec
--- /dev/null
+++ b/net-dns/pdnsd/files/pdnsd-1.2.9a-linux-5.13_build_fix.patch
@@ -0,0 +1,39 @@
+From 59859acf9083010639eb9bc0bf8cb5d03f03935f Mon Sep 17 00:00:00 2001
+From: SiYao Mo 
+Date: Fri, 16 Jul 2021 14:25:44 +0800
+Subject: [PATCH] pdnsd-alt: fix cmake error in kernel 5.13/5.14 Because of
+ redefinition of 'struct ifmap' & 'struct ifreq' & 'struct ifconf' in
+ linux/if.h (Linux Kernel above 5.13) Replace net/if.h with linux/if.h
+
+Signed-off-by: SiYao Mo 
+---
+ src/conff.h | 2 +-
+ src/dns.h   | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/conff.h b/src/conff.h
+index a07b156..c66d210 100644
+--- a/src/conff.h
 b/src/conff.h
+@@ -32,7 +32,7 @@
+ #include 
+ #include 
+ #include 
+-#include 
++#include 
+ #include "ipvers.h"
+ #include "list.h"
+ 
+diff --git a/src/dns.h b/src/dns.h
+index 0f6a4ac..ecc9680 100644
+--- a/src/dns.h
 b/src/dns.h
+@@ -27,7 +27,7 @@
+ #include 
+ #include 
+ #include 
+-#include 
++#include 
+ #include 
+ #include 
+ #include "rr_types.h"

diff --git a/net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild 
b/net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild
index 209fff4708a5..e22913999e9a 100644
--- a/net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild
+++ b/net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit systemd tmpfiles
 
@@ -21,6 +21,10 @@ RDEPEND="
 "
 DEPEND="test? ( net-dns/bind-tools )"
 
+PATCHES=(
+   "${FILESDIR}/${P}-linux-5.13_build_fix.patch" #801688
+)
+
 src_configure() {
local myeconfargs=(
--disable-isdn



[gentoo-commits] repo/gentoo:master commit in: net-mail/dovecot/

2021-12-16 Thread Eray Aslan
commit: cc99ce2a105a8f0c025559e626c00234a91938f1
Author: Eray Aslan  gentoo  org>
AuthorDate: Thu Dec 16 10:13:54 2021 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Thu Dec 16 10:13:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc99ce2a

net-mail/dovecot: bump to 2.3.17.1

Closes: https://bugs.gentoo.org/829132
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Eray Aslan  gentoo.org>

 net-mail/dovecot/Manifest|   2 +
 net-mail/dovecot/dovecot-2.3.17.1.ebuild | 307 +++
 2 files changed, 309 insertions(+)

diff --git a/net-mail/dovecot/Manifest b/net-mail/dovecot/Manifest
index 595f339a1909..8dfa58821de7 100644
--- a/net-mail/dovecot/Manifest
+++ b/net-mail/dovecot/Manifest
@@ -1,8 +1,10 @@
 DIST dovecot-2.3-pigeonhole-0.5.14.tar.gz 1910607 BLAKE2B 
5c08214535d298ce2b8defd8c945e96597a98bda6493a3e27481fdadc0e149e6dd01c6ececaa583dd331614669bd8e033cd1b91d64d03a9e0cdcef67fa9c27b8
 SHA512 
c5d5d309769eabe2c0971646d0c14d166b6b524acf59e1069eca803f764544fa2535c09c9a630ca706aa70442b688ee26af831d29e674823bac7ea7c0e1f33cc
 DIST dovecot-2.3-pigeonhole-0.5.15.tar.gz 1935601 BLAKE2B 
e26405cc9a93681206e27c2b548e3409aec1c011127b27eda364fec27d572dc01c7ea63688693bde10a8b4086bf67e14bb67e917d62db426d8871d6af0ec
 SHA512 
521070080802bf2a50cd0ff0af5dc991c04d70b807abc2cd9aa567444a4869f5f42800f19d9b740a519bd4069437139e70ca6ae4b905479fcec8faa133ac5f54
 DIST dovecot-2.3-pigeonhole-0.5.16.tar.gz 1944573 BLAKE2B 
a859c396126132669793c73c695380f24f1ca205b8153cb5f60f3be37194c48ae7d0dd6a7bd37fafdd9e95dbcdc2ab341146883013c63c1b5ccb5a9bb4b7b9ae
 SHA512 
880e00654eab85cc41b27ac470cce6011991e3cdb005642f495c2297fd9492bfb2b6b4ef63c88c2ac10bec870ad69b8bee6b11dd1bc5099e16c3cc2857312543
+DIST dovecot-2.3-pigeonhole-0.5.17.1.tar.gz 1952704 BLAKE2B 
7dfc6b5bdb82bcaa60e0f41722f9a884edee7853ce09c9391d4c610be16728f58cc7095b8dd2d47e89296ff36aa926c687b39a418bc74ca0bfc3c4eab98156df
 SHA512 
632a963d90a3fa052f314360d59ff25274d80952307ab5dd9193a2713ebf686500a7b2559b56f04b07e0a261066eed9b8525b14197f3be51728af09acb76e894
 DIST dovecot-2.3-pigeonhole-0.5.17.tar.gz 1951089 BLAKE2B 
fb91e668cf56632b749fed6e9c620b591bee82b19e928dd4cd3dca657dff6938ba4ae4776713a98b0ae38c17e3d6a613b35971cdbae792e18d4563f5f7efaaff
 SHA512 
c4bf69504ec22de53bfeffb55fc95438fb0f648390ca6e6485f652e2e74a34cd7508390bb595b958cbabc53f0e20fbc42e163b2682dc65159fae2acafbd94bad
 DIST dovecot-2.3.14.1.tar.gz 7534719 BLAKE2B 
1ba5143711fe340b9fad61db41ba658485e42be52f3b0f196eeb9b8e4b7c1b865b6a08f879dadeb2db3979b17be34699ce5febc4545887307f62bd5b72076f86
 SHA512 
b71b82c2918ac9940ef6bc274bc9c2b3e56a08cf5054244d80547ad89c421b9180c5afa8b5b140831239fbe2cbeeceb83a0052e037eb198d8fc27d07cba4ba35
 DIST dovecot-2.3.15.tar.gz 7608561 BLAKE2B 
85134064dbff0b4f50831a835fb6eafc92081d75d91ab331fa0ae79c453382a88485bad8c774491968b879478dc66841a9c6170e5931d562cf5eaa6af755440b
 SHA512 
75bbdbeac663da109f78dba06c42bb5193e911c6b3c64f055fc4473ae9afaf0c8304c49fc7f06c5c6b61e67dd13dc21fbed6ff160a99f38f547c88ba05e6b03a
 DIST dovecot-2.3.16.tar.gz 7650008 BLAKE2B 
682067330e94a51a6bc6c82444a5e29a08d6382652a531597bd8c3eecf0bd86f6d4d1bc20e0467c36d5285e9df5ba25aee7dd6db727d195f8f67ac403becfcf0
 SHA512 
31a9d352c7ead466d65ee0535b1fbd9138e35235f1ebfeedc4eef54cba450663c59708d162eaf0712af1c40f23526ac86aab2eece8cefde3edf690127472fd1e
+DIST dovecot-2.3.17.1.tar.gz 7700848 BLAKE2B 
adf12c84def899795d8446766b5c88fd5c68a5969a1807b4dd9c2e4894ddc0693a771ce4d4c0c72b0b03501903c39c650eace97b6708114b7fe038b62ea2ecce
 SHA512 
976aa4f68e86f401e5766017e1702740d5b03892aff98f31f9ef0c6d242311d0f4b50d7faa426306bf1c902d7fc6d021438977bc887fa66ee360b069ec32ad79
 DIST dovecot-2.3.17.tar.gz 7699294 BLAKE2B 
1dd044abc9cf27aa8ced5595d875a2b08abba93b43727db6ab1508ae4a841cada57a53d76bf318f497b61f0dbefad66091e652e4b73a4b25d37a763e31a2241b
 SHA512 
5b45d0f2f8af5cf095aff35f8e6a74bbbfd153b6e4596510eade671507d77476544e3a012087b4d4432c0399601f29a49cdf8b34249438f440031c8d027d1cd3

diff --git a/net-mail/dovecot/dovecot-2.3.17.1.ebuild 
b/net-mail/dovecot/dovecot-2.3.17.1.ebuild
new file mode 100644
index ..9eb939c223cb
--- /dev/null
+++ b/net-mail/dovecot/dovecot-2.3.17.1.ebuild
@@ -0,0 +1,307 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+LUA_COMPAT=( lua5-1 lua5-3 )
+# do not add a ssl USE flag.  ssl is mandatory
+SSL_DEPS_SKIP=1
+inherit autotools flag-o-matic lua-single ssl-cert systemd toolchain-funcs
+
+MY_P="${P/_/.}"
+#MY_S="${PN}-ce-${PV}"
+major_minor="$(ver_cut 1-2)"
+sieve_version="0.5.17.1"
+if [[ ${PV} == *_rc* ]]; then
+   rc_dir="rc/"
+else
+   rc_dir=""
+fi
+SRC_URI="https://dovecot.org/releases/${major_minor}/${rc_dir}${MY_P}.tar.gz
+   sieve? (
+   
https://pigeonhole.dovecot.org/releases/${major_minor}/${rc_dir}${PN}-${major_minor}-pigeonhole-${sieve_version}.tar.gz
+   )
+   managesieve? (
+   
https://pigeonhole.dovecot.

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

2021-12-16 Thread Marek Szuba
commit: 00979d9a493dd554d7c876e3b3ab63b4f88fe973
Author: Marek Szuba  gentoo  org>
AuthorDate: Thu Dec 16 10:09:47 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Thu Dec 16 10:16:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00979d9a

sys-auth/solo-python: drop 0.0.30

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

 sys-auth/solo-python/Manifest  |  1 -
 sys-auth/solo-python/solo-python-0.0.30.ebuild | 34 --
 2 files changed, 35 deletions(-)

diff --git a/sys-auth/solo-python/Manifest b/sys-auth/solo-python/Manifest
index a7aac6559f29..bd8819b2c9de 100644
--- a/sys-auth/solo-python/Manifest
+++ b/sys-auth/solo-python/Manifest
@@ -1,2 +1 @@
-DIST solo-python-0.0.30.tar.gz 34932 BLAKE2B 
6787d9c6e102cd2cb5579be0cb3ffbbe76b3ae90f4fa6891b6a1ca3e76436568a949daa6796fc17c9868d10d5de3b0dd377619936eccb0d436a284a35efa40a9
 SHA512 
bba63e598ef585ef49e98f3ec2a79911cf8af3fc38c9407bd91b7500dc55bf84f365664e6f80ff0ed3553ce93f5d61ba11c5301e8b36d6000c7a922857adaa5e
 DIST solo-python-0.0.31.tar.gz 34959 BLAKE2B 
abc7bb014bb6eedcd0178cb600c626ca6e2b4773083916db698c0dd9639208206da010470f77813074137667afb5c6725311c3406762a8ab5a029e9966b227d6
 SHA512 
e8c81524b6d10bc38898b19e35ab2f7b95bea7906553de9e0598fc160b5b9b61f4f8b40e2238631738e1b69ef52652af1b3e84aa0a3552126929c4512210c1fa

diff --git a/sys-auth/solo-python/solo-python-0.0.30.ebuild 
b/sys-auth/solo-python/solo-python-0.0.30.ebuild
deleted file mode 100644
index e8cd0529f6d9..
--- a/sys-auth/solo-python/solo-python-0.0.30.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-
-inherit distutils-r1
-
-DESCRIPTION="Python tool and library for SoloKeys"
-HOMEPAGE="https://github.com/solokeys/solo-python";
-SRC_URI="https://github.com/solokeys/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0 MIT"
-SLOT="0"
-KEYWORDS="amd64 ~riscv"
-
-RDEPEND=">=dev-python/click-7.1.0[${PYTHON_USEDEP}]
-   dev-python/cryptography[${PYTHON_USEDEP}]
-   dev-python/ecdsa[${PYTHON_USEDEP}]
-   >=dev-python/fido2-0.9.1[${PYTHON_USEDEP}]
-   dev-python/intelhex[${PYTHON_USEDEP}]
-   dev-python/pyserial[${PYTHON_USEDEP}]
-   dev-python/pyusb[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]"
-
-src_prepare() {
-   # For some reason the version file gets omitted by src_install (a bug 
in pyproject2setuppy?),
-   # and in any case there is no advantage to using one once a specific 
version has been released.
-   sed -i -e "s/^__version__ = open(.\+$/__version__ = '${PV}'/" 
solo/__init__.py || die "Failed to set the version number"
-   distutils-r1_src_prepare
-}



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

2021-12-16 Thread Marek Szuba
commit: 4c21d06142bc7850bfba6e06a417e18ff6191ea7
Author: Marek Szuba  gentoo  org>
AuthorDate: Thu Dec 16 10:11:23 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Thu Dec 16 10:16:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c21d061

dev-ruby/duktape-rb: drop 2.3.0.0-r2

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

 dev-ruby/duktape-rb/duktape-rb-2.3.0.0-r2.ebuild | 51 
 1 file changed, 51 deletions(-)

diff --git a/dev-ruby/duktape-rb/duktape-rb-2.3.0.0-r2.ebuild 
b/dev-ruby/duktape-rb/duktape-rb-2.3.0.0-r2.ebuild
deleted file mode 100644
index 9b5790032cb5..
--- a/dev-ruby/duktape-rb/duktape-rb-2.3.0.0-r2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby25 ruby26 ruby27"
-
-RUBY_FAKEGEM_GEMSPEC="duktape.gemspec"
-RUBY_FAKEGEM_NAME="duktape"
-
-inherit ruby-fakegem
-
-MY_PN=${PN/-/\.}
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Ruby bindings to the Duktape JavaScript interpeter"
-HOMEPAGE="https://github.com/judofyr/duktape.rb";
-SRC_URI="https://github.com/judofyr/${MY_PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ppc ~riscv"
-
-COMMON_DEPEND="dev-lang/duktape:="
-DEPEND+="${COMMON_DEPEND}"
-RDEPEND+="${COMMON_DEPEND}"
-
-ruby_add_bdepend "
-   dev-ruby/pkg-config
-   dev-ruby/rake-compiler
-   dev-ruby/sdoc
-"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-2.3.0.0_duktape-2.5.0-tests.patch
-   "${FILESDIR}"/${PN}-2.3.0.0_use-system-duktape.patch
-)
-
-RUBY_S=${MY_P}
-
-all_ruby_prepare() {
-   rm ext/duktape/duktape.{c,h} ext/duktape/duk_config.h || die "Failed to 
remove bundled duktape"
-}
-
-each_ruby_configure() {
-   ${RUBY} -C ext/duktape extconf.rb || die "extconf.rb failed"
-}
-
-each_ruby_compile() {
-   ${RUBY} -S rake compile
-}



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

2021-12-16 Thread Marek Szuba
commit: d8c5cb3201911c2e348a1ad62bb9caa9978d5fea
Author: Marek Szuba  gentoo  org>
AuthorDate: Thu Dec 16 10:12:16 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Thu Dec 16 10:16:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8c5cb32

x11-misc/xdotool: drop 3.20210903.1

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

 x11-misc/xdotool/Manifest|  1 -
 x11-misc/xdotool/xdotool-3.20210903.1.ebuild | 50 
 2 files changed, 51 deletions(-)

diff --git a/x11-misc/xdotool/Manifest b/x11-misc/xdotool/Manifest
index 31f3cdddb1e4..675c2f3d49a4 100644
--- a/x11-misc/xdotool/Manifest
+++ b/x11-misc/xdotool/Manifest
@@ -1,2 +1 @@
-DIST xdotool-3.20210903.1.tar.gz 115051 BLAKE2B 
d1be4fc2f5c86991804b63b85c95748dc04098f85a515b3427d980dac3d355133da0408d3e91a39e5363ae6242b02d268a8b5bc014fdd5faf51e43e24fb54176
 SHA512 
446ba8d354031df6a21957df92220c7dcaae5bacbb8878568a57f31097db72a88701717ec8bcd35cca3f5356bfaf47eb3ed65d2159f03b0c7a7ae5550a9b1dce
 DIST xdotool-3.20211022.1.tar.gz 115237 BLAKE2B 
1269775848905253936b113ac45e2a5126f1414eeacb5dd91aea6dc0cb6993f9fa0da969f30c83e0e03d435894a31ba633dc02269b38f9056772b513f0c86889
 SHA512 
f11d7b079f19d1650adfb549ecc96e840805935bf4925beefc3238154ad0afbff36b134c78bfc73a9dc07fc869ab75676575d6de50cfd54484d2c35d6913ea27

diff --git a/x11-misc/xdotool/xdotool-3.20210903.1.ebuild 
b/x11-misc/xdotool/xdotool-3.20210903.1.ebuild
deleted file mode 100644
index dd2a934b7fd1..
--- a/x11-misc/xdotool/xdotool-3.20210903.1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DESCRIPTION="Simulate keyboard input and mouse activity, move and resize 
windows"
-HOMEPAGE="https://www.semicomplete.com/projects/xdotool/";
-SRC_URI="https://github.com/jordansissel/xdotool/releases/download/v${PV}/${P}.tar.gz";
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv x86"
-IUSE="examples"
-
-# Many the tests want to manually start Xvfb regardless of whether there
-# is an X server running or not (i.e. does not play nicely with virtualx),
-# some tests require x11-wm/openbox, some try to run a complete Gnome
-# session. All of them require a Ruby interpreter with dev-ruby/minitest
-# installed. In short, supporting tests here will need MUCH work.
-RESTRICT="test"
-
-RDEPEND="x11-libs/libX11
-   x11-libs/libXi
-   x11-libs/libXinerama
-   x11-libs/libXtst
-   x11-libs/libxkbcommon"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig
-   x11-base/xorg-proto"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-3.20210804.2-no_hardcoded_pkg-config.patch
-   "${FILESDIR}"/${PN}-3.20210804.2-no_ldconfig.patch
-)
-
-DOCS=( CHANGELIST README.md )
-
-src_compile() {
-   tc-export CC LD PKG_CONFIG
-   emake PREFIX="${EPREFIX}/usr"
-}
-
-src_install() {
-   emake PREFIX="${ED}/usr" INSTALLMAN="${ED}/usr/share/man" 
INSTALLLIB="${ED}/usr/$(get_libdir)" install
-
-   use examples && DOCS+=( examples )
-   einstalldocs
-}



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

2021-12-16 Thread Eray Aslan
commit: 0ebec55bb6c2c32d1cf520e2af2a5a522739a40c
Author: Eray Aslan  gentoo  org>
AuthorDate: Thu Dec 16 10:18:48 2021 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Thu Dec 16 10:18:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ebec55b

app-crypt/heimdal: remove old

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Eray Aslan  gentoo.org>

 app-crypt/heimdal/Manifest |   1 -
 app-crypt/heimdal/heimdal-7.6.0.ebuild | 186 -
 2 files changed, 187 deletions(-)

diff --git a/app-crypt/heimdal/Manifest b/app-crypt/heimdal/Manifest
index 361b8317215c..7402ad50fecf 100644
--- a/app-crypt/heimdal/Manifest
+++ b/app-crypt/heimdal/Manifest
@@ -1,2 +1 @@
-DIST heimdal-7.6.0.tar.gz 10186832 BLAKE2B 
456b495a3d0a196cf02d6042c6db72c772327545fbc84f7bb758f55f3fca025432bf319fc33e9e0b5fe5ca78b83aea9dc47d77bf1f5b69ae88f1286a22c41263
 SHA512 
3f7ce090cf8da91f19675a1d9f6bd65c83b3a847337739481506f09d74001cb44283b103ba684dac8a5f11ec48605b5476240c534f6fc36442fb874b73680200
 DIST heimdal-7.7.0.tar.gz 10189293 BLAKE2B 
db9cdd1861dc9214a7f76b3d8b9656cfc0bad11cb6eadffa4fa29ea7f9aabd4c3d1b628c510644ec9abe1b3bf27a413ccf8cd590d602c4a4ac54ba3deb4cedc4
 SHA512 
6660939b5a36ce36310721a08a089fb671d1e3d2e8ac74ea4775bfa5f8f772d32de805551456200fe96cc486c092c44beb84f5dd877008bc305490ee971bbf99

diff --git a/app-crypt/heimdal/heimdal-7.6.0.ebuild 
b/app-crypt/heimdal/heimdal-7.6.0.ebuild
deleted file mode 100644
index 9a250d65624c..
--- a/app-crypt/heimdal/heimdal-7.6.0.ebuild
+++ /dev/null
@@ -1,186 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..8} )
-VIRTUALX_REQUIRED="manual"
-
-inherit autotools db-use multilib multilib-minimal python-any-r1 virtualx 
flag-o-matic
-
-MY_P="${P}"
-DESCRIPTION="Kerberos 5 implementation from KTH"
-HOMEPAGE="http://www.h5l.org/";
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.gz";
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
-IUSE="afs +berkdb caps gdbm hdb-ldap ipv6 +lmdb otp selinux ssl static-libs 
test X"
-RESTRICT="!test? ( test )"
-
-CDEPEND="
-   ssl? (
-   >=dev-libs/openssl-1.0.1h-r2:0=[${MULTILIB_USEDEP}]
-   )
-   berkdb? ( >=sys-libs/db-4.8.30-r1:*[${MULTILIB_USEDEP}] )
-   gdbm? ( >=sys-libs/gdbm-1.10-r1:=[${MULTILIB_USEDEP}] )
-   lmdb? ( dev-db/lmdb )
-   caps? ( sys-libs/libcap-ng )
-   >=dev-db/sqlite-3.8.2[${MULTILIB_USEDEP}]
-   >=sys-libs/e2fsprogs-libs-1.42.9[${MULTILIB_USEDEP}]
-   sys-libs/ncurses:0=
-   >=sys-libs/readline-6.2_p5-r1:0=[${MULTILIB_USEDEP}]
-   afs? ( net-fs/openafs )
-   hdb-ldap? ( >=net-nds/openldap-2.3.0 )
-   X? (
-   x11-libs/libX11
-   x11-libs/libXau
-   x11-libs/libXt
-   )
-   !!app-crypt/mit-krb5
-   !!app-crypt/mit-krb5-appl"
-
-DEPEND="${CDEPEND}
-   ${PYTHON_DEPS}
-   dev-perl/JSON
-   virtual/pkgconfig
-   sys-apps/texinfo
-   >=sys-devel/autoconf-2.62
-   test? ( X? ( ${VIRTUALX_DEPEND} ) )"
-
-RDEPEND="${CDEPEND}
-   selinux? ( sec-policy/selinux-kerberos )"
-
-MULTILIB_WRAPPED_HEADERS=(
-   /usr/include/krb5-types.h
-   /usr/include/cms_asn1.h
-   /usr/include/digest_asn1.h
-   /usr/include/hdb_asn1.h
-   /usr/include/krb5_asn1.h
-   /usr/include/pkcs12_asn1.h
-   /usr/include/pkinit_asn1.h
-   /usr/include/rfc2459_asn1.h
-)
-
-MULTILIB_CHOST_TOOLS=(
-   /usr/bin/krb5-config
-)
-
-PATCHES=(
-   "${FILESDIR}/heimdal_disable-check-iprop.patch"
-   "${FILESDIR}/heimdal_tinfo.patch"
-   "${FILESDIR}/heimdal_hcrypto.patch"
-   "${FILESDIR}/heimdal_build-headers-before-use.patch"
-   "${FILESDIR}/heimdal_fix-db60.patch"
-)
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   # QA
-   append-flags -fno-strict-aliasing
-
-   multilib-minimal_src_configure
-}
-
-multilib_src_configure() {
-   local myeconfargs=(
-   --enable-kcm
-   --disable-osfc2
-   --enable-shared
-   --with-libintl="${EPREFIX}"/usr
-   --with-readline="${EPREFIX}"/usr
-   --with-sqlite3="${EPREFIX}"/usr
-   --libexecdir="${EPREFIX}"/usr/sbin
-   --enable-pthread-support
-   --enable-kx509
-   --enable-pk-init
-   $(use_enable afs afs-support)
-   $(use_enable gdbm ndbm-db)
-   $(use_enable lmdb mdb-db)
-   $(use_enable otp)
-   $(use_enable static-libs static)
-   $(multilib_native_use_with caps capng)
-   $(multilib_native_use_with hdb-ldap openldap "${EPREFIX}"/usr)
-   $(use_with ipv6)
-   $(use_with ssl openssl "${EPREF

[gentoo-commits] proj/sci:master commit in: sci-libs/fdlibm/

2021-12-16 Thread Andrew Ammerlaan
commit: 1c5da5e406d8a4f93772164477a49d17133d4752
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:43:43 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:43:43 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=1c5da5e4

sci-libs/fdlibm: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/sci-libs/fdlibm/fdlibm-5.3.1.ebuild 
b/sci-libs/fdlibm/fdlibm-5.3.1.ebuild
index a2e6b7a09..d03ecb7fc 100644
--- a/sci-libs/fdlibm/fdlibm-5.3.1.ebuild
+++ b/sci-libs/fdlibm/fdlibm-5.3.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit cmake multilib
+inherit cmake
 
 DESCRIPTION="C math library supporting IEEE 754 floating-point arithmetic"
 HOMEPAGE="https://www.netlib.org/fdlibm";



[gentoo-commits] proj/sci:master commit in: sci-libs/simpleitk/

2021-12-16 Thread Andrew Ammerlaan
commit: b2e5ef2f4318714b8cb9cb8ed7a0b3deaeaffda2
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:48:17 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:48:17 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=b2e5ef2f

sci-libs/simpleitk: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/sci-libs/simpleitk/simpleitk-1.2.4.ebuild 
b/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
index afc114669..8a3bf5f5a 100644
--- a/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
+++ b/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 PYTHON_COMPAT=( python3_{7..9} )
 LUA_COMPAT=( lua5-{1..3} )
 
-inherit lua-single toolchain-funcs cmake python-single-r1
+inherit lua-single cmake python-single-r1
 
 MY_PN="SimpleITK"
 



[gentoo-commits] proj/sci:master commit in: sci-libs/lwpr/

2021-12-16 Thread Andrew Ammerlaan
commit: 45eb42f1288483ee41cf2bf4f7c3126f7fc89e1a
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:46:42 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:46:42 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=45eb42f1

sci-libs/lwpr: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/sci-libs/lwpr/lwpr-1.2.5.ebuild b/sci-libs/lwpr/lwpr-1.2.5.ebuild
index c7289f921..3415656a9 100644
--- a/sci-libs/lwpr/lwpr-1.2.5.ebuild
+++ b/sci-libs/lwpr/lwpr-1.2.5.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 DOCS_BUILDER="doxygen"
 
-inherit autotools docs
+inherit docs
 
 DESCRIPTION="The Locally Weighted Projection Regression Library"
 HOMEPAGE="https://web.inf.ed.ac.uk/slmc";



[gentoo-commits] proj/sci:master commit in: sci-libs/fast5/

2021-12-16 Thread Andrew Ammerlaan
commit: 777c5e71e1132c869c06ac3579cfee9782e02fd6
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:43:20 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:43:20 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=777c5e71

sci-libs/fast5: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/sci-libs/fast5/fast5-0.6.5.ebuild 
b/sci-libs/fast5/fast5-0.6.5.ebuild
index 38de1b6ff..cf06e1d8d 100644
--- a/sci-libs/fast5/fast5-0.6.5.ebuild
+++ b/sci-libs/fast5/fast5-0.6.5.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{7,8,9} )
 DOCS_BUILDER="doxygen"
 DOCS_DIR="${WORKDIR}/${P}"
 
-inherit distutils-r1 docs multilib
+inherit distutils-r1 docs
 
 DESCRIPTION="C++ header-only library for reading Oxford Nanopore Fast5 files"
 HOMEPAGE="https://github.com/mateidavid/fast5";



[gentoo-commits] proj/sci:master commit in: sci-libs/itk/

2021-12-16 Thread Andrew Ammerlaan
commit: 92b82d3b728921c9281b64a1c0cb76b3aade3c17
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:44:51 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:44:51 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=92b82d3b

sci-libs/itk: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-libs/itk/itk-5.0.1.ebuild | 2 +-
 sci-libs/itk/itk-5.1.0.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/itk/itk-5.0.1.ebuild b/sci-libs/itk/itk-5.0.1.ebuild
index 622a7b019..9c8ce63eb 100644
--- a/sci-libs/itk/itk-5.0.1.ebuild
+++ b/sci-libs/itk/itk-5.0.1.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 PYTHON_COMPAT=( python3_{7,8,9} )
 
-inherit toolchain-funcs cmake python-single-r1
+inherit cmake python-single-r1
 
 MY_PN="InsightToolkit"
 MY_P="${MY_PN}-${PV}"

diff --git a/sci-libs/itk/itk-5.1.0.ebuild b/sci-libs/itk/itk-5.1.0.ebuild
index ad23b6f14..d437d0298 100644
--- a/sci-libs/itk/itk-5.1.0.ebuild
+++ b/sci-libs/itk/itk-5.1.0.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 PYTHON_COMPAT=( python3_{7,8,9} )
 
-inherit toolchain-funcs cmake python-single-r1
+inherit cmake python-single-r1
 
 MY_PN="InsightToolkit"
 MY_P="${MY_PN}-${PV}"



[gentoo-commits] proj/sci:master commit in: sci-libs/nipy/

2021-12-16 Thread Andrew Ammerlaan
commit: b27d4d4cd2e65c13c8e56df91db884465cc4aae4
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:47:51 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:47:51 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=b27d4d4c

sci-libs/nipy: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-libs/nipy/nipy-0.4.2.ebuild | 2 +-
 sci-libs/nipy/nipy-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/nipy/nipy-0.4.2.ebuild b/sci-libs/nipy/nipy-0.4.2.ebuild
index 3749f7ae2..c20d904f5 100644
--- a/sci-libs/nipy/nipy-0.4.2.ebuild
+++ b/sci-libs/nipy/nipy-0.4.2.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 PYTHON_COMPAT=( python3_{7..9} )
 
-inherit distutils-r1 eutils multilib flag-o-matic
+inherit distutils-r1 flag-o-matic
 
 DESCRIPTION="Neuroimaging tools for Python"
 HOMEPAGE="https://nipy.org/";

diff --git a/sci-libs/nipy/nipy-.ebuild b/sci-libs/nipy/nipy-.ebuild
index 7e0f61d2d..7acc9a234 100644
--- a/sci-libs/nipy/nipy-.ebuild
+++ b/sci-libs/nipy/nipy-.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 PYTHON_COMPAT=( python3_{7..9} )
 
-inherit distutils-r1 eutils multilib flag-o-matic git-r3
+inherit distutils-r1 flag-o-matic git-r3
 
 DESCRIPTION="Neuroimaging tools for Python"
 HOMEPAGE="https://nipy.org/";



[gentoo-commits] proj/sci:master commit in: sci-libs/vxl/

2021-12-16 Thread Andrew Ammerlaan
commit: 701f5c2569197dc2d495fc32fcbf2187e92c1020
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:49:17 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:49:17 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=701f5c25

sci-libs/vxl: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/sci-libs/vxl/vxl-2.0.2.ebuild b/sci-libs/vxl/vxl-2.0.2.ebuild
index 0680cceb3..4db9621f4 100644
--- a/sci-libs/vxl/vxl-2.0.2.ebuild
+++ b/sci-libs/vxl/vxl-2.0.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit cmake multilib
+inherit cmake
 
 DESCRIPTION="C++ computer vision research libraries"
 HOMEPAGE="https://vxl.github.io/";



[gentoo-commits] proj/sci:master commit in: sci-libs/xblas/

2021-12-16 Thread Andrew Ammerlaan
commit: 6fe4bc6ca3ea534485dbfa961b663f740e70bdfc
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:49:42 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:49:42 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=6fe4bc6c

sci-libs/xblas: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-libs/xblas/xblas-1.0.248-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/xblas/xblas-1.0.248-r1.ebuild 
b/sci-libs/xblas/xblas-1.0.248-r1.ebuild
index 1467ccc19..97eafe922 100644
--- a/sci-libs/xblas/xblas-1.0.248-r1.ebuild
+++ b/sci-libs/xblas/xblas-1.0.248-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 NUMERIC_MODULE_NAME="xblas"
 FORTRAN_NEEDED=fortran
 
-inherit flag-o-matic fortran-2 numeric-int64-multibuild toolchain-funcs
+inherit fortran-2 numeric-int64-multibuild toolchain-funcs
 
 DESCRIPTION="Extra Precise Basic Linear Algebra Subroutines"
 HOMEPAGE="https://www.netlib.org/xblas/";



[gentoo-commits] proj/sci:master commit in: sci-visualization/forge/

2021-12-16 Thread Andrew Ammerlaan
commit: 7bab21aa6bac235f70f9c1963c82cf0cc3112b1b
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:56:06 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:56:06 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=7bab21aa

sci-visualization/forge: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-visualization/forge/forge-1.0.5.ebuild | 4 ++--
 sci-visualization/forge/forge-1.0.7.ebuild | 2 +-
 sci-visualization/forge/forge-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sci-visualization/forge/forge-1.0.5.ebuild 
b/sci-visualization/forge/forge-1.0.5.ebuild
index 64a14e696..b222dac0c 100644
--- a/sci-visualization/forge/forge-1.0.5.ebuild
+++ b/sci-visualization/forge/forge-1.0.5.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit cmake multilib
+inherit cmake
 
 DESCRIPTION="High Performance Visualizations for ArrayFire"
 HOMEPAGE="http://www.arrayfire.com/";

diff --git a/sci-visualization/forge/forge-1.0.7.ebuild 
b/sci-visualization/forge/forge-1.0.7.ebuild
index ab5fa17bb..b222dac0c 100644
--- a/sci-visualization/forge/forge-1.0.7.ebuild
+++ b/sci-visualization/forge/forge-1.0.7.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit cmake multilib
+inherit cmake
 
 DESCRIPTION="High Performance Visualizations for ArrayFire"
 HOMEPAGE="http://www.arrayfire.com/";

diff --git a/sci-visualization/forge/forge-.ebuild 
b/sci-visualization/forge/forge-.ebuild
index 64a14e696..b222dac0c 100644
--- a/sci-visualization/forge/forge-.ebuild
+++ b/sci-visualization/forge/forge-.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit cmake multilib
+inherit cmake
 
 DESCRIPTION="High Performance Visualizations for ArrayFire"
 HOMEPAGE="http://www.arrayfire.com/";



[gentoo-commits] proj/sci:master commit in: sci-libs/superlu_dist/

2021-12-16 Thread Andrew Ammerlaan
commit: b0c3f0fe01e492b32857531f8a77a90ca3067399
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:48:39 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:48:39 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=b0c3f0fe

sci-libs/superlu_dist: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/sci-libs/superlu_dist/superlu_dist-6.4.0.ebuild 
b/sci-libs/superlu_dist/superlu_dist-6.4.0.ebuild
index 8c0b87423..8c7be2874 100644
--- a/sci-libs/superlu_dist/superlu_dist-6.4.0.ebuild
+++ b/sci-libs/superlu_dist/superlu_dist-6.4.0.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 DOCS_BUILDER="doxygen"
 DOCS_CONFIG_NAME="DoxyConfig"
 
-inherit cmake docs multilib
+inherit cmake docs
 
 MYPN=SuperLU_DIST
 



[gentoo-commits] proj/sci:master commit in: sci-libs/lib2bit/

2021-12-16 Thread Andrew Ammerlaan
commit: 8ab0a51d3005b06583a0d221c027a64cd13eb55a
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:45:19 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:45:19 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=8ab0a51d

sci-libs/lib2bit: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-libs/lib2bit/lib2bit-0.2.1.ebuild | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/sci-libs/lib2bit/lib2bit-0.2.1.ebuild 
b/sci-libs/lib2bit/lib2bit-0.2.1.ebuild
index 808c97b21..5f012de35 100644
--- a/sci-libs/lib2bit/lib2bit-0.2.1.ebuild
+++ b/sci-libs/lib2bit/lib2bit-0.2.1.ebuild
@@ -1,10 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit eutils
-
 DESCRIPTION="C library for accessing 2bit files"
 HOMEPAGE="https://github.com/dpryan79/lib2bit";
 SRC_URI="https://github.com/dpryan79/lib2bit/archive/${PV}.tar.gz -> 
${P}.tar.gz"
@@ -14,9 +12,6 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="static"
 
-DEPEND=""
-RDEPEND="${DEPEND}"
-
 PATCHES=(
"${FILESDIR}"/${P}_respect_LDFLAGS.patch
"${FILESDIR}"/${P}_test_support_python3.patch



[gentoo-commits] proj/sci:master commit in: sci-libs/fgsl/

2021-12-16 Thread Andrew Ammerlaan
commit: e1282f9edd31c30290c196460cdb614595d3f444
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:44:10 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:44:10 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=e1282f9e

sci-libs/fgsl: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/sci-libs/fgsl/fgsl-1.3.0.ebuild b/sci-libs/fgsl/fgsl-1.3.0.ebuild
index 58da9c18b..01c415ad2 100644
--- a/sci-libs/fgsl/fgsl-1.3.0.ebuild
+++ b/sci-libs/fgsl/fgsl-1.3.0.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 DOCS_BUILDER="doxygen"
 DOCS_DEPEND="media-gfx/graphviz"
 
-inherit autotools docs fortran-2 toolchain-funcs
+inherit docs fortran-2
 
 DESCRIPTION="A Fortran interface to the GNU Scientific Library"
 
HOMEPAGE="https://doku.lrz.de/display/PUBLIC/FGSL+-+A+Fortran+interface+to+the+GNU+Scientific+Library/";



[gentoo-commits] proj/sci:master commit in: sci-mathematics/scilab/

2021-12-16 Thread Andrew Ammerlaan
commit: 4311e906c625413fbe8d2426d8527b7eebdbcd46
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:53:46 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:53:46 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=4311e906

sci-mathematics/scilab: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-mathematics/scilab/scilab-5.5.2.ebuild | 2 +-
 sci-mathematics/scilab/scilab-6.0.2.ebuild | 2 +-
 sci-mathematics/scilab/scilab-6.1.0.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sci-mathematics/scilab/scilab-5.5.2.ebuild 
b/sci-mathematics/scilab/scilab-5.5.2.ebuild
index 1226b4d76..ba40aed5f 100644
--- a/sci-mathematics/scilab/scilab-5.5.2.ebuild
+++ b/sci-mathematics/scilab/scilab-5.5.2.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 JAVA_PKG_OPT_USE="gui"
 VIRTUALX_REQUIRED="manual"
 
-inherit autotools bash-completion-r1 check-reqs eutils flag-o-matic \
+inherit autotools bash-completion-r1 check-reqs flag-o-matic \
fortran-2 java-pkg-opt-2 pax-utils toolchain-funcs virtualx xdg-utils
 
 DESCRIPTION="Scientific software package for numerical computations"

diff --git a/sci-mathematics/scilab/scilab-6.0.2.ebuild 
b/sci-mathematics/scilab/scilab-6.0.2.ebuild
index ed77b97bc..2b2d76b4e 100644
--- a/sci-mathematics/scilab/scilab-6.0.2.ebuild
+++ b/sci-mathematics/scilab/scilab-6.0.2.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 JAVA_PKG_OPT_USE="gui"
 VIRTUALX_REQUIRED="manual"
 
-inherit autotools bash-completion-r1 check-reqs eutils flag-o-matic \
+inherit autotools bash-completion-r1 check-reqs flag-o-matic \
fortran-2 java-pkg-opt-2 pax-utils toolchain-funcs virtualx xdg-utils
 
 DESCRIPTION="Scientific software package for numerical computations"

diff --git a/sci-mathematics/scilab/scilab-6.1.0.ebuild 
b/sci-mathematics/scilab/scilab-6.1.0.ebuild
index 542930bdb..6b19924a6 100644
--- a/sci-mathematics/scilab/scilab-6.1.0.ebuild
+++ b/sci-mathematics/scilab/scilab-6.1.0.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 JAVA_PKG_OPT_USE="gui"
 VIRTUALX_REQUIRED="manual"
 
-inherit autotools bash-completion-r1 check-reqs eutils flag-o-matic \
+inherit autotools bash-completion-r1 check-reqs flag-o-matic \
fortran-2 java-pkg-opt-2 pax-utils toolchain-funcs virtualx xdg-utils
 
 DESCRIPTION="Scientific software package for numerical computations"



[gentoo-commits] proj/sci:master commit in: sci-visualization/mricrogl/

2021-12-16 Thread Andrew Ammerlaan
commit: b8a9f3835eb2a79a2e178aafc4998213ebdfbb04
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:56:35 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:56:35 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=b8a9f383

sci-visualization/mricrogl: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-visualization/mricrogl/mricrogl-1.2.20200331.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-visualization/mricrogl/mricrogl-1.2.20200331.ebuild 
b/sci-visualization/mricrogl/mricrogl-1.2.20200331.ebuild
index 3422a84e8..df2f1aa38 100644
--- a/sci-visualization/mricrogl/mricrogl-1.2.20200331.ebuild
+++ b/sci-visualization/mricrogl/mricrogl-1.2.20200331.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit eutils desktop
+inherit desktop
 
 DEMOS_HASH="d07815f31093f28b47731f87f3f5ba5543f12d11"
 PY4LAZ_HASH="8dc41685b547f0982755b90115d9a43a2d2b358c"



[gentoo-commits] proj/sci:master commit in: sci-physics/openmx/

2021-12-16 Thread Andrew Ammerlaan
commit: 9da418fa4949f411c0955f3f09d767e8a4aa61e6
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:54:33 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:54:33 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=9da418fa

sci-physics/openmx: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-physics/openmx/openmx-3.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-physics/openmx/openmx-3.9.ebuild 
b/sci-physics/openmx/openmx-3.9.ebuild
index ce72ba2f6..e58af9665 100644
--- a/sci-physics/openmx/openmx-3.9.ebuild
+++ b/sci-physics/openmx/openmx-3.9.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit multilib toolchain-funcs flag-o-matic fortran-2
+inherit toolchain-funcs flag-o-matic fortran-2
 
 DESCRIPTION="Material eXplorer"
 HOMEPAGE="http://www.openmx-square.org/"; # no https, SSL invalid



[gentoo-commits] proj/sci:master commit in: sci-libs/wannier90/

2021-12-16 Thread Andrew Ammerlaan
commit: 745c0c4205685b207f86771b138d0b6fbda16c09
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:48:59 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:48:59 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=745c0c42

sci-libs/wannier90: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/sci-libs/wannier90/wannier90-3.1.0.ebuild 
b/sci-libs/wannier90/wannier90-3.1.0.ebuild
index 28bd897c4..ca53b3863 100644
--- a/sci-libs/wannier90/wannier90-3.1.0.ebuild
+++ b/sci-libs/wannier90/wannier90-3.1.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit fortran-2 multilib toolchain-funcs
+inherit fortran-2 toolchain-funcs
 
 DESCRIPTION="Calculates maximally localized Wannier functions (MLWFs)"
 HOMEPAGE="http://www.wannier.org/";



[gentoo-commits] proj/sci:master commit in: sci-physics/opticks/

2021-12-16 Thread Andrew Ammerlaan
commit: 1b0be9fca4a8f0a79bf2000b3bb5dd5fef76e7ba
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:55:15 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:55:15 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=1b0be9fc

sci-physics/opticks: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-physics/opticks/opticks-0.0.1_p20191110.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-physics/opticks/opticks-0.0.1_p20191110.ebuild 
b/sci-physics/opticks/opticks-0.0.1_p20191110.ebuild
index ce78c4f08..d89bf2a82 100644
--- a/sci-physics/opticks/opticks-0.0.1_p20191110.ebuild
+++ b/sci-physics/opticks/opticks-0.0.1_p20191110.ebuild
@@ -4,7 +4,7 @@
 EAPI=7
 
 PYTHON_COMPAT=( python2_7 )
-inherit mercurial cmake cuda flag-o-matic python-any-r1
+inherit mercurial cmake cuda python-any-r1
 
 EHG_REPO_URI="https://bitbucket.org/simoncblyth/${PN}";
 EHG_REVISION="a580e704afe9d2c138072835e986542c835c29fc"



[gentoo-commits] proj/sci:master commit in: sci-libs/mlpack/

2021-12-16 Thread Andrew Ammerlaan
commit: 9fce2b022ac77a10e752e4f0db7e3b688e5505c8
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:47:14 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:47:14 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=9fce2b02

sci-libs/mlpack: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-libs/mlpack/mlpack-3.4.1.ebuild | 2 +-
 sci-libs/mlpack/mlpack-3.4.2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/mlpack/mlpack-3.4.1.ebuild 
b/sci-libs/mlpack/mlpack-3.4.1.ebuild
index bc5f8d642..d03dd9ab1 100644
--- a/sci-libs/mlpack/mlpack-3.4.1.ebuild
+++ b/sci-libs/mlpack/mlpack-3.4.1.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 PYTHON_COMPAT=( python3_{7..9} )
 
-inherit cmake python-single-r1 toolchain-funcs
+inherit cmake python-single-r1
 
 DESCRIPTION="scalable C++ machine learning library"
 HOMEPAGE="https://www.mlpack.org/";

diff --git a/sci-libs/mlpack/mlpack-3.4.2.ebuild 
b/sci-libs/mlpack/mlpack-3.4.2.ebuild
index bc5f8d642..d03dd9ab1 100644
--- a/sci-libs/mlpack/mlpack-3.4.2.ebuild
+++ b/sci-libs/mlpack/mlpack-3.4.2.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 PYTHON_COMPAT=( python3_{7..9} )
 
-inherit cmake python-single-r1 toolchain-funcs
+inherit cmake python-single-r1
 
 DESCRIPTION="scalable C++ machine learning library"
 HOMEPAGE="https://www.mlpack.org/";



[gentoo-commits] proj/sci:master commit in: sci-libs/libmaus2/

2021-12-16 Thread Andrew Ammerlaan
commit: 3dd3af665fd88792a77b7a3b40ed8f2052e1ef4d
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:46:16 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:46:16 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=3dd3af66

sci-libs/libmaus2: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-libs/libmaus2/libmaus2-2.0.689.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sci-libs/libmaus2/libmaus2-2.0.689.ebuild 
b/sci-libs/libmaus2/libmaus2-2.0.689.ebuild
index ff5583090..4b50c2030 100644
--- a/sci-libs/libmaus2/libmaus2-2.0.689.ebuild
+++ b/sci-libs/libmaus2/libmaus2-2.0.689.ebuild
@@ -1,10 +1,8 @@
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit autotools
-
 release_data="20191120141844"
 DESCRIPTION="Library for biobambam2"
 HOMEPAGE="https://github.com/gt1/libmaus";



[gentoo-commits] proj/sci:master commit in: sci-libs/libflame-amd/

2021-12-16 Thread Andrew Ammerlaan
commit: b161f181889e76fb1f04ac81c89c89dec6a25ade
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:45:48 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:45:48 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=b161f181

sci-libs/libflame-amd: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-libs/libflame-amd/libflame-amd-2.2.ebuild  | 2 +-
 sci-libs/libflame-amd/libflame-amd-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/libflame-amd/libflame-amd-2.2.ebuild 
b/sci-libs/libflame-amd/libflame-amd-2.2.ebuild
index 45cc98a60..04830e5c3 100644
--- a/sci-libs/libflame-amd/libflame-amd-2.2.ebuild
+++ b/sci-libs/libflame-amd/libflame-amd-2.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit autotools fortran-2
+inherit fortran-2
 FORTRAN_NEED_OPENMP=1
 
 DESCRIPTION="AMD optimized high-performance object-based library for DLA 
computations"

diff --git a/sci-libs/libflame-amd/libflame-amd-.ebuild 
b/sci-libs/libflame-amd/libflame-amd-.ebuild
index 45cc98a60..04830e5c3 100644
--- a/sci-libs/libflame-amd/libflame-amd-.ebuild
+++ b/sci-libs/libflame-amd/libflame-amd-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit autotools fortran-2
+inherit fortran-2
 FORTRAN_NEED_OPENMP=1
 
 DESCRIPTION="AMD optimized high-performance object-based library for DLA 
computations"



[gentoo-commits] proj/sci:master commit in: sci-misc/elmer-fem/

2021-12-16 Thread Andrew Ammerlaan
commit: 0f2b7f545c360f6ffc87ae81c6ce57f11f9392a6
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:53:04 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:53:04 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=0f2b7f54

sci-misc/elmer-fem: drop old

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-misc/elmer-fem/elmer-fem-9.0.ebuild | 73 -
 1 file changed, 73 deletions(-)

diff --git a/sci-misc/elmer-fem/elmer-fem-9.0.ebuild 
b/sci-misc/elmer-fem/elmer-fem-9.0.ebuild
deleted file mode 100644
index b576bbdb6..0
--- a/sci-misc/elmer-fem/elmer-fem-9.0.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-FORTRAN_STANDARD=90
-
-inherit fortran-2 flag-o-matic cmake multilib
-
-ELMER_ROOT="elmerfem"
-MY_PN=${PN/elmer-/}
-
-DESCRIPTION="Finite element programs, libraries, and visualization tools"
-HOMEPAGE="https://www.csc.fi/web/elmer http://www.elmerfem.org/blog/";
-SRC_URI="https://github.com/ElmerCSC/elmerfem/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="ice gui matc mpi post test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   virtual/blas
-   virtual/lapack
-   !sci-libs/arpack
-   mpi? ( sys-cluster/openmpi )
-   post? (
-   dev-lang/tcl:0=
-   dev-lang/tk:0=
-   )
-   gui? ( x11-libs/qwt:6 )
-"
-DEPEND="${RDEPEND}"
-# Note this seems to only configure correctly with the elmer version of umfpack
-# But this doesn't stop it from compiling / working without it
-
-PATCHES=(
-   "${FILESDIR}/${PN}-ElmerIce-compile.patch"
-)
-
-S="${WORKDIR}/elmerfem-release-${PV}"
-
-src_prepare() {
-   cmake_src_prepare
-   sed -i '/#include /a #include ' 
ElmerGUI/Application/twod/renderarea.cpp || die
-   test-flag-FC -fallow-argument-mismatch && append-fflags 
-fallow-argument-mismatch
-   test-flag-FC -fallow-invalid-boz && append-fflags -fallow-invalid-boz
-   # TODO: fix the tests, fails in compile phase: multiple rules to make 
target
-   rm -r fem/tests/* || die
-   touch fem/tests/CMakeLists.txt || die
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DMPI_Fortran_COMPILE_FLAGS="$FCFLAGS"
-   -DCMAKE_Fortran_FLAGS="$FCFLAGS"
-   -DELMER_INSTALL_LIB_DIR="/usr/$(get_libdir)"
-   -DWITH_MPI="$(usex mpi)"
-   -DWITH_OpenMP="$(usex mpi)"
-   -DWITH_MATC="$(usex matc)"
-   -DWITH_ElmerIce="$(usex ice)"
-   -DWITH_ELMERPOST="$(usex post)"
-   -DWITH_ELMERGUI="$(usex gui)"
-   -DWITH_QT5="$(usex gui)"
-   -DWITH_QWT="$(usex gui)"
-   -DQWT_INCLUDE_DIR="/usr/include/qwt6"
-   -DQWT_LIBRARY="/usr/$(get_libdir)/libqwt6-qt5.so"
-   -DBUILD_TESTING="$(usex test)"
-   )
-   cmake_src_configure
-}



[gentoo-commits] proj/sci:master commit in: sci-mathematics/netgen/

2021-12-16 Thread Andrew Ammerlaan
commit: 405ed7bc9a1fd39aff8263832d36b3a49b915d9b
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:52:25 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:52:25 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=405ed7bc

sci-mathematics/netgen: fix inherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-mathematics/netgen/netgen-5.3.1.ebuild| 4 +---
 sci-mathematics/netgen/netgen-6.0_beta.ebuild | 4 +---
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/sci-mathematics/netgen/netgen-5.3.1.ebuild 
b/sci-mathematics/netgen/netgen-5.3.1.ebuild
index c759afec4..3cd4d956d 100644
--- a/sci-mathematics/netgen/netgen-5.3.1.ebuild
+++ b/sci-mathematics/netgen/netgen-5.3.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit autotools flag-o-matic multilib xdg
+inherit autotools desktop flag-o-matic xdg
 
 MY_PN=${PN}-mesher
 MY_PV=$(ver_cut 1-2)
@@ -109,8 +109,6 @@ src_install() {
# Install icon and .desktop for menu entry
doicon "${FILESDIR}"/${PN}.png
domenu "${FILESDIR}"/${PN}.desktop
-
-   prune_libtool_files
 }
 
 pkg_postinst() {

diff --git a/sci-mathematics/netgen/netgen-6.0_beta.ebuild 
b/sci-mathematics/netgen/netgen-6.0_beta.ebuild
index 3206c4755..8acc255d4 100644
--- a/sci-mathematics/netgen/netgen-6.0_beta.ebuild
+++ b/sci-mathematics/netgen/netgen-6.0_beta.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit autotools flag-o-matic multilib xdg
+inherit autotools desktop flag-o-matic xdg
 
 MY_PN=${PN}-mesher
 MY_PV=${PV//_/-}
@@ -109,8 +109,6 @@ src_install() {
# Install icon and .desktop for menu entry
doicon "${FILESDIR}"/${PN}.png
domenu "${FILESDIR}"/${PN}.desktop
-
-   prune_libtool_files
 }
 
 pkg_postinst() {



[gentoo-commits] proj/sci:master commit in: sci-physics/atompaw/

2021-12-16 Thread Andrew Ammerlaan
commit: 0921f201ac5c57d5d66fe6247aebae1bc9db3b39
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:54:12 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:54:12 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=0921f201

sci-physics/atompaw: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-physics/atompaw/atompaw-4.1.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-physics/atompaw/atompaw-4.1.1.0.ebuild 
b/sci-physics/atompaw/atompaw-4.1.1.0.ebuild
index 890da6497..b9d8912b8 100644
--- a/sci-physics/atompaw/atompaw-4.1.1.0.ebuild
+++ b/sci-physics/atompaw/atompaw-4.1.1.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit fortran-2 multilib toolchain-funcs
+inherit fortran-2 toolchain-funcs
 
 DESCRIPTION="PAW atomic data generator"
 HOMEPAGE="http://users.wfu.edu/natalie/papers/pwpaw/man.html";



[gentoo-commits] proj/sci:master commit in: x11-libs/xview-bin/

2021-12-16 Thread Andrew Ammerlaan
commit: 03b34d12bf2f00f5a3c891f827c4b49fb4c7dab4
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:57:10 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:57:10 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=03b34d12

x11-libs/xview-bin: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 x11-libs/xview-bin/xview-bin-3.2_p14211.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/xview-bin/xview-bin-3.2_p14211.ebuild 
b/x11-libs/xview-bin/xview-bin-3.2_p14211.ebuild
index 99f90c838..6bb1ac03d 100644
--- a/x11-libs/xview-bin/xview-bin-3.2_p14211.ebuild
+++ b/x11-libs/xview-bin/xview-bin-3.2_p14211.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit rpm multilib
+inherit rpm
 
 RPMVER="3.2p1.4-21.1"
 



[gentoo-commits] proj/sci:master commit in: sci-mathematics/freefem++/

2021-12-16 Thread Andrew Ammerlaan
commit: 0e98ff35fac9168dbfabd3985401eb3bbf38c22b
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 10:50:13 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 10:50:13 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=0e98ff35

sci-mathematics/freefem++: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-mathematics/freefem++/freefem++-4.10.ebuild  | 2 +-
 sci-mathematics/freefem++/freefem++-4.7.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-mathematics/freefem++/freefem++-4.10.ebuild 
b/sci-mathematics/freefem++/freefem++-4.10.ebuild
index b1a4c4838..16dd0b197 100644
--- a/sci-mathematics/freefem++/freefem++-4.10.ebuild
+++ b/sci-mathematics/freefem++/freefem++-4.10.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit autotools flag-o-matic toolchain-funcs
+inherit autotools toolchain-funcs
 
 DESCRIPTION="Solve PDEs using FEM on 2d and 3d domains"
 HOMEPAGE="https://freefem.org/";

diff --git a/sci-mathematics/freefem++/freefem++-4.7.1.ebuild 
b/sci-mathematics/freefem++/freefem++-4.7.1.ebuild
index 2afb7d92f..557f9107c 100644
--- a/sci-mathematics/freefem++/freefem++-4.7.1.ebuild
+++ b/sci-mathematics/freefem++/freefem++-4.7.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit autotools flag-o-matic toolchain-funcs
+inherit autotools toolchain-funcs
 
 MY_PV="$(ver_rs 2 -)"
 



[gentoo-commits] proj/sci:master commit in: dev-python/traits/

2021-12-16 Thread Andrew Ammerlaan
commit: a38c42db7c26475385772f82bf42e36c69b8995a
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 11:03:01 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 11:03:01 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=a38c42db

dev-python/traits: add missing RESTRICT="!test? ( test )"

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/traits/traits-6.0.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/traits/traits-6.0.0.ebuild 
b/dev-python/traits/traits-6.0.0.ebuild
index 45ad1b92a..732c6247a 100644
--- a/dev-python/traits/traits-6.0.0.ebuild
+++ b/dev-python/traits/traits-6.0.0.ebuild
@@ -17,6 +17,7 @@ LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 IUSE="test"
+RESTRICT="!test? ( test )"
 
 RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
 



[gentoo-commits] proj/sci:master commit in: sci-biology/ncbi-blast+/

2021-12-16 Thread Andrew Ammerlaan
commit: 9abf1096ce447b6059e163b52f759d59fc9f0b84
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 11:05:01 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 11:05:01 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=9abf1096

sci-biology/ncbi-blast+: fix MissingInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-biology/ncbi-blast+/ncbi-blast+-2.2.30.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/sci-biology/ncbi-blast+/ncbi-blast+-2.2.30.ebuild 
b/sci-biology/ncbi-blast+/ncbi-blast+-2.2.30.ebuild
index 7c8eec1a7..d4ae93742 100644
--- a/sci-biology/ncbi-blast+/ncbi-blast+-2.2.30.ebuild
+++ b/sci-biology/ncbi-blast+/ncbi-blast+-2.2.30.ebuild
@@ -76,6 +76,10 @@ RDEPEND="${DEPEND}"
 S="${WORKDIR}/${MY_P}/c++"
 # ncbi-blast-2.2.30+-src/c++
 
+PATCHES=(
+   "${FILESDIR}"/"${P}"__fix_lib_deps.patch
+)
+
 src_prepare() {
 #  filter-ldflags -Wl,--as-needed
 #  append-ldflags -Wl,--no-undefined
@@ -117,7 +121,6 @@ src_prepare() {
 ## epatch ${PATCHES[@]}
 
# use a Debian patch from 
http://anonscm.debian.org/viewvc/debian-med/trunk/packages/ncbi-blast%2B/trunk/debian/patches/fix_lib_deps?revision=18535&view=markup
-   epatch "${FILESDIR}"/"${P}"__fix_lib_deps.patch
# make sure this one is the last one and contains the actual patches 
applied unless we can have autoconf-2.59 or 2.60
# https://bugs.gentoo.org/show_bug.cgi?id=514706
 



[gentoo-commits] proj/sci:master commit in: dev-util/f90cache/

2021-12-16 Thread Andrew Ammerlaan
commit: 28ee78f4e9a36ba644fa2399e28408b48c634d9c
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 11:03:31 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 11:03:31 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=28ee78f4

dev-util/f90cache: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-util/f90cache/f90cache-0.99c.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/f90cache/f90cache-0.99c.ebuild 
b/dev-util/f90cache/f90cache-0.99c.ebuild
index a4fcfe0e0..cc5024c91 100644
--- a/dev-util/f90cache/f90cache-0.99c.ebuild
+++ b/dev-util/f90cache/f90cache-0.99c.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit fortran-2 multilib
+inherit fortran-2
 
 DESCRIPTION="Compiler cache for fortran"
 HOMEPAGE="https://perso.univ-rennes1.fr/edouard.canot//f90cache/";



[gentoo-commits] proj/sci:master commit in: sci-libs/xblas/

2021-12-16 Thread Andrew Ammerlaan
commit: b2d8225b3f9eb25c6c6c4e3723c893c2ad2d0a51
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 11:07:08 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 11:07:08 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=b2d8225b

sci-libs/xblas: fix IndirectInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-libs/xblas/xblas-1.0.248-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/xblas/xblas-1.0.248-r1.ebuild 
b/sci-libs/xblas/xblas-1.0.248-r1.ebuild
index 97eafe922..a5b0c8cf4 100644
--- a/sci-libs/xblas/xblas-1.0.248-r1.ebuild
+++ b/sci-libs/xblas/xblas-1.0.248-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 NUMERIC_MODULE_NAME="xblas"
 FORTRAN_NEEDED=fortran
 
-inherit fortran-2 numeric-int64-multibuild toolchain-funcs
+inherit fortran-2 numeric numeric-int64-multibuild multilib toolchain-funcs
 
 DESCRIPTION="Extra Precise Basic Linear Algebra Subroutines"
 HOMEPAGE="https://www.netlib.org/xblas/";



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

2021-12-16 Thread Michał Górny
commit: 5927afb68bc44a33f9f13e94d46dab9038b0b53f
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 16 08:06:22 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 16 12:13:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5927afb6

dev-python/aesara: Bump to 2.3.3

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

 dev-python/aesara/Manifest|  1 +
 dev-python/aesara/aesara-2.3.3.ebuild | 75 +++
 2 files changed, 76 insertions(+)

diff --git a/dev-python/aesara/Manifest b/dev-python/aesara/Manifest
index df40213ad19b..938d01afa877 100644
--- a/dev-python/aesara/Manifest
+++ b/dev-python/aesara/Manifest
@@ -2,3 +2,4 @@ DIST aesara-rel-2.2.6.tar.gz 8180674 BLAKE2B 
6d2c237a748aeee524e4182c47b17a9f7e7
 DIST aesara-rel-2.3.0.tar.gz 8181754 BLAKE2B 
7fd60e6ce1243e585a4256f807615a4d120833ed3da2f1b16dbcade99950cc470c0b9df2b3a0e481b1694b9fa17b8de5ce30eeeb53e19b0a3244cc44c199e152
 SHA512 
1198e6a827210e17febc073d60d84e6e2fb044767a573c1569bacbc2bc3181e5d0820349ca90eafdfd83818b97cda9d3d91c42734c6fb9f8452ce5d24d130543
 DIST aesara-rel-2.3.1.tar.gz 8181777 BLAKE2B 
5807cb7c0e263d2fb3559050a9712f8a8827d7ea7e167ca05d8be91abd2cf99db34f050f663002b11bb0d9c70969b257b6f91e1cc436006550ffe02959b8097d
 SHA512 
8a8445c520006b7822968c882117b9286759fdfcde80605d77232e3d1e71987c852ed92c26d7791999a704add8ace5fa4044cf57cba0e0a509ebba356a010710
 DIST aesara-rel-2.3.2.tar.gz 8185666 BLAKE2B 
e65bdc0e00ed35b333c1b8d580553d5dc39ef65c696807f5b22a998681e563ca93d25f0eb6d79dc3a3b4df3b05907c1d4b00ec7592e842879db91aba4eab53ed
 SHA512 
be56b61c53f870cf76e87793c95c0c2b3e7a9098aaa9179a7643adbeb627dea5055465824ad9c31f65d3b13b664f19f8fc447c2931cb201a0ae3c5c32dda049a
+DIST aesara-rel-2.3.3.tar.gz 8179684 BLAKE2B 
ef738190e4169d43bb2323ee9425a1fc6d96a808d439940ead30b487b99fddaff073e3e05a720bcdb1eaed6fa903179be5df975747ac92e2b81256dbca886bea
 SHA512 
f725cd84a598ea94f9cb22de768d004e96a0236fc4b93a9882a57494ce006fa657b1668b52b60d465816bb78c106a8d08a2a30eef2f5f9a55c437e28c94ee458

diff --git a/dev-python/aesara/aesara-2.3.3.ebuild 
b/dev-python/aesara/aesara-2.3.3.ebuild
new file mode 100644
index ..4cbcd19e72fb
--- /dev/null
+++ b/dev-python/aesara/aesara-2.3.3.ebuild
@@ -0,0 +1,75 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1 multiprocessing optfeature
+
+MY_P=aesara-rel-${PV}
+DESCRIPTION="Library for operating on mathematical expressions with 
multi-dimensional arrays"
+HOMEPAGE="https://github.com/aesara-devs/aesara";
+SRC_URI="https://github.com/aesara-devs/aesara/archive/rel-${PV}.tar.gz -> 
${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   dev-python/cons[${PYTHON_USEDEP}]
+   dev-python/etuples[${PYTHON_USEDEP}]
+   dev-python/logical-unification[${PYTHON_USEDEP}]
+   dev-python/minikanren[${PYTHON_USEDEP}]
+   dev-python/filelock[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.17.0[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]"
+BDEPEND="
+   test? (
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_sphinx doc 'dev-python/sphinx_rtd_theme'
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   sed -i -e "s/tests.\*/tests\*/" setup.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # speed tests are unreliable
+   tests/scan/test_basic.py::test_speed
+   tests/scan/test_basic.py::test_speed_rnn
+   tests/scan/test_basic.py::test_speed_batchrnn
+   tests/link/test_vm.py::test_speed
+   tests/link/test_vm.py::test_speed_lazy
+   tests/tensor/test_gc.py::test_merge_opt_runtime
+
+   # rounding problem?
+   # https://github.com/aesara-devs/aesara/issues/477
+   tests/tensor/test_math_scipy.py::TestGammaUBroadcast::test_good
+   
tests/tensor/test_math_scipy.py::TestGammaUInplaceBroadcast::test_good
+   )
+   local EPYTEST_IGNORE=(
+   # we do not package numba
+   tests/link/test_numba.py
+   )
+
+   distutils_install_for_testing
+   epytest -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")"
+}
+
+# 
https://dev.gentoo.org/~mgorny/python-guide/concept.html#packaging-pkgutil-style-namespaces-in-gentoo
+python_install() {
+   rm "${BUILD_DIR}"/lib/bin/__init__.py || die
+   distutils-r1_python_install
+}
+
+pkg_postinst() {
+   optfeature "GPU code generation/execution on NVIDIA gpus" 
dev-util/nvidia-cuda-toolkit dev-util/nvidia-cuda-sdk
+   optfeature "GPU/CPU code generation on CUDA and OpenCL devices" 
dev-libs/libgpuarray dev-python/pycuda
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtprintsupport/

2021-12-16 Thread Andreas Sturmlechner
commit: 18c01403a496aa20ebe5a88b0a5c7b61d90869b1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 16 12:18:20 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 16 12:23:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18c01403

dev-qt/qtprintsupport: Drop 5.15.2-r10

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

 dev-qt/qtprintsupport/Manifest |  1 -
 .../qtprintsupport-5.15.2-r10.ebuild   | 44 --
 2 files changed, 45 deletions(-)

diff --git a/dev-qt/qtprintsupport/Manifest b/dev-qt/qtprintsupport/Manifest
index 6b292bfec0c4..8f45ea5ec73a 100644
--- a/dev-qt/qtprintsupport/Manifest
+++ b/dev-qt/qtprintsupport/Manifest
@@ -1,2 +1 @@
 DIST qtbase-5.15.2-7c6c0030.tar.gz 67967537 BLAKE2B 
623b99942e9df9bc8ac436a21503060845f9e3532aa0e02ccd927762382be26091878fbe092e80c0ac68bead51d09647e40e0cf61361d62ad226ed46b221132b
 SHA512 
eb88b21764591246c5f04f63405dbfcd39afb737e96bb29c7721644b9aba3ea95df24ed9699acfd03a8c088ee72efec1fb0267aef8d665d5ec72ee75fc08ecdc
-DIST qtbase-5.15.2-a4f9e569.tar.gz 67964648 BLAKE2B 
2be7351221c46846ef37308a0238aa4a39369da63fe5c3be5e142ff700c80e125821c06b43c9e4e949bd9f285222a60888303aef956c9b427a9a6c8ee3bc6b1a
 SHA512 
b4be8132a1d7119fd9728f7bf2d72cdd27d2092e7f178a1f15707204f5ffade7ce505c897fd658bb19274bdd6238b2eb16f7fcfedff2567877dc3458b4091388

diff --git a/dev-qt/qtprintsupport/qtprintsupport-5.15.2-r10.ebuild 
b/dev-qt/qtprintsupport/qtprintsupport-5.15.2-r10.ebuild
deleted file mode 100644
index 39e464926b22..
--- a/dev-qt/qtprintsupport/qtprintsupport-5.15.2-r10.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-KDE_ORG_COMMIT=a4f9e56975fa6ab4a1f63a9b34a4d77b1cfe4acd
-QT5_MODULE="qtbase"
-VIRTUALX_REQUIRED="test"
-inherit qt5-build
-
-DESCRIPTION="Printing support library for the Qt5 framework"
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
-fi
-
-IUSE="cups gles2-only"
-
-RDEPEND="
-   =dev-qt/qtcore-${QT5_PV}*:5=
-   =dev-qt/qtgui-${QT5_PV}*[gles2-only=]
-   =dev-qt/qtwidgets-${QT5_PV}*[gles2-only=]
-   cups? ( >=net-print/cups-1.4 )
-"
-DEPEND="${RDEPEND}
-   test? ( =dev-qt/qtnetwork-${QT5_PV}* )
-"
-
-QT5_TARGET_SUBDIRS=(
-   src/printsupport
-   src/plugins/printsupport
-)
-
-QT5_GENTOO_CONFIG=(
-   cups
-)
-
-src_configure() {
-   local myconf=(
-   $(qt_use cups)
-   -opengl $(usex gles2-only es2 desktop)
-   )
-   qt5-build_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtdeclarative/

2021-12-16 Thread Andreas Sturmlechner
commit: 4ee4bc9f87f33fe937f3bd1049444289fabde2da
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 16 12:19:30 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 16 12:23:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ee4bc9f

dev-qt/qtdeclarative: Drop 5.15.2-r12

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

 dev-qt/qtdeclarative/Manifest  |  1 -
 .../qtdeclarative/qtdeclarative-5.15.2-r12.ebuild  | 59 --
 2 files changed, 60 deletions(-)

diff --git a/dev-qt/qtdeclarative/Manifest b/dev-qt/qtdeclarative/Manifest
index cbcb51747272..f573e7b4954d 100644
--- a/dev-qt/qtdeclarative/Manifest
+++ b/dev-qt/qtdeclarative/Manifest
@@ -1,2 +1 @@
-DIST qtdeclarative-5.15.2-1c33a9d0.tar.gz 24342460 BLAKE2B 
f83d01c9bd28842f53b5bf9e95d1b83738792ae6969309ef702fef2e943a4e886313445c7332a2a5cb72cd99aa5db7520a04a054b16d8065bc03b95cbe14026d
 SHA512 
a1b6ae66c83cc7385c51845f1cbafb55cadd69c121196cd138abc92e964d0bb594ce20267244e4202a9108d92b9bf0f107536774f2a76da71b434692559c1fb4
 DIST qtdeclarative-5.15.2-7024ac83.tar.gz 24346858 BLAKE2B 
75a6a36fcf39bdf38292af1fe10b0f5bf3e72b39c8403fdbfed9c0c0a739919d93592157cf8d8f33523e8db52662f1f7d63209d173730b4c06045e9c1f0a4563
 SHA512 
8be70e68abd035a43ecfab7a1e23969428abf9425558875b8ee5e24a45a563afbef30d0852b495ab918b22118fa88877bb6d390cf90a928b02c96ee1e77f2331

diff --git a/dev-qt/qtdeclarative/qtdeclarative-5.15.2-r12.ebuild 
b/dev-qt/qtdeclarative/qtdeclarative-5.15.2-r12.ebuild
deleted file mode 100644
index 7987361ecfdd..
--- a/dev-qt/qtdeclarative/qtdeclarative-5.15.2-r12.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 2009-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-KDE_ORG_COMMIT=1c33a9d045897ce755a818ebff7ddecae97885d3
-PYTHON_COMPAT=( python3_{8..10} )
-inherit python-any-r1 qt5-build
-
-DESCRIPTION="The QML and Quick modules for the Qt5 framework"
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
-fi
-
-IUSE="gles2-only +jit localstorage vulkan +widgets"
-
-# qtgui[gles2-only=] is needed because of bug 504322
-DEPEND="
-   =dev-qt/qtcore-${QT5_PV}*
-   =dev-qt/qtgui-${QT5_PV}*:5=[gles2-only=,vulkan=]
-   =dev-qt/qtnetwork-${QT5_PV}*
-   =dev-qt/qttest-${QT5_PV}*
-   media-libs/libglvnd
-   localstorage? ( =dev-qt/qtsql-${QT5_PV}* )
-   widgets? ( =dev-qt/qtwidgets-${QT5_PV}*[gles2-only=] )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="${PYTHON_DEPS}"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-5.14.2-QQuickItemView-fix-maxXY-extent.patch" # 
QTBUG-83890
-   "${FILESDIR}/${PN}-5.15.2-riscv-atomic.patch" # bug 790689
-)
-
-src_prepare() {
-   use jit || PATCHES+=( "${FILESDIR}/${PN}-5.4.2-disable-jit.patch" )
-
-   qt_use_disable_mod localstorage sql \
-   src/imports/imports.pro
-
-   qt_use_disable_mod widgets widgets \
-   src/src.pro \
-   src/qmltest/qmltest.pro \
-   tests/auto/auto.pro \
-   tools/tools.pro \
-   tools/qmlscene/qmlscene.pro \
-   tools/qml/qml.pro
-
-   qt5-build_src_prepare
-}
-
-src_configure() {
-   local myqmakeargs=(
-   --
-   -qml-debug
-   )
-   qt5-build_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtsvg/

2021-12-16 Thread Andreas Sturmlechner
commit: 31ff2b10612ca360e3bf5e65ac3918c01412f9ab
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 16 12:19:49 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 16 12:23:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31ff2b10

dev-qt/qtsvg: Drop 5.15.2-r10

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

 dev-qt/qtsvg/Manifest|  1 -
 dev-qt/qtsvg/qtsvg-5.15.2-r10.ebuild | 25 -
 2 files changed, 26 deletions(-)

diff --git a/dev-qt/qtsvg/Manifest b/dev-qt/qtsvg/Manifest
index a5b8f503a5b2..07572d3e1deb 100644
--- a/dev-qt/qtsvg/Manifest
+++ b/dev-qt/qtsvg/Manifest
@@ -1,2 +1 @@
 DIST qtsvg-5.15.2-24128cdf.tar.gz 2779708 BLAKE2B 
5e52a0b1c7b3e21ab58b2e6e091c8fc85d5432e247313f74bd8c4d8899cd2634e3242d5d328174d3702544d050504dd3870c1c075a2b7a87c268c371c95b0c76
 SHA512 
c0840608ff66b0f335f8e5d883a5f8c113de91608ea8b613743c4881a103ff1c9981337c29a0e272ca2bccd4077df9cd8fde320e09eec1e8f6a3eead5cb75198
-DIST qtsvg-5.15.2-cfc61697.tar.gz 2779382 BLAKE2B 
cd75575741b05cb1ec1b206d1d338c011c718923339d1cb169f0f537f21931e32042f10574e70b5c64d4fc352dfa56adc8b852dafa5131198630afe6bb806580
 SHA512 
1f8b52c713b4c6d4974af46ebe6519ea597f72ac0c4b80e061f714ff30449e6fdae94eb9705f3c1b857c5ad0647e5875260ee40051cec78321caf7b944fd3d70

diff --git a/dev-qt/qtsvg/qtsvg-5.15.2-r10.ebuild 
b/dev-qt/qtsvg/qtsvg-5.15.2-r10.ebuild
deleted file mode 100644
index 63798ecf7608..
--- a/dev-qt/qtsvg/qtsvg-5.15.2-r10.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-KDE_ORG_COMMIT=cfc616978b52a396b2ef6900546f7fc086d7cab3
-inherit qt5-build
-
-DESCRIPTION="SVG rendering library for the Qt5 framework"
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
-fi
-
-IUSE=""
-
-RDEPEND="
-   =dev-qt/qtcore-${QT5_PV}*
-   =dev-qt/qtgui-${QT5_PV}*
-   =dev-qt/qtwidgets-${QT5_PV}*
-   sys-libs/zlib:=
-"
-DEPEND="${RDEPEND}
-   test? ( =dev-qt/qtxml-${QT5_PV}* )
-"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwidgets/

2021-12-16 Thread Andreas Sturmlechner
commit: 833ec6d8f949dd8f44ae614ebae083af939aaa31
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 16 12:19:01 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 16 12:23:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=833ec6d8

dev-qt/qtwidgets: Drop 5.15.2-r11

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

 dev-qt/qtwidgets/Manifest|  1 -
 dev-qt/qtwidgets/qtwidgets-5.15.2-r11.ebuild | 64 
 2 files changed, 65 deletions(-)

diff --git a/dev-qt/qtwidgets/Manifest b/dev-qt/qtwidgets/Manifest
index 6b292bfec0c4..8f45ea5ec73a 100644
--- a/dev-qt/qtwidgets/Manifest
+++ b/dev-qt/qtwidgets/Manifest
@@ -1,2 +1 @@
 DIST qtbase-5.15.2-7c6c0030.tar.gz 67967537 BLAKE2B 
623b99942e9df9bc8ac436a21503060845f9e3532aa0e02ccd927762382be26091878fbe092e80c0ac68bead51d09647e40e0cf61361d62ad226ed46b221132b
 SHA512 
eb88b21764591246c5f04f63405dbfcd39afb737e96bb29c7721644b9aba3ea95df24ed9699acfd03a8c088ee72efec1fb0267aef8d665d5ec72ee75fc08ecdc
-DIST qtbase-5.15.2-a4f9e569.tar.gz 67964648 BLAKE2B 
2be7351221c46846ef37308a0238aa4a39369da63fe5c3be5e142ff700c80e125821c06b43c9e4e949bd9f285222a60888303aef956c9b427a9a6c8ee3bc6b1a
 SHA512 
b4be8132a1d7119fd9728f7bf2d72cdd27d2092e7f178a1f15707204f5ffade7ce505c897fd658bb19274bdd6238b2eb16f7fcfedff2567877dc3458b4091388

diff --git a/dev-qt/qtwidgets/qtwidgets-5.15.2-r11.ebuild 
b/dev-qt/qtwidgets/qtwidgets-5.15.2-r11.ebuild
deleted file mode 100644
index 90eb44f61245..
--- a/dev-qt/qtwidgets/qtwidgets-5.15.2-r11.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-KDE_ORG_COMMIT=a4f9e56975fa6ab4a1f63a9b34a4d77b1cfe4acd
-QT5_MODULE="qtbase"
-inherit qt5-build
-
-DESCRIPTION="Set of components for creating classic desktop-style UIs for the 
Qt5 framework"
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
-fi
-
-# keep IUSE defaults in sync with qtgui
-IUSE="dbus gles2-only gtk +png +X"
-
-REQUIRED_USE="gtk? ( dbus )"
-
-DEPEND="
-   =dev-qt/qtcore-${QT5_PV}*:5=
-   =dev-qt/qtgui-${QT5_PV}*:5=[gles2-only=,png=,X?]
-   dbus? ( =dev-qt/qtdbus-${QT5_PV}* )
-   gtk? (
-   dev-libs/glib:2
-   =dev-qt/qtgui-${QT5_PV}*:5=[dbus]
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   x11-libs/pango
-   )
-"
-RDEPEND="${DEPEND}"
-
-QT5_TARGET_SUBDIRS=(
-   src/tools/uic
-   src/widgets
-   src/plugins/platformthemes
-)
-
-QT5_GENTOO_CONFIG=(
-   dbus:xdgdesktopportal:
-   gtk:gtk3:
-   ::widgets
-   !:no-widgets:
-)
-
-QT5_GENTOO_PRIVATE_CONFIG=(
-   :widgets
-)
-
-src_configure() {
-   local myconf=(
-   -opengl $(usex gles2-only es2 desktop)
-   $(qt_use dbus)
-   $(qt_use gtk)
-   -gui
-   $(qt_use png libpng system)
-   -widgets
-   $(qt_use X xcb)
-   $(usev X '-xcb-xlib -xkbcommon')
-   )
-   qt5-build_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtnetwork/

2021-12-16 Thread Andreas Sturmlechner
commit: b59dceeb0bf1332835482726bb1c8aef82db989e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 16 12:17:58 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 16 12:23:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b59dceeb

dev-qt/qtnetwork: Drop 5.15.2-r12

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

 dev-qt/qtnetwork/Manifest|  1 -
 dev-qt/qtnetwork/qtnetwork-5.15.2-r12.ebuild | 74 
 2 files changed, 75 deletions(-)

diff --git a/dev-qt/qtnetwork/Manifest b/dev-qt/qtnetwork/Manifest
index a1529a4a4793..6b292bfec0c4 100644
--- a/dev-qt/qtnetwork/Manifest
+++ b/dev-qt/qtnetwork/Manifest
@@ -1,3 +1,2 @@
 DIST qtbase-5.15.2-7c6c0030.tar.gz 67967537 BLAKE2B 
623b99942e9df9bc8ac436a21503060845f9e3532aa0e02ccd927762382be26091878fbe092e80c0ac68bead51d09647e40e0cf61361d62ad226ed46b221132b
 SHA512 
eb88b21764591246c5f04f63405dbfcd39afb737e96bb29c7721644b9aba3ea95df24ed9699acfd03a8c088ee72efec1fb0267aef8d665d5ec72ee75fc08ecdc
 DIST qtbase-5.15.2-a4f9e569.tar.gz 67964648 BLAKE2B 
2be7351221c46846ef37308a0238aa4a39369da63fe5c3be5e142ff700c80e125821c06b43c9e4e949bd9f285222a60888303aef956c9b427a9a6c8ee3bc6b1a
 SHA512 
b4be8132a1d7119fd9728f7bf2d72cdd27d2092e7f178a1f15707204f5ffade7ce505c897fd658bb19274bdd6238b2eb16f7fcfedff2567877dc3458b4091388
-DIST qtbase-5.15.2-c9fde86b.tar.gz 67960262 BLAKE2B 
d1a6a7dac78abce189a753c0a00185fbe03f9de97b226790535af73a9bc009b353fe1edeb754d2098a7beeb7cd1c6e7efb949797658269ef0d0f200f11909820
 SHA512 
99026537dd4da678bcb04214ebb717907422e373b44fd3b3716798565c330f8d492ec1fc67d936c5125292b30e44f23abe4bf6434b58b9fa76bada3680dfc9f8

diff --git a/dev-qt/qtnetwork/qtnetwork-5.15.2-r12.ebuild 
b/dev-qt/qtnetwork/qtnetwork-5.15.2-r12.ebuild
deleted file mode 100644
index 0577a30d5535..
--- a/dev-qt/qtnetwork/qtnetwork-5.15.2-r12.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-KDE_ORG_COMMIT=c9fde86b0a2440133bc08f4811b6ca793be47f0a
-QT5_MODULE="qtbase"
-inherit qt5-build
-
-DESCRIPTION="Network abstraction library for the Qt5 framework"
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
-fi
-
-IUSE="bindist connman gssapi libproxy networkmanager sctp +ssl"
-
-DEPEND="
-   =dev-qt/qtcore-${QT5_PV}*:5=
-   sys-libs/zlib:=
-   connman? ( =dev-qt/qtdbus-${QT5_PV}* )
-   gssapi? ( virtual/krb5 )
-   libproxy? ( net-libs/libproxy )
-   networkmanager? ( =dev-qt/qtdbus-${QT5_PV}* )
-   sctp? ( kernel_linux? ( net-misc/lksctp-tools ) )
-   ssl? ( >=dev-libs/openssl-1.1.1:0=[bindist(-)=] )
-"
-RDEPEND="${DEPEND}
-   connman? ( net-misc/connman )
-   networkmanager? ( net-misc/networkmanager )
-"
-
-QT5_TARGET_SUBDIRS=(
-   src/network
-   src/plugins/bearer/generic
-)
-
-QT5_GENTOO_CONFIG=(
-   libproxy:libproxy:
-   ssl::SSL
-   ssl::OPENSSL
-   ssl:openssl-linked:LINKED_OPENSSL
-)
-
-QT5_GENTOO_PRIVATE_CONFIG=(
-   :network
-)
-
-pkg_setup() {
-   use connman && QT5_TARGET_SUBDIRS+=(src/plugins/bearer/connman)
-   use networkmanager && 
QT5_TARGET_SUBDIRS+=(src/plugins/bearer/networkmanager)
-}
-
-src_configure() {
-   local myconf=(
-   $(usev connman -dbus-linked)
-   $(qt_use gssapi feature-gssapi)
-   $(qt_use libproxy)
-   $(usev networkmanager -dbus-linked)
-   $(qt_use sctp)
-   $(usev ssl -openssl-linked)
-   )
-   qt5-build_src_configure
-}
-
-src_install() {
-   qt5-build_src_install
-
-   # workaround for bug 652650
-   if use ssl; then
-   sed -e "/^#define QT_LINKED_OPENSSL/s/$/ true/" \
-   -i "${D}${QT5_HEADERDIR}"/Gentoo/${PN}-qconfig.h || die
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qt3d/

2021-12-16 Thread Andreas Sturmlechner
commit: dbbc0a2b9902eb50b4c89f5c7a8c21f1fbccd235
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 16 12:22:59 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 16 12:24:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbbc0a2b

dev-qt/qt3d: Drop 5.15.2-r10

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

 dev-qt/qt3d/Manifest   |  1 -
 dev-qt/qt3d/qt3d-5.15.2-r10.ebuild | 46 --
 2 files changed, 47 deletions(-)

diff --git a/dev-qt/qt3d/Manifest b/dev-qt/qt3d/Manifest
index 9f47af6eeaab..191ec8cebd13 100644
--- a/dev-qt/qt3d/Manifest
+++ b/dev-qt/qt3d/Manifest
@@ -1,2 +1 @@
-DIST qt3d-5.15.2-7edec6e0.tar.gz 86196121 BLAKE2B 
c6009fa8b94da1a498e14f61680be40cbc5e32e390d89911b5a7b7d19bae7c66e048101e6f3b6c1f7e5cc4e64da7ea801f4bf95c346b35d28a49866d9541e146
 SHA512 
73941c2052aeb9611cf24bbb7b3ba317e53207c080070bb5d602c9f2725d2ab305674e0f29b737ea62ff7a285b362ec53b3588b31c18635e250bc90081d9b5e7
 DIST qt3d-5.15.2-dba14d48.tar.gz 86196833 BLAKE2B 
b5a2333d890dab3b28d0cd1e47b217ff1bc2f772b3477650263e1754ad4e06a63d026350c5daf07e171bd64e097c847c65a8f5f6a538a8ddc9db20a8df2f7b20
 SHA512 
eb61c94c5438c9e68253958c0fcc60ec7592916e7fc08f723a4218bc24ce5536b25df5f46c97fd86ed19de2b0851a31779fbfdb7c23c70323338a98bbc77a650

diff --git a/dev-qt/qt3d/qt3d-5.15.2-r10.ebuild 
b/dev-qt/qt3d/qt3d-5.15.2-r10.ebuild
deleted file mode 100644
index b621640f9277..
--- a/dev-qt/qt3d/qt3d-5.15.2-r10.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-KDE_ORG_COMMIT=7edec6e014de27b9dd03f63875c471aac606a918
-inherit qt5-build
-
-DESCRIPTION="3D rendering module for the Qt5 framework"
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm64 x86"
-fi
-
-# TODO: tools
-IUSE="gamepad gles2-only qml vulkan"
-
-RDEPEND="
-   =dev-qt/qtconcurrent-${QT5_PV}*
-   =dev-qt/qtcore-${QT5_PV}*
-   =dev-qt/qtgui-${QT5_PV}*:5=[vulkan=]
-   =dev-qt/qtnetwork-${QT5_PV}*
-   >=media-libs/assimp-4.0.0
-   gamepad? ( =dev-qt/qtgamepad-${QT5_PV}* )
-   qml? ( =dev-qt/qtdeclarative-${QT5_PV}*[gles2-only=] )
-"
-DEPEND="${RDEPEND}
-   vulkan? ( dev-util/vulkan-headers )
-"
-
-src_configure() {
-   local myqmakeargs=(
-   --
-   -system-assimp
-   )
-   qt5-build_src_configure
-}
-
-src_prepare() {
-   rm -r src/3rdparty/assimp/{code,contrib,include} || die
-
-   qt_use_disable_mod gamepad gamepad src/input/frontend/frontend.pri
-   qt_use_disable_mod qml quick src/src.pro
-
-   qt5-build_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwayland/

2021-12-16 Thread Andreas Sturmlechner
commit: f72c0101bc5af17f71c36ed37ec42ff3d3f272cb
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 16 12:20:16 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 16 12:23:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f72c0101

dev-qt/qtwayland: Drop 5.15.2-r14

Closes: https://bugs.gentoo.org/818997
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtwayland/Manifest|  1 -
 dev-qt/qtwayland/qtwayland-5.15.2-r14.ebuild | 42 
 2 files changed, 43 deletions(-)

diff --git a/dev-qt/qtwayland/Manifest b/dev-qt/qtwayland/Manifest
index afef59a02c36..18076e21b623 100644
--- a/dev-qt/qtwayland/Manifest
+++ b/dev-qt/qtwayland/Manifest
@@ -1,2 +1 @@
 DIST qtwayland-5.15.2-eb422ab5.tar.gz 829140 BLAKE2B 
e913e481741b23873a88db32896c7f3445a2ddee2dc9cfdf8e132fdd79021de369506e32ce9ed50977fb1c42d624169b7d67c9247f7609276e699e5ab3a9462e
 SHA512 
b5094b00feab5909b4de6382a3633fc321d5f5fbc34e4cbde1f364123b24990df95cef5c34a90f73dca67b0578e0da71b894f771ebbd8d152dcdc71b114d9773
-DIST qtwayland-5.15.2-efe6edca.tar.gz 829293 BLAKE2B 
6ccc5a4e111818cc65855eb4570727f30932bec9a749069550d07332df719eaeec0baf472c025150a32c9c380294f5e9496ad3babd181887a02fc37d1bfd5f2a
 SHA512 
87190cd1ade57c98da972a2f5d48aa0376ccc4bfa589f5832b8a62a63b3eafa6acf88d812ae98c484d4b02878ae2c1986c3759c0ba3f46894c76af713d7b8346

diff --git a/dev-qt/qtwayland/qtwayland-5.15.2-r14.ebuild 
b/dev-qt/qtwayland/qtwayland-5.15.2-r14.ebuild
deleted file mode 100644
index 3fa3cf6f..
--- a/dev-qt/qtwayland/qtwayland-5.15.2-r14.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-KDE_ORG_COMMIT=efe6edcaf8eba601dff99ec6ad4457c8a4442f86
-inherit qt5-build
-
-DESCRIPTION="Wayland platform plugin for Qt"
-SLOT=5/${QT5_PV} # bug 815646
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
-fi
-
-IUSE="vulkan X"
-
-DEPEND="
-   dev-libs/wayland
-   =dev-qt/qtcore-${QT5_PV}*:5=
-   =dev-qt/qtdeclarative-${QT5_PV}*:5=
-   =dev-qt/qtgui-${QT5_PV}*:5=[egl,libinput,vulkan=,X?]
-   media-libs/libglvnd
-   >=x11-libs/libxkbcommon-0.2.0
-   vulkan? ( dev-util/vulkan-headers )
-   X? (
-   =dev-qt/qtgui-${QT5_PV}*[-gles2-only]
-   x11-libs/libX11
-   x11-libs/libXcomposite
-   )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   local myqmakeargs=(
-   --
-   $(qt_use vulkan feature-wayland-vulkan-server-buffer)
-   $(qt_use X feature-xcomposite-egl)
-   $(qt_use X feature-xcomposite-glx)
-   )
-   qt5-build_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtgui/

2021-12-16 Thread Andreas Sturmlechner
commit: f9154c9d2a6cb95737a1f979c49d744e368a7f64
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 16 12:17:06 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 16 12:23:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9154c9d

dev-qt/qtgui: Drop 5.15.2-r13

Closes: https://bugs.gentoo.org/816492
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtgui/Manifest|   1 -
 dev-qt/qtgui/qtgui-5.15.2-r13.ebuild | 182 ---
 2 files changed, 183 deletions(-)

diff --git a/dev-qt/qtgui/Manifest b/dev-qt/qtgui/Manifest
index 6b292bfec0c4..8f45ea5ec73a 100644
--- a/dev-qt/qtgui/Manifest
+++ b/dev-qt/qtgui/Manifest
@@ -1,2 +1 @@
 DIST qtbase-5.15.2-7c6c0030.tar.gz 67967537 BLAKE2B 
623b99942e9df9bc8ac436a21503060845f9e3532aa0e02ccd927762382be26091878fbe092e80c0ac68bead51d09647e40e0cf61361d62ad226ed46b221132b
 SHA512 
eb88b21764591246c5f04f63405dbfcd39afb737e96bb29c7721644b9aba3ea95df24ed9699acfd03a8c088ee72efec1fb0267aef8d665d5ec72ee75fc08ecdc
-DIST qtbase-5.15.2-a4f9e569.tar.gz 67964648 BLAKE2B 
2be7351221c46846ef37308a0238aa4a39369da63fe5c3be5e142ff700c80e125821c06b43c9e4e949bd9f285222a60888303aef956c9b427a9a6c8ee3bc6b1a
 SHA512 
b4be8132a1d7119fd9728f7bf2d72cdd27d2092e7f178a1f15707204f5ffade7ce505c897fd658bb19274bdd6238b2eb16f7fcfedff2567877dc3458b4091388

diff --git a/dev-qt/qtgui/qtgui-5.15.2-r13.ebuild 
b/dev-qt/qtgui/qtgui-5.15.2-r13.ebuild
deleted file mode 100644
index f7f9b5e7c58a..
--- a/dev-qt/qtgui/qtgui-5.15.2-r13.ebuild
+++ /dev/null
@@ -1,182 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-KDE_ORG_COMMIT=a4f9e56975fa6ab4a1f63a9b34a4d77b1cfe4acd
-QT5_MODULE="qtbase"
-inherit qt5-build
-
-DESCRIPTION="The GUI module and platform plugins for the Qt5 framework"
-SLOT=5/${QT5_PV} # bug 707658
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
-fi
-
-IUSE="accessibility dbus egl eglfs evdev +gif gles2-only ibus jpeg
-   +libinput linuxfb +png tslib tuio +udev vnc vulkan wayland +X"
-REQUIRED_USE="
-   || ( eglfs X )
-   accessibility? ( dbus X )
-   eglfs? ( egl )
-   ibus? ( dbus )
-   libinput? ( udev )
-   X? ( gles2-only? ( egl ) )
-"
-
-RDEPEND="
-   dev-libs/glib:2
-   =dev-qt/qtcore-${QT5_PV}*:5=
-   dev-util/gtk-update-icon-cache
-   media-libs/fontconfig
-   >=media-libs/freetype-2.6.1:2
-   >=media-libs/harfbuzz-1.6.0:=
-   media-libs/libglvnd
-   sys-libs/zlib:=
-   dbus? ( =dev-qt/qtdbus-${QT5_PV}* )
-   eglfs? (
-   media-libs/mesa[gbm]
-   x11-libs/libdrm
-   )
-   evdev? ( sys-libs/mtdev )
-   jpeg? ( virtual/jpeg:0 )
-   libinput? (
-   dev-libs/libinput:=
-   >=x11-libs/libxkbcommon-0.5.0
-   )
-   png? ( media-libs/libpng:0= )
-   tslib? ( >=x11-libs/tslib-1.21 )
-   tuio? ( =dev-qt/qtnetwork-${QT5_PV}* )
-   udev? ( virtual/libudev:= )
-   vnc? ( =dev-qt/qtnetwork-${QT5_PV}* )
-   vulkan? ( dev-util/vulkan-headers )
-   X? (
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   >=x11-libs/libxcb-1.12:=[xkb]
-   >=x11-libs/libxkbcommon-0.5.0[X]
-   x11-libs/xcb-util-image
-   x11-libs/xcb-util-keysyms
-   x11-libs/xcb-util-renderutil
-   x11-libs/xcb-util-wm
-   )
-"
-DEPEND="${RDEPEND}
-   evdev? ( sys-kernel/linux-headers )
-   udev? ( sys-kernel/linux-headers )
-"
-PDEPEND="
-   ibus? ( app-i18n/ibus )
-   wayland? ( =dev-qt/qtwayland-${QT5_PV}* )
-"
-
-QT5_TARGET_SUBDIRS=(
-   src/tools/qvkgen
-   src/gui
-   src/openglextensions
-   src/platformheaders
-   src/platformsupport
-   src/plugins/generic
-   src/plugins/imageformats
-   src/plugins/platforms
-   src/plugins/platforminputcontexts
-)
-
-QT5_GENTOO_CONFIG=(
-   accessibility:accessibility-atspi-bridge
-   egl:egl:
-   eglfs:eglfs:
-   eglfs:eglfs_egldevice:
-   eglfs:eglfs_gbm:
-   evdev:evdev:
-   evdev:mtdev:
-   :fontconfig:
-   :system-freetype:FREETYPE
-   !:no-freetype:
-   !gif:no-gif:
-   gles2-only::OPENGL_ES
-   gles2-only:opengles2:OPENGL_ES_2
-   !:no-gui:
-   :system-harfbuzz:
-   !:no-harfbuzz:
-   jpeg:system-jpeg:IMAGEFORMAT_JPEG
-   !jpeg:no-jpeg:
-   libinput
-   libinput:xkbcommon:
-   :opengl
-   png:png:
-   png:system-png:IMAGEFORMAT_PNG
-   !png:no-png:
-   tslib:tslib:
-   udev:libudev:
-   vulkan:vulkan:
-   X:xcb:
-   X:xcb-glx:
-   X:xcb-plugin:
-   X:xcb-render:
-   X:xcb-sm:
-   X:xcb-xlib:
-   X:xcb-xin

[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtsql/

2021-12-16 Thread Andreas Sturmlechner
commit: 8f0fd0bb63b05c09530240ce8117b3c66cfc30b1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 16 12:18:43 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 16 12:23:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f0fd0bb

dev-qt/qtsql: Drop 5.15.2-r10

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

 dev-qt/qtsql/Manifest|  1 -
 dev-qt/qtsql/qtsql-5.15.2-r10.ebuild | 57 
 2 files changed, 58 deletions(-)

diff --git a/dev-qt/qtsql/Manifest b/dev-qt/qtsql/Manifest
index 6b292bfec0c4..8f45ea5ec73a 100644
--- a/dev-qt/qtsql/Manifest
+++ b/dev-qt/qtsql/Manifest
@@ -1,2 +1 @@
 DIST qtbase-5.15.2-7c6c0030.tar.gz 67967537 BLAKE2B 
623b99942e9df9bc8ac436a21503060845f9e3532aa0e02ccd927762382be26091878fbe092e80c0ac68bead51d09647e40e0cf61361d62ad226ed46b221132b
 SHA512 
eb88b21764591246c5f04f63405dbfcd39afb737e96bb29c7721644b9aba3ea95df24ed9699acfd03a8c088ee72efec1fb0267aef8d665d5ec72ee75fc08ecdc
-DIST qtbase-5.15.2-a4f9e569.tar.gz 67964648 BLAKE2B 
2be7351221c46846ef37308a0238aa4a39369da63fe5c3be5e142ff700c80e125821c06b43c9e4e949bd9f285222a60888303aef956c9b427a9a6c8ee3bc6b1a
 SHA512 
b4be8132a1d7119fd9728f7bf2d72cdd27d2092e7f178a1f15707204f5ffade7ce505c897fd658bb19274bdd6238b2eb16f7fcfedff2567877dc3458b4091388

diff --git a/dev-qt/qtsql/qtsql-5.15.2-r10.ebuild 
b/dev-qt/qtsql/qtsql-5.15.2-r10.ebuild
deleted file mode 100644
index 7d2229ef0738..
--- a/dev-qt/qtsql/qtsql-5.15.2-r10.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-KDE_ORG_COMMIT=a4f9e56975fa6ab4a1f63a9b34a4d77b1cfe4acd
-QT5_MODULE="qtbase"
-inherit qt5-build
-
-DESCRIPTION="SQL abstraction library for the Qt5 framework"
-SLOT=5/${QT5_PV} # bug 639140
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
-fi
-
-IUSE="freetds mysql oci8 odbc postgres +sqlite"
-
-REQUIRED_USE="
-   || ( freetds mysql oci8 odbc postgres sqlite )
-"
-
-DEPEND="
-   =dev-qt/qtcore-${QT5_PV}*:5=
-   freetds? ( dev-db/freetds )
-   mysql? ( dev-db/mysql-connector-c:= )
-   oci8? ( dev-db/oracle-instantclient:=[sdk] )
-   odbc? ( dev-db/unixODBC )
-   postgres? ( dev-db/postgresql:* )
-   sqlite? ( dev-db/sqlite:3 )
-"
-RDEPEND="${DEPEND}"
-
-QT5_TARGET_SUBDIRS=(
-   src/sql
-   src/plugins/sqldrivers
-)
-
-QT5_GENTOO_PRIVATE_CONFIG=(
-   :sql
-)
-
-src_configure() {
-   local myconf=(
-   $(qt_use freetds  sql-tdsplugin)
-   $(qt_use mysqlsql-mysql  plugin)
-   $(qt_use oci8 sql-ociplugin)
-   $(qt_use odbc sql-odbc   plugin)
-   $(qt_use postgres sql-psql   plugin)
-   $(qt_use sqlite   sql-sqlite plugin)
-   $(usev sqlite -system-sqlite)
-   )
-
-   use oci8 && myconf+=("-I${ORACLE_HOME}/include" 
"-L${ORACLE_HOME}/$(get_libdir)")
-
-   qt5-build_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtcore/

2021-12-16 Thread Andreas Sturmlechner
commit: 1f26857d3b72fda90945c6d4d2f9abbd9021c0b0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 16 12:16:28 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 16 12:23:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f26857d

dev-qt/qtcore: Drop 5.15.2-r10

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

 dev-qt/qtcore/Manifest |   1 -
 dev-qt/qtcore/qtcore-5.15.2-r10.ebuild | 104 -
 2 files changed, 105 deletions(-)

diff --git a/dev-qt/qtcore/Manifest b/dev-qt/qtcore/Manifest
index 6b292bfec0c4..8f45ea5ec73a 100644
--- a/dev-qt/qtcore/Manifest
+++ b/dev-qt/qtcore/Manifest
@@ -1,2 +1 @@
 DIST qtbase-5.15.2-7c6c0030.tar.gz 67967537 BLAKE2B 
623b99942e9df9bc8ac436a21503060845f9e3532aa0e02ccd927762382be26091878fbe092e80c0ac68bead51d09647e40e0cf61361d62ad226ed46b221132b
 SHA512 
eb88b21764591246c5f04f63405dbfcd39afb737e96bb29c7721644b9aba3ea95df24ed9699acfd03a8c088ee72efec1fb0267aef8d665d5ec72ee75fc08ecdc
-DIST qtbase-5.15.2-a4f9e569.tar.gz 67964648 BLAKE2B 
2be7351221c46846ef37308a0238aa4a39369da63fe5c3be5e142ff700c80e125821c06b43c9e4e949bd9f285222a60888303aef956c9b427a9a6c8ee3bc6b1a
 SHA512 
b4be8132a1d7119fd9728f7bf2d72cdd27d2092e7f178a1f15707204f5ffade7ce505c897fd658bb19274bdd6238b2eb16f7fcfedff2567877dc3458b4091388

diff --git a/dev-qt/qtcore/qtcore-5.15.2-r10.ebuild 
b/dev-qt/qtcore/qtcore-5.15.2-r10.ebuild
deleted file mode 100644
index ee99b42e8112..
--- a/dev-qt/qtcore/qtcore-5.15.2-r10.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-KDE_ORG_COMMIT=a4f9e56975fa6ab4a1f63a9b34a4d77b1cfe4acd
-QT5_MODULE="qtbase"
-inherit linux-info qt5-build
-
-DESCRIPTION="Cross-platform application development framework"
-SLOT=5/${QT5_PV}
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
-fi
-
-IUSE="icu old-kernel systemd"
-
-DEPEND="
-   dev-libs/double-conversion:=
-   dev-libs/glib:2
-   dev-libs/libpcre2[pcre16,unicode]
-   sys-libs/zlib:=
-   icu? ( dev-libs/icu:= )
-   !icu? ( virtual/libiconv )
-   systemd? ( sys-apps/systemd:= )
-"
-RDEPEND="${DEPEND}
-   >=dev-qt/qtchooser-66-r1
-"
-
-QT5_TARGET_SUBDIRS=(
-   src/tools/bootstrap
-   src/tools/moc
-   src/tools/rcc
-   src/corelib
-   src/tools/qlalr
-   doc
-)
-
-QT5_GENTOO_PRIVATE_CONFIG=(
-   !:network
-   !:sql
-   !:testlib
-   !:xml
-)
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-5.14.1-cmake-macro-backward-compat.patch # bug 
703306
-   "${FILESDIR}"/${PN}-5.15.1-timezone-{1,2}.patch # bug 737914
-)
-
-pkg_pretend() {
-   use kernel_linux || return
-   get_running_version
-   if kernel_is -lt 4 11 && ! use old-kernel; then
-   ewarn "The running kernel is older than 4.11. USE=old-kernel is 
needed for"
-   ewarn "dev-qt/qtcore to function on this kernel properly. Bugs 
#669994, #672856"
-   fi
-}
-
-src_prepare() {
-   # don't add -O3 to CXXFLAGS, bug 549140
-   sed -i -e '/CONFIG\s*+=/s/optimize_full//' src/corelib/corelib.pro || 
die
-
-   # fix missing qt_version_tag symbol w/ LTO, bug 674382
-   sed -i -e 's/^gcc:ltcg/gcc/' src/corelib/global/global.pri || die
-
-   qt5-build_src_prepare
-}
-
-src_configure() {
-   local myconf=(
-   $(qt_use icu)
-   $(qt_use !icu iconv)
-   $(qt_use systemd journald)
-   )
-   use old-kernel && myconf+=(
-   -no-feature-renameat2 # needs Linux 3.16, bug 669994
-   -no-feature-getentropy # needs Linux 3.17, bug 669994
-   -no-feature-statx # needs Linux 4.11, bug 672856
-   )
-   qt5-build_src_configure
-}
-
-src_install() {
-   qt5-build_src_install
-
-   local flags=(
-   DBUS FREETYPE IMAGEFORMAT_JPEG IMAGEFORMAT_PNG
-   OPENGL OPENSSL SSL WIDGETS
-   )
-
-   for flag in ${flags[@]}; do
-   cat >> "${D}"/${QT5_HEADERDIR}/QtCore/qconfig.h <<- _EOF_ || die
-
-   #if defined(QT_NO_${flag}) && defined(QT_${flag})
-   # undef QT_NO_${flag}
-   #elif !defined(QT_NO_${flag}) && !defined(QT_${flag})
-   # define QT_NO_${flag}
-   #endif
-   _EOF_
-   done
-}



[gentoo-commits] repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/

2021-12-16 Thread Stephan Hartmann
commit: 50160f0b2dcb2fd03aa6f176cb52f565584c04bc
Author: Stephan Hartmann  gentoo  org>
AuthorDate: Thu Dec 16 12:36:54 2021 +
Commit: Stephan Hartmann  gentoo  org>
CommitDate: Thu Dec 16 12:37:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50160f0b

www-plugins/chrome-binary-plugins: automated update (97.0.4692.56_beta)

Signed-off-by: Stephan Hartmann  gentoo.org>

 www-plugins/chrome-binary-plugins/Manifest  | 2 +-
 ...92.45_beta.ebuild => chrome-binary-plugins-97.0.4692.56_beta.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 66519699679f..3b274cc3f61c 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
-DIST google-chrome-beta_97.0.4692.45-1_amd64.deb 90314904 BLAKE2B 
be7d488dd0e4592a91a689820441aac799c7d78d7eb046a643f568a54307b0e5105f60aec320f81fccb261f871c333eb36803ad726ab7fb1f88b318941ac8670
 SHA512 
bc84c800d35e791238a572bf2a853ea521c434928d692e01fae866c2161a882d800562a8b7ad8cc80bf52ca8948a6e7e08f48a75ab3b307295c4c4c6f56c97b8
+DIST google-chrome-beta_97.0.4692.56-1_amd64.deb 90818156 BLAKE2B 
d099fdd76e71d1140fe423853204e365f49a4dd5d94695b7e6482c6613383f2913e7254eada42b4783831bbec740d7fb596b9223a955d289f30e21a252600455
 SHA512 
27785efebc55bf24649aac6dd8def4c0f679fec1cf433c4e925e949f95dce62c31343a681b9c06b8e3e29cf666407a5b71505cfad9c6fa1cfffe33af99bb6dee
 DIST google-chrome-stable_96.0.4664.110-1_amd64.deb 89348996 BLAKE2B 
5a5bcf7adad3351b6b45b375f5a03a8b50045733b14762bd5209d2423a1a0fdc95053356e3f0891445b61a6bc9dd6e0ecea1070f1ef247deb876a9f11f71da38
 SHA512 
b68f4d36321b026696ba15775164ad262e0a699f7e31bdfc414cedbf937fd5f4039528aa1d90d5efae0067720ddd00c783b98335d2f8e4b99f364525d85f31c6
 DIST google-chrome-unstable_98.0.4750.0-1_amd64.deb 90172328 BLAKE2B 
3bbbe40309ca7e47d31693f36793f0d0d3e2b8d4ffc595b2e9966530a60e3cc20bf10ecd05575ecf750e32d1e9c23641a8f3b9cc3a764b95efffc028e68c9ae7
 SHA512 
715cd0a76d5ec1bbd3ef1df1ee3299fc2d49eaf7b77d918db18a1a7e3c79a09a80617cb06361bd45d905be97398af03d73e3b95b70b1d7bc46701b8797cbe0ad

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-97.0.4692.45_beta.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-97.0.4692.56_beta.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-97.0.4692.45_beta.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-97.0.4692.56_beta.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-beta/

2021-12-16 Thread Stephan Hartmann
commit: 5362037de1cbea077420464b01303453cafd3024
Author: Stephan Hartmann  gentoo  org>
AuthorDate: Thu Dec 16 12:36:45 2021 +
Commit: Stephan Hartmann  gentoo  org>
CommitDate: Thu Dec 16 12:37:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5362037d

www-client/google-chrome-beta: automated update (97.0.4692.56)

Signed-off-by: Stephan Hartmann  gentoo.org>

 www-client/google-chrome-beta/Manifest  | 2 +-
 ...-beta-97.0.4692.45.ebuild => google-chrome-beta-97.0.4692.56.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-beta/Manifest 
b/www-client/google-chrome-beta/Manifest
index 059987a622e0..af1d7d8b5101 100644
--- a/www-client/google-chrome-beta/Manifest
+++ b/www-client/google-chrome-beta/Manifest
@@ -1 +1 @@
-DIST google-chrome-beta_97.0.4692.45-1_amd64.deb 90314904 BLAKE2B 
be7d488dd0e4592a91a689820441aac799c7d78d7eb046a643f568a54307b0e5105f60aec320f81fccb261f871c333eb36803ad726ab7fb1f88b318941ac8670
 SHA512 
bc84c800d35e791238a572bf2a853ea521c434928d692e01fae866c2161a882d800562a8b7ad8cc80bf52ca8948a6e7e08f48a75ab3b307295c4c4c6f56c97b8
+DIST google-chrome-beta_97.0.4692.56-1_amd64.deb 90818156 BLAKE2B 
d099fdd76e71d1140fe423853204e365f49a4dd5d94695b7e6482c6613383f2913e7254eada42b4783831bbec740d7fb596b9223a955d289f30e21a252600455
 SHA512 
27785efebc55bf24649aac6dd8def4c0f679fec1cf433c4e925e949f95dce62c31343a681b9c06b8e3e29cf666407a5b71505cfad9c6fa1cfffe33af99bb6dee

diff --git 
a/www-client/google-chrome-beta/google-chrome-beta-97.0.4692.45.ebuild 
b/www-client/google-chrome-beta/google-chrome-beta-97.0.4692.56.ebuild
similarity index 100%
rename from www-client/google-chrome-beta/google-chrome-beta-97.0.4692.45.ebuild
rename to www-client/google-chrome-beta/google-chrome-beta-97.0.4692.56.ebuild



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

2021-12-16 Thread Ben Kohler
commit: 1aef8a06d8be597d39ea0c2e0e63ad93f4a7d303
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Dec 16 12:52:02 2021 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Dec 16 12:52:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1aef8a06

media-video/unifi-video: revbump for log4j "fix"

Upstream community forums suggested this fix

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

 .../unifi-video/unifi-video-3.10.13-r5.ebuild  | 92 ++
 1 file changed, 92 insertions(+)

diff --git a/media-video/unifi-video/unifi-video-3.10.13-r5.ebuild 
b/media-video/unifi-video/unifi-video-3.10.13-r5.ebuild
new file mode 100644
index ..09f2a37096a3
--- /dev/null
+++ b/media-video/unifi-video/unifi-video-3.10.13-r5.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd
+
+MY_PV="${PV/_beta/-beta.}"
+DESCRIPTION="UniFi Video Server"
+HOMEPAGE="https://www.ubnt.com/download/unifi-video/";
+SRC_URI="https://dl.ubnt.com/firmwares/ufv/v${MY_PV}/unifi-video.Ubuntu18.04_amd64.v${MY_PV}.deb";
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+RESTRICT="mirror"
+
+DEPEND="acct-group/unifi-video
+   acct-user/unifi-video
+   app-arch/zip"
+RDEPEND="${DEPEND}
+   dev-db/mongodb
+   dev-java/commons-daemon
+   sys-apps/lsb-release
+   sys-apps/util-linux
+   sys-libs/libcap
+   virtual/jre:1.8"
+
+S=${WORKDIR}
+QA_PREBUILT="usr/lib*/${PN}/lib/*.so usr/lib*/${PN}/bin/*"
+
+src_unpack() {
+   default
+   unpack "${WORKDIR}"/data.tar.gz
+}
+
+src_prepare() {
+   eapply "${FILESDIR}"/commons-daemon-move.patch
+   sed -i usr/sbin/${PN} \
+   -e '/require_root$/d' \
+   -e '/update_limits$/d' \
+   -e '/ulimit/d' \
+   -e '/coredump_filter/d' || die
+   default
+   #delete problematic class in bundled log4j
+   zip -q -d \
+   usr/lib/unifi-video/lib/log4j-core-2.1.jar \
+   org/apache/logging/log4j/core/lookup/JndiLookup.class || die
+}
+
+src_install() {
+   export CODEPATH=/usr/lib/${PN}
+   export DATAPATH=/var/lib/${PN}
+   LOGPATH=${DATAPATH}/logs
+   VARLOGPATH=/var/log/${PN}
+
+   insinto /usr/lib
+   doins -r .${CODEPATH}
+   into /usr
+   dosbin usr/sbin/unifi-video
+
+   keepdir ${LOGPATH}
+   dodir ${DATAPATH}
+   fowners -R ${PN}:${PN} ${DATAPATH}
+   dosym ${LOGPATH} ${VARLOGPATH}
+   dosym ${LOGPATH} ${CODEPATH}/logs
+
+   dosym ${DATAPATH} ${CODEPATH}/data
+
+   fperms 500 ${CODEPATH}/bin/ubnt.avtool
+   fperms 500 ${CODEPATH}/bin/evostreamms
+   fperms 500 /usr/sbin/${PN}
+   fowners -R ${PN}:${PN} ${CODEPATH}
+   fperms -R 0400 ${CODEPATH}/lib/
+   fperms 500 ${CODEPATH}/lib/
+
+   echo "CONFIG_PROTECT=\"${DATAPATH}/system.properties\"" > "${T}"/99${PN}
+   doenvd "${T}"/99${PN}
+
+   dosym ../../../bin/mongod ${CODEPATH}/bin/mongod
+
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   systemd_dounit "${FILESDIR}"/${PN}.service
+}
+
+pkg_postinst() {
+   if [[ ! -f ${DATAPATH}/system.properties ]]; then
+   cp ${CODEPATH}/etc/system.properties 
${DATAPATH}/system.properties
+   echo uuid=$(uuidgen) >> ${DATAPATH}/system.properties
+   fi
+}



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

2021-12-16 Thread Ben Kohler
commit: 71907da315b6a0e7a00154f12edde788c2609b2f
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Dec 16 12:52:34 2021 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Dec 16 12:52:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71907da3

media-video/unifi-video: drop old

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

 .../unifi-video/unifi-video-3.10.13-r2.ebuild  | 86 -
 .../unifi-video/unifi-video-3.10.13-r3.ebuild  | 86 -
 .../unifi-video/unifi-video-3.10.13-r4.ebuild  | 87 --
 3 files changed, 259 deletions(-)

diff --git a/media-video/unifi-video/unifi-video-3.10.13-r2.ebuild 
b/media-video/unifi-video/unifi-video-3.10.13-r2.ebuild
deleted file mode 100644
index 683e20a1c53e..
--- a/media-video/unifi-video/unifi-video-3.10.13-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=6
-
-inherit systemd
-
-MY_PV="${PV/_beta/-beta.}"
-DESCRIPTION="UniFi Video Server"
-HOMEPAGE="https://www.ubnt.com/download/unifi-video/";
-SRC_URI="https://dl.ubnt.com/firmwares/ufv/v${MY_PV}/unifi-video.Ubuntu18.04_amd64.v${MY_PV}.deb";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-RESTRICT="mirror"
-
-DEPEND="acct-group/unifi-video
-   acct-user/unifi-video"
-RDEPEND="${DEPEND}
-   dev-db/mongodb
-   dev-java/commons-daemon
-   sys-apps/lsb-release
-   sys-apps/util-linux
-   sys-libs/libcap
-   virtual/jre:1.8"
-
-S=${WORKDIR}
-QA_PREBUILT="usr/lib*/${PN}/lib/*.so usr/lib*/${PN}/bin/*"
-
-src_unpack() {
-   default
-   unpack "${WORKDIR}"/data.tar.gz
-}
-
-src_prepare() {
-   eapply "${FILESDIR}"/commons-daemon-move.patch
-   sed -i usr/sbin/${PN} \
-   -e '/require_root$/d' \
-   -e '/update_limits$/d' \
-   -e '/ulimit/d' \
-   -e '/coredump_filter/d' || die
-   default
-}
-
-src_install() {
-   export CODEPATH=/usr/lib/${PN}
-   export DATAPATH=/var/lib/${PN}
-   LOGPATH=${DATAPATH}/logs
-   VARLOGPATH=/var/log/${PN}
-
-   insinto /usr/lib
-   doins -r .${CODEPATH}
-   into /usr
-   dosbin usr/sbin/unifi-video
-
-   dodir ${LOGPATH}
-   fowners -R ${PN}:${PN} ${DATAPATH}
-   dosym ${LOGPATH} ${VARLOGPATH}
-   dosym ${LOGPATH} ${CODEPATH}/logs
-
-   dosym ${DATAPATH} ${CODEPATH}/data
-
-   fperms 500 ${CODEPATH}/bin/ubnt.avtool
-   fperms 500 ${CODEPATH}/bin/evostreamms
-   fperms 500 /usr/sbin/${PN}
-   fowners -R ${PN}:${PN} ${CODEPATH}
-   fperms -R 0400 ${CODEPATH}/lib/
-   fperms 500 ${CODEPATH}/lib/
-
-   echo "CONFIG_PROTECT=\"${DATAPATH}/system.properties\"" > "${T}"/99${PN}
-   doenvd "${T}"/99${PN}
-
-   dosym ../../../bin/mongod ${CODEPATH}/bin/mongod
-
-   newinitd "${FILESDIR}"/${PN}.initd ${PN}
-   systemd_dounit "${FILESDIR}"/${PN}.service
-}
-
-pkg_postinst() {
-   if [[ ! -f ${DATAPATH}/system.properties ]]; then
-   cp ${CODEPATH}/etc/system.properties 
${DATAPATH}/system.properties
-   echo uuid=$(uuidgen) >> ${DATAPATH}/system.properties
-   fi
-}

diff --git a/media-video/unifi-video/unifi-video-3.10.13-r3.ebuild 
b/media-video/unifi-video/unifi-video-3.10.13-r3.ebuild
deleted file mode 100644
index a86ef7450ebd..
--- a/media-video/unifi-video/unifi-video-3.10.13-r3.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd
-
-MY_PV="${PV/_beta/-beta.}"
-DESCRIPTION="UniFi Video Server"
-HOMEPAGE="https://www.ubnt.com/download/unifi-video/";
-SRC_URI="https://dl.ubnt.com/firmwares/ufv/v${MY_PV}/unifi-video.Ubuntu18.04_amd64.v${MY_PV}.deb";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-RESTRICT="mirror"
-
-DEPEND="acct-group/unifi-video
-   acct-user/unifi-video"
-RDEPEND="${DEPEND}
-   dev-db/mongodb
-   dev-java/commons-daemon
-   sys-apps/lsb-release
-   sys-apps/util-linux
-   sys-libs/libcap
-   virtual/jre:1.8"
-
-S=${WORKDIR}
-QA_PREBUILT="usr/lib*/${PN}/lib/*.so usr/lib*/${PN}/bin/*"
-
-src_unpack() {
-   default
-   unpack "${WORKDIR}"/data.tar.gz
-}
-
-src_prepare() {
-   eapply "${FILESDIR}"/commons-daemon-move.patch
-   sed -i usr/sbin/${PN} \
-   -e '/require_root$/d' \
-   -e '/update_limits$/d' \
-   -e '/ulimit/d' \
-   -e '/coredump_filter/d' || die
-   default
-}
-
-src_install() {
-   export CODEPATH=/usr/lib/${PN}
-   export DATAPATH=/var/lib/${PN}
-   LOGPATH=${DATAPATH}/logs
-   VARLOGPATH=/var/log/${PN}
-
-   insinto /usr/lib
-   doins -r .${CODEPATH}
-   into /usr
-   dosbin usr/sbin/unifi-video
-
-   dodir $

[gentoo-commits] repo/proj/guru:dev commit in: media-video/megapixels/

2021-12-16 Thread Gerben Jan Dijkman
commit: edbb294562062944800a133399663ac1eeabdd6c
Author: Gerben Jan Dijkman  gjdwebserver  nl>
AuthorDate: Thu Dec 16 13:11:48 2021 +
Commit: Gerben Jan Dijkman  gjdwebserver  nl>
CommitDate: Thu Dec 16 13:11:48 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=edbb2945

media-video/megapixels: Version Bump

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Gerben Jan Dijkman  gjdwebserver.nl>

 media-video/megapixels/Manifest | 2 +-
 .../megapixels/{megapixels-1.4.2.ebuild => megapixels-1.4.3.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/megapixels/Manifest b/media-video/megapixels/Manifest
index 41e81aa22..79e370a23 100644
--- a/media-video/megapixels/Manifest
+++ b/media-video/megapixels/Manifest
@@ -1 +1 @@
-DIST megapixels-1.4.2.tar.gz 88467 BLAKE2B 
caa42f13c4c68b811a3c74b908414c5d6d09ca2251d3a4f156edd7627013bc54ecd3ce8abecd29cc4886b03c81331842fd70524b2a9940d9450fb510f523a75a
 SHA512 
85a0aad8ddaf1c91f97760ff2c8d7238d903d331f3fcd40dff49d64d605b63fad86770965d0788d6e07632fe120d5bafee2946e01361eb277a492afd712605c5
+DIST megapixels-1.4.3.tar.gz 88452 BLAKE2B 
dbf51b996d0d1475d05b850c58d3bac4e832f3ac833ef54003384a39bf1570a37a9a9e0b75276ad61e5802e051a9d5743037cb38389708e5f6ccb78712fd7567
 SHA512 
71c6e93cf212a5927a56b2b71847331c476c5e778f628e644100a759985b3575ffe5dec24f63ac2254c6bcc4b2e211fc6dfd9efb2e7190e4896e652e001bb25b

diff --git a/media-video/megapixels/megapixels-1.4.2.ebuild 
b/media-video/megapixels/megapixels-1.4.3.ebuild
similarity index 100%
rename from media-video/megapixels/megapixels-1.4.2.ebuild
rename to media-video/megapixels/megapixels-1.4.3.ebuild



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtcore/, dev-qt/qtcore/files/

2021-12-16 Thread Andreas Sturmlechner
commit: 11cc810ba55dfd4db304cc59cefa8b53365337f2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 16 13:32:37 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 16 13:33:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11cc810b

dev-qt/qtcore: Fix stack smashing crash

Test it in ~arch while upstream are making up their minds.

See also: https://invent.kde.org/qt/qt/qtbase/-/merge_requests/81
KDE-bug: https://bugs.kde.org/show_bug.cgi?id=445719
Bug: https://bugs.gentoo.org/824286
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../files/qtcore-5.15.2-fix-stack-smashing.patch   | 105 
 dev-qt/qtcore/qtcore-5.15.2-r12.ebuild | 106 +
 2 files changed, 211 insertions(+)

diff --git a/dev-qt/qtcore/files/qtcore-5.15.2-fix-stack-smashing.patch 
b/dev-qt/qtcore/files/qtcore-5.15.2-fix-stack-smashing.patch
new file mode 100644
index ..cfc187251ccb
--- /dev/null
+++ b/dev-qt/qtcore/files/qtcore-5.15.2-fix-stack-smashing.patch
@@ -0,0 +1,105 @@
+From 463c338b09710609e0dc82f67e03c829a7b83788 Mon Sep 17 00:00:00 2001
+From: Allan Sandfeld Jensen 
+Date: Fri, 14 May 2021 10:43:11 +0200
+Subject: [PATCH] Avoid mixing atomic futex changes and QAtomic
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Either the mix of futex and atomic, or the mix of 32-bit futex and
+64-bit atomic doesn't work. In any case, the existing code leads to
+bad behavior.
+
+* asturm 2021-11-19: Also threw the typo fix from 587e3bb0 into the mix.
+
+Pick-to: 6.1 5.15
+Fixes: QTBUG-92188
+Change-Id: Icc6ba28d6e2465c373d00e84f4da2b92c037e797
+Reviewed-by: Qt CI Bot 
+Reviewed-by: Mårten Nordheim 
+(cherry picked from commit 2d9cc639a4a7a5e97979a6034364bd67dfa10c23)
+---
+ src/corelib/thread/qsemaphore.cpp | 46 ---
+ 1 file changed, 17 insertions(+), 29 deletions(-)
+
+diff --git a/src/corelib/thread/qsemaphore.cpp 
b/src/corelib/thread/qsemaphore.cpp
+index d4fb756b94..1d01fc1b28 100644
+--- a/src/corelib/thread/qsemaphore.cpp
 b/src/corelib/thread/qsemaphore.cpp
+@@ -357,47 +357,31 @@ void QSemaphore::release(int n)
+ quintptr prevValue = u.fetchAndAddRelease(nn);
+ if (futexNeedsWake(prevValue)) {
+ #ifdef FUTEX_OP
+-if (!futexHasWaiterCount) {
+-/*
+-   On 32-bit systems, all waiters are waiting on the same 
address,
+-   so we'll wake them all and ask the kernel to clear the 
high bit.
+-
+-   atomic {
+-  int oldval = u;
+-  u = oldval & ~(1 << 31);
+-  futexWake(u, INT_MAX);
+-  if (oldval == 0)   // impossible condition
+-  futexWake(u, INT_MAX);
+-   }
+-*/
+-quint32 op = FUTEX_OP_ANDN | FUTEX_OP_OPARG_SHIFT;
+-quint32 oparg = 31;
+-quint32 cmp = FUTEX_OP_CMP_EQ;
+-quint32 cmparg = 0;
+-futexWakeOp(u, INT_MAX, INT_MAX, u, FUTEX_OP(op, oparg, cmp, 
cmparg));
+-} else {
++if (futexHasWaiterCount) {
+ /*
+On 64-bit systems, the single-token waiters wait on the 
low half
+and the multi-token waiters wait on the upper half. So we 
ask
+the kernel to wake up n single-token waiters and all 
multi-token
+-   waiters (if any), then clear the multi-token wait bit.
++   waiters (if any), and clear the multi-token wait bit.
+ 
+atomic {
+   int oldval = *upper;
+-  *upper = oldval & ~(1 << 31);
++  *upper = oldval | 0;
+   futexWake(lower, n);
+-  if (oldval < 0)   // sign bit set
++  if (oldval != 0)   // always true
+   futexWake(upper, INT_MAX);
+}
+ */
+-quint32 op = FUTEX_OP_ANDN | FUTEX_OP_OPARG_SHIFT;
+-quint32 oparg = 31;
+-quint32 cmp = FUTEX_OP_CMP_LT;
++quint32 op = FUTEX_OP_OR;
++quint32 oparg = 0;
++quint32 cmp = FUTEX_OP_CMP_NE;
+ quint32 cmparg = 0;
++u.fetchAndAndRelease(futexNeedsWakeAllBit - 1);
+ futexWakeOp(*futexLow32(&u), n, INT_MAX, *futexHigh32(&u), 
FUTEX_OP(op, oparg, cmp, cmparg));
++return;
+ }
+-#else
+-// Unset the bit and wake everyone. There are two possibibilies
++#endif
++// Unset the bit and wake everyone. There are two possibilities
+ // under which a thread can set the bit between the AND and the
+ // 

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

2021-12-16 Thread Andreas Sturmlechner
commit: 72ca37505b3e53a9cd57f9950f5b79e04a0d2078
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 16 13:23:42 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 16 13:33:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72ca3750

dev-libs/double-conversion: 3.1.6 version bump

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

 dev-libs/double-conversion/Manifest   |  1 +
 dev-libs/double-conversion/double-conversion-3.1.6.ebuild | 14 ++
 2 files changed, 15 insertions(+)

diff --git a/dev-libs/double-conversion/Manifest 
b/dev-libs/double-conversion/Manifest
index 4cf74861afc3..cd5cf43312a2 100644
--- a/dev-libs/double-conversion/Manifest
+++ b/dev-libs/double-conversion/Manifest
@@ -1 +1,2 @@
 DIST double-conversion-3.1.5.tar.gz 7023792 BLAKE2B 
ed70a554bd52e23aadecbeaa6607dfcdb670450b95e2ff699c784512e6cb0c022f51f6ab775ebc5b3c293f991e5200ff5528d689c74dae92e8e68bedf672c5ac
 SHA512 
0aeabdbfa06c3c4802905ac4bf8c2180840577677b47d45e1c91034fe07746428c9db79260ce6bdbdf8b584746066cea9247ba43a9c38155caf1ef44e214180a
+DIST double-conversion-3.1.6.tar.gz 7030812 BLAKE2B 
8572c4c127bca57c85075a1d308c81e22d133ddbc9c691538dc9a5564f82cf0b6e9009f0d223db0fcfd9c2c662059b8866cb26e8510187f47fe8b56101bfcc82
 SHA512 
2282e9838f916a0e59011e1b7530c32fb392e9bf07f370df419f1a8c59c88d66f7e16fa6ecdc3785af86591639d1201144feb0c60a5de54482da936f6c0c5534

diff --git a/dev-libs/double-conversion/double-conversion-3.1.6.ebuild 
b/dev-libs/double-conversion/double-conversion-3.1.6.ebuild
new file mode 100644
index ..199d6bdc3447
--- /dev/null
+++ b/dev-libs/double-conversion/double-conversion-3.1.6.ebuild
@@ -0,0 +1,14 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Binary-decimal and decimal-binary conversion routines for IEEE 
doubles"
+HOMEPAGE="https://github.com/google/double-conversion";
+SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/3"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux"



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

2021-12-16 Thread Andreas Sturmlechner
commit: 647c5c21fc556bd023bd4e01e604888f5ba74da2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 16 13:35:59 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 16 13:36:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=647c5c21

dev-cpp/eigen: Drop 3.3.7-r1

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

 dev-cpp/eigen/Manifest  |  1 -
 dev-cpp/eigen/eigen-3.3.7-r1.ebuild | 98 -
 2 files changed, 99 deletions(-)

diff --git a/dev-cpp/eigen/Manifest b/dev-cpp/eigen/Manifest
index d6069d9926d7..c696a730c0d1 100644
--- a/dev-cpp/eigen/Manifest
+++ b/dev-cpp/eigen/Manifest
@@ -1,3 +1,2 @@
-DIST eigen-3.3.7-gitlab.tar.bz2 1663474 BLAKE2B 
70c2f6305ca205d62755cf5e90961088938b8daf56b7cc27abf52f0731064858ada523009d6bf5f014e24b34ceeafe59f918c385d12ccfe249ddb675e13d37a8
 SHA512 
ea3f1570de3be9ec230d2fbd0f2ae246bf5fd13da79835bf546eb31524796f26f9f633ee779f77942b370a8d540c5cbbd8dd033ccec53a44b692c7e407d6266f
 DIST eigen-3.3.9.tar.gz 2142379 BLAKE2B 
437dc190fdf7a416d0a5cf81703ef4cc73c195f0f3e7c853e0ab38cf904608ddd4485cc4e15eb0cd5e3c401276f270f3c86f538f205cc91b8c83e131d1bc916d
 SHA512 
16244cc89f2e1879543232b965cbf653b3ccf10e967c8c437a41e27d8320392bdf584d8c24b8a97406ab7d1481d5154da74e0702ec1334ae6a46de83f4573a46
 DIST eigen-3.4.0.tar.gz 2705005 BLAKE2B 
ae5f774a6ed36f52cf9fc3206e50796abacbba69fd0f67cd5759b4e04d847aa656861d5e06e6cd0d798a17f2b06abdb70b16f795a626bdd29edcc872c33821f8
 SHA512 
ba75ecb760e32acf4ceaf27115468e65d4f77c44f8d519b5a13e7940af2c03a304ad433368cb6d55431f307c5c39e2666ab41d34442db3cf441638e51f5c3b6a

diff --git a/dev-cpp/eigen/eigen-3.3.7-r1.ebuild 
b/dev-cpp/eigen/eigen-3.3.7-r1.ebuild
deleted file mode 100644
index 68821a80607c..
--- a/dev-cpp/eigen/eigen-3.3.7-r1.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-FORTRAN_NEEDED="test"
-inherit cmake cuda fortran-2
-
-DESCRIPTION="C++ template library for linear algebra"
-HOMEPAGE="https://eigen.tuxfamily.org/index.php?title=Main_Page";
-SRC_URI="https://gitlab.com/libeigen/eigen/-/archive/${PV}/${P}.tar.bz2 -> 
${P}-gitlab.tar.bz2"
-
-LICENSE="MPL-2.0"
-SLOT="3"
-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 )"
-
-BDEPEND="
-   doc? (
-   app-doc/doxygen[dot]
-   dev-texlive/texlive-bibtexextra
-   dev-texlive/texlive-fontsextra
-   dev-texlive/texlive-fontutils
-   dev-texlive/texlive-latex
-   dev-texlive/texlive-latexextra
-   )
-   test? ( virtual/pkgconfig )
-"
-DEPEND="
-   cuda? ( dev-util/nvidia-cuda-toolkit )
-   test? (
-   dev-libs/gmp:0
-   dev-libs/mpfr:0
-   media-libs/freeglut
-   media-libs/glew
-   sci-libs/adolc[sparse]
-   sci-libs/cholmod
-   sci-libs/fftw:3.0
-   sci-libs/pastix
-   sci-libs/scotch
-   sci-libs/spqr
-   sci-libs/superlu
-   sci-libs/umfpack
-   virtual/opengl
-   )
-"
-# Missing:
-# METIS-5
-# GOOGLEHASH
-
-PATCHES=( "${FILESDIR}"/${P}-gentoo-cmake.patch )
-
-src_prepare() {
-   cmake_src_prepare
-
-   cmake_comment_add_subdirectory demos
-
-   if ! use test; then
-   sed -e "/add_subdirectory(test/s/^/#DONOTCOMPILE /g" \
-   -e "/add_subdirectory(blas/s/^/#DONOTCOMPILE /g" \
-   -e "/add_subdirectory(lapack/s/^/#DONOTCOMPILE /g" \
-   -i CMakeLists.txt || die
-   fi
-
-   use cuda && cuda_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=(
-   
-DCMAKEPACKAGE_INSTALL_DIR="${EPREFIX}"/usr/$(get_libdir)/cmake/${PN}${SLOT}
-   )
-   use test && mycmakeargs+=(
-   -DEIGEN_TEST_CXX11=ON
-   -DEIGEN_TEST_NOQT=ON
-   -DEIGEN_TEST_ALTIVEC=$(usex cpu_flags_ppc_altivec)
-   -DEIGEN_TEST_CUDA=$(usex cuda)
-   -DEIGEN_TEST_OPENMP=$(usex openmp)
-   -DEIGEN_TEST_NEON64=$(usex cpu_flags_arm_neon)
-   -DEIGEN_TEST_VSX=$(usex cpu_flags_ppc_vsx)
-   )
-   cmake_src_configure
-}
-
-src_compile() {
-   cmake_src_compile
-   use doc && cmake_src_compile doc
-   if use test; then
-   cmake_src_compile blas
-   cmake_src_compile buildtests
-   fi
-}
-
-src_install() {
-   use doc && local HTML_DOCS=( "${BUILD_DIR}"/doc/html/. )
-   cmake_src_install
-}



[gentoo-commits] proj/kde:master commit in: kde-plasma/breeze-gtk/

2021-12-16 Thread Andreas Sturmlechner
commit: 507164441ecc3a033e3fb95bb4a7b232e78656f6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 16 14:18:53 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 16 14:18:53 2021 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=50716444

kde-plasma/breeze-gtk: Drop obsolete min dev-util/cmake BDEPEND

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

 kde-plasma/breeze-gtk/breeze-gtk-5.23.49..ebuild | 1 -
 kde-plasma/breeze-gtk/breeze-gtk-.ebuild | 1 -
 2 files changed, 2 deletions(-)

diff --git a/kde-plasma/breeze-gtk/breeze-gtk-5.23.49..ebuild 
b/kde-plasma/breeze-gtk/breeze-gtk-5.23.49..ebuild
index f3b8779deb..b1d119c0c7 100644
--- a/kde-plasma/breeze-gtk/breeze-gtk-5.23.49..ebuild
+++ b/kde-plasma/breeze-gtk/breeze-gtk-5.23.49..ebuild
@@ -18,7 +18,6 @@ IUSE=""
 BDEPEND="${PYTHON_DEPS}
dev-lang/sassc
$(python_gen_any_dep 'dev-python/pycairo[${PYTHON_USEDEP}]')
-   >=dev-util/cmake-3.16
>=kde-plasma/breeze-${PVCUT}:5
 "
 

diff --git a/kde-plasma/breeze-gtk/breeze-gtk-.ebuild 
b/kde-plasma/breeze-gtk/breeze-gtk-.ebuild
index f3b8779deb..b1d119c0c7 100644
--- a/kde-plasma/breeze-gtk/breeze-gtk-.ebuild
+++ b/kde-plasma/breeze-gtk/breeze-gtk-.ebuild
@@ -18,7 +18,6 @@ IUSE=""
 BDEPEND="${PYTHON_DEPS}
dev-lang/sassc
$(python_gen_any_dep 'dev-python/pycairo[${PYTHON_USEDEP}]')
-   >=dev-util/cmake-3.16
>=kde-plasma/breeze-${PVCUT}:5
 "
 



[gentoo-commits] proj/kde:master commit in: media-gfx/digikam/

2021-12-16 Thread Andreas Sturmlechner
commit: 6c7548a6370115fda8c577b11983101851ba5c86
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 16 14:18:08 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 16 14:18:08 2021 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=6c7548a6

media-gfx/digikam: Drop obsolete min dev-util/cmake BDEPEND

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

 media-gfx/digikam/digikam-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/media-gfx/digikam/digikam-.ebuild 
b/media-gfx/digikam/digikam-.ebuild
index fc4314dddb..5f81a1ce18 100644
--- a/media-gfx/digikam/digikam-.ebuild
+++ b/media-gfx/digikam/digikam-.ebuild
@@ -100,7 +100,6 @@ RDEPEND="${COMMON_DEPEND}
panorama? ( media-gfx/hugin )
 "
 BDEPEND="
-   >=dev-util/cmake-3.14.3
sys-devel/gettext
panorama? (
sys-devel/bison



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

2021-12-16 Thread Stephan Hartmann
commit: 4879171db8eb30a2ee79d62f3c61ae7b729ddcba
Author: Stephan Hartmann  gentoo  org>
AuthorDate: Thu Dec 16 14:20:31 2021 +
Commit: Stephan Hartmann  gentoo  org>
CommitDate: Thu Dec 16 14:20:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4879171d

www-client/chromium: beta channel bump to 97.0.4692.56

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Stephan Hartmann  gentoo.org>

 www-client/chromium/Manifest  |  2 +-
 ...omium-97.0.4692.45.ebuild => chromium-97.0.4692.56.ebuild} | 11 ---
 2 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index 58e9187924b1..7798a41bf0b5 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -2,6 +2,6 @@ DIST chromium-96-patchset-4.tar.xz 4812 BLAKE2B 
5d82d212b8ec1689be6f4a7a06462563
 DIST chromium-96-ppc64le-1.tar.xz 29224 BLAKE2B 
3369a3b15eb4f42761e01758135995a1f34e40cecbfc0372a4bc17b393d50b276ea5a0813d1c57f73f0dd34cf2a021356d25c2b4dcaa95998ffc082545dc915c
 SHA512 
256d64fbf192e55d77c6580d36766a67dadfbd0f1e34e49bfc6d55114da7f2252d783db0dd09123996a71a01ec4a3d5c70fd1a5c8852db135857b8495f7cfbf1
 DIST chromium-96.0.4664.110.tar.xz 1209944416 BLAKE2B 
1cec11b248b9225e47caf6bf8ec243e301bb63df2b0a070fb55b829b712e513b2510944f72306cebde3715704cae5b2c6be83847e91b358cb5135b56d55255b3
 SHA512 
7db962dc7016f531c33e915408303f06f429b53d1c5a69b281e64f6204d4bdb413fd281c3d891bb696d846f80f6182289c10f4b19b3b4c2c8b7fd72070de3f02
 DIST chromium-97-patchset-4.tar.xz 4240 BLAKE2B 
450d013b6fd68f7e0bcb21a2b0828d531eda86965e636fe24fc36c2e7e1f74fe93f27f0d4b1d03e67c605797e28db37de4949ff78d5106e07b0362bec4bc5d8a
 SHA512 
181c706c83bdbe07b2e7f02b654922a860aea761ad267e6545fb7d56b66373b003c1c79fae5cd45eeb3be8917782fa45df1c05bbb00e170f0146e7385f4246c4
-DIST chromium-97.0.4692.45.tar.xz 1213732240 BLAKE2B 
cd722330f4f84f29331974a0663fc39b021fb4cc7b1e96e4c355397bf7e37386938e5be05618c37692d29e8cfb514fdd069cbdf9ca44073d8da10fafaba598f8
 SHA512 
bac8367c7494dea46477d70af9dc2f8fa360936c4996cea92c623a503f2965a24afc1f83c15ccfa10bb3d331d21ed65f9c73799c0efe5b6180767ae36c17c2e1
+DIST chromium-97.0.4692.56.tar.xz 1213710744 BLAKE2B 
566e0d937b50b3636e3520069f7f7d62f310e98d9cb333b13c2565abe57d4adc0ffd060ae10bc98629d9a3ff012487e9d8e2ff569221943f6e7515c6949cc029
 SHA512 
f2ee447ffa35b98618154466e913cbaeef87485614848aaa78b8f89828664f039d2d76f73a5c3bddd772a596138c6b871d0c85a3d44264663fe4b2bea9d8df17
 DIST chromium-98-patchset-3.tar.xz 6164 BLAKE2B 
be4fa2997e13e89a0c8db1e99fa80adb937c0c02f1e18bd0ec93bdbdd484da4a8507baf13c5e6e602d5f5ecb2921f33bc3afdc3c3103b1b5314b62f59c1a71ad
 SHA512 
47026635ca5c2e1d3965c82a449077380e6518b33e16b83bd105085cca50f512d08027eebd34d7ce5ce39d988f0120deccfb72697abac0d41e4502b6ad8abdf3
 DIST chromium-98.0.4750.0.tar.xz 1230864580 BLAKE2B 
b8b5d05bf15a9429f3f5fa851415d21f6e757a99fce9ac47bdeb7f534f9eefc77d13c5f8ba93bfa140bdb536c13e1b6141ac4d7e0f17b742039c403044789c56
 SHA512 
7f8cc349aa50af0d149ba08e5ed60171e94943bbd52cb0f820f3c7d56749d9e2fd6d71761262ac012cfcad1f7e4f63c0404f39f044df531e776ae6fce951544f

diff --git a/www-client/chromium/chromium-97.0.4692.45.ebuild 
b/www-client/chromium/chromium-97.0.4692.56.ebuild
similarity index 99%
rename from www-client/chromium/chromium-97.0.4692.45.ebuild
rename to www-client/chromium/chromium-97.0.4692.56.ebuild
index 7d53bac24055..78dde3c997dd 100644
--- a/www-client/chromium/chromium-97.0.4692.45.ebuild
+++ b/www-client/chromium/chromium-97.0.4692.56.ebuild
@@ -21,7 +21,7 @@ 
SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}
 LICENSE="BSD"
 SLOT="0/beta"
 KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="component-build cups cpu_flags_arm_neon debug +hangouts headless 
+js-type-check kerberos +official pic +proprietary-codecs pulseaudio screencast 
selinux +suid +system-ffmpeg +system-harfbuzz +system-icu vaapi wayland 
widevine"
+IUSE="component-build cups cpu_flags_arm_neon debug +hangouts headless 
+js-type-check kerberos +official pic +proprietary-codecs pulseaudio screencast 
selinux +suid +system-ffmpeg +system-harfbuzz +system-icu +system-png vaapi 
wayland widevine"
 REQUIRED_USE="
component-build? ( !suid )
screencast? ( wayland )
@@ -57,7 +57,7 @@ COMMON_DEPEND="
>=media-libs/freetype-2.11.0-r1:=
system-harfbuzz? ( >=media-libs/harfbuzz-2.9.0:0=[icu(-)] )
media-libs/libjpeg-turbo:=
-   media-libs/libpng:=
+   system-png? ( media-libs/libpng:=[-apng] )
pulseaudio? ( media-sound/pulseaudio:= )
system-ffmpeg? (
>=media-video/ffmpeg-4.3:=
@@ -486,6 +486,9 @@ src_prepare() {
if ! use system-icu; then
keeplibs+=( third_party/icu )
fi
+   if ! use system-png; then
+   keeplibs+=( third_party/libpng )
+   fi
if use system-harfbuzz; then
keeplibs+=( third_party/harfbuzz-ng/utils )

[gentoo-commits] repo/gentoo:master commit in: media-video/vidify/, media-video/vidify/files/

2021-12-16 Thread Andrew Ammerlaan
commit: 922fd42281d7a4bdab53199baa7e96e93c1bff5a
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Dec 16 14:31:57 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Dec 16 14:32:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=922fd422

media-video/vidify: patch for python 3.10 and vlc

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 media-video/vidify/files/vidify-2.2.6-python310.patch| 16 
 .../{vidify-2.2.6-r1.ebuild => vidify-2.2.6-r2.ebuild}   |  5 -
 2 files changed, 20 insertions(+), 1 deletion(-)

diff --git a/media-video/vidify/files/vidify-2.2.6-python310.patch 
b/media-video/vidify/files/vidify-2.2.6-python310.patch
new file mode 100644
index ..4b78ea559333
--- /dev/null
+++ b/media-video/vidify/files/vidify-2.2.6-python310.patch
@@ -0,0 +1,16 @@
+diff --git a/vidify/player/vlc.py b/vidify/player/vlc.py
+index a7c9ec0..cb50f89 100644
+--- a/vidify/player/vlc.py
 b/vidify/player/vlc.py
+@@ -75,9 +75,9 @@ class VLCPlayer(PlayerBase):
+ def start_video(self, media: str, is_playing: bool = True) -> None:
+ logging.info("Starting new video")
+ if CURRENT_PLATFORM in (Platform.LINUX, Platform.BSD):
+-self._player.set_xwindow(self.winId())
++self._player.set_xwindow(int(self.winId()))
+ elif CURRENT_PLATFORM == Platform.WINDOWS:
+-self._player.set_hwnd(self.winId())
++self._player.set_hwnd(int(self.winId()))
+ elif CURRENT_PLATFORM == Platform.MACOS:
+ self._player.set_nsobject(int(self.winId()))
+ 

diff --git a/media-video/vidify/vidify-2.2.6-r1.ebuild 
b/media-video/vidify/vidify-2.2.6-r2.ebuild
similarity index 96%
rename from media-video/vidify/vidify-2.2.6-r1.ebuild
rename to media-video/vidify/vidify-2.2.6-r2.ebuild
index ae5d74063584..fe640744473d 100644
--- a/media-video/vidify/vidify-2.2.6-r1.ebuild
+++ b/media-video/vidify/vidify-2.2.6-r2.ebuild
@@ -32,7 +32,10 @@ RDEPEND="
 "
 
 # use yt-dlp instead of youtube-dl, otherwise download is too slow for playback
-PATCHES=( "${FILESDIR}/${P}-yt-dlp.patch" )
+PATCHES=(
+   "${FILESDIR}/${P}-yt-dlp.patch"
+   "${FILESDIR}/${P}-python310.patch"
+)
 
 distutils_enable_tests unittest
 



[gentoo-commits] repo/proj/dotnet:master commit in: dev-dotnet/dotnetcore-sdk-bin-common/, dev-dotnet/dotnetcore-sdk-bin/

2021-12-16 Thread Gergely Nagy
commit: b0903636aa7c45062ad3ad298e79b46e799fc7d7
Author: Gergely Nagy  ngg  hu>
AuthorDate: Thu Dec 16 14:57:56 2021 +
Commit: Gergely Nagy  ngg  hu>
CommitDate: Thu Dec 16 14:57:56 2021 +
URL:https://gitweb.gentoo.org/repo/proj/dotnet.git/commit/?id=b0903636

dev-dotnet/dotnetcore-sdk-bin{-common}: bump to 3.1.416, 5.0.404, 6.0.101 and 
small fixes

Signed-off-by: Gergely Nagy  ngg.hu>

 .../dotnetcore-sdk-bin-common-2.1.818.ebuild| 6 +-
 ...mmon-3.1.415.ebuild => dotnetcore-sdk-bin-common-3.1.416.ebuild} | 6 +-
 ...mmon-5.0.403.ebuild => dotnetcore-sdk-bin-common-5.0.404.ebuild} | 6 +-
 ...mmon-6.0.100.ebuild => dotnetcore-sdk-bin-common-6.0.101.ebuild} | 6 +-
 ...ore-sdk-bin-3.1.415.ebuild => dotnetcore-sdk-bin-3.1.416.ebuild} | 0
 ...ore-sdk-bin-5.0.403.ebuild => dotnetcore-sdk-bin-5.0.404.ebuild} | 0
 ...ore-sdk-bin-6.0.100.ebuild => dotnetcore-sdk-bin-6.0.101.ebuild} | 6 ++
 7 files changed, 26 insertions(+), 4 deletions(-)

diff --git 
a/dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-2.1.818.ebuild 
b/dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-2.1.818.ebuild
index a8590c7..7e88c91 100644
--- 
a/dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-2.1.818.ebuild
+++ 
b/dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-2.1.818.ebuild
@@ -26,7 +26,11 @@ RESTRICT="splitdebug"
 # The sdk includes the runtime-bin and aspnet-bin so prevent from installing 
at the same time
 # dotnetcore-sdk is the source based build
 
-RDEPEND="~dev-dotnet/dotnetcore-sdk-bin-${PV}"
+RDEPEND="
+   ~dev-dotnet/dotnetcore-sdk-bin-${PV}
+   !dev-dotnet/dotnet-sdk[dotnet-symlink(+)]
+   !dev-dotnet/dotnet-sdk-bin[dotnet-symlink(+)]
+"
 
 S=${WORKDIR}
 

diff --git 
a/dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-3.1.415.ebuild 
b/dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-3.1.416.ebuild
similarity index 93%
rename from 
dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-3.1.415.ebuild
rename to 
dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-3.1.416.ebuild
index 9977e01..eab918a 100644
--- 
a/dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-3.1.415.ebuild
+++ 
b/dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-3.1.416.ebuild
@@ -26,7 +26,11 @@ RESTRICT="splitdebug"
 # The sdk includes the runtime-bin and aspnet-bin so prevent from installing 
at the same time
 # dotnetcore-sdk is the source based build
 
-RDEPEND="~dev-dotnet/dotnetcore-sdk-bin-${PV}"
+RDEPEND="
+   ~dev-dotnet/dotnetcore-sdk-bin-${PV}
+   !dev-dotnet/dotnet-sdk[dotnet-symlink(+)]
+   !dev-dotnet/dotnet-sdk-bin[dotnet-symlink(+)]
+"
 
 S=${WORKDIR}
 

diff --git 
a/dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-5.0.403.ebuild 
b/dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-5.0.404.ebuild
similarity index 93%
rename from 
dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-5.0.403.ebuild
rename to 
dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-5.0.404.ebuild
index 9977e01..eab918a 100644
--- 
a/dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-5.0.403.ebuild
+++ 
b/dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-5.0.404.ebuild
@@ -26,7 +26,11 @@ RESTRICT="splitdebug"
 # The sdk includes the runtime-bin and aspnet-bin so prevent from installing 
at the same time
 # dotnetcore-sdk is the source based build
 
-RDEPEND="~dev-dotnet/dotnetcore-sdk-bin-${PV}"
+RDEPEND="
+   ~dev-dotnet/dotnetcore-sdk-bin-${PV}
+   !dev-dotnet/dotnet-sdk[dotnet-symlink(+)]
+   !dev-dotnet/dotnet-sdk-bin[dotnet-symlink(+)]
+"
 
 S=${WORKDIR}
 

diff --git 
a/dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-6.0.100.ebuild 
b/dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-6.0.101.ebuild
similarity index 93%
rename from 
dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-6.0.100.ebuild
rename to 
dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-6.0.101.ebuild
index 9977e01..eab918a 100644
--- 
a/dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-6.0.100.ebuild
+++ 
b/dev-dotnet/dotnetcore-sdk-bin-common/dotnetcore-sdk-bin-common-6.0.101.ebuild
@@ -26,7 +26,11 @@ RESTRICT="splitdebug"
 # The sdk includes the runtime-bin and aspnet-bin so prevent from installing 
at the same time
 # dotnetcore-sdk is the source based build
 
-RDEPEND="~dev-dotnet/dotnetcore-sdk-bin-${PV}"
+RDEPEND="
+   ~dev-dotnet/dotnetcore-sdk-bin-${PV}
+   !dev-dotnet/dotnet-sdk[dotnet-symlink(+)]
+   !dev-dotnet/dotnet-sdk-bin[dotnet-symlink(+)]
+"
 
 S=${WORKDIR}
 

diff --git a/dev-dotnet/dotnetcore-sdk-bin/dotnetcore-sdk-bin-3.1.415.ebuild 
b/dev-dotnet/dotnetcore-sdk-bin/dotnetcore-sdk-bin-3.1.416.ebuild
similarity index 100%
rename from dev-dotnet/dotnetcore-sdk-bin/dotnetcore-sdk-bin-3.1.415.

[gentoo-commits] repo/proj/guru:dev commit in: sys-fs/gcsfuse/

2021-12-16 Thread Mathieu Tortuyaux
commit: e548b82d4353a83733446d469dc24090c414adb1
Author: Mathieu Tortuyaux  gmail  com>
AuthorDate: Thu Dec 16 15:09:26 2021 +
Commit: Mathieu Tortuyaux  gmail  com>
CommitDate: Thu Dec 16 15:10:42 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e548b82d

sys-fuse/gcsfuse: sync with the usptream

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Mathieu Tortuyaux  gmail.com>

 sys-fs/gcsfuse/Manifest | 4 +++-
 sys-fs/gcsfuse/{gcsfuse-0.38.0.ebuild => gcsfuse-0.39.0.ebuild} | 2 ++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/sys-fs/gcsfuse/Manifest b/sys-fs/gcsfuse/Manifest
index 864b82bfc..5af3f082d 100644
--- a/sys-fs/gcsfuse/Manifest
+++ b/sys-fs/gcsfuse/Manifest
@@ -71,7 +71,7 @@ DIST cloud.google.com%2Fgo%2Ftrace%2F@v%2Fv1.0.0.zip 45820 
BLAKE2B 526d423a55e17
 DIST contrib.go.opencensus.io%2Fexporter%2Fstackdriver%2F@v%2Fv0.13.10.mod 797 
BLAKE2B 
8273f658be191c7da32b063d7370b6eba2f8cebd662d6cd881de108af56d42058ed2e7bd614bd80bb87565f2e839e1ce395cfcf677dabca04e047f44014cbd20
 SHA512 
03db27c2c0c00f61369f7aacc3078d2991ac0fe7c112bdee19904554e2e7acefc7e2ebe80fc23a0e21636e773850ddecc6a9f2f82aae10a7c04d5bb3dab74b1d
 DIST contrib.go.opencensus.io%2Fexporter%2Fstackdriver%2F@v%2Fv0.13.10.zip 
142685 BLAKE2B 
d25035f62dedb2118b43dd22353817537e9bf6ee05ed513082f91292183879b7f56ed54393cc9b241fc2f4b745a5b371b279965bbc21f08a961515348344
 SHA512 
149f016d1bd47ef5706729e3dd1e5611620e327969d2af4908c238a23de5d22c3f2ae27cb253fdfe055c4f88256dde8bfe597ed5b8c39e20d54a2485a00c98c6
 DIST 
dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.mod 
36 BLAKE2B 
b430ef9388b0dfe932b201495a00275a6036338c99160d7362556be1e25924584b0802061d193533f23b1f76719dfd6a9484572babd25f1af0e53fd9bf07ac00
 SHA512 
196affe091247f94ceda4b56629bd62d4ee2b397f2c0f56c9534c02e43531b46705ad33543b58c1a4fc7a48e25e5923db087fe0485a93966a4086581c0d1d3e1
-DIST gcsfuse-0.38.0.tar.gz 6042742 BLAKE2B 
185464d5b5cfafedf478639a8baf4456088d043e43c58ad62f9debc1f9c9169b1c1997dd1f7b266d778a9f847a41c4289f5b1cbc4c16d7417e534ba9b8844178
 SHA512 
c804aa040c61e58dab59832b433205f7fb24d5a2e7dbd20ad78eedc96fe6b2c3ca756338c7a916535128369bd3f9f63e4c4c5ddfd1cfd5755e4f121d369076f1
+DIST gcsfuse-0.39.0.tar.gz 6043927 BLAKE2B 
345d9858d4d0cc6ac59a7fbe814d410d3f4f9d369dae086002962a1c89d47eaa608c0fbc185721be0ae5af8537ffd6a6596e457560fec4c1b58f79141f3ef2c9
 SHA512 
1399f705504187aab044e26f664329e579451eae92492909bd1dd2505a6b7026d0f5a88fa41908a51a59c37e83273348b0b3578c3203e3125722967e7f6d2d14
 DIST github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod 34 BLAKE2B 
ce54a247aef91043830bdf0603c8452ba38eceb1495af6e7a74c9119234a0dc5cd080cb25258c28f5e270acf91189a5ed33e361cbf17de2be5e37dadbda1d90d
 SHA512 
320941bc3b7fb8bc595e6135cbc513a7583d129f0cd92508055291e141191066303cf75148e25198c21f6c6c539a790ea3210f3ecf5de6a2a03b70c753091146
 DIST github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.zip 56132 BLAKE2B 
5edcfe991d7fc40094d637bae8d8d6f1f897ab3d3786ade2bb80287738103264520681ced8d30d2037253206c32d3f867f4d024a571cb9aad030ebc451e198eb
 SHA512 
43ed64ae515738487e9b75a2290d0b2bc25e83c021a9f29b21487c37adbf34e74e1e7d3d5ec0dfe678c8396356f95c3993a5f5610d1791ff62056cd182a4272f
 DIST 
github.com%2F!burnt!sushi%2Fxgb%2F@v%2Fv0.0.0-20160522181843-27f122750802.mod 
33 BLAKE2B 
d234bf9be3dd919cb1f8d33750a24dca68c90fea110fd0ff62f0dba86d2ebbfc66d55fea62745b6383c5607bc91cfd78c9d2cf12df251397e85995c04707caa2
 SHA512 
dbfa64ac31b25fdbff12110c6f9815abfde65f281e40852e7165499a2cefb6656c74fe0b82f0f018304daa02b83b421e9c15654efabad39787c69c1b2996a79d
@@ -332,6 +332,8 @@ DIST 
github.com%2Fjacobsa%2Fgcloud%2F@v%2Fv0.0.0-20210325123825-0cb59778cc89.mod
 DIST 
github.com%2Fjacobsa%2Fgcloud%2F@v%2Fv0.0.0-20210325123825-0cb59778cc89.zip 
107798 BLAKE2B 
b8edcf308caf726d11576cdd88629ebcc290d2c65b7001c619bb223c25b0fb4a2fa249e0ca58e11a4479ac130d5ae1a782e176d7209357ef7bbcc4a289d52856
 SHA512 
13e8de783ea3f91401141ab3a56992646727addc3e5ff0fc9f8fe438cabce6f88f994160f5247b5c91a20a790ab47af77984cd83ed2f1d6f834f5593c6ace81f
 DIST 
github.com%2Fjacobsa%2Fgcloud%2F@v%2Fv0.0.0-20210611094250-93436725bc18.mod 33 
BLAKE2B 
b8eb2e1316f10904e40df01151493e21bb92d4b326c468d6a8e8af27e83cd13cca9c3a1e8f24e074498a1cc2a43d4dc36c343066c841ebff574cac7217912a8b
 SHA512 
8aec7bfeae5ea840188681e1d3e8157776c0c20c7a05b397142662351f3bb62e8edab5f130c5c3397fce65fbb65f02a701301279650e191e4b971fbad804cc98
 DIST 
github.com%2Fjacobsa%2Fgcloud%2F@v%2Fv0.0.0-20210611094250-93436725bc18.zip 
107928 BLAKE2B 
31aafea0bce1c3796a7ecd6d704a1a40c3bc452b845955ef8d864e907e17c9a875216dd5ef02c302f53b62e5bd4649df1e48207d3b58cdd8225662279150f930
 SHA512 
43c980b38c65ba411dfaabc1fc402acdb11dccf4aae2068c3b21e4cbf0d4fb559cf0b1099e227b8dfc9f929800a6e3e0469caae9261290795019868fda9c5a01
+DIST 
github.com%2Fjacobsa%2Fgcloud%2F@v%2Fv0.0.0-20211209095912-b31f414cf7c3.mod 33 
BLAKE2B 
b8eb2e1316f10904e40df01151493e21bb92d4b326c468d6a8e8af27e83cd13cca

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

2021-12-16 Thread Agostino Sarubbo
commit: 142963966cccb479109fd9a3cd4fb2935c9c138a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Dec 16 15:21:47 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Dec 16 15:21:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14296396

sys-kernel/vanilla-sources: Automated version bump to 5.15.9 - remove old.

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-kernel/vanilla-sources/Manifest  |  4 +---
 sys-kernel/vanilla-sources/vanilla-sources-5.15.8.ebuild | 16 
 ...rces-5.14.21.ebuild => vanilla-sources-5.15.9.ebuild} |  0
 3 files changed, 1 insertion(+), 19 deletions(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index f2d37b264ffc..95bbf370c42e 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -3,7 +3,6 @@ DIST linux-4.19.tar.xz 103117552 BLAKE2B 
1dbf16cf410867412d17568fe42bc1e90c03418
 DIST linux-4.4.tar.xz 87295988 BLAKE2B 
f260f1858994f5d481fd078c86e51bddbc958f7c5d1586f60dced772e1b1107ecf3aae0558c3e6f39c36f7d3aa1e6cd1e5c64ec9d6f2218f47b98413da6466fb
 SHA512 
13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e
 DIST linux-4.9.tar.xz 93192404 BLAKE2B 
83ae310b17d47f1f18d6d28537c31e10f3e60458c5954c4611158ca99e71cc0da2e051272eabf27d5887df4a7cb4a5dd66ff993077c11d2221e92d300a0b48d7
 SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a
 DIST linux-5.10.tar.xz 116606704 BLAKE2B 
b923d7b66309224f42f35f8a5fa219421b0a9362d2adacdadd8d96251f61f7230878ea297a269a7f3b3c56830f0b177e068691e1d7f88501a05653b0a13274d1
 SHA512 
95bc137d0cf9148da6a9d1f1a878698dc27b40f68e22c597544010a6c591ce1b256f083489d3ff45ff77753289b535135590194d88ef9f007d0ddab3d74de70e
-DIST linux-5.14.tar.xz 120669872 BLAKE2B 
0047f5aaa3940dff97f4055ef544faafbbb5282128e6afe21d2f47d8dc8c395806a17016febfa050117d16f59e74b882cb8b9c5011d68f119c230d0a4d120524
 SHA512 
8e4f3ec3d36f774280f75dc7b004a43e09417af58f12e9c9f8348976659d4cfda7ad905f306f43fed66a27922e5c45db22e46bbfa7a0b9f365012380de3b6f64
 DIST linux-5.15.tar.xz 121913744 BLAKE2B 
3921274b23f7938abdf3ed9334534b4581e13d7484303d3a5280eddb038999aaa8b83a487472d9c4a219af0f06b9fecccaf348fb5510ab8762f4ef4b7e83
 SHA512 
d25ad40b5bcd6a4c6042fd0fd84e196e7a58024734c3e9a484fd0d5d54a0c1d87db8a3c784eff55e43b6f021709dc685eb0efa18d2aec327e4f88a79f405705a
 DIST linux-5.4.tar.xz 109441440 BLAKE2B 
193bc4a3147e147d5529956164ec4912fad5d5c6fb07f909ff1056e57235834173194afc686993ccd785c1ff15804de0961b625f3008cca0e27493efc8f27b13
 SHA512 
9f60f77e8ab972b9438ac648bed17551c8491d6585a5e85f694b2eaa4c623fbc61eb18419b2656b6795eac5deec0edaa04547fc6723fbda52256bd7f3486898f
 DIST patch-4.14.258.xz 4560540 BLAKE2B 
5f64137858da8c5068e52cdece1363540c19c97e5f464c12480e60f39f4b537e985c08e4e97b88724f01259ae49faaa64d1bca6f29dff1fd0b95f957f12ab8fe
 SHA512 
eda5df3b7292f50498b93e5ffef3759fe4faa6c2a51b00af7c63ba426343957d85533141799157a3f839ec7e27a8ca70e65551d7109a45aa4914f0e700eeb0a8
@@ -11,6 +10,5 @@ DIST patch-4.19.221.xz 4400744 BLAKE2B 
a627eb80f1251ca6ca23eec8222480a3ef2698b59
 DIST patch-4.4.295.xz 3725168 BLAKE2B 
ebab6dd703683a05d6ab6221b0239789ba94a6d2bae262d5b09ed0e313f31166d1167dea3579582df907943307efb504b6f5dbec565322d280fa5fb72329c828
 SHA512 
b464f3308d66e9c8836b371b94ac778b8111da6b40d8998b18d8a1eda667e156458e2e2c95ae1845b11c5bb6be025e4a83282689c309b5a7cdd234a6d5f4aa1e
 DIST patch-4.9.293.xz 4184840 BLAKE2B 
8a30cc34dedaf91d7bf674cb74fcf795458fef57e46f26e24a9a38c9187b523492cdef17c05fdc8bac3a861b72aece3cab81571b9ebb0d0f88b4f75ec7e3aaba
 SHA512 
4ec31b9cd9f2608cf7fea45d24fed95e757141acc0639272034786324d685b065791b12c18d55e5de3482d50af643cb22da5febc4ca15e0a15eed766fe97c0c4
 DIST patch-5.10.85.xz 2521268 BLAKE2B 
38f5fcf1c601abb509a36f7f4096e2016f2b1e62d71f54f923bb6d7dab536e1a702c384d05390714b30c36675e34262db8e08a3e958886ad0479b0e5f42113bb
 SHA512 
f9ab138d7bea84a96f1135201f1f496866adb72298afa51debc9d56a17fb3bdd218b8bdb5b3de1ecd5eb7646a3492c64003d6cfd2c44492c5f45131c06d8fffe
-DIST patch-5.14.21.xz 829096 BLAKE2B 
d834f707bac577391db1c13cf9128552bdbec9f024a54bea0cb8f1b7ecbc8fa5373ecb0154154ce9de9c55790733d1f64176cf776db72553d2e0a8cac6907a10
 SHA512 
fa77d8737df965fd231889c14d50828b155d84dedb2000eed4a85447443961ff12e948bda5501b3c6bf2dd0f2bd187945b1230ff90af532b41cd33fe77ff8719
-DIST patch-5.15.8.xz 537596 BLAKE2B 
0f431804d406c4bbb09c44826fe1018b0bca94018337b73387d44ff3e25e6b90e2ec10cf9935847786e4dac6e1523e8e7daeaedb4f854d20a155bd13b29a0c72
 SHA512 
ef6d0841033fecba7c4aa25f5249a1e532a0d95f4b7e7048357ff00277d9abc11897f92d05d4a2cb90372da9cec8aa6664ce1058f71a6cae6bc647649787667d
+DIST patch-5.15.9.xz 537632 BLAKE2B 
aba23afbb86888e980c2e7fb1cca870909a02b4ba0429941047962756d322a11ab7c923968543eaa071d9b14ed2331249289be74d849cb9006e1f4aef39e2

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

2021-12-16 Thread Marek Szuba
commit: 1e61795a540fbd5d0cbb784cf4d969eda67a892b
Author: Marek Szuba  gentoo  org>
AuthorDate: Thu Dec 16 12:37:37 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Thu Dec 16 15:48:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e61795a

net-libs/xrootd: drop 5.1.1-r1, 5.2.0-r1

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

 net-libs/xrootd/Manifest   |   2 -
 net-libs/xrootd/xrootd-5.1.1-r1.ebuild | 117 -
 net-libs/xrootd/xrootd-5.2.0-r1.ebuild | 117 -
 3 files changed, 236 deletions(-)

diff --git a/net-libs/xrootd/Manifest b/net-libs/xrootd/Manifest
index 9d0af636c386..882c4506b26e 100644
--- a/net-libs/xrootd/Manifest
+++ b/net-libs/xrootd/Manifest
@@ -1,5 +1,3 @@
 DIST xrootd-5.0.3.tar.gz 2766694 BLAKE2B 
1fe7743de4d09c95257c3d761c2056024ba3ba59b7cd86b5926f2d32cc2f85dcd0af69e6e5969967591a2bba293902b757395e0f9375c39577eed9e450eb
 SHA512 
e085af48e4196a44e9ebd63bf1234cf4401f158d23d03ffb38fcfe43284d025abe6c0b5e46b2808b28f300b933ff12523f64ac2d86d3f344aa2e0aea95e30cb0
-DIST xrootd-5.1.1.tar.gz 2869346 BLAKE2B 
daad5f4e1253dce7d83d144aabbbd24afca9affafc6643b8e7124c68ff8651a3a15ed1b40680a40b737411132ccd0b697d4cacfcdd2bd64d5b5640875684c464
 SHA512 
aee5373f2064eaa489abc7a560ca61b98f824e8f0b3665dbea82e0362a91a3b4f9e6457d0a304692ae58619ef7c16333a8c69a69d282bd48948a968dd4a06e4f
-DIST xrootd-5.2.0.tar.gz 2935040 BLAKE2B 
1aa58ea188faef3e3691e77b08529d14e0bf04c18127b8b8ae6a7154700af67b1d900b64cf4f505b90963e2925e32935d4bcf9d1d913ba0973713b5c69301dd2
 SHA512 
cfd41d2e678ad339677abb62f329828de368ea5af9c9103722b75bcbb0812a2f1695986ca953651e2418fc839d7a50072635b806c9292aeaff702e269bbc11da
 DIST xrootd-5.3.1.tar.gz 2957788 BLAKE2B 
6669ce4811e6c65ef17f06ae219e19e1f12027f4f9b620ad447df53ac437b30ce6425dc783a0ac7e4557d18ab562c266ac2497d93e93a2058fe5bd4aa7bc1d42
 SHA512 
a65436fe649233bb28123d9529d496c11b4ff40ba5490cbcbb32ff5379e555cfd684fad350c784c80e70056bb5d2e9701a80543c7f4a8ceb11e935aea01800b3
 DIST xrootd-5.4.0.tar.gz 3225065 BLAKE2B 
cda6b14fae4c4c8d34367fa3ff448c02bf3ecda9c6bb4029d3a6b53370a57445ac25de77d5324dd4dab8c92cda77490efdbb862e4db6b926e19ad3363278f046
 SHA512 
59f93db433f0e88439d5edfffb75d7813bae253e50c390fe8c43ef924bc36f5f4a56db9b00a44013c60c4b4bd5a0accaff2a8ca793fe37e59dc77dd8ab8f6837

diff --git a/net-libs/xrootd/xrootd-5.1.1-r1.ebuild 
b/net-libs/xrootd/xrootd-5.1.1-r1.ebuild
deleted file mode 100644
index b997510b59ab..
--- a/net-libs/xrootd/xrootd-5.1.1-r1.ebuild
+++ /dev/null
@@ -1,117 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-
-# Upstream does not support the building of Python bindings
-# via CMake for more than one implementation at a time.
-inherit cmake python-single-r1
-
-DESCRIPTION="Extended ROOT remote file server"
-HOMEPAGE="http://xrootd.org/";
-SRC_URI="http://xrootd.org/download/v${PV}/${P}.tar.gz";
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples fuse http kerberos python readline ssl test"
-RESTRICT="!test? ( test )"
-
-CDEPEND="acct-group/xrootd
-   acct-user/xrootd
-   sys-libs/zlib
-   virtual/libcrypt:=
-   fuse? ( sys-fs/fuse:= )
-   kerberos? ( virtual/krb5 )
-   python? ( ${PYTHON_DEPS} )
-   readline? ( sys-libs/readline:0= )
-   ssl? ( https://github.com/xrootd/xrootd/issues/447
-QA_SONAME="/usr/lib.*/libXrd.*-$(ver_cut 1)\.so
-   /usr/lib.*/libXrdClTests\.so"
-
-pkg_setup() {
-   use python && python_setup
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DENABLE_CRYPTO=$(usex ssl)
-   -DENABLE_FUSE=$(usex fuse)
-   -DENABLE_HTTP=$(usex http)
-   -DENABLE_KRB5=$(usex kerberos)
-   -DENABLE_PYTHON=$(usex python)
-   -DENABLE_READLINE=$(usex readline)
-   -DENABLE_TESTS=$(usex test)
-   )
-   cmake_src_configure
-}
-
-src_compile() {
-   cmake_src_compile
-   if use doc; then
-   doxygen Doxyfile || die
-   if use python; then
-   emake -C bindings/python/docs html
-   fi
-   fi
-}
-
-src_install() {
-   use doc && HTML_DOCS=( doxydoc/html/. )
-   dodoc docs/ReleaseNotes.txt
-   cmake_src_install
-   find "${D}" \( -iname '*.md5' -o -iname '*.map' \) -delete || die
-
-   # base configs
-   insinto /etc/xrootd
-   doins packaging/common/*.cfg
-
-   fowners root:xrootd /etc/xrootd
-   keepdir /var/log/xrootd
-   fowners xrootd:xrootd /var/log/xrootd
-
-   local i
-   for i in cmsd frm_purged frm_xfrd xrootd; do
-   newinitd "${FILESDIR}"/${i}.initd ${i}
-   done
-   # all daemons MUST use single master config file
-   newconfd "${FILESDIR}"/xrootd.confd xrootd
-
-   if use python; then
-   p

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

2021-12-16 Thread Marek Szuba
commit: cce0e7c564e13513046fc16d4156f8517fa76a88
Author: Marek Szuba  gentoo  org>
AuthorDate: Thu Dec 16 12:35:27 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Thu Dec 16 15:48:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cce0e7c5

net-libs/xrootd: add 5.4.0

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

 net-libs/xrootd/Manifest|   1 +
 net-libs/xrootd/metadata.xml|   3 +-
 net-libs/xrootd/xrootd-5.4.0.ebuild | 125 
 3 files changed, 128 insertions(+), 1 deletion(-)

diff --git a/net-libs/xrootd/Manifest b/net-libs/xrootd/Manifest
index fa1e42cc0cca..9d0af636c386 100644
--- a/net-libs/xrootd/Manifest
+++ b/net-libs/xrootd/Manifest
@@ -2,3 +2,4 @@ DIST xrootd-5.0.3.tar.gz 2766694 BLAKE2B 
1fe7743de4d09c95257c3d761c2056024ba3ba5
 DIST xrootd-5.1.1.tar.gz 2869346 BLAKE2B 
daad5f4e1253dce7d83d144aabbbd24afca9affafc6643b8e7124c68ff8651a3a15ed1b40680a40b737411132ccd0b697d4cacfcdd2bd64d5b5640875684c464
 SHA512 
aee5373f2064eaa489abc7a560ca61b98f824e8f0b3665dbea82e0362a91a3b4f9e6457d0a304692ae58619ef7c16333a8c69a69d282bd48948a968dd4a06e4f
 DIST xrootd-5.2.0.tar.gz 2935040 BLAKE2B 
1aa58ea188faef3e3691e77b08529d14e0bf04c18127b8b8ae6a7154700af67b1d900b64cf4f505b90963e2925e32935d4bcf9d1d913ba0973713b5c69301dd2
 SHA512 
cfd41d2e678ad339677abb62f329828de368ea5af9c9103722b75bcbb0812a2f1695986ca953651e2418fc839d7a50072635b806c9292aeaff702e269bbc11da
 DIST xrootd-5.3.1.tar.gz 2957788 BLAKE2B 
6669ce4811e6c65ef17f06ae219e19e1f12027f4f9b620ad447df53ac437b30ce6425dc783a0ac7e4557d18ab562c266ac2497d93e93a2058fe5bd4aa7bc1d42
 SHA512 
a65436fe649233bb28123d9529d496c11b4ff40ba5490cbcbb32ff5379e555cfd684fad350c784c80e70056bb5d2e9701a80543c7f4a8ceb11e935aea01800b3
+DIST xrootd-5.4.0.tar.gz 3225065 BLAKE2B 
cda6b14fae4c4c8d34367fa3ff448c02bf3ecda9c6bb4029d3a6b53370a57445ac25de77d5324dd4dab8c92cda77490efdbb862e4db6b926e19ad3363278f046
 SHA512 
59f93db433f0e88439d5edfffb75d7813bae253e50c390fe8c43ef924bc36f5f4a56db9b00a44013c60c4b4bd5a0accaff2a8ca793fe37e59dc77dd8ab8f6837

diff --git a/net-libs/xrootd/metadata.xml b/net-libs/xrootd/metadata.xml
index 07427db64e20..a911c7c2e75c 100644
--- a/net-libs/xrootd/metadata.xml
+++ b/net-libs/xrootd/metadata.xml
@@ -9,12 +9,13 @@
   XROOTD software framework is a fully generic suite for fast, low latency
   and scalable data access, which can serve natively any kind of data,
   organized as a hierarchical filesystem-like namespace, based on the
-  concept of directory. 
+  concept of directory.
   It is usually used with sci-physics/root and its PROOF
   facilities for cluster computing in high energy physics.
 
   
 Enable the sys-fs/fuse filesystem 
driver
 Enable http protocol support
+Install xrootd server and related plug-ins
   
 

diff --git a/net-libs/xrootd/xrootd-5.4.0.ebuild 
b/net-libs/xrootd/xrootd-5.4.0.ebuild
new file mode 100644
index ..b13ed2e2e71d
--- /dev/null
+++ b/net-libs/xrootd/xrootd-5.4.0.ebuild
@@ -0,0 +1,125 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+# Upstream does not support the building of Python bindings
+# via CMake for more than one implementation at a time.
+inherit cmake python-single-r1
+
+DESCRIPTION="Extended ROOT remote file server"
+HOMEPAGE="https://xrootd.slac.stanford.edu/";
+SRC_URI="https://xrootd.slac.stanford.edu/download/v${PV}/${P}.tar.gz";
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc examples fuse http kerberos python readline +server ssl systemd test"
+RESTRICT="!test? ( test )"
+
+CDEPEND="acct-group/xrootd
+   acct-user/xrootd
+   sys-libs/zlib
+   virtual/libcrypt:=
+   fuse? ( sys-fs/fuse:= )
+   kerberos? ( virtual/krb5 )
+   python? ( ${PYTHON_DEPS} )
+   readline? ( sys-libs/readline:0= )
+   ssl? ( https://github.com/xrootd/xrootd/issues/447
+QA_SONAME="/usr/lib.*/libXrd.*-$(ver_cut 1)\.so
+   /usr/lib.*/libXrdClTests\.so"
+
+pkg_setup() {
+   use python && python_setup
+}
+
+# FIXME: no systemd automagic!
+# FIXME: support xrdec - currently only builds against bundled isa-l
+src_configure() {
+   local mycmakeargs=(
+   -DENABLE_CRYPTO=$(usex ssl)
+   -DENABLE_FUSE=$(usex fuse)
+   -DENABLE_HTTP=$(usex http)
+   -DENABLE_KRB5=$(usex kerberos)
+   -DENABLE_PYTHON=$(usex python)
+   -DENABLE_READLINE=$(usex readline)
+   -DENABLE_TESTS=$(usex test)
+   -DXRDCL_ONLY=$(usex server "no" "yes")
+   )
+   cmake_src_configure
+}
+
+src_compile() {
+   cmake_src_compile
+   if use doc; then
+   doxygen Doxyfile || die
+   if use python; then
+   emake -C bindings/python/docs html
+   fi
+   fi
+}
+
+src_install() {
+   use doc && HTML_DOCS=

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

2021-12-16 Thread Marek Szuba
commit: 803e8cac94f4e73f2560caa0777a19cfe58d9a4f
Author: Marek Szuba  gentoo  org>
AuthorDate: Thu Dec 16 12:44:14 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Thu Dec 16 15:48:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=803e8cac

net-libs/xrootd-ceph: drop 5.1.1, 5.2.0

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

 net-libs/xrootd-ceph/Manifest |  2 --
 net-libs/xrootd-ceph/xrootd-ceph-5.1.1.ebuild | 36 ---
 net-libs/xrootd-ceph/xrootd-ceph-5.2.0.ebuild | 34 -
 3 files changed, 72 deletions(-)

diff --git a/net-libs/xrootd-ceph/Manifest b/net-libs/xrootd-ceph/Manifest
index aaa06ba0cb83..9e090fad3083 100644
--- a/net-libs/xrootd-ceph/Manifest
+++ b/net-libs/xrootd-ceph/Manifest
@@ -1,5 +1,3 @@
 DIST xrootd-ceph-5.0.3.tar.gz 81835 BLAKE2B 
1be45c78dd0ec4b20451cfa4a8a579e076e718509a47fa04027207c12e48decefb9f82749cc15cae3cad75d97485fe0a7d6582cdcc0739bd222bc1d97b6b
 SHA512 
3338a0ab0446e4c7ee3d232f5cce8f93c49e040b4792aa52f9dcf6f27f6767e6ffbaff17eb30a87c5b3ff713e1b0c4edb24d8d116c91351c4ed0c13963f80fc9
-DIST xrootd-ceph-5.1.1.tar.gz 81981 BLAKE2B 
6f0ddfd2e20c0127223d3d41e614fbefefb8e1ce20ae9a805fc0d01d7c442f0b9b9323ba1761a9b5a160f63bfe1c823384f84c160eb98d316bddc3c1affe2b6c
 SHA512 
fede94cbe614b6c7dced07d1bbe8661706c0e0c98c77cab0a777b62cb7b1a0790ce597bb6764b36b6d2cba9884f23f6d37d54adb5b11cb6d20e32b95a2877ef3
-DIST xrootd-ceph-5.2.0.tar.gz 82017 BLAKE2B 
604c2c9eae857f05160b3cd853591283c5aebdec2345a810d2454f34bc22768db15f973ca9f672e6522297f939586ca8e996222487e2c1733205159521bf4996
 SHA512 
fdfe71c9bd087d216c2c4536b130cf90a392032ac8d0ad294b8ee7358449cbdf779f0f5d5aca02062cc04f510678bc6171f3dd29ad1f7aa207617aa3dfbd6f54
 DIST xrootd-ceph-5.3.1.tar.gz 82029 BLAKE2B 
1946da121e620c68ddafe448f049d4495ec5326cfc0286944cea41cb940ac8982ced939989efddb3879baa694c34f93f75f6e58c00b75c5d385da863daa15154
 SHA512 
bcf4fc341644e6c4d2c83b4bc913203187385964da3d00d019d69de0e0abd19915a5194713574bb1b8562e80edd3eeefb6fee1762e7c8595b14d13657c237861
 DIST xrootd-ceph-5.4.0.tar.gz 82031 BLAKE2B 
5c964597d7b8de3a217c7df58e214d58e1bfdc980f74cfbc571343e7325d61804060e6374912f02a3f73e4df721c87e38860a023de4422b58878915a52aa04b1
 SHA512 
7b33fc194fe5245de78daa7829dd978c96b1eccd979610e26d60ed0c284e192413192b2b581e5a18de25d6f7f93737598d180b6d5419307156a6abdea44c4b27

diff --git a/net-libs/xrootd-ceph/xrootd-ceph-5.1.1.ebuild 
b/net-libs/xrootd-ceph/xrootd-ceph-5.1.1.ebuild
deleted file mode 100644
index bdacb70cc802..
--- a/net-libs/xrootd-ceph/xrootd-ceph-5.1.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="xrootd OSS plug-in for interfacing with Ceph storage platform"
-HOMEPAGE="https://xrootd.slac.stanford.edu/";
-SRC_URI="https://github.com/xrootd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~amd64-linux"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND=">=net-libs/xrootd-5.0.0
-   sys-cluster/ceph"
-RDEPEND="${DEPEND}"
-BDEPEND="test? ( dev-util/cppunit )"
-
-# xrootd plugins are not intended to be linked with,
-# they are to be loaded at runtime by xrootd,
-# see https://github.com/xrootd/xrootd/issues/447
-QA_SONAME="/usr/lib.*/libXrdCeph.*-$(ver_cut 1)\.so
-   /usr/lib.*/libXrdCephTests\.so"
-
-src_configure() {
-   local mycmakeargs=(
-   -DENABLE_TESTS=$(usex test)
-   # As of 5.0.3 the default plug-in version is still 4.
-   -DPLUGIN_VERSION=$(ver_cut 1)
-   )
-   cmake_src_configure
-}

diff --git a/net-libs/xrootd-ceph/xrootd-ceph-5.2.0.ebuild 
b/net-libs/xrootd-ceph/xrootd-ceph-5.2.0.ebuild
deleted file mode 100644
index a9f500fa3351..
--- a/net-libs/xrootd-ceph/xrootd-ceph-5.2.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="xrootd OSS plug-in for interfacing with Ceph storage platform"
-HOMEPAGE="https://xrootd.slac.stanford.edu/";
-SRC_URI="https://github.com/xrootd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~amd64-linux"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND=">=net-libs/xrootd-5.0.0
-   sys-cluster/ceph"
-RDEPEND="${DEPEND}"
-BDEPEND="test? ( dev-util/cppunit )"
-
-# xrootd plugins are not intended to be linked with,
-# they are to be loaded at runtime by xrootd,
-# see https://github.com/xrootd/xrootd/issues/447
-QA_SONAME="/usr/lib.*/libXrdCeph.*-$(ver_cut 1)\.so
-   /usr/lib.*/libXrdCephTests\.so"
-
-src_configure() {
-   local mycmakeargs=(
-   -DENABLE_TESTS=$(usex test)
-   )
-   cmake_src_configure
-}



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

2021-12-16 Thread Marek Szuba
commit: 65dc5ec07f876fd5db4eb16518af88f15c7e465e
Author: Marek Szuba  gentoo  org>
AuthorDate: Thu Dec 16 12:32:42 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Thu Dec 16 15:48:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65dc5ec0

net-libs/xrootd: block OpenSSL-3.0

Upstream is aware of the issue and is actively working on it, however as
of mid-December 2021 none of the releases support new OpenSSL.

Bug: https://bugs.gentoo.org/806388
Signed-off-by: Marek Szuba  gentoo.org>

 net-libs/xrootd/xrootd-5.0.3-r1.ebuild | 2 +-
 net-libs/xrootd/xrootd-5.1.1-r1.ebuild | 2 +-
 net-libs/xrootd/xrootd-5.2.0-r1.ebuild | 2 +-
 net-libs/xrootd/xrootd-5.3.1.ebuild| 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-libs/xrootd/xrootd-5.0.3-r1.ebuild 
b/net-libs/xrootd/xrootd-5.0.3-r1.ebuild
index 260b6f8047ba..63d03a9265a8 100644
--- a/net-libs/xrootd/xrootd-5.0.3-r1.ebuild
+++ b/net-libs/xrootd/xrootd-5.0.3-r1.ebuild
@@ -27,7 +27,7 @@ CDEPEND="acct-group/xrootd
kerberos? ( virtual/krb5 )
python? ( ${PYTHON_DEPS} )
readline? ( sys-libs/readline:0= )
-   ssl? ( dev-libs/openssl:0= )
+   ssl? ( 

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

2021-12-16 Thread Marek Szuba
commit: 8fe8f6e6ece7aa0c3fc949fa0759ba15f3610d34
Author: Marek Szuba  gentoo  org>
AuthorDate: Thu Dec 16 12:43:38 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Thu Dec 16 15:48:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fe8f6e6

net-libs/xrootd-ceph: add 5.4.0

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

 net-libs/xrootd-ceph/Manifest  |  1 +
 .../files/xrootd-ceph-5.4.0_no-werror.patch| 11 +++
 net-libs/xrootd-ceph/xrootd-ceph-5.4.0.ebuild  | 38 ++
 3 files changed, 50 insertions(+)

diff --git a/net-libs/xrootd-ceph/Manifest b/net-libs/xrootd-ceph/Manifest
index 025b6132986f..aaa06ba0cb83 100644
--- a/net-libs/xrootd-ceph/Manifest
+++ b/net-libs/xrootd-ceph/Manifest
@@ -2,3 +2,4 @@ DIST xrootd-ceph-5.0.3.tar.gz 81835 BLAKE2B 
1be45c78dd0ec4b20451cfa4a8a579e076e7
 DIST xrootd-ceph-5.1.1.tar.gz 81981 BLAKE2B 
6f0ddfd2e20c0127223d3d41e614fbefefb8e1ce20ae9a805fc0d01d7c442f0b9b9323ba1761a9b5a160f63bfe1c823384f84c160eb98d316bddc3c1affe2b6c
 SHA512 
fede94cbe614b6c7dced07d1bbe8661706c0e0c98c77cab0a777b62cb7b1a0790ce597bb6764b36b6d2cba9884f23f6d37d54adb5b11cb6d20e32b95a2877ef3
 DIST xrootd-ceph-5.2.0.tar.gz 82017 BLAKE2B 
604c2c9eae857f05160b3cd853591283c5aebdec2345a810d2454f34bc22768db15f973ca9f672e6522297f939586ca8e996222487e2c1733205159521bf4996
 SHA512 
fdfe71c9bd087d216c2c4536b130cf90a392032ac8d0ad294b8ee7358449cbdf779f0f5d5aca02062cc04f510678bc6171f3dd29ad1f7aa207617aa3dfbd6f54
 DIST xrootd-ceph-5.3.1.tar.gz 82029 BLAKE2B 
1946da121e620c68ddafe448f049d4495ec5326cfc0286944cea41cb940ac8982ced939989efddb3879baa694c34f93f75f6e58c00b75c5d385da863daa15154
 SHA512 
bcf4fc341644e6c4d2c83b4bc913203187385964da3d00d019d69de0e0abd19915a5194713574bb1b8562e80edd3eeefb6fee1762e7c8595b14d13657c237861
+DIST xrootd-ceph-5.4.0.tar.gz 82031 BLAKE2B 
5c964597d7b8de3a217c7df58e214d58e1bfdc980f74cfbc571343e7325d61804060e6374912f02a3f73e4df721c87e38860a023de4422b58878915a52aa04b1
 SHA512 
7b33fc194fe5245de78daa7829dd978c96b1eccd979610e26d60ed0c284e192413192b2b581e5a18de25d6f7f93737598d180b6d5419307156a6abdea44c4b27

diff --git a/net-libs/xrootd-ceph/files/xrootd-ceph-5.4.0_no-werror.patch 
b/net-libs/xrootd-ceph/files/xrootd-ceph-5.4.0_no-werror.patch
new file mode 100644
index ..f67fb513b455
--- /dev/null
+++ b/net-libs/xrootd-ceph/files/xrootd-ceph-5.4.0_no-werror.patch
@@ -0,0 +1,11 @@
+--- a/cmake/XRootDOSDefs.cmake
 b/cmake/XRootDOSDefs.cmake
+@@ -12,7 +12,7 @@
+ 
#---
+ if( CMAKE_COMPILER_IS_GNUCXX )
+   set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11" )
+-  set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Werror" )
++  set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra" )
+   set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-parameter" )
+   # gcc 4.1 is retarded
+   execute_process( COMMAND ${CMAKE_C_COMPILER} -dumpversion

diff --git a/net-libs/xrootd-ceph/xrootd-ceph-5.4.0.ebuild 
b/net-libs/xrootd-ceph/xrootd-ceph-5.4.0.ebuild
new file mode 100644
index ..9267d0cbd7b8
--- /dev/null
+++ b/net-libs/xrootd-ceph/xrootd-ceph-5.4.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="xrootd OSS plug-in for interfacing with Ceph storage platform"
+HOMEPAGE="https://xrootd.slac.stanford.edu/";
+SRC_URI="https://github.com/xrootd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~amd64-linux"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND=">=net-libs/xrootd-5.0.0
+   sys-cluster/ceph"
+RDEPEND="${DEPEND}"
+BDEPEND="test? ( dev-util/cppunit )"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-5.4.0_no-werror.patch
+)
+
+# xrootd plugins are not intended to be linked with,
+# they are to be loaded at runtime by xrootd,
+# see https://github.com/xrootd/xrootd/issues/447
+QA_SONAME="/usr/lib.*/libXrdCeph.*-$(ver_cut 1)\.so
+   /usr/lib.*/libXrdCephTests\.so"
+
+src_configure() {
+   local mycmakeargs=(
+   -DENABLE_TESTS=$(usex test)
+   )
+   cmake_src_configure
+}



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

2021-12-16 Thread Mike Pagano
commit: 78c05ebe1f70734ce8476db91fdf3b343cbe8a74
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Dec 16 16:01:59 2021 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Dec 16 16:01:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78c05ebe

sys-kernel/vanilla-sources: Linux patch 5.10.85

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

 sys-kernel/vanilla-sources/Manifest | 2 +-
 .../{vanilla-sources-5.10.85.ebuild => vanilla-sources-5.10.86.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 95bbf370c42e..e7c8555c13df 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -9,6 +9,6 @@ DIST patch-4.14.258.xz 4560540 BLAKE2B 
5f64137858da8c5068e52cdece1363540c19c97e5
 DIST patch-4.19.221.xz 4400744 BLAKE2B 
a627eb80f1251ca6ca23eec8222480a3ef2698b59bb786e96b8652be3ff24228a11d9935905f79e726d5b8baa49b42ab7ce14dbded2ab62888a8ad2891e1a7e8
 SHA512 
cb719ae0b3b2b61c3b12ce1fd51751ac64afdc330292b845166d503ddae0a1f4a5190508ec60173bf35689f182b10f6d606d739b9b2d3197fcc729b3b00b0581
 DIST patch-4.4.295.xz 3725168 BLAKE2B 
ebab6dd703683a05d6ab6221b0239789ba94a6d2bae262d5b09ed0e313f31166d1167dea3579582df907943307efb504b6f5dbec565322d280fa5fb72329c828
 SHA512 
b464f3308d66e9c8836b371b94ac778b8111da6b40d8998b18d8a1eda667e156458e2e2c95ae1845b11c5bb6be025e4a83282689c309b5a7cdd234a6d5f4aa1e
 DIST patch-4.9.293.xz 4184840 BLAKE2B 
8a30cc34dedaf91d7bf674cb74fcf795458fef57e46f26e24a9a38c9187b523492cdef17c05fdc8bac3a861b72aece3cab81571b9ebb0d0f88b4f75ec7e3aaba
 SHA512 
4ec31b9cd9f2608cf7fea45d24fed95e757141acc0639272034786324d685b065791b12c18d55e5de3482d50af643cb22da5febc4ca15e0a15eed766fe97c0c4
-DIST patch-5.10.85.xz 2521268 BLAKE2B 
38f5fcf1c601abb509a36f7f4096e2016f2b1e62d71f54f923bb6d7dab536e1a702c384d05390714b30c36675e34262db8e08a3e958886ad0479b0e5f42113bb
 SHA512 
f9ab138d7bea84a96f1135201f1f496866adb72298afa51debc9d56a17fb3bdd218b8bdb5b3de1ecd5eb7646a3492c64003d6cfd2c44492c5f45131c06d8fffe
+DIST patch-5.10.86.xz 2521344 BLAKE2B 
3ad354196bd24a39d7ee430ecae88c762b882dbfcba9d7bdb5c99527228bd53986b14a53bcd4aed73a68290d1c332d3798fcba20cec7b14de5545155ff7525a0
 SHA512 
43f4a8e6e623adabd60fe6fd2efbb7f29870733365a5a994b6a0801197bafa989317ddd18577db7bee3d85df58e930ad7b184f956592a1a61a817dd0d626eb77
 DIST patch-5.15.9.xz 537632 BLAKE2B 
aba23afbb86888e980c2e7fb1cca870909a02b4ba0429941047962756d322a11ab7c923968543eaa071d9b14ed2331249289be74d849cb9006e1f4aef39e2a39
 SHA512 
ae5a1b8fa52fe8ec8f31fbaaa2d53d38007b4c06b0ecf897f7e10925523e33b165ca3212a551cb3eaba404fb5ff520319d676d4328b6a0370c2b3e463cd78fac
 DIST patch-5.4.165.xz 3588164 BLAKE2B 
849b1aee8126109bba8e0e413e3b3bb8165043557f3927c2444ce94674056df53fc0d27f35c82048ddf0df0bb6ed15fbe6e2c6925d13996481595497807fdc5e
 SHA512 
c64606085a57f7068f393fe4ae62733602cf84709fe9599bfc18f066700766dbafa5ce9c93e50bfbeca7f4663b38da376a8460a53901f1edf5b07c1c3d552602

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-5.10.85.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-5.10.86.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-5.10.85.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-5.10.86.ebuild



[gentoo-commits] proj/linux-patches:5.15 commit in: /

2021-12-16 Thread Mike Pagano
commit: 4c5573a7d66b30d1f41bbe0cbbff33d4f4b86b87
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Dec 16 16:03:07 2021 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Dec 16 16:03:07 2021 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=4c5573a7

Linux patch 5.15.9

Signed-off-by: Mike Pagano  gentoo.org>

 _README |  4 
 1008_linux-5.15.9.patch | 16 
 2 files changed, 20 insertions(+)

diff --git a/_README b/_README
index a50822d5..d936a301 100644
--- a/_README
+++ b/_README
@@ -75,6 +75,10 @@ Patch:  1007_linux-5.15.8.patch
 From:   http://www.kernel.org
 Desc:   Linux 5.15.8
 
+Patch:  1008_linux-5.15.9.patch
+From:   http://www.kernel.org
+Desc:   Linux 5.15.9
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1008_linux-5.15.9.patch b/1008_linux-5.15.9.patch
new file mode 100644
index ..452cffed
--- /dev/null
+++ b/1008_linux-5.15.9.patch
@@ -0,0 +1,16 @@
+diff --git a/Makefile b/Makefile
+index 72344b214bba5..e6d2ea920a1d1 100644
+--- a/Makefile
 b/Makefile
+@@ -1,7 +1,7 @@
+ # SPDX-License-Identifier: GPL-2.0
+ VERSION = 5
+ PATCHLEVEL = 15
+-SUBLEVEL = 8
++SUBLEVEL = 9
+ EXTRAVERSION =
+ NAME = Trick or Treat
+ 
+diff --git a/tools/testing/selftests/netfilter/conntrack_vrf.sh 
b/tools/testing/selftests/netfilter/conntrack_vrf.sh
+old mode 100644
+new mode 100755



[gentoo-commits] proj/linux-patches:5.10 commit in: /

2021-12-16 Thread Mike Pagano
commit: 480d15c730822be6b4d0cbf7d11f5794c6ca6659
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Dec 16 16:04:31 2021 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Dec 16 16:04:31 2021 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=480d15c7

Linux patch 5.10.86

Signed-off-by: Mike Pagano  gentoo.org>

 _README  |  4 
 1085_linux-5.10.86.patch | 16 
 2 files changed, 20 insertions(+)

diff --git a/_README b/_README
index 0052fe2c..333a9c3a 100644
--- a/_README
+++ b/_README
@@ -383,6 +383,10 @@ Patch:  1084_linux-5.10.85.patch
 From:   http://www.kernel.org
 Desc:   Linux 5.10.85
 
+Patch:  1085_linux-5.10.86.patch
+From:   http://www.kernel.org
+Desc:   Linux 5.10.86
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1085_linux-5.10.86.patch b/1085_linux-5.10.86.patch
new file mode 100644
index ..911d13d7
--- /dev/null
+++ b/1085_linux-5.10.86.patch
@@ -0,0 +1,16 @@
+diff --git a/Makefile b/Makefile
+index 8de80228df3f6..5c1a33f1ecad9 100644
+--- a/Makefile
 b/Makefile
+@@ -1,7 +1,7 @@
+ # SPDX-License-Identifier: GPL-2.0
+ VERSION = 5
+ PATCHLEVEL = 10
+-SUBLEVEL = 85
++SUBLEVEL = 86
+ EXTRAVERSION =
+ NAME = Dare mighty things
+ 
+diff --git a/tools/testing/selftests/netfilter/conntrack_vrf.sh 
b/tools/testing/selftests/netfilter/conntrack_vrf.sh
+old mode 100644
+new mode 100755



[gentoo-commits] proj/linux-patches: New tag: 5.10-93

2021-12-16 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Dec 16 16:05:49 2021 +

New tag: 5.10-93




[gentoo-commits] proj/linux-patches: New tag: 5.15-11

2021-12-16 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Dec 16 16:07:46 2021 +

New tag: 5.15-11




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

2021-12-16 Thread Mike Pagano
commit: e9fbbdaa63c1502a38f77d231df9137e536401ad
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Dec 16 16:25:36 2021 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Dec 16 16:25:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9fbbdaa

sys-kernel/gentoo-sources: Linux updates

5.15.9
5.10.86

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

 sys-kernel/gentoo-sources/Manifest |  6 +
 .../gentoo-sources/gentoo-sources-5.10.86.ebuild   | 28 ++
 .../gentoo-sources/gentoo-sources-5.15.9.ebuild| 28 ++
 3 files changed, 62 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index a822d6dd6679..326d86287cb1 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -100,6 +100,9 @@ DIST genpatches-5.10-91.extras.tar.xz 3844 BLAKE2B 
caf397547329c9656aea77d1c68bc
 DIST genpatches-5.10-92.base.tar.xz 2744152 BLAKE2B 
17fb94359b2c2c137093fb7d54a6e85b3a986837f6509a40815582e5e1cfae504b3340281199020388eef0be5406b9b7cdadd6395fc418c968dbbc22093965dc
 SHA512 
53fe7c3b446a4fac5d1d10fe17e124414506c1f5fe53d810085c3f754a44cafbb54f3da7f3fd2000470edf4a834b4433d96c6ef63785b8019533624b46a8f351
 DIST genpatches-5.10-92.experimental.tar.xz 16860 BLAKE2B 
6418ed38adc1f1020f35cc4a3cb05e64e6837a19bb1cc62f86496e6c366b7dc75934cfd63085895fc49e5b1015c3a769b526ecb5d97cd52d7efe4530b77860e3
 SHA512 
7ad629f60c450ca7b440c536205bd01e8989a6b59da54d4ddf41e6cd83198f23d99110e7ecc9272d5a672e9a54175c2c1a86e7e7c8e2087f1c798ba5607e875e
 DIST genpatches-5.10-92.extras.tar.xz 3844 BLAKE2B 
0adbc9d201b5ef2f9ccca1e05bd2b4d086ceae9545526bf92a5e9704d63827b3df1f0f784155a517c989cb9fc87fa3203cf45cb5cf8212b8b30dc03a318579fb
 SHA512 
1ac5acb0734ce0ed89c0358ba13f14abc54e63ebb20ad7a32b2ab5e7491f26a0f9efccdb9322ae35c8b4dd29e64b9a27892fe04a92938e9b439ea13028a61f79
+DIST genpatches-5.10-93.base.tar.xz 2744560 BLAKE2B 
485d90002a0dbd811eae853d5fd080683a915ee064e539432edf8c763ede0af8aab994381b3d62b13039fb7d5fbbf8840c9d964dab7577066303ac1d5e6ea165
 SHA512 
2eff7fc0db785913a3c43cb960a136d8209a727608c91157580e3c30a26a85f72f1befa07630ce9e2a8dbb73257e0e685f560f3deb2bfd831555b92ce1e4b910
+DIST genpatches-5.10-93.experimental.tar.xz 16864 BLAKE2B 
4548aa757a9c636b559d829367b91e4476aad9e7b72ffbb03d0fbbe046321e6b4ea397d25f926a2268e9dea9d73e2ca385f92e70d83d63e8f327261d86818d16
 SHA512 
5857695a0ed1a3449f16071a22ea7d1087f7d24aa5fb3e57e0f953fa537d965dd76f13505b3c243f751535a82eaa2e191e881fc8ecd5b4131861daf632e1f02d
+DIST genpatches-5.10-93.extras.tar.xz 3844 BLAKE2B 
679a8530673988a4c3307aa322164bc2194299e9eeb5823571234d075839ec66ef8592ebdd324c0ef999e9297eafb897b04326ea207db76277837b1a3deb303d
 SHA512 
46a3079a340dae831183878fda86f19fd687c6861a06f1eca900ebddb6efba98d773b6869d2ab0729d449e9506f8636ada5a063aef6267bf0324a7da74eb70b7
 DIST genpatches-5.14-22.base.tar.xz 864000 BLAKE2B 
0a2ef4aa3504d23bc2ad1047d76d705ef4fb15e15ccfc59f343bb1f817ba98940d9bcf7151cac74cb02db4e946344e43679ecfd848aca65951764ede5288ad59
 SHA512 
b597484d880cdcb1e8e7450c48cb5ca6a5902109182ac01725be00c264450e7e0d24e54940d3d55084383725398ee05159dc71ce7c152850a57aabbe5c26b1c7
 DIST genpatches-5.14-22.experimental.tar.xz 78572 BLAKE2B 
8a4fa4ed22e76a224fe78da4b30a82978c63daa9d89797786ed219957c1871906888d5e6837d8575521c5a7f799e21bfe6e08292834c689dd24a245732e7a19e
 SHA512 
5c07e5255dbc4a6a81fd02f17514d707a54489cb8b782050600be8eaecfb491998a134d6b2bd35579254441722f1b382540954d603201518bca30300d5320ad4
 DIST genpatches-5.14-22.extras.tar.xz 3844 BLAKE2B 
d8934cf97acf49434a817afbe3260da98f3bf52c3bb93d09e510d5c90b592af25da702cb1d6cb2c4ca463428bb35b7aba248f13ae48c094544460650c0d7da6f
 SHA512 
d33c4adac4ebdc6a122ec60b37b8e8e1b3f8b47bc6808707c4fba9d2c8d89ded193bfe0cb0929c23fd0fc82ea1cf3d11fa739555606e6313712265e84a7cf033
@@ -109,6 +112,9 @@ DIST genpatches-5.14-24.extras.tar.xz 3844 BLAKE2B 
b11a8019a920d12c848fdc34514ed
 DIST genpatches-5.15-10.base.tar.xz 551560 BLAKE2B 
ae6fbb6389be3338a39d450078ce3d304395330f93dd96f6eb3fbf7a9f86abd6d1d44764db4a1a640c825a966604cf52e920cf8bee4e4af9ccc36f252c40f0c6
 SHA512 
1020d809463246ffdb845da850aaa224826c348c05a1a4e1cc80b531cf61ce6f361b4056b6a9fd1b7a07f0dc5b4d9f28e8bf043767b3a682b0e7439164e76c69
 DIST genpatches-5.15-10.experimental.tar.xz 69412 BLAKE2B 
52cd48e6d6e5a8ebd4ba11bfb2f456c8508835ab8d29b3c5e1a28ee9a75ab5d5be8a9613ae2a2e191cc1b25f89dfa6e9e29d5608c0935df9b0e63961700f079e
 SHA512 
e30238a5a87b6bbcee0ce7d4f245849538cade0d608f88890909d6ae3a1f1f17952c9b323f0e111ba9195956f4da4d015bb23c55c316f6f2229df007ec89f8b2
 DIST genpatches-5.15-10.extras.tar.xz 3840 BLAKE2B 
e808e0819d0e8e83438423114b0f7fd5a01b416d0186fe48c4ee3c5787e6234bb94ee476db523e4bf273abfe768597c3369015b242c5858789c4827e293a8449
 SHA512 
b6f7904808ad4de36640109550678b374f05e63b6e4ffdada0b1feb0ca43c4f94970f6460e4ed88ffa8ba175b44c8ff0e3698174ed786645d97dffeee52ae278
+DIST genpatches-5.15-

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

2021-12-16 Thread Jakov Smolić
commit: 04c9fa89a698338e8564089b14838e85cabe294d
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Dec 16 16:38:36 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Dec 16 16:38:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04c9fa89

dev-libs/flatbuffers: Stabilize 2.0.0-r1 amd64, #829330

Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/dev-libs/flatbuffers/flatbuffers-2.0.0-r1.ebuild 
b/dev-libs/flatbuffers/flatbuffers-2.0.0-r1.ebuild
index 4be03e4e789d..e8e3fff4cd7f 100644
--- a/dev-libs/flatbuffers/flatbuffers-2.0.0-r1.ebuild
+++ b/dev-libs/flatbuffers/flatbuffers-2.0.0-r1.ebuild
@@ -13,7 +13,7 @@ LICENSE="Apache-2.0"
 # From 1.2.0->2.0.0, incremented SONAME, although the interface didn't 
actually change.
 # (Apparently to adopt semver.)
 SLOT="0/2"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~x86"
 IUSE="static-libs test"
 
 RESTRICT="!test? ( test )"



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

2021-12-16 Thread Jakov Smolić
commit: b417f4099e91d33ea728f5ce07da766c392a962d
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Dec 16 16:38:28 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Dec 16 16:38:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b417f409

dev-lang/execline: Stabilize 2.6.1.1 amd64, #819246

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-lang/execline/execline-2.6.1.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/execline/execline-2.6.1.1.ebuild 
b/dev-lang/execline/execline-2.6.1.1.ebuild
index 56df74d7c553..afda58a790fc 100644
--- a/dev-lang/execline/execline-2.6.1.1.ebuild
+++ b/dev-lang/execline/execline-2.6.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ SRC_URI="https://www.skarnet.org/software/${PN}/${P}.tar.gz";
 
 LICENSE="ISC"
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="static static-libs"
 
 REQUIRED_USE="static? ( static-libs )"



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

2021-12-16 Thread Jakov Smolić
commit: ee437a578cdef5b5686360eaa5c87ab19d4149de
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Dec 16 16:38:27 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Dec 16 16:38:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee437a57

dev-libs/skalibs: Stabilize 2.9.3.0 amd64, #819246

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-libs/skalibs/skalibs-2.9.3.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/skalibs/skalibs-2.9.3.0.ebuild 
b/dev-libs/skalibs/skalibs-2.9.3.0.ebuild
index 73dd8d6e2540..4ae53cb051e5 100644
--- a/dev-libs/skalibs/skalibs-2.9.3.0.ebuild
+++ b/dev-libs/skalibs/skalibs-2.9.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ SRC_URI="https://www.skarnet.org/software/${PN}/${P}.tar.gz";
 
 LICENSE="ISC"
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="doc ipv6 static-libs"
 
 HTML_DOCS=( doc/. )



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

2021-12-16 Thread Jakov Smolić
commit: 2372de34762216631cbe764ad9bb61505569d00e
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Dec 16 16:38:29 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Dec 16 16:38:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2372de34

sys-apps/s6: Stabilize 2.9.2.0 amd64, #819246

Signed-off-by: Jakov Smolić  gentoo.org>

 sys-apps/s6/s6-2.9.2.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/s6/s6-2.9.2.0.ebuild b/sys-apps/s6/s6-2.9.2.0.ebuild
index f3a95ba0a93b..0c346b687ba5 100644
--- a/sys-apps/s6/s6-2.9.2.0.ebuild
+++ b/sys-apps/s6/s6-2.9.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ SRC_URI="https://www.skarnet.org/software/${PN}/${P}.tar.gz";
 
 LICENSE="ISC"
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="+execline static static-libs"
 
 REQUIRED_USE="static? ( static-libs )"



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

2021-12-16 Thread Jakov Smolić
commit: 30b5b118913c3d2b61286ac95dc0d11b0a8b9938
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Dec 16 16:38:45 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Dec 16 16:38:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30b5b118

dev-python/pysol_cards: Stabilize 0.14.2 amd64, #829334

Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/dev-python/pysol_cards/pysol_cards-0.14.2.ebuild 
b/dev-python/pysol_cards/pysol_cards-0.14.2.ebuild
index 20a12f123941..2d21fd4b9553 100644
--- a/dev-python/pysol_cards/pysol_cards-0.14.2.ebuild
+++ b/dev-python/pysol_cards/pysol_cards-0.14.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0 MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv ~x86"
 
 RDEPEND="
dev-python/random2[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-games/freecell-solver/

2021-12-16 Thread Jakov Smolić
commit: 307c23e6e99e3f1c32f84bfa43756cd7512672c9
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Dec 16 16:38:47 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Dec 16 16:38:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=307c23e6

dev-games/freecell-solver: Stabilize 6.6.0 amd64, #829334

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-games/freecell-solver/freecell-solver-6.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-games/freecell-solver/freecell-solver-6.6.0.ebuild 
b/dev-games/freecell-solver/freecell-solver-6.6.0.ebuild
index 29ec00776400..239ef672fbd2 100644
--- a/dev-games/freecell-solver/freecell-solver-6.6.0.ebuild
+++ b/dev-games/freecell-solver/freecell-solver-6.6.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://fc-solve.shlomifish.org/downloads/fc-solve/${P}.tar.xz";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv ~x86"
 IUSE="tcmalloc"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2021-12-16 Thread Jakov Smolić
commit: fee4657b54460dc98437123b0f87391184292373
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Dec 16 16:38:40 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Dec 16 16:38:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fee4657b

dev-util/cmake: Stabilize 3.21.4 amd64, #829333

Signed-off-by: Jakov Smolić  gentoo.org>

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

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



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

2021-12-16 Thread Jakov Smolić
commit: 7cc45e9b48d529ebea5b6b8ecd2a3d9c560bcc71
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Dec 16 16:38:46 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Dec 16 16:38:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cc45e9b

dev-libs/rinutils: Stabilize 0.10.0 amd64, #829334

Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/dev-libs/rinutils/rinutils-0.10.0.ebuild 
b/dev-libs/rinutils/rinutils-0.10.0.ebuild
index fc60f8875451..823bf12954ac 100644
--- a/dev-libs/rinutils/rinutils-0.10.0.ebuild
+++ b/dev-libs/rinutils/rinutils-0.10.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/shlomif/${PN}/releases/download/${PV}/${P}.tar.xz";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv ~x86"
 
 src_configure() {
local mycmakeargs=(



  1   2   3   4   >