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

2022-06-27 Thread Ionen Wolkens
commit: 681186074b74f271d43d680b920effa48c30eb0e
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Jun 28 05:08:14 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Jun 28 05:55:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68118607

dev-util/mingw64-toolchain: symlink gcc lto plugin for AR

Don't really want to revbump this slow build over a symlink, but
it could be a long time before this is bumped normally and come
bite back when people try to use LTO.

Closes: https://bugs.gentoo.org/854516
Closes: https://bugs.gentoo.org/854540
Signed-off-by: Ionen Wolkens  gentoo.org>

 ...64-toolchain-10.0.0.ebuild => mingw64-toolchain-10.0.0-r1.ebuild} | 5 +
 1 file changed, 5 insertions(+)

diff --git a/dev-util/mingw64-toolchain/mingw64-toolchain-10.0.0.ebuild 
b/dev-util/mingw64-toolchain/mingw64-toolchain-10.0.0-r1.ebuild
similarity index 97%
rename from dev-util/mingw64-toolchain/mingw64-toolchain-10.0.0.ebuild
rename to dev-util/mingw64-toolchain/mingw64-toolchain-10.0.0-r1.ebuild
index 5347cee7ffdc..c0d573454f7f 100644
--- a/dev-util/mingw64-toolchain/mingw64-toolchain-10.0.0.ebuild
+++ b/dev-util/mingw64-toolchain/mingw64-toolchain-10.0.0-r1.ebuild
@@ -104,6 +104,11 @@ src_compile() {
ln -sf 
{../${CTARGET}/bin/,"${sysroot}"/bin/${CTARGET}-}${bin##*/} || die
done
ln -sf ld.bfd "${sysroot}"/${CTARGET}/bin/ld || die
+
+   # symlink gcc's lto plugin for AR (bug #854516)
+   mkdir "${sysroot}"/${CTARGET}/lib/bfd-plugins || die
+   ln -s 
../../../libexec/gcc/${CTARGET}/${GCC_PV}/liblto_plugin.so \
+   "${sysroot}"/${CTARGET}/lib/bfd-plugins || die
}
 
# gcc (minimal -- if need more, disable only in stage1 / enable in 
stage3)



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

2022-06-27 Thread Alessandro Barbieri
commit: d904cf5f4679a3c7b295e948ca4f6665e4c3cc24
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:26:20 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:29 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d904cf5f

dev-python/confluent-kafka: add 1.9.0

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/confluent-kafka/Manifest|  1 +
 .../confluent-kafka/confluent-kafka-1.9.0.ebuild   | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/dev-python/confluent-kafka/Manifest 
b/dev-python/confluent-kafka/Manifest
index 51177ae93..1964de802 100644
--- a/dev-python/confluent-kafka/Manifest
+++ b/dev-python/confluent-kafka/Manifest
@@ -1 +1,2 @@
 DIST confluent-kafka-1.8.2.gh.tar.gz 250172 BLAKE2B 
9fabaaf2417343ae2743b662c359925487011cee9c63e5f8d07bfa049212e0f9890530072b463fd39fcc991d46e8e2e4ce07d79b8a63b367685c7da9d658291d
 SHA512 
6db66371b7cac822aafeaa4acb491556d9a866f8502d76e2acfe52d18b282caab338cd3f51f84845eab2ec5b2c44ed80426a7ad8afd0314a8a5ddc1a9299d693
+DIST confluent-kafka-1.9.0.gh.tar.gz 260481 BLAKE2B 
814a6ce0421c866ed9082aa0cf566b476223453f82d84ee20d58d5fd1045fefbb4b92d6d14a9a8301ea8283c19679236efd237bbe21c57199d0bbfcd6427cd9b
 SHA512 
979878ae3ee61d7fcda67803cc5645cdf28749afe7919c7188e1fba9b34e68ab2950536a4817d47de5492bed751fb2eabcdf30f33adec864250c14cf48512bfe

diff --git a/dev-python/confluent-kafka/confluent-kafka-1.9.0.ebuild 
b/dev-python/confluent-kafka/confluent-kafka-1.9.0.ebuild
new file mode 100644
index 0..bb04a6a99
--- /dev/null
+++ b/dev-python/confluent-kafka/confluent-kafka-1.9.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+EPYTEST_IGNORE=( tests/integration )
+MYPN="${PN}-python"
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Confluent's Kafka Python Client"
+HOMEPAGE="
+   https://pypi.org/project/confluent-kafka/
+   https://github.com/confluentinc/confluent-kafka-python
+"
+SRC_URI="https://github.com/confluentinc/${MYPN}/archive/refs/tags/v${PV}.tar.gz
 -> ${P}.gh.tar.gz"
+S="${WORKDIR}/${MYPN}-${PV}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="dev-libs/librdkafka"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   test? (
+   >=dev-python/fastavro-1.0[${PYTHON_USEDEP}]
+   >=dev-python/avro-1.10.0[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/pytest-timeout[${PYTHON_USEDEP}]
+   dev-python/requests-mock[${PYTHON_USEDEP}]
+   >=dev-python/trivup-0.8.3[${PYTHON_USEDEP}]
+
+   dev-python/protobuf-python[${PYTHON_USEDEP}]
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   dev-python/pyflakes[${PYTHON_USEDEP}]
+   dev-python/pyrsistent[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   distutils-r1_python_install_all
+   rm "${ED}/usr/LICENSE.txt" || die
+}
+
+pkg_postinst() {
+   optfeature "avro support" dev-python/fastavro dev-python/avro 
dev-python/requests
+   optfeature "json support" dev-python/jsonschema dev-python/pyrsistent 
dev-python/requests
+   optfeature "protobuf support" dev-python/protobuf-python 
dev-python/requests
+   optfeature "schema-registry support" dev-python/requests
+}



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

2022-06-27 Thread Alessandro Barbieri
commit: 4344dbdf4dcc9311bdab2252afc85c5d17277bd6
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:21:14 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:29 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4344dbdf

dev-python/fontParts: add 0.10.6

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/fontParts/Manifest|  1 +
 dev-python/fontParts/fontParts-0.10.6.ebuild | 37 
 2 files changed, 38 insertions(+)

diff --git a/dev-python/fontParts/Manifest b/dev-python/fontParts/Manifest
index 2ab0eef0e..1406a42b1 100644
--- a/dev-python/fontParts/Manifest
+++ b/dev-python/fontParts/Manifest
@@ -1 +1,2 @@
 DIST fontParts-0.10.5.tar.gz 431282 BLAKE2B 
f0585b0220b35f9b6fc18ace6b517b69fecf87e2d0e1fda7ea5753512851e49b2fd122af628286a638d9c178212602e0ca467b38a94577d11ea3bb117d944a6b
 SHA512 
961507c60de82da516f5cefbb3ca998533751234953c01c28e2ca534d47916e534c1cd6dc95add182e7da10ff57b1a0e0e5ad20fcbe4c385d5f2f58dde0be927
+DIST fontParts-0.10.6.gh.tar.gz 431799 BLAKE2B 
e1fdc0e4ac54a62ec025bf73596e9abb2472dbb4eff5f2eea2667da31c5b75cf37a1db9cc25b2fac8afb8815b721aa7439f91129e03df018ba77e9a4b37886cd
 SHA512 
77b888c7393a92153fbd0c61a6e3e30a1c8c9416db4132799cfd938f819ff415f408d31326b87e8bd5b9b9876559a82a61251328684933b7ecc33ccc9735b843

diff --git a/dev-python/fontParts/fontParts-0.10.6.ebuild 
b/dev-python/fontParts/fontParts-0.10.6.ebuild
new file mode 100644
index 0..332501e01
--- /dev/null
+++ b/dev-python/fontParts/fontParts-0.10.6.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="An API for interacting with the parts of fonts"
+HOMEPAGE="https://github.com/robotools/fontParts;
+SRC_URI="https://github.com/robotools/fontParts/archive/refs/tags/${PV}.tar.gz 
-> ${P}.gh.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   ${PYTHON_DEPS}
+   >=dev-python/booleanOperations-0.9.0[${PYTHON_USEDEP}]
+   >=dev-python/defcon-0.6.0[${PYTHON_USEDEP}]
+   >=dev-python/fontMath-0.4.8[${PYTHON_USEDEP}]
+   >=dev-python/fonttools-3.32.0[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="test? ( dev-python/fontPens[${PYTHON_USEDEP}] )"
+
+RESTRICT="!test? ( test )"
+
+pkg_setup() {
+   export SETUPTOOLS_SCM_PRETEND_VERSION="${PV%_*}"
+}
+
+python_test() {
+   "${EPYTHON}" Lib/fontParts/fontshell/test.py -v || die "Tests failed 
with ${EPYTHON}"
+}



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

2022-06-27 Thread Alessandro Barbieri
commit: 30175cfb5b55b87c674c3d5df20c713c822f459a
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:28:38 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:29 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=30175cfb

dev-python/axisregistry: add 0.3.2

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/axisregistry/Manifest  |  1 +
 dev-python/axisregistry/axisregistry-0.3.2.ebuild | 34 +++
 2 files changed, 35 insertions(+)

diff --git a/dev-python/axisregistry/Manifest b/dev-python/axisregistry/Manifest
index 43c707a49..1ae17b161 100644
--- a/dev-python/axisregistry/Manifest
+++ b/dev-python/axisregistry/Manifest
@@ -1 +1,2 @@
 DIST axisregistry-0.2.0.tar.gz 15996 BLAKE2B 
f773aa03d8d51e29ae188a71ceb6f7505d35575739332bf7f6c0706bb659815a3d21ef2916d752872f335bf504c6a2662ec0ba447e651d50088f6d7b449b4e3a
 SHA512 
ca069eba5d6ea036e8908d3bc74ec6f65345cad9ef7e6255cf111741e798f68ca24a4528a9dba473a196d1a5d658491677339fd80885e8023aa09d710056f76e
+DIST axisregistry-0.3.2.tar.gz 3497066 BLAKE2B 
eefeb7c315afbdae46adf0c55c29d328cf32f8e6a59c3b0eb84ce4bf94a02a1725e80dfbc8ef6fc53500c8db497c0cd8d48fc43854a31d1437a86db5b2cfa42d
 SHA512 
0e59e7c6a7d9acb78a9d5dd0ebffe38004c477866352b35d91394f1ae953f919f78c25604a60d83b7cb9e67b742cac35d2f0dfc1832f5c0827b7bd1a36bc8792

diff --git a/dev-python/axisregistry/axisregistry-0.3.2.ebuild 
b/dev-python/axisregistry/axisregistry-0.3.2.ebuild
new file mode 100644
index 0..0339faa33
--- /dev/null
+++ b/dev-python/axisregistry/axisregistry-0.3.2.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2022 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 Python API to access data from the Google Fonts variable fonts 
Axis Registry"
+HOMEPAGE="
+   https://github.com/googlefonts/axisregistry
+   https://pypi.org/project/axisregistry/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+KEYWORDS="~amd64"
+SLOT="0"
+
+RDEPEND="dev-python/protobuf-python[${PYTHON_USEDEP}]"
+DEPEND="
+   ${RDEPEND}
+   >=dev-python/setuptools_scm-4[${PYTHON_USEDEP}]
+"
+
+PATCHES=( "${FILESDIR}/${PN}-0.2.0-remove-setuptools_scm-constraint.patch" )
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   export SETUPTOOLS_SCM_PRETEND_VERSION="${PV}"
+   distutils-r1_python_prepare_all
+}



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

2022-06-27 Thread Alessandro Barbieri
commit: 5be5635c6177415e74ab44888d735fe51307a7b1
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:27:10 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:29 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5be5635c

dev-python/compreffor: add 0.5.2

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/compreffor/Manifest|  1 +
 dev-python/compreffor/compreffor-0.5.2.ebuild | 37 +++
 2 files changed, 38 insertions(+)

diff --git a/dev-python/compreffor/Manifest b/dev-python/compreffor/Manifest
index fe4babae3..d1f00dd2d 100644
--- a/dev-python/compreffor/Manifest
+++ b/dev-python/compreffor/Manifest
@@ -1 +1,2 @@
 DIST compreffor-0.5.1.post1.tar.gz 75132 BLAKE2B 
ed37118c45d616029dad90451240ff7d5eb131ecd080c713ccc8241d3288a869f5e2950524b0faf58e895c8f1e76e0da8df24cc0526a1ce342d509de856fc0e2
 SHA512 
eaab7e01b158f68c28c946f39af80bd8313b9338301aee8a4119de243442791d68cf7edc0e8ac86efc0cadf6115de89f38ec445cf5ce13055aed44dcfaeb3eed
+DIST compreffor-0.5.2.tar.gz 76299 BLAKE2B 
254329875fbafd9a4887a696a2b21ae1695e03fe337fb0f5e48c2b2e242941114d7cf16c966e85c690302152da06bd21f7bb713fe92c139893299468b461e466
 SHA512 
9806141022163804f02b1ee14552bc2e8e9b7350110c42aca1c74bd6af049f3032920e5299dd59961bb24e69b97fa748478f8be2f25fd90ae2e3d0d1ce4c22c0

diff --git a/dev-python/compreffor/compreffor-0.5.2.ebuild 
b/dev-python/compreffor/compreffor-0.5.2.ebuild
new file mode 100644
index 0..da496b718
--- /dev/null
+++ b/dev-python/compreffor/compreffor-0.5.2.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+MY_P="${PN}-${PV/_p/.post}"
+DESCRIPTION="A CFF table subroutinizer for FontTools"
+HOMEPAGE="
+   https://github.com/googlefonts/compreffor
+   https://pypi.org/project/compreffor/
+"
+SRC_URI="mirror://pypi/${MY_P:0:1}/${PN}/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+KEYWORDS="~amd64"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+RDEPEND=">=dev-python/fonttools-4[${PYTHON_USEDEP}]"
+DEPEND=">=dev-python/cython-0.29.24[${PYTHON_USEDEP}]"
+BDEPEND="
+   app-arch/unzip
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+"
+
+PATCHES=( "${FILESDIR}/${P}-remove-unwanted-dependencies.patch" )
+
+distutils_enable_tests pytest
+
+python_test() {
+   cd "${T}" || die
+   epytest --pyargs compreffor
+}



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

2022-06-27 Thread Alessandro Barbieri
commit: 2c950777fc56b435d5fcaa8d4cf69d7b1f07f664
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:19:20 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:28 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2c950777

dev-python/glyphsets: add 0.5.1

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/glyphsets/Manifest   |  1 +
 dev-python/glyphsets/glyphsets-0.5.1.ebuild | 36 +
 2 files changed, 37 insertions(+)

diff --git a/dev-python/glyphsets/Manifest b/dev-python/glyphsets/Manifest
index 6a1b8f7a7..4267e053c 100644
--- a/dev-python/glyphsets/Manifest
+++ b/dev-python/glyphsets/Manifest
@@ -1 +1,2 @@
 DIST glyphsets-0.5.0.gh.tar.gz 1473150 BLAKE2B 
d745b7689c9eee7cd1a25035d13f19d6eb6db7c8e603ecf87ed689f0cb2e2d1a421b4d5a4f08c7d470def2d5d8db7636a01941f3445579a0712f2ab506a9571a
 SHA512 
94d6ab956a5ab16f061b57e5210ea59733486a27bde3093e8af279ac8f5f1e2efce71d5135ac7182ec027916e31d86433939e743084c405653250893d9221a02
+DIST glyphsets-0.5.1.gh.tar.gz 1473698 BLAKE2B 
414ac3c1647ab483545d65f7503c84f19f9d2a0132d246011f88dd11835a297657a16873645d8dc383a77658f275983546b91b96d9c2fa15f47d8fc03562e027
 SHA512 
9237a2ee86ba25f5023f3ea863739b06374fb16d1655458fdc680b64cb54a1cec0134a2826b4cd1646bae70a33def601d547d2b2432275d68f0c6eb472ea376a

diff --git a/dev-python/glyphsets/glyphsets-0.5.1.ebuild 
b/dev-python/glyphsets/glyphsets-0.5.1.ebuild
new file mode 100644
index 0..a0f0924f2
--- /dev/null
+++ b/dev-python/glyphsets/glyphsets-0.5.1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2022 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 python API for evaluating coverage of glyph sets in font 
projects"
+HOMEPAGE="
+   https://github.com/googlefonts/glyphsets
+   https://pypi.org/project/glyphsets/
+"
+SRC_URI="https://github.com/googlefonts/${PN}/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.gh.tar.gz"
+
+LICENSE="Apache-2.0"
+KEYWORDS="~amd64"
+SLOT="0"
+
+#ufoLib2 is an indirect dependency
+RDEPEND="
+   dev-python/fonttools[${PYTHON_USEDEP}]
+   dev-python/ufoLib2[${PYTHON_USEDEP}]
+"
+DEPEND="
+   ${RDEPEND}
+   >=dev-python/setuptools_scm-4[${PYTHON_USEDEP}]
+"
+
+PATCHES=( "${FILESDIR}/${P}-remove-setuptools_scm.constraint.patch" )
+
+python_prepare_all() {
+   export SETUPTOOLS_SCM_PRETEND_VERSION="${PV}"
+   distutils-r1_python_prepare_all
+}



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

2022-06-27 Thread Alessandro Barbieri
commit: 76c36ec52b5d7f1997b3dc60a2183b5ec3e206af
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:30:03 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:29 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=76c36ec5

dev-python/asyncssh: add 2.11.0

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/asyncssh/Manifest   |  1 +
 dev-python/asyncssh/asyncssh-2.11.0.ebuild | 55 ++
 2 files changed, 56 insertions(+)

diff --git a/dev-python/asyncssh/Manifest b/dev-python/asyncssh/Manifest
index 95cc262dc..8421cacba 100644
--- a/dev-python/asyncssh/Manifest
+++ b/dev-python/asyncssh/Manifest
@@ -1 +1,2 @@
 DIST asyncssh-2.10.1.tar.gz 483000 BLAKE2B 
a588d671b3afe9f77f15974578f27e9001e8138284e4313d8188766c66e81942a8d37598ba79af4971c11f900fa7009311c20c86fce0e058d1fdeeec72c9320a
 SHA512 
adaf68f2e4209e9bf91c2018298a281dab490d723bda9d6f7db892aa43e796e38ff904cf39f56c8b545439ca71c89b419e53521f323cb753cf7a2290beb04e12
+DIST asyncssh-2.11.0.tar.gz 482916 BLAKE2B 
fd410771d4032996b4a75c0cf7250f481a8e5f5498f6a4c31227468eff3dba8f4936c2711e11aadbf313989e395ee679d11b0a28646735f1868bd81680c3f3e3
 SHA512 
d9736d0d9e486c4a062fbf493d28f2c5b1074baa32879430750115a686600fa97c947ea34b47a1d9962cc44cc32ce6b31fdb0baa455fbde9b63660c5b8454810

diff --git a/dev-python/asyncssh/asyncssh-2.11.0.ebuild 
b/dev-python/asyncssh/asyncssh-2.11.0.ebuild
new file mode 100644
index 0..c574e23a1
--- /dev/null
+++ b/dev-python/asyncssh/asyncssh-2.11.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DOCS_BUILDER="sphinx"
+DOCS_DIR="docs"
+EPYTEST_DESELECT=(
+   tests/test_connection.py::_TestConnection::test_connect_timeout_exceeded
+   
tests/test_connection.py::_TestConnection::test_connect_timeout_exceeded_string
+   
tests/test_connection.py::_TestConnection::test_connect_timeout_exceeded_tunnel
+) # network tests
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 docs optfeature
+
+DESCRIPTION="Asynchronous SSHv2 client and server library"
+HOMEPAGE="
+   https://asyncssh.timeheart.net
+   https://pypi.org/project/asyncssh/
+   https://github.com/ronf/asyncssh
+"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="ECL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/cryptography-3.1[${PYTHON_USEDEP}]
+   >=dev-python/typing-extensions-3.6[${PYTHON_USEDEP}]
+"
+DEPEND="${REDEPEND}"
+BDEPEND="
+   test? (
+   >=dev-python/bcrypt-3.1.3[${PYTHON_USEDEP}]
+   >=dev-python/gssapi-1.2.0[${PYTHON_USEDEP}]
+   >=dev-python/libnacl-1.4.2[${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-17.0.0[${PYTHON_USEDEP}]
+   >=dev-python/python-pkcs11-0.7.0[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs
+
+pkg_postinst() {
+   optfeature "support for OpenSSH private key encryption" 
dev-python/bcrypt
+   optfeature "support for key exchange and authentication with U2F/FIDO2 
security keys" dev-python/fido2
+   optfeature "support for accessing PIV keys on PKCS#11 security tokens" 
dev-python/python-pkcs11
+   optfeature "support for GSSAPI key exchange and authentication on UNIX" 
dev-python/gssapi
+   optfeature "if you have a version of OpenSSL older than 1.1.1b 
installed and you want support for Curve25519 key exchange, Ed25519 keys and 
certificates, or the Chacha20-Poly1305 cipher" dev-python/libnacl
+   optfeature "support for UMAC cryptographic hashes" dev-python/libnettle
+   optfeature "support for X.509 certificate authentication" 
dev-python/pyopenssl
+}



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

2022-06-27 Thread Alessandro Barbieri
commit: 898b47bf1505699e5ae944f0e004382daa8e37cb
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:11:20 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:28 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=898b47bf

dev-python/taskflow: add 5.0.0, drop 4.6.4

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/taskflow/Manifest | 2 +-
 dev-python/taskflow/{taskflow-4.6.4.ebuild => taskflow-5.0.0.ebuild} | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-python/taskflow/Manifest b/dev-python/taskflow/Manifest
index 5731b781d..6fee83b37 100644
--- a/dev-python/taskflow/Manifest
+++ b/dev-python/taskflow/Manifest
@@ -1,2 +1,2 @@
-DIST taskflow-4.6.4.tar.gz 1076719 BLAKE2B 
b202a6981deb9c9b6c86e9de740d44492a2028e0bd48ff9779e2db7f1ccb1076e5c4fa9195b0cdf5a8fb2af52a30e1ae8b6b3900a268f1b706b014f13df13cf8
 SHA512 
f8826e2d106123bc3d3c57826c2004c4aeaf17434931a660777ce2866dc659f82427c95bbf6e25459b2fb5ab303bb8ec11a898f53b4cb8b52f614965a56d298a
 DIST taskflow-4.7.0.tar.gz 1076831 BLAKE2B 
5f0490ae2dbcea518ec00094a2f6c577734facf8f4e28c52d10db52c1aa942dd9e86693b37444dfe5262b1fe298188966f040581b3c810186f31d9482c84
 SHA512 
2c57dc81b371ecaecbf8511ff91e4064fcb084a7f728a476a1b0270690844b7c46c006d2ac39583d5c081711900a07a3e90204232da71a5c329000cad1b3a186
+DIST taskflow-5.0.0.tar.gz 1075544 BLAKE2B 
fca4c206c5d202da43485ffcdab12c99a6826f918420a66e885725b560eda2ac06b3864d286c465c4554d676bed601769fdcf4ec9882e0f19f9360384b222f84
 SHA512 
87536c564021e63677682f24d794742e20c7ef33ca1fd9ba50bdeeef055a33e72143076ee323319db91f5e6c1cd647965e1b78e33b27715eee8189c084bb8294

diff --git a/dev-python/taskflow/taskflow-4.6.4.ebuild 
b/dev-python/taskflow/taskflow-5.0.0.ebuild
similarity index 97%
rename from dev-python/taskflow/taskflow-4.6.4.ebuild
rename to dev-python/taskflow/taskflow-5.0.0.ebuild
index e9e80a6d8..c936153be 100644
--- a/dev-python/taskflow/taskflow-4.6.4.ebuild
+++ b/dev-python/taskflow/taskflow-5.0.0.ebuild
@@ -21,7 +21,6 @@ KEYWORDS="~amd64"
 
 DEPEND="
>=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
>=dev-python/futurist-1.2.0[${PYTHON_USEDEP}]
>=dev-python/fasteners-0.7.0[${PYTHON_USEDEP}]
>=dev-python/networkx-2.1.0[${PYTHON_USEDEP}]



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

2022-06-27 Thread Alessandro Barbieri
commit: b1f0262473e600c35dce9a9e9b61532838c2eeef
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:23:08 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:29 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b1f02624

dev-python/fastavro: add 1.5.2, drop 1.4.12

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/fastavro/Manifest| 2 +-
 .../fastavro/{fastavro-1.4.12.ebuild => fastavro-1.5.2.ebuild}  | 6 +-
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/dev-python/fastavro/Manifest b/dev-python/fastavro/Manifest
index 6372a7097..5edfe9d9f 100644
--- a/dev-python/fastavro/Manifest
+++ b/dev-python/fastavro/Manifest
@@ -1,2 +1,2 @@
-DIST fastavro-1.4.12.tar.gz 760518 BLAKE2B 
7422e6e664ff6ceface6b3d8d39e6437233b12d62f771d1516920e7e7c3a0c8d23ac2fc82ff2acdac5d21314c0f2978b97fce96bbe2fedb587001672e3984e10
 SHA512 
fe5de909081dfaa4fa8575355f03d533ebe628182bc9716529a7f6c668444a34e8975ae90bc4d588dac2271a0913a49ac6457db0d256c54637995e16cd98281d
 DIST fastavro-1.5.1.tar.gz 761574 BLAKE2B 
fd520edaf533120022cbe6f3cabe5919c952b43bd4d131bb2aacbaded6fbda4d60e8610c12850310c28ac0fc5696301f4ef725c8369057dff9c73b9b35653ada
 SHA512 
6fa2169d4cc26c2176e61da159129e6456296d99bce2d973916d6a0f071feec7b930f985167d7e1e3e0939ec2a5ff387f67e221ff6f52523015af99d4823bf1e
+DIST fastavro-1.5.2.tar.gz 761565 BLAKE2B 
16e4408fa85ee2703a66cb9e8d125a651d879c69475e3137f95283ed974a3b158f0fc7a67de660db06731d45b7952d04b510a08d472fc5a7d86fe5e57a9d264b
 SHA512 
9885291f9ed15da05ee1fc816a95b6fcb269a6c5814efa9f94188c39e5bb0b31dd5afc1c76ae10268a4e128306d66f60c2087d5c0335c1e918e477fabe7f6cf0

diff --git a/dev-python/fastavro/fastavro-1.4.12.ebuild 
b/dev-python/fastavro/fastavro-1.5.2.ebuild
similarity index 94%
rename from dev-python/fastavro/fastavro-1.4.12.ebuild
rename to dev-python/fastavro/fastavro-1.5.2.ebuild
index 7a5627d28..2802e6c4d 100644
--- a/dev-python/fastavro/fastavro-1.4.12.ebuild
+++ b/dev-python/fastavro/fastavro-1.5.2.ebuild
@@ -32,6 +32,7 @@ RDEPEND=""
 DEPEND="
${RDEPEND}
dev-python/cython[${PYTHON_USEDEP}]
+   dev-python/wheel[${PYTHON_USEDEP}]
 "
 BDEPEND="
test? (
@@ -43,9 +44,4 @@ BDEPEND="
)
 "
 
-src_configure() {
-   export FASTAVRO_USE_CYTHON=1
-   default
-}
-
 distutils_enable_tests pytest



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

2022-06-27 Thread Alessandro Barbieri
commit: b15823e319e9238abb183661e7af571b00d10192
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:16:08 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:28 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b15823e3

dev-python/sphinx-click: add 4.2.0

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/sphinx-click/Manifest  |  1 +
 dev-python/sphinx-click/sphinx-click-4.2.0.ebuild | 29 +++
 2 files changed, 30 insertions(+)

diff --git a/dev-python/sphinx-click/Manifest b/dev-python/sphinx-click/Manifest
index 105169e7c..5a5a6771e 100644
--- a/dev-python/sphinx-click/Manifest
+++ b/dev-python/sphinx-click/Manifest
@@ -1 +1,2 @@
 DIST sphinx-click-4.1.0.tar.gz 21146 BLAKE2B 
0510bdcfa051e1272796ef049b4fe40e936526937b99bec5c20b714507d285a5524bd341f41042a74c1b6715fbda7a892e14aee08a397df61ff47f39b2ebc52a
 SHA512 
a57efbcfe8ab4f82298917937b573480401a51ce81889eb37b56f6eac0b2d6123a94a877f5bc460c4998c55040072453a48400f9c94d902a7cab6cd622d13d62
+DIST sphinx-click-4.2.0.tar.gz 21265 BLAKE2B 
3f0cd707d6eb26bb63d81cd86324b715eecbb85d038a94104599034563be024d4d4cab5ed488b1d1fb55d4f7c6abb599f48c96f8ea582be0c3d4a37169e7638d
 SHA512 
9b9fee96b17242a1a2cfc097a490134e47d250231481d13c438abfdd17b149adf2bde9c3591a94e4e17f02dc800c2b48002eb74994b43fec0d50ddb1083e

diff --git a/dev-python/sphinx-click/sphinx-click-4.2.0.ebuild 
b/dev-python/sphinx-click/sphinx-click-4.2.0.ebuild
new file mode 100644
index 0..cf32023f4
--- /dev/null
+++ b/dev-python/sphinx-click/sphinx-click-4.2.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Sphinx plugin to automatically document click-based applications"
+HOMEPAGE="
+   https://github.com/click-contrib/sphinx-click
+   https://pypi.org/project/sphinx-click/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+KEYWORDS="~amd64"
+SLOT="0"
+
+RDEPEND="
+   >=dev-python/sphinx-2.0[${PYTHON_USEDEP}]
+   >=dev-python/click-7.0[${PYTHON_USEDEP}]
+   dev-python/docutils[${PYTHON_USEDEP}]
+"
+BDEPEND=">=dev-python/pbr-2.0[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs --no-autodoc



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

2022-06-27 Thread Alessandro Barbieri
commit: e55160d3536c3f76d3bfc8c851764d013c66cc38
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:21:46 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:29 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e55160d3

dev-python/fontParts: drop 0.10.5

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/fontParts/Manifest|  1 -
 dev-python/fontParts/fontParts-0.10.5.ebuild | 37 
 2 files changed, 38 deletions(-)

diff --git a/dev-python/fontParts/Manifest b/dev-python/fontParts/Manifest
index 1406a42b1..96716cd8d 100644
--- a/dev-python/fontParts/Manifest
+++ b/dev-python/fontParts/Manifest
@@ -1,2 +1 @@
-DIST fontParts-0.10.5.tar.gz 431282 BLAKE2B 
f0585b0220b35f9b6fc18ace6b517b69fecf87e2d0e1fda7ea5753512851e49b2fd122af628286a638d9c178212602e0ca467b38a94577d11ea3bb117d944a6b
 SHA512 
961507c60de82da516f5cefbb3ca998533751234953c01c28e2ca534d47916e534c1cd6dc95add182e7da10ff57b1a0e0e5ad20fcbe4c385d5f2f58dde0be927
 DIST fontParts-0.10.6.gh.tar.gz 431799 BLAKE2B 
e1fdc0e4ac54a62ec025bf73596e9abb2472dbb4eff5f2eea2667da31c5b75cf37a1db9cc25b2fac8afb8815b721aa7439f91129e03df018ba77e9a4b37886cd
 SHA512 
77b888c7393a92153fbd0c61a6e3e30a1c8c9416db4132799cfd938f819ff415f408d31326b87e8bd5b9b9876559a82a61251328684933b7ecc33ccc9735b843

diff --git a/dev-python/fontParts/fontParts-0.10.5.ebuild 
b/dev-python/fontParts/fontParts-0.10.5.ebuild
deleted file mode 100644
index aa8317901..0
--- a/dev-python/fontParts/fontParts-0.10.5.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="An API for interacting with the parts of fonts"
-HOMEPAGE="https://github.com/robotools/fontParts;
-SRC_URI="https://github.com/robotools/fontParts/archive/refs/tags/${PV}.tar.gz 
-> ${P}.tar.gz"
-
-KEYWORDS="~amd64 ~x86"
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   ${PYTHON_DEPS}
-   >=dev-python/booleanOperations-0.9.0[${PYTHON_USEDEP}]
-   >=dev-python/defcon-0.6.0[${PYTHON_USEDEP}]
-   >=dev-python/fontMath-0.4.8[${PYTHON_USEDEP}]
-   >=dev-python/fonttools-3.32.0[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-BDEPEND="test? ( dev-python/fontPens[${PYTHON_USEDEP}] )"
-
-RESTRICT="!test? ( test )"
-
-pkg_setup() {
-   export SETUPTOOLS_SCM_PRETEND_VERSION="${PV%_*}"
-}
-
-python_test() {
-   "${EPYTHON}" Lib/fontParts/fontshell/test.py -v || die "Tests failed 
with ${EPYTHON}"
-}



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

2022-06-27 Thread Alessandro Barbieri
commit: 13ced9bcb537f03f2f49755b53cfb3c5c858c256
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:15:05 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:28 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=13ced9bc

dev-python/statmake: add 0.5.1

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/statmake/Manifest  |  1 +
 dev-python/statmake/statmake-0.5.1.ebuild | 45 +++
 2 files changed, 46 insertions(+)

diff --git a/dev-python/statmake/Manifest b/dev-python/statmake/Manifest
index 59b00d62e..d8d3f04e6 100644
--- a/dev-python/statmake/Manifest
+++ b/dev-python/statmake/Manifest
@@ -1 +1,2 @@
 DIST statmake-0.5.0.gh.tar.gz 39835 BLAKE2B 
cad6a4c8a803666ce45d165c46ce6278cdcb56de7a90166315ba229f07ac1202d4bd2e4db678e644e0eaea445b97b81c2eb2c24cdb9ad7d7d4fbee3465fb4bf8
 SHA512 
c28c85e5fce6904b109858b156ab607204b3ff906bb3ec09ca75a170f5640eba83fbdd310f6a5b70f123cfbff1b1af72af1bea541cfdec8175e52be273f8ac00
+DIST statmake-0.5.1.gh.tar.gz 39644 BLAKE2B 
25af1c6e6ebacbdbd3b2004a2c686b2f732a953bb8d1293226581781bb10cd4d8c5d1002659f0377179f9f45525ec55de9df9ba3009756df9d31e9cc1c8f390b
 SHA512 
9b2a6f614372a07a11e03c5f1c26e1f2c1a1f554c2d9ae887a3820e3e5b3766f8388db4d6e39cf338b0e85444fc499c3f04d4a8a169c0b70391b72530965a092

diff --git a/dev-python/statmake/statmake-0.5.1.ebuild 
b/dev-python/statmake/statmake-0.5.1.ebuild
new file mode 100644
index 0..75176044b
--- /dev/null
+++ b/dev-python/statmake/statmake-0.5.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_SINGLE_IMPL=1
+DISTUTILS_USE_PEP517=poetry
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Generate STAT tables for variable fonts from .stylespace files"
+HOMEPAGE="https://github.com/daltonmaag/statmake;
+SRC_URI="https://github.com/daltonmaag/${PN}/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.gh.tar.gz"
+
+KEYWORDS="~amd64"
+LICENSE="MIT"
+SLOT="0"
+
+RDEPEND="
+   $(python_gen_cond_dep '
+   >=dev-python/attrs-21.3[${PYTHON_USEDEP}]
+   >=dev-python/cattrs-22.1[${PYTHON_USEDEP}]
+   >=dev-python/fonttools-4.11[${PYTHON_USEDEP}]
+   ')
+"
+BDEPEND="
+   test? (
+   $(python_gen_cond_dep '
+   >=dev-python/ufo2ft-2.7[${PYTHON_USEDEP}]
+   >=dev-python/ufoLib2-0.4[${PYTHON_USEDEP}]
+   ')
+   )
+"
+
+distutils_enable_tests pytest
+
+python_install() {
+   distutils-r1_python_install --skip-build
+   python_domodule "src/${PN}"
+}
+
+python_test() {
+   local -x PYTHONPATH="${S}/src:${PYTHONPATH}"
+   epytest
+}



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

2022-06-27 Thread Alessandro Barbieri
commit: 6ced456bcf060d68096554a7174c909275b7bdae
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:17:13 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:28 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6ced456b

dev-python/python-designateclient: add 4.5.1

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/python-designateclient/Manifest |  1 +
 .../python-designateclient-4.5.1.ebuild| 49 ++
 2 files changed, 50 insertions(+)

diff --git a/dev-python/python-designateclient/Manifest 
b/dev-python/python-designateclient/Manifest
index 2bae8957d..f811437c1 100644
--- a/dev-python/python-designateclient/Manifest
+++ b/dev-python/python-designateclient/Manifest
@@ -1 +1,2 @@
 DIST python-designateclient-4.5.0.tar.gz 70182 BLAKE2B 
83c127935434367d64b4eac6f10040d5d0c59f58fc89db2a92e52f33c7b0f473d8c991fdb98ea1d3fddfd2111e91c6e162047cda061dd8fd897a430baa9c7629
 SHA512 
0229b925d9c659af777e5b7151830746b20d990e17a2328ad03cbdea3e04d7d5de78a16778d644b112b9d7b6f04a2a52ae57c9404c32fdab018c2be60ba3ca4e
+DIST python-designateclient-4.5.1.tar.gz 70307 BLAKE2B 
0f5763251b7ba092f9b2f611a0ad3a55233ae60016ae658c3f7c7c50d5116dc997a1da2ed92aba510eabb963f71cba68add6e221b11adc540993e661adeece88
 SHA512 
6abddcfb817a48ae2b978b63c75765a7df0d21a3fdba718d9664848f411feca81305f415c44630fac7d7ef21cc35ffdc3d24bcb63724c95c0f1c993ec43b3d95

diff --git 
a/dev-python/python-designateclient/python-designateclient-4.5.1.ebuild 
b/dev-python/python-designateclient/python-designateclient-4.5.1.ebuild
new file mode 100644
index 0..c862f0f6f
--- /dev/null
+++ b/dev-python/python-designateclient/python-designateclient-4.5.1.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+EPYTEST_IGNORE=( designateclient/functionaltests/ )
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python bindings to the Designate API"
+HOMEPAGE="
+   https://github.com/openstack/python-designateclient
+   https://opendev.org/openstack/python-blazarclient
+   https://pypi.org/project/python-blazarclient/
+   https://launchpad.net/python-designateclient
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   >=dev-python/cliff-2.8.0[${PYTHON_USEDEP}]
+   >=dev-python/jsonschema-2.6.0[${PYTHON_USEDEP}]
+   >=dev-python/osc-lib-1.8.0[${PYTHON_USEDEP}]
+   >=dev-python/oslo-serialization-2.18.0[${PYTHON_USEDEP}]
+   >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
+   >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
+   >=dev-python/keystoneauth-3.4.0[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
+   >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
+"
+DEPEND="
+   ${RDEPEND}
+   test? (
+   >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   >=dev-python/os-testr-1.0.0[${PYTHON_USEDEP}]
+   >=dev-python/subunit-1.0.0[${PYTHON_USEDEP}]
+   >=dev-python/requests-mock-1.2.0[${PYTHON_USEDEP}]
+   >=dev-python/reno-3.1.0[${PYTHON_USEDEP}]
+   >=dev-python/tempest-17.1.0[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest



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

2022-06-27 Thread Alessandro Barbieri
commit: 880fb24618f994de44c9ffb0e8d39322db033b98
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:18:17 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:28 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=880fb246

dev-python/hyperglot: add 0.3.9

Signed-off-by: Alessandro Barbieri  gmail.com>

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

diff --git a/dev-python/hyperglot/Manifest b/dev-python/hyperglot/Manifest
index 03ad41e79..201a72402 100644
--- a/dev-python/hyperglot/Manifest
+++ b/dev-python/hyperglot/Manifest
@@ -1 +1,2 @@
 DIST hyperglot-0.3.8.gh.tar.gz 7535789 BLAKE2B 
ea95372cfff195d2f991cc9a6bc3e26a9576e234167dde0c3a550979f6657e23b2169beb9d67b05fe8de1922e8a299ae24653da611e4277027798b2d139bc12f
 SHA512 
32b8a08795fad10bfe909ddcab9578a53d1a0faf5a9ac79c2a129d2529d00166336560528f298ff8433fdc1149791da948fa2ef4f4d67780bd79b8f8126bdaf6
+DIST hyperglot-0.3.9.gh.tar.gz 7534924 BLAKE2B 
504907a27e10977cba079cc03db489d1ee169de84e07d32308f4c682fda9be9e9d4b0af10f3ea0d0b3756582130ab3ab4474a730804b4a5ccd2acd0d97cfe787
 SHA512 
9bf3fad12e66d475dbca627164674a8f3d06779b44e3fac56b95de7058c863421ce107e76fab51dbf95d3ce7d6be5d9aeb340c73521dd85183f2982d36383758

diff --git a/dev-python/hyperglot/hyperglot-0.3.9.ebuild 
b/dev-python/hyperglot/hyperglot-0.3.9.ebuild
new file mode 100644
index 0..6f30fd58e
--- /dev/null
+++ b/dev-python/hyperglot/hyperglot-0.3.9.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Detect language support for font binaries"
+HOMEPAGE="
+   https://hyperglot.rosettatype.com/
+   https://github.com/rosettatype/hyperglot
+   https://pypi.org/project/hyperglot/
+"
+SRC_URI="https://github.com/rosettatype/${PN}/archive/refs/tags/${PV}.tar.gz 
-> ${P}.gh.tar.gz"
+
+LICENSE="GPL-3+ OFL"
+KEYWORDS="~amd64"
+SLOT="0"
+
+RDEPEND="
+   >=dev-python/click-7.0[${PYTHON_USEDEP}]
+   >=dev-python/fonttools-4.0.2[${PYTHON_USEDEP}]
+   >=dev-python/pyyaml-5.3[${PYTHON_USEDEP}]
+   >=dev-python/unicodedata2-13.0.0[${PYTHON_USEDEP}]
+   >=dev-python/colorlog-4.7.2[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



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

2022-06-27 Thread Alessandro Barbieri
commit: 87c45a58f18b72a6f15c5f80834798aa8b8cb52f
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:09:07 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:28 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=87c45a58

dev-python/types-python-dateutil: add 2.8.18, drop 2.8.16

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/types-python-dateutil/Manifest   | 2 +-
 ...ython-dateutil-2.8.16.ebuild => types-python-dateutil-2.8.18.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/types-python-dateutil/Manifest 
b/dev-python/types-python-dateutil/Manifest
index 97b8c5ae9..000596419 100644
--- a/dev-python/types-python-dateutil/Manifest
+++ b/dev-python/types-python-dateutil/Manifest
@@ -1,2 +1,2 @@
-DIST types-python-dateutil-2.8.16.tar.gz 6973 BLAKE2B 
2e883f73af0e79faf57f8469733ec742b9881e974a253ddd40e80628302ea29a9046a319088d75b9bc47792b0e225fe2c2f376ea4a5d794d710cf7aea7af7af3
 SHA512 
1d2927c6bd85fa8222c7519d3ac8ae6179da746ebb29ca4e9002ca410131e10445b8ebc2b70bb6df1b3e8ed90098827884bf5f928039d1627ca760c86cdcc113
 DIST types-python-dateutil-2.8.17.tar.gz 7018 BLAKE2B 
261aa401e656a6524b96fd3c7ccf2cccf1dd8826c5597958ca1dde8b05ea656af7486b8487c57915b679c409befac004294e26a9fe401beefbe07060dfefc352
 SHA512 
ef33af71fd007175967b436a9115c1ce2defbb2a4d154c153e58ed72286e5090c73c959f3be0498a3613391b3b0519784a47678182d0d685007d386ae3005565
+DIST types-python-dateutil-2.8.18.tar.gz 7078 BLAKE2B 
2ee7edf31c8b034a914a6bbad72107670b1fdb884d1c4977d10cabb572dcd5ef55fad533980d583d9cbfbb192a631f01605663587ddc90d0e71e7e7102aad789
 SHA512 
e1ed05d39940aadf7d748d7f84781506324bf080bf243c39c801543a3e4c91a2ab132bea0efbbfc5d20c90f217a93b93a3f6893a99d03cd0f5cfa87ccfb71a6e

diff --git 
a/dev-python/types-python-dateutil/types-python-dateutil-2.8.16.ebuild 
b/dev-python/types-python-dateutil/types-python-dateutil-2.8.18.ebuild
similarity index 100%
rename from dev-python/types-python-dateutil/types-python-dateutil-2.8.16.ebuild
rename to dev-python/types-python-dateutil/types-python-dateutil-2.8.18.ebuild



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

2022-06-27 Thread Alessandro Barbieri
commit: dd99cac948ec06f7d98e7d888780a9c99564d9f9
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:08:08 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:27 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dd99cac9

dev-python/types-requests: add 2.28.0, drop 2.27.29

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/types-requests/Manifest  | 2 +-
 .../{types-requests-2.27.29.ebuild => types-requests-2.28.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/types-requests/Manifest 
b/dev-python/types-requests/Manifest
index 002128e90..a90365311 100644
--- a/dev-python/types-requests/Manifest
+++ b/dev-python/types-requests/Manifest
@@ -1,2 +1,2 @@
-DIST types-requests-2.27.29.tar.gz 11366 BLAKE2B 
4791fbcc95bbb16de6aa341afdf7b08d5f147628d3f2bc5b43c512e9df509a8fcdf95ac4f9c7f4f924aa5463040157730b33953a15144afd2d9b4adb7c16e48a
 SHA512 
136acd5d1ae2334ecbe19c2dcac59d2c8d7c567bb5c4a0d15c279bcf61be1abebfb934743d5ad3c2792eaca6c6cc76756e9efa550448a831727de0846548f0a9
 DIST types-requests-2.27.30.tar.gz 11473 BLAKE2B 
717e3c68b24a7123259f755ffcd427811fc8a45a1eb0c22708ac676f29b55af257c2a8bcdb21b35e019aa9efccd96c38ddc6b0dd1d8321456f8f0117efbdb6d0
 SHA512 
edebb63b1f5c64604de40462b2acd9cc86839f2e5affcfa0fab91afebf3b0050e4a713cdabb4d12a6f5203eee78637c33e173ba73b9f1b953d94633dc21354a0
+DIST types-requests-2.28.0.tar.gz 11532 BLAKE2B 
003869728f26bc64dd9cc755e20ccdd1eba0619aaf8cc3cbc27d6cebd62eb399ff757568624b2ffcf23cfc6dd5972a94b0e0e086a8f196111391e73fa7d2e431
 SHA512 
7d14642f3d54bc8c9e3f7c678b90a5f22a9464d4e66878783aeb30cb46bb8ff8b32c8db4309e0cd2e1e0fad243320ac3e1905c5e9ab10112856b7cb3e81673e4

diff --git a/dev-python/types-requests/types-requests-2.27.29.ebuild 
b/dev-python/types-requests/types-requests-2.28.0.ebuild
similarity index 100%
rename from dev-python/types-requests/types-requests-2.27.29.ebuild
rename to dev-python/types-requests/types-requests-2.28.0.ebuild



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

2022-06-27 Thread Alessandro Barbieri
commit: 1bc67d4a273044df3a6772bfeaca5e9d1c58343f
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:08:32 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:27 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1bc67d4a

dev-python/types-pytz: add 2022.1.1

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/types-pytz/Manifest   |  1 +
 dev-python/types-pytz/types-pytz-2022.1.1.ebuild | 19 +++
 2 files changed, 20 insertions(+)

diff --git a/dev-python/types-pytz/Manifest b/dev-python/types-pytz/Manifest
index 580204ad7..389d100aa 100644
--- a/dev-python/types-pytz/Manifest
+++ b/dev-python/types-pytz/Manifest
@@ -1 +1,2 @@
 DIST types-pytz-2021.3.8.tar.gz 3253 BLAKE2B 
873f8126ecaf5055bcd9aa87f8632cee8cf92f7bfe51f0d0df7217af51053f40fe98f18f511db42eefc2d904cf3f1f11b228cf8c6fa15f5afcbc2e8e91f539fe
 SHA512 
5b7dcf5279be55225ec66f9f9cc657cb3ae21acdcd41322a194a8cc6ccd79e60052191cb664378f414172d9f5d92573ab1f3322e9909ecd1e4ed95b36c7630ba
+DIST types-pytz-2022.1.1.tar.gz 3374 BLAKE2B 
837fe74a59c960fb8ceab6730bf0adf8d6e20a0c2e916d3736f5a7b9c282fd3606cfe3fdc1de767cc1f52c290088e82a0cee17d1baee122814379be0db9ce8ed
 SHA512 
980972ee68e836b582574ee114a7adbfdaff4c5e7bdcd7499a677e6da25939c280fc34284db688d59a757b4ce96d4305a48f4de422a50b59b19921f53e7f8b6d

diff --git a/dev-python/types-pytz/types-pytz-2022.1.1.ebuild 
b/dev-python/types-pytz/types-pytz-2022.1.1.ebuild
new file mode 100644
index 0..611ea0a5c
--- /dev/null
+++ b/dev-python/types-pytz/types-pytz-2022.1.1.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Typing stubs for pytz"
+HOMEPAGE="
+   https://pypi.org/project/types-pytz/
+   https://github.com/python/typeshed/tree/master/stubs/pytz
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="Apache-2.0"
+KEYWORDS="~amd64"



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

2022-06-27 Thread Alessandro Barbieri
commit: cb2b459881eb7f6671e0962fbc7fcabb3be7c9ed
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:07:31 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:27 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cb2b4598

dev-python/vharfbuzz: add 0.1.4

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/vharfbuzz/Manifest   |  1 +
 dev-python/vharfbuzz/vharfbuzz-0.1.4.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-python/vharfbuzz/Manifest b/dev-python/vharfbuzz/Manifest
index a0c417d00..d23b7890d 100644
--- a/dev-python/vharfbuzz/Manifest
+++ b/dev-python/vharfbuzz/Manifest
@@ -1 +1,2 @@
 DIST vharfbuzz-0.1.3.gh.tar.gz 9359 BLAKE2B 
c4d7e2a1a939c59f63008f99cc6cf4ce622adebe493248c3536632051e32fe0e1ca9d48b91273ef3c157afefbfcc0062232d964cba954f1b867d91bbdc16ad41
 SHA512 
0b2e90da6ba613cbc24bf67d2815d6d2e857463e077410a6c86e4a4d77a734bc6b3ddaf3fbd564d06fcd2295eda13e095da55241cc31c38959703114b0cf56bf
+DIST vharfbuzz-0.1.4.gh.tar.gz 9362 BLAKE2B 
6a688990e9a56e6b53cda8d1293681c3e84a888f6052e4eb3e8f62d95b145a465f3b3ed2e20f1cafc0eb3befadc5a23417fcb8d4770c1b3b009eacc985a65ca7
 SHA512 
0c0cf27238c0d7a763a1c683df3c2ec1d48fc11af0c347a1039d0f957efb91b21c4292d66a3c9dff60dacc1c21e3ace35fa162f262e9f3e50c24048647092a21

diff --git a/dev-python/vharfbuzz/vharfbuzz-0.1.4.ebuild 
b/dev-python/vharfbuzz/vharfbuzz-0.1.4.ebuild
new file mode 100644
index 0..9cc1e42f6
--- /dev/null
+++ b/dev-python/vharfbuzz/vharfbuzz-0.1.4.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2022 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 user-friendlier way to use Harfbuzz in Python"
+HOMEPAGE="https://github.com/simoncozens/vharfbuzz;
+SRC_URI="https://github.com/simoncozens/vharfbuzz/archive/refs/tags/v${PV}.tar.gz
 -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+KEYWORDS="~amd64"
+SLOT="0"
+
+RDEPEND="
+   dev-python/fonttools[${PYTHON_USEDEP}]
+   dev-python/uharfbuzz[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+distutils_enable_sphinx docs



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

2022-06-27 Thread Alessandro Barbieri
commit: 625e424800120be4cbbaf5748889e9aa290daa22
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Jun 28 04:09:29 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Jun 28 04:34:28 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=625e4248

dev-python/types-paramiko: add 2.11.1

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/types-paramiko/Manifest  |  1 +
 .../types-paramiko/types-paramiko-2.11.1.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-python/types-paramiko/Manifest 
b/dev-python/types-paramiko/Manifest
index c585fdf3d..da549096f 100644
--- a/dev-python/types-paramiko/Manifest
+++ b/dev-python/types-paramiko/Manifest
@@ -1 +1,2 @@
 DIST types-paramiko-2.10.0.tar.gz 20325 BLAKE2B 
c918598110ada99b739579d9fd0b968b272e7cb654df2fd24f3fbfa96b9730fab27c6575220b62d2a6680c4cd5c6122594e1d710afcb5cdde2444fcfeb7a77ea
 SHA512 
e376f8fd060f6667c610c53cf42b7dbb38ab19cbc3e8ad68f9a68f982b7498c7e06201e4ff35b662fb0d7a17b24d12a245cdc8f5731cf21cf5c0a14085853fb0
+DIST types-paramiko-2.11.1.tar.gz 20406 BLAKE2B 
84ee3c357044711c4252171d018bfc4e1fbedd0cefc7dc17da8a7ea5d215d72ea5ce58d272f0d44f6c5e4be316497833ad3e40800dcd2b1be37a7a8d74742120
 SHA512 
54c4566342919d9b890ca87ebb07177d31108e5d6f9408ef2939499db950f1a44fab8ab553465a676099c51a61169d6c5b60b3900388af48d675721e4d746f7c

diff --git a/dev-python/types-paramiko/types-paramiko-2.11.1.ebuild 
b/dev-python/types-paramiko/types-paramiko-2.11.1.ebuild
new file mode 100644
index 0..8b3f48095
--- /dev/null
+++ b/dev-python/types-paramiko/types-paramiko-2.11.1.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Typing stubs for paramiko"
+HOMEPAGE="
+   https://pypi.org/project/types-paramiko/
+   https://github.com/python/typeshed/tree/master/stubs/paramiko
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="Apache-2.0"
+KEYWORDS="~amd64"
+
+RDEPEND=">=dev-python/cryptography-3.4.4[${PYTHON_USEDEP}]"



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

2022-06-27 Thread Sam James
commit: bb8e5d3810471d058aad1c4fd302267797c0cd86
Author: Sam James  gentoo  org>
AuthorDate: Tue Jun 28 04:33:48 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jun 28 04:33:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb8e5d38

sys-apps/systemd-utils: Stabilize 250.7 hppa, #850928

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

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

diff --git a/sys-apps/systemd-utils/systemd-utils-250.7.ebuild 
b/sys-apps/systemd-utils/systemd-utils-250.7.ebuild
index cf1dfea5be71..6892a880e75d 100644
--- a/sys-apps/systemd-utils/systemd-utils-250.7.ebuild
+++ b/sys-apps/systemd-utils/systemd-utils-250.7.ebuild
@@ -26,7 +26,7 @@ SRC_URI+=" elibc_musl? ( 
https://dev.gentoo.org/~floppym/dist/${MUSL_PATCHSET}.t
 
 LICENSE="GPL-2 LGPL-2.1 MIT public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="+acl boot +kmod selinux sysusers +tmpfiles test +udev"
 REQUIRED_USE="|| ( boot tmpfiles sysusers udev )"
 RESTRICT="!test? ( test )"



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

2022-06-27 Thread Sam James
commit: 9b32a1b0e6ce53336d4746b9a422e80dd5647192
Author: Sam James  gentoo  org>
AuthorDate: Tue Jun 28 04:33:52 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jun 28 04:33:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b32a1b0

sys-apps/systemd-utils: Stabilize 250.7 x86, #850928

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

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

diff --git a/sys-apps/systemd-utils/systemd-utils-250.7.ebuild 
b/sys-apps/systemd-utils/systemd-utils-250.7.ebuild
index 6892a880e75d..7c1f1c2f6a75 100644
--- a/sys-apps/systemd-utils/systemd-utils-250.7.ebuild
+++ b/sys-apps/systemd-utils/systemd-utils-250.7.ebuild
@@ -26,7 +26,7 @@ SRC_URI+=" elibc_musl? ( 
https://dev.gentoo.org/~floppym/dist/${MUSL_PATCHSET}.t
 
 LICENSE="GPL-2 LGPL-2.1 MIT public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 IUSE="+acl boot +kmod selinux sysusers +tmpfiles test +udev"
 REQUIRED_USE="|| ( boot tmpfiles sysusers udev )"
 RESTRICT="!test? ( test )"



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

2022-06-27 Thread Sam James
commit: fc13fee18429b9f39995205178c675c4cdb79efe
Author: Sam James  gentoo  org>
AuthorDate: Tue Jun 28 04:33:51 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jun 28 04:33:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc13fee1

sys-apps/systemd: Stabilize 250.7 x86, #850928

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

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

diff --git a/sys-apps/systemd/systemd-250.7.ebuild 
b/sys-apps/systemd/systemd-250.7.ebuild
index f5c3f3abb6be..92bbec7305b4 100644
--- a/sys-apps/systemd/systemd-250.7.ebuild
+++ b/sys-apps/systemd/systemd-250.7.ebuild
@@ -23,7 +23,7 @@ else
MY_P=${MY_PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 fi
 
 inherit bash-completion-r1 flag-o-matic linux-info meson-multilib pam 
python-any-r1 systemd toolchain-funcs udev usr-ldscript



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

2022-06-27 Thread Sam James
commit: cd2dd77b356bafc9c7dcbc50626737659e6f268d
Author: Sam James  gentoo  org>
AuthorDate: Tue Jun 28 04:33:48 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jun 28 04:33:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd2dd77b

sys-apps/systemd: Stabilize 250.7 hppa, #850928

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

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

diff --git a/sys-apps/systemd/systemd-250.7.ebuild 
b/sys-apps/systemd/systemd-250.7.ebuild
index 180e744ba12a..f5c3f3abb6be 100644
--- a/sys-apps/systemd/systemd-250.7.ebuild
+++ b/sys-apps/systemd/systemd-250.7.ebuild
@@ -23,7 +23,7 @@ else
MY_P=${MY_PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
 fi
 
 inherit bash-completion-r1 flag-o-matic linux-info meson-multilib pam 
python-any-r1 systemd toolchain-funcs udev usr-ldscript



[gentoo-commits] repo/proj/guru:dev commit in: app-misc/fastfetch/

2022-06-27 Thread Viorel Munteanu
commit: 6097530effefcb552caf303f33f3b1faae722b06
Author: Viorel Munteanu  gmail  com>
AuthorDate: Tue Jun 28 04:30:39 2022 +
Commit: Viorel Munteanu  gmail  com>
CommitDate: Tue Jun 28 04:30:39 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6097530e

app-misc/fastfetch: drop 1.5.4-r1

Signed-off-by: Viorel Munteanu  gmail.com>

 app-misc/fastfetch/Manifest  |  1 -
 app-misc/fastfetch/fastfetch-1.5.4-r1.ebuild | 96 
 2 files changed, 97 deletions(-)

diff --git a/app-misc/fastfetch/Manifest b/app-misc/fastfetch/Manifest
index 2817deeeb..5b2a0c5f0 100644
--- a/app-misc/fastfetch/Manifest
+++ b/app-misc/fastfetch/Manifest
@@ -1,2 +1 @@
-DIST fastfetch-1.5.4.tar.gz 345879 BLAKE2B 
fac422642e6d2af4658d8f7c23c83b3c15a485eda8705626eda9eba024a4714b814e654f688015932cef3b80332c9e6ea5308d371848719786daca4e73ae059e
 SHA512 
20a305235018ddb1af911246222c7f625311abaf95aa3feed6d7dc06e98b974453f80c34933e286709c721a48238d06b532f2770e72cb3f4018ad54de399a084
 DIST fastfetch-1.5.5.tar.gz 346289 BLAKE2B 
db6e321150429343a1660ea384b43a8a35a2bbf11cd6acdf9089f0d020059afa28cd4f42ac8d956974f8bb0cd6c3fe9750393ecb154f5449ab5d14a27057daaa
 SHA512 
3c51ff0e82982bf1974b113709eacf323c5a4080a8292d4ffd4575b10cf8ddbd0a55bda57dcaec5bd61bebe4b4f16e6634fa067d01d8df5be0120b2b5f5f886c

diff --git a/app-misc/fastfetch/fastfetch-1.5.4-r1.ebuild 
b/app-misc/fastfetch/fastfetch-1.5.4-r1.ebuild
deleted file mode 100644
index 31e8aeeb4..0
--- a/app-misc/fastfetch/fastfetch-1.5.4-r1.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Like neofetch but faster"
-HOMEPAGE="https://github.com/LinusDierheimer/fastfetch;
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/LinusDierheimer/fastfetch.git;
-else
-   
SRC_URI="https://github.com/LinusDierheimer/fastfetch/archive/refs/tags/${PV}.tar.gz
 -> ${P}.tar.gz"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="X chafa dbus gnome imagemagick opencl opengl osmesa pci sqlite vulkan 
wayland xcb xfce xrandr"
-
-# note - qa-vdb will always report errors because fastfetch loads the libs 
dynamically
-RDEPEND="
-   sys-libs/zlib
-   X? ( x11-libs/libX11 )
-   chafa? (
-   media-gfx/chafa
-   media-gfx/imagemagick:=
-   )
-   dbus? ( sys-apps/dbus )
-   gnome? (
-   dev-libs/glib
-   gnome-base/dconf
-   )
-   imagemagick? ( media-gfx/imagemagick:= )
-   opencl? ( virtual/opencl )
-   opengl? ( media-libs/libglvnd[X] )
-   osmesa? ( media-libs/mesa[osmesa] )
-   pci? ( sys-apps/pciutils )
-   sqlite? ( dev-db/sqlite:3 )
-   vulkan? ( media-libs/vulkan-loader )
-   wayland? ( dev-libs/wayland )
-   xcb? ( x11-libs/libxcb )
-   xfce? ( xfce-base/xfconf )
-   xrandr? ( x11-libs/libXrandr )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-REQUIRED_USE="xrandr? ( X )"
-
-pkg_setup() {
-   if use chafa && ! use imagemagick; then
-   elog "USE chafa depends on imagemagick, but that is currently 
disabled.  Enabling imagemagick"
-   fi
-
-   if use imagemagick || use chafa; then
-   export fastfetch_enable_imagemagick7=$(has_version 
'>=media-gfx/imagemagick-7.0.0' && echo yes || echo no)
-   else
-   export fastfetch_enable_imagemagick7=no
-   fi
-
-   if use imagemagick || use chafa; then
-   export fastfetch_enable_imagemagick6=$(has_version 
'

[gentoo-commits] repo/proj/guru:dev commit in: app-misc/fastfetch/

2022-06-27 Thread Viorel Munteanu
commit: a61f3481be5348d89e03cfb6a8e5b32a783c84d9
Author: Viorel Munteanu  gmail  com>
AuthorDate: Tue Jun 28 04:30:26 2022 +
Commit: Viorel Munteanu  gmail  com>
CommitDate: Tue Jun 28 04:30:26 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a61f3481

app-misc/fastfetch: add 1.5.5

Signed-off-by: Viorel Munteanu  gmail.com>

 app-misc/fastfetch/Manifest   |  1 +
 app-misc/fastfetch/fastfetch-1.5.5.ebuild | 96 +++
 2 files changed, 97 insertions(+)

diff --git a/app-misc/fastfetch/Manifest b/app-misc/fastfetch/Manifest
index afb080563..2817deeeb 100644
--- a/app-misc/fastfetch/Manifest
+++ b/app-misc/fastfetch/Manifest
@@ -1 +1,2 @@
 DIST fastfetch-1.5.4.tar.gz 345879 BLAKE2B 
fac422642e6d2af4658d8f7c23c83b3c15a485eda8705626eda9eba024a4714b814e654f688015932cef3b80332c9e6ea5308d371848719786daca4e73ae059e
 SHA512 
20a305235018ddb1af911246222c7f625311abaf95aa3feed6d7dc06e98b974453f80c34933e286709c721a48238d06b532f2770e72cb3f4018ad54de399a084
+DIST fastfetch-1.5.5.tar.gz 346289 BLAKE2B 
db6e321150429343a1660ea384b43a8a35a2bbf11cd6acdf9089f0d020059afa28cd4f42ac8d956974f8bb0cd6c3fe9750393ecb154f5449ab5d14a27057daaa
 SHA512 
3c51ff0e82982bf1974b113709eacf323c5a4080a8292d4ffd4575b10cf8ddbd0a55bda57dcaec5bd61bebe4b4f16e6634fa067d01d8df5be0120b2b5f5f886c

diff --git a/app-misc/fastfetch/fastfetch-1.5.5.ebuild 
b/app-misc/fastfetch/fastfetch-1.5.5.ebuild
new file mode 100644
index 0..31e8aeeb4
--- /dev/null
+++ b/app-misc/fastfetch/fastfetch-1.5.5.ebuild
@@ -0,0 +1,96 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Like neofetch but faster"
+HOMEPAGE="https://github.com/LinusDierheimer/fastfetch;
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/LinusDierheimer/fastfetch.git;
+else
+   
SRC_URI="https://github.com/LinusDierheimer/fastfetch/archive/refs/tags/${PV}.tar.gz
 -> ${P}.tar.gz"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="X chafa dbus gnome imagemagick opencl opengl osmesa pci sqlite vulkan 
wayland xcb xfce xrandr"
+
+# note - qa-vdb will always report errors because fastfetch loads the libs 
dynamically
+RDEPEND="
+   sys-libs/zlib
+   X? ( x11-libs/libX11 )
+   chafa? (
+   media-gfx/chafa
+   media-gfx/imagemagick:=
+   )
+   dbus? ( sys-apps/dbus )
+   gnome? (
+   dev-libs/glib
+   gnome-base/dconf
+   )
+   imagemagick? ( media-gfx/imagemagick:= )
+   opencl? ( virtual/opencl )
+   opengl? ( media-libs/libglvnd[X] )
+   osmesa? ( media-libs/mesa[osmesa] )
+   pci? ( sys-apps/pciutils )
+   sqlite? ( dev-db/sqlite:3 )
+   vulkan? ( media-libs/vulkan-loader )
+   wayland? ( dev-libs/wayland )
+   xcb? ( x11-libs/libxcb )
+   xfce? ( xfce-base/xfconf )
+   xrandr? ( x11-libs/libXrandr )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+REQUIRED_USE="xrandr? ( X )"
+
+pkg_setup() {
+   if use chafa && ! use imagemagick; then
+   elog "USE chafa depends on imagemagick, but that is currently 
disabled.  Enabling imagemagick"
+   fi
+
+   if use imagemagick || use chafa; then
+   export fastfetch_enable_imagemagick7=$(has_version 
'>=media-gfx/imagemagick-7.0.0' && echo yes || echo no)
+   else
+   export fastfetch_enable_imagemagick7=no
+   fi
+
+   if use imagemagick || use chafa; then
+   export fastfetch_enable_imagemagick6=$(has_version 
'

[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/countryflags/

2022-06-27 Thread WANG Xuerui
commit: d44cd13a18fee68b14256c4db6a7630f0f26367e
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:18:05 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d44cd13a

kde-frameworks/countryflags: keyword 5.95.0 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 kde-frameworks/countryflags/countryflags-5.95.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-frameworks/countryflags/countryflags-5.95.0.ebuild 
b/kde-frameworks/countryflags/countryflags-5.95.0.ebuild
index f64b0a75fbf3..dfa657e82a70 100644
--- a/kde-frameworks/countryflags/countryflags-5.95.0.ebuild
+++ b/kde-frameworks/countryflags/countryflags-5.95.0.ebuild
@@ -11,7 +11,7 @@ inherit ecm kde.org
 DESCRIPTION="Icons of flags for various countries"
 
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 
 CMAKE_USE_DIR="${S}/src/l10n"
 



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/oxygen-sounds/

2022-06-27 Thread WANG Xuerui
commit: cc20627d16ecf6c0892d7a0ac1f61ccdf099c4a3
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:18:02 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc20627d

kde-plasma/oxygen-sounds: keyword 5.25.1 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 kde-plasma/oxygen-sounds/oxygen-sounds-5.25.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/oxygen-sounds/oxygen-sounds-5.25.1.ebuild 
b/kde-plasma/oxygen-sounds/oxygen-sounds-5.25.1.ebuild
index ce7e283a42c0..82e1ed8f26aa 100644
--- a/kde-plasma/oxygen-sounds/oxygen-sounds-5.25.1.ebuild
+++ b/kde-plasma/oxygen-sounds/oxygen-sounds-5.25.1.ebuild
@@ -12,6 +12,6 @@ HOMEPAGE="https://invent.kde.org/plasma/oxygen-sounds;
 
 LICENSE="GPL-2+"
 SLOT="5"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 
 RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/threadweaver/

2022-06-27 Thread WANG Xuerui
commit: e0d137b75de0d4223a655ff9c6f5cc3e2155f20b
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:18:04 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0d137b7

kde-frameworks/threadweaver: keyword 5.95.0 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 kde-frameworks/threadweaver/threadweaver-5.95.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-frameworks/threadweaver/threadweaver-5.95.0.ebuild 
b/kde-frameworks/threadweaver/threadweaver-5.95.0.ebuild
index a1a62f1f539c..f26a277daaa6 100644
--- a/kde-frameworks/threadweaver/threadweaver-5.95.0.ebuild
+++ b/kde-frameworks/threadweaver/threadweaver-5.95.0.ebuild
@@ -7,7 +7,7 @@ inherit ecm kde.org
 
 DESCRIPTION="Framework for managing threads using job and queue-based 
interfaces"
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 IUSE=""
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/breeze-icons/

2022-06-27 Thread WANG Xuerui
commit: 4e9d9f12239583900d9f5e73725885c09bbddbe4
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:51 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e9d9f12

kde-frameworks/breeze-icons: keyword 5.95.0 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 kde-frameworks/breeze-icons/breeze-icons-5.95.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-frameworks/breeze-icons/breeze-icons-5.95.0.ebuild 
b/kde-frameworks/breeze-icons/breeze-icons-5.95.0.ebuild
index 152a388fe1ee..9c721cb3b357 100644
--- a/kde-frameworks/breeze-icons/breeze-icons-5.95.0.ebuild
+++ b/kde-frameworks/breeze-icons/breeze-icons-5.95.0.ebuild
@@ -10,7 +10,7 @@ inherit cmake kde.org python-any-r1 xdg-utils
 DESCRIPTION="Breeze SVG icon theme"
 
 LICENSE="LGPL-3"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 IUSE="test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/karchive/

2022-06-27 Thread WANG Xuerui
commit: 2737d133552e500c8683a67434a6acf8ea0903b3
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:59 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2737d133

kde-frameworks/karchive: keyword 5.95.0 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 kde-frameworks/karchive/karchive-5.95.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-frameworks/karchive/karchive-5.95.0.ebuild 
b/kde-frameworks/karchive/karchive-5.95.0.ebuild
index 15034e1438ea..266a1a4b183f 100644
--- a/kde-frameworks/karchive/karchive-5.95.0.ebuild
+++ b/kde-frameworks/karchive/karchive-5.95.0.ebuild
@@ -7,7 +7,7 @@ inherit ecm kde.org
 
 DESCRIPTION="Framework for reading, creation, and manipulation of various 
archive formats"
 LICENSE="GPL-2 LGPL-2.1"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 IUSE="+zstd"
 
 DEPEND="



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

2022-06-27 Thread WANG Xuerui
commit: 9148daaed0594ff14a7fd108f2f1fcf7280a5fdd
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:57 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9148daae

dev-qt/qdbus: keyword 5.15.5 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 dev-qt/qdbus/qdbus-5.15.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qdbus/qdbus-5.15.5.ebuild b/dev-qt/qdbus/qdbus-5.15.5.ebuild
index f8db01b1f8c0..fd19b238c162 100644
--- a/dev-qt/qdbus/qdbus-5.15.5.ebuild
+++ b/dev-qt/qdbus/qdbus-5.15.5.ebuild
@@ -9,7 +9,7 @@ inherit qt5-build
 DESCRIPTION="Interface to Qt applications communicating over D-Bus"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc 
~x86"
 fi
 
 IUSE=""



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

2022-06-27 Thread WANG Xuerui
commit: 0aefe56eb698fa90291e104100fd6af1c6ef66bf
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:55 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0aefe56e

app-crypt/qca: keyword 2.3.4 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 app-crypt/qca/qca-2.3.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-crypt/qca/qca-2.3.4.ebuild b/app-crypt/qca/qca-2.3.4.ebuild
index c67fc95e97e0..05ecf7c86655 100644
--- a/app-crypt/qca/qca-2.3.4.ebuild
+++ b/app-crypt/qca/qca-2.3.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="2"
-KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~sparc-solaris"
+KEYWORDS="amd64 ~arm arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
 IUSE="botan debug doc examples gcrypt gpg logger nss pkcs11 sasl softstore 
+ssl test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/attica/

2022-06-27 Thread WANG Xuerui
commit: 0a8cb0123bd86a6e2c53d8029b9ed22bf62249bd
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:18:00 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a8cb012

kde-frameworks/attica: keyword 5.95.0 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 kde-frameworks/attica/attica-5.95.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-frameworks/attica/attica-5.95.0.ebuild 
b/kde-frameworks/attica/attica-5.95.0.ebuild
index a0eed868ad43..91af26d02dc6 100644
--- a/kde-frameworks/attica/attica-5.95.0.ebuild
+++ b/kde-frameworks/attica/attica-5.95.0.ebuild
@@ -8,7 +8,7 @@ inherit ecm kde.org
 
 DESCRIPTION="Framework providing access to Open Collaboration Services"
 LICENSE="LGPL-2.1+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 IUSE=""
 
 RDEPEND="



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

2022-06-27 Thread WANG Xuerui
commit: 8f0845b45ea82fd14a8f190d2744c960060edbcc
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:46 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f0845b4

dev-qt/qtsql: keyword 5.15.5 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 dev-qt/qtsql/qtsql-5.15.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtsql/qtsql-5.15.5.ebuild b/dev-qt/qtsql/qtsql-5.15.5.ebuild
index ae464f87a8ac..cf831ef54fe7 100644
--- a/dev-qt/qtsql/qtsql-5.15.5.ebuild
+++ b/dev-qt/qtsql/qtsql-5.15.5.ebuild
@@ -11,7 +11,7 @@ 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"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc 
~x86"
 fi
 
 IUSE="freetds mysql oci8 odbc postgres +sqlite"



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

2022-06-27 Thread WANG Xuerui
commit: d3dab8144f0999095ad2d32131b835f5a7e853dd
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:40 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3dab814

media-libs/zxing-cpp: keyword 1.3.0 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 media-libs/zxing-cpp/zxing-cpp-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zxing-cpp/zxing-cpp-1.3.0.ebuild 
b/media-libs/zxing-cpp/zxing-cpp-1.3.0.ebuild
index db56bb88febb..dcef8e98 100644
--- a/media-libs/zxing-cpp/zxing-cpp-1.3.0.ebuild
+++ b/media-libs/zxing-cpp/zxing-cpp-1.3.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/nu-book/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
 IUSE=""
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-workspace-wallpapers/

2022-06-27 Thread WANG Xuerui
commit: 6c157aef0b47d2342eada2d86c966809c7aeea49
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:48 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c157aef

kde-plasma/plasma-workspace-wallpapers: keyword 5.25.1 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 .../plasma-workspace-wallpapers-5.25.1.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-5.25.1.ebuild
 
b/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-5.25.1.ebuild
index bceff041c2fa..3a5f3e5403a9 100644
--- 
a/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-5.25.1.ebuild
+++ 
b/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-5.25.1.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="Wallpapers for the Plasma workspace"
 
 LICENSE="GPL-2"
 SLOT="5"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 IUSE=""
 
 BDEPEND="



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

2022-06-27 Thread WANG Xuerui
commit: 666e405e41d66e7cc236e0273926922ffd89faac
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:36 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=666e405e

dev-lang/sassc: keyword 3.6.2 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

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

diff --git a/dev-lang/sassc/sassc-3.6.2.ebuild 
b/dev-lang/sassc/sassc-3.6.2.ebuild
index e01ec9ea83de..8d3fb8ef014e 100644
--- a/dev-lang/sassc/sassc-3.6.2.ebuild
+++ b/dev-lang/sassc/sassc-3.6.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/sass/sassc/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux"
+KEYWORDS="amd64 ~arm arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv x86 ~amd64-linux"
 
 RDEPEND=">=dev-libs/libsass-3.6.5:="
 DEPEND="${RDEPEND}"



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

2022-06-27 Thread WANG Xuerui
commit: 2ee3907f22661174c57dc3a74ea24030ed97f795
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:50 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ee3907f

dev-qt/qtpaths: keyword 5.15.5 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 dev-qt/qtpaths/qtpaths-5.15.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtpaths/qtpaths-5.15.5.ebuild 
b/dev-qt/qtpaths/qtpaths-5.15.5.ebuild
index 6ce80927a5d7..8daabef5dc74 100644
--- a/dev-qt/qtpaths/qtpaths-5.15.5.ebuild
+++ b/dev-qt/qtpaths/qtpaths-5.15.5.ebuild
@@ -9,7 +9,7 @@ inherit qt5-build
 DESCRIPTION="Command line client to QStandardPaths"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc 
~x86"
 fi
 
 IUSE=""



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

2022-06-27 Thread WANG Xuerui
commit: fd1aaac6b2e8c09e2c2b709b1185100d49c85693
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:43 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd1aaac6

x11-misc/xsettingsd: keyword 1.0.2 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 x11-misc/xsettingsd/xsettingsd-1.0.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-misc/xsettingsd/xsettingsd-1.0.2.ebuild 
b/x11-misc/xsettingsd/xsettingsd-1.0.2.ebuild
index f4f0fe86e402..9a57075caf2d 100644
--- a/x11-misc/xsettingsd/xsettingsd-1.0.2.ebuild
+++ b/x11-misc/xsettingsd/xsettingsd-1.0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/derat/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
 IUSE="test"
 
 RESTRICT="!test? ( test )"



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

2022-06-27 Thread WANG Xuerui
commit: 96bcc607a724d972576cd1b1fe4d5f8ab30bd091
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:45 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96bcc607

sys-fs/cryfs: keyword 0.10.3-r1 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 sys-fs/cryfs/cryfs-0.10.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/cryfs/cryfs-0.10.3-r1.ebuild 
b/sys-fs/cryfs/cryfs-0.10.3-r1.ebuild
index f209908d30e4..4e9c60bd68d7 100644
--- a/sys-fs/cryfs/cryfs-0.10.3-r1.ebuild
+++ b/sys-fs/cryfs/cryfs-0.10.3-r1.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI="https://github.com/cryfs/cryfs;
 else

SRC_URI="https://github.com/cryfs/cryfs/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
S="${WORKDIR}"
 fi
 



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

2022-06-27 Thread WANG Xuerui
commit: 8dd2ef92055a215288cd6bc2ccd9fd354ecbb0af
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:53 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dd2ef92

net-libs/libqrtr-glib: keyword 1.2.2 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 net-libs/libqrtr-glib/libqrtr-glib-1.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libqrtr-glib/libqrtr-glib-1.2.2.ebuild 
b/net-libs/libqrtr-glib/libqrtr-glib-1.2.2.ebuild
index 112d6e71ce63..e361d5ff82be 100644
--- a/net-libs/libqrtr-glib/libqrtr-glib-1.2.2.ebuild
+++ b/net-libs/libqrtr-glib/libqrtr-glib-1.2.2.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == "" ]] ; then
inherit git-r3

EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqrtr-glib.git;
 else
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"

SRC_URI="https://gitlab.freedesktop.org/mobile-broadband/${PN}/-/archive/${PV}/${P}.tar.bz2;
 fi
 



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

2022-06-27 Thread WANG Xuerui
commit: 6e5cad3165c4845959ed82c9f15278c2662c6f0f
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:33 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e5cad31

media-libs/libdmtx: keyword 0.7.5 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

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

diff --git a/media-libs/libdmtx/libdmtx-0.7.5.ebuild 
b/media-libs/libdmtx/libdmtx-0.7.5.ebuild
index add04dd79e1b..9177623cb462 100644
--- a/media-libs/libdmtx/libdmtx-0.7.5.ebuild
+++ b/media-libs/libdmtx/libdmtx-0.7.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/dmtx/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ppc ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ppc ppc64 ~riscv x86"
 IUSE=""
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: x11-apps/xsetroot/

2022-06-27 Thread WANG Xuerui
commit: 0b6a1c0d21d833b8588e32fca0b88906ea5724b3
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:38 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b6a1c0d

x11-apps/xsetroot: keyword 1.1.2-r1 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 x11-apps/xsetroot/xsetroot-1.1.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-apps/xsetroot/xsetroot-1.1.2-r1.ebuild 
b/x11-apps/xsetroot/xsetroot-1.1.2-r1.ebuild
index ea47994e494a..1e975ad11dd8 100644
--- a/x11-apps/xsetroot/xsetroot-1.1.2-r1.ebuild
+++ b/x11-apps/xsetroot/xsetroot-1.1.2-r1.ebuild
@@ -7,7 +7,7 @@ inherit xorg-3
 
 DESCRIPTION="X.Org xsetroot application"
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
x11-libs/libX11



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

2022-06-27 Thread WANG Xuerui
commit: 2334f90952d3fd9e111749256c0b47e129818d2c
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:30 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2334f909

net-libs/libupnp: keyword 1.14.12-r1 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 net-libs/libupnp/libupnp-1.14.12-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libupnp/libupnp-1.14.12-r1.ebuild 
b/net-libs/libupnp/libupnp-1.14.12-r1.ebuild
index fc9560d1abf1..b74eee98c312 100644
--- a/net-libs/libupnp/libupnp-1.14.12-r1.ebuild
+++ b/net-libs/libupnp/libupnp-1.14.12-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_PN}-release-${PV}"
 
 LICENSE="BSD"
 SLOT="0/17"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86 
~amd64-linux"
 IUSE="blocking-tcp debug doc +ipv6 +reuseaddr samples +ssl static-libs"
 
 RDEPEND="ssl? ( dev-libs/openssl:0= )"



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

2022-06-27 Thread WANG Xuerui
commit: d3f107859bacc6f59f7f287c7940d8e4f574864a
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:31 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3f10785

dev-libs/libsass: keyword 3.6.5 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

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

diff --git a/dev-libs/libsass/libsass-3.6.5.ebuild 
b/dev-libs/libsass/libsass-3.6.5.ebuild
index 5b6afcc694bb..c1a6d0479eb3 100644
--- a/dev-libs/libsass/libsass-3.6.5.ebuild
+++ b/dev-libs/libsass/libsass-3.6.5.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} = * ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/sass/libsass/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv x86 
~amd64-linux"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv x86 
~amd64-linux"
 fi
 
 DESCRIPTION="A C/C++ implementation of a Sass CSS compiler"



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

2022-06-27 Thread WANG Xuerui
commit: 4485b96a475a9b5a7c9f3c49695a0c31c02ced58
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:22 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4485b96a

media-libs/libdvbpsi: keyword 1.3.3 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

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

diff --git a/media-libs/libdvbpsi/libdvbpsi-1.3.3.ebuild 
b/media-libs/libdvbpsi/libdvbpsi-1.3.3.ebuild
index e3b9cf31138b..87b7cd83fca3 100644
--- a/media-libs/libdvbpsi/libdvbpsi-1.3.3.ebuild
+++ b/media-libs/libdvbpsi/libdvbpsi-1.3.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,7 +10,7 @@ 
SRC_URI="https://download.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2;
 LICENSE="LGPL-2.1"
 # Sublot == libdvbpsi.so major
 SLOT="0/10"
-KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~loong ppc ppc64 ~riscv sparc x86"
 IUSE="doc static-libs"
 
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-text/editorconfig-core-c/

2022-06-27 Thread WANG Xuerui
commit: d4dd2056b64f524f2870d32a80f889fd6c91e085
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:41 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4dd2056

app-text/editorconfig-core-c: keyword 0.12.4 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 app-text/editorconfig-core-c/editorconfig-core-c-0.12.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/editorconfig-core-c/editorconfig-core-c-0.12.4.ebuild 
b/app-text/editorconfig-core-c/editorconfig-core-c-0.12.4.ebuild
index 2b2c11d556d4..a3246a626c2d 100644
--- a/app-text/editorconfig-core-c/editorconfig-core-c-0.12.4.ebuild
+++ b/app-text/editorconfig-core-c/editorconfig-core-c-0.12.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/editorconfig/${PN}/archive/v${PV}.tar.gz -> ${P}.tar
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
 IUSE="cli doc"
 
 BDEPEND="doc? ( app-doc/doxygen )"



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

2022-06-27 Thread WANG Xuerui
commit: a04e82b99b5bec68188fd50228d0617b4a27cf3c
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:28 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a04e82b9

dev-libs/xapian: keyword 1.4.19 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

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

diff --git a/dev-libs/xapian/xapian-1.4.19.ebuild 
b/dev-libs/xapian/xapian-1.4.19.ebuild
index 7e80dfe00f87..31a1758add25 100644
--- a/dev-libs/xapian/xapian-1.4.19.ebuild
+++ b/dev-libs/xapian/xapian-1.4.19.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0/30" # ABI version of libxapian.so
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~x64-macos ~x64-solaris"
 IUSE="doc static-libs cpu_flags_x86_sse cpu_flags_x86_sse2 +inmemory +remote"
 
 DEPEND="sys-apps/util-linux[${MULTILIB_USEDEP}]



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

2022-06-27 Thread WANG Xuerui
commit: bc6235eddbeaca8d959ed7b2049c1ec9ebdb6a92
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:25 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc6235ed

dev-libs/crypto++: keyword 8.6.0 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

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

diff --git a/dev-libs/crypto++/crypto++-8.6.0.ebuild 
b/dev-libs/crypto++/crypto++-8.6.0.ebuild
index 23fa80f92eba..fe51dc2a3497 100644
--- a/dev-libs/crypto++/crypto++-8.6.0.ebuild
+++ b/dev-libs/crypto++/crypto++-8.6.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -17,7 +17,7 @@ LICENSE="Boost-1.0"
 # subslot is so version (was broken in 8.3.0, check on bumps!)
 # Seems to be broken in 8.6 again too
 SLOT="0/8.6"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ppc ppc64 ~riscv sparc x86 ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~loong ppc ppc64 ~riscv sparc x86 
~x64-macos"
 IUSE="+asm static-libs"
 
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2022-06-27 Thread WANG Xuerui
commit: 689bc414a57cf56e84560537c2ab51e54fe73e19
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:35 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=689bc414

app-misc/fdupes: keyword 2.1.2 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 app-misc/fdupes/fdupes-2.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.1.2.ebuild 
b/app-misc/fdupes/fdupes-2.1.2.ebuild
index 8524e37a9eef..e21038f7eeb8 100644
--- a/app-misc/fdupes/fdupes-2.1.2.ebuild
+++ b/app-misc/fdupes/fdupes-2.1.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="+ncurses"
 
 RDEPEND="



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

2022-06-27 Thread WANG Xuerui
commit: 9c86e74124ea7222cc35f4fcef7e4f1b9606f21f
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:26 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c86e741

dev-libs/pkcs11-helper: keyword 1.29.0 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 dev-libs/pkcs11-helper/pkcs11-helper-1.29.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/pkcs11-helper/pkcs11-helper-1.29.0.ebuild 
b/dev-libs/pkcs11-helper/pkcs11-helper-1.29.0.ebuild
index c8b02fd6835d..ee7003924d9f 100644
--- a/dev-libs/pkcs11-helper/pkcs11-helper-1.29.0.ebuild
+++ b/dev-libs/pkcs11-helper/pkcs11-helper-1.29.0.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/OpenSC/${PN}/releases/download/${P}/${P}.tar.bz2;
 
 LICENSE="|| ( BSD GPL-2 )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
 IUSE="doc gnutls nss"
 
 RDEPEND=">=dev-libs/openssl-0.9.7:=



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

2022-06-27 Thread Michał Górny
commit: 9f9db757fe624c74ac9e452c9ea98002cfebc4dc
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 03:57:08 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 04:03:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f9db757

dev-python/libcloud: Remove old

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

 dev-python/libcloud/Manifest  |  1 -
 dev-python/libcloud/libcloud-3.5.1.ebuild | 61 ---
 2 files changed, 62 deletions(-)

diff --git a/dev-python/libcloud/Manifest b/dev-python/libcloud/Manifest
index 549a492c2891..34633d5034c7 100644
--- a/dev-python/libcloud/Manifest
+++ b/dev-python/libcloud/Manifest
@@ -1,2 +1 @@
-DIST apache-libcloud-3.5.1.tar.bz2 1859270 BLAKE2B 
c2e49a79ac4feccb5285d9bf55a4a6e8486d32968216b68e8c8f5b049ef5fa8caae853b4e4cc31ec2c323aedf3de275ab79758b1a055d7f20bbde994c58ba882
 SHA512 
22d6facf344687bfcfd32e53ede12227882f55bf54ffcf75d5584652c4cd257905c56e359d9c6b050635faa2305c344a6dfdc17007eb41143ccff772bd31d91e
 DIST apache-libcloud-3.6.0.tar.bz2 1873596 BLAKE2B 
7ca67d0a84d1af9a216882efb35ff48f4a795eacf34132b78429e0158b1093b3eec316541a52673e61edfc5bfcb326052ee874fe59b1e4a65b407bdaccf38774
 SHA512 
3a4b4ecf35194e70b6cb70f0619238e1c0140891c08438d4b1ef308fffc9dfb973a5c1534b6ee7864797925b7f7be77eb79a2c4d621627d8042da3927b3f2ff4

diff --git a/dev-python/libcloud/libcloud-3.5.1.ebuild 
b/dev-python/libcloud/libcloud-3.5.1.ebuild
deleted file mode 100644
index 914b340c5756..
--- a/dev-python/libcloud/libcloud-3.5.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-PYTHON_REQ_USE="ssl(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Unified Interface to the Cloud - python support libs"
-HOMEPAGE="https://libcloud.apache.org/;
-SRC_URI="mirror://apache/${PN}/apache-${P}.tar.bz2"
-S="${WORKDIR}/apache-${P}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-IUSE="examples"
-
-RDEPEND="
-   dev-python/pyopenssl[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.5.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   >=dev-python/cryptography-2.6.1[${PYTHON_USEDEP}]
-   dev-python/lockfile[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/requests-mock[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # Needs network access
-   
libcloud/test/compute/test_ovh.py::OvhTests::test_list_nodes_invalid_region
-   
libcloud/test/test_connection.py::BaseConnectionClassTestCase::test_connection_timeout_raised
-   
libcloud/test/test_connection.py::ConnectionClassTestCase::test_retry_on_all_default_retry_exception_classes
-   # TODO
-   
libcloud/test/compute/test_ssh_client.py::ParamikoSSHClientTests::test_key_file_non_pem_format_error
-)
-
-src_prepare() {
-   if use examples; then
-   mkdir examples || die
-   mv example_*.py examples || die
-   fi
-
-   # needed for tests
-   cp libcloud/test/secrets.py-dist libcloud/test/secrets.py || die
-
-   distutils-r1_src_prepare
-}
-
-src_install() {
-   use examples && dodoc -r examples
-   distutils-r1_src_install
-}



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

2022-06-27 Thread Michał Górny
commit: 52dea0a457ec8a275fbe16f7ae71af292ec2dcc2
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 03:56:30 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 04:03:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52dea0a4

dev-python/python-gnupg: Remove old

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

 dev-python/python-gnupg/Manifest  |  1 -
 dev-python/python-gnupg/python-gnupg-0.4.8.ebuild | 29 ---
 2 files changed, 30 deletions(-)

diff --git a/dev-python/python-gnupg/Manifest b/dev-python/python-gnupg/Manifest
index 9b25d1ec77a3..9d8e932b2c51 100644
--- a/dev-python/python-gnupg/Manifest
+++ b/dev-python/python-gnupg/Manifest
@@ -1,3 +1,2 @@
-DIST python-gnupg-0.4.8.tar.gz 58696 BLAKE2B 
d9ab2fe3ea933a22e731fd70e153e60cc3b158f15e3f8537440c355037092ff7545d29e8d2eab88efb38dcc6e3776c31f537a9c06467b473e93cbc9f0e2ef189
 SHA512 
fcaa121a356595328a26e8184280f859dfc2771b9692dcf28db2d9b0fdddc77d4c1238665a8e419758ec17320616e7741aacd3638e37d449b86febeef1f6
 DIST python-gnupg-0.4.9.tar.gz 59982 BLAKE2B 
09ca33bf181239d2ed39930e2b017f30e5c3ff158ccf937a1a1e72366cd144bc7327c8a57517840f976b10fbf542f8181721fa6e203cf0b67766b3fea9ca2d16
 SHA512 
e59685bea966addbfacfd5516601c518c9ccd7a828250584a00dca5c2062b30bd859ae73b467bd16db60abd800bd0b66f68177e56d3c48654416a294e72f3e8f
 DIST python-gnupg-0.4.9.tar.gz.asc 801 BLAKE2B 
d95b5e5bb5613adfb5705851ba1f1ff4a9331bfedb452d3f15e7838aaaf66b9b161664e1dc7f16acc4490eb2647dcf6ed1d1cf9b5272bd9523527b7329917cfb
 SHA512 
ca91795ae7c43e825f35bccbbb3464e6f9e60742f28d1e215e97680c4de454b07375d66593553ace53d6fc9ceb423253a34f3ea6a5bc1b27e7da9b0ba3c385f2

diff --git a/dev-python/python-gnupg/python-gnupg-0.4.8.ebuild 
b/dev-python/python-gnupg/python-gnupg-0.4.8.ebuild
deleted file mode 100644
index d82eb5d2f98d..
--- a/dev-python/python-gnupg/python-gnupg-0.4.8.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( pypy3 python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="A Python wrapper for GnuPG"
-HOMEPAGE="
-   https://bitbucket.org/vinay.sajip/python-gnupg
-   https://pypi.org/project/python-gnupg/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86"
-LICENSE="BSD"
-SLOT="0"
-
-RDEPEND="app-crypt/gnupg"
-DEPEND="${RDEPEND}"
-
-distutils_enable_tests unittest
-
-python_test() {
-   # NO_EXTERNAL_TESTS must be enabled,
-   # to disable all tests, which need internet access.
-   NO_EXTERNAL_TESTS=1 eunittest
-}



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

2022-06-27 Thread Michał Górny
commit: 144330c02a29b854eae67f094ca283e411cde6ff
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 03:54:43 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 04:03:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=144330c0

dev-python/testscenarios: Mark ALLARCHES

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

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

diff --git a/dev-python/testscenarios/metadata.xml 
b/dev-python/testscenarios/metadata.xml
index c9c0112cc913..97c52ec91adf 100644
--- a/dev-python/testscenarios/metadata.xml
+++ b/dev-python/testscenarios/metadata.xml
@@ -20,6 +20,7 @@
dependency injection (provide tests with dependencies externally to the
test code itself, allowing easy testing in different situations).

+   

testscenarios
testscenarios



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

2022-06-27 Thread Michał Górny
commit: f487d26fbec88157d48b648e7412d1ed5c2be91a
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 03:56:53 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 04:03:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f487d26f

dev-python/python-daemon: Remove old

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

 .../python-daemon/python-daemon-2.3.0-r1.ebuild| 43 --
 1 file changed, 43 deletions(-)

diff --git a/dev-python/python-daemon/python-daemon-2.3.0-r1.ebuild 
b/dev-python/python-daemon/python-daemon-2.3.0-r1.ebuild
deleted file mode 100644
index 6cb93f1a8363..
--- a/dev-python/python-daemon/python-daemon-2.3.0-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Library to implement a well-behaved Unix daemon process"
-HOMEPAGE="https://pypi.org/project/python-daemon/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="PSF-2"
-SLOT="0"
-KEYWORDS="amd64 arm x86"
-
-RDEPEND="
-   dev-python/lockfile[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
-   dev-python/docutils[${PYTHON_USEDEP}]
-   dev-python/twine[${PYTHON_USEDEP}]
-   test? (
-   dev-python/testtools[${PYTHON_USEDEP}]
-   dev-python/testscenarios[${PYTHON_USEDEP}]
-   )
-"
-
-PATCHES=(
-   "${FILESDIR}/${P}-fix-py3.10.patch"
-)
-
-distutils_enable_tests unittest
-
-src_prepare() {
-   # fix for >=testtools-2.5.0
-   sed -e 's/testtools.helpers.safe_hasattr/hasattr/' \
-   -i test/test_metadata.py || die
-   distutils-r1_src_prepare
-}



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

2022-06-27 Thread Michał Górny
commit: 40b86c3e7b2fbe48d22d9c9c53ceffe4f0fc8b01
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 03:57:49 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 04:03:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40b86c3e

dev-python/beniget: Mark ALLARCHES

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

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

diff --git a/dev-python/beniget/metadata.xml b/dev-python/beniget/metadata.xml
index 5527672e5ea1..60851ae7fdbf 100644
--- a/dev-python/beniget/metadata.xml
+++ b/dev-python/beniget/metadata.xml
@@ -4,6 +4,7 @@

pyt...@gentoo.org

+   

serge-sans-paille/beniget
beniget



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

2022-06-27 Thread Michał Górny
commit: 3d163bb944afaab5b7552867d17529f726fb49a3
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 03:26:17 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 04:03:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d163bb9

dev-python/hypothesis: Bump to 6.48.1

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

 dev-python/hypothesis/Manifest |  1 +
 dev-python/hypothesis/hypothesis-6.48.1.ebuild | 76 ++
 2 files changed, 77 insertions(+)

diff --git a/dev-python/hypothesis/Manifest b/dev-python/hypothesis/Manifest
index e2295de1bbeb..b459e2f0ac91 100644
--- a/dev-python/hypothesis/Manifest
+++ b/dev-python/hypothesis/Manifest
@@ -1,4 +1,5 @@
 DIST hypothesis-6.48.0.gh.tar.gz 9315489 BLAKE2B 
e9ddd05c867a83dd8677762178e9e1b9db794a4508d638e90b231d34562e73fc52dd12560b3d43735d06917935337e3a54059d58afe2b8611d4dbf08248b1ff0
 SHA512 
d6d6155c8a8a4b92772b5e2a398024372201c1228dc23aa8e87d211e3c9f85abbf39bcd3f47c9d165c396e3f4246821f7d51cfe9849cba21c1456f9e02ebe3ca
+DIST hypothesis-6.48.1.gh.tar.gz 9316595 BLAKE2B 
c20d575e9cfaf8d2b26df2861adb1dc1dfbb5a07f9c6cc5281984fc3f83c74b32f0a5ee9cf4fd0ec356f876f0dd1f4723cfb2ee29a7a99062139e45ea2bd5910
 SHA512 
bb3e5c961466841265aed355f7e0bab2175c8e7c634e2160736aef37a1d917057922023c4fb9cc4e224e453db276091bcf3599693109ecc8a008ce8d6d7344de
 DIST hypothesis-hypothesis-python-6.46.11.gh.tar.gz 9312248 BLAKE2B 
78b5ca5bd38bd62d2fe50ab929df075e253c059aed329d6b52051fb01449f8de84ae340ba42a4af94ef592411139a45d34aad232fe4bb2d8412165730bbeca01
 SHA512 
6fdd54f28d275eb65a4f6e6919437d503eba6254c25e22298c34ac67e6de03cd99a5178b1a475b1da7f7afeed8406e89c20b4818436143f44d26f0d94796
 DIST hypothesis-hypothesis-python-6.47.1.gh.tar.gz 9314265 BLAKE2B 
c2ad0120ab2cbd565f73d472f0a5a87e4b51ff9cf7c08d75dbc54223ad9fe60ed475577ca7dced64ab02d4cc1ee5d30525677c4acfe720af8251f804e72a3b00
 SHA512 
1aea9f949242d3a273584cd92e1829654d6ce385efcd631b412374f1f9252d3b759b8e216aaa9a49e26e0c3b12673348eac79d0189881f6a811f11daf14b0873
 DIST hypothesis-hypothesis-python-6.47.2.gh.tar.gz 9314053 BLAKE2B 
df607e7d81a280d916cc3946c71f6b2a6c7004263069e83d2647222730d11276b6c246fedbb07c5a4f3c526df38d6ea5c7999bdb416f0c86b0877d0231418c73
 SHA512 
b58835fac221353ea9beff227dda81f7776e2b50f6a765e536c83bea129d5c5a862551423d9df5abbc0cf294b358c6c537c62add69b3d5a1f38b22e179d2f83c

diff --git a/dev-python/hypothesis/hypothesis-6.48.1.ebuild 
b/dev-python/hypothesis/hypothesis-6.48.1.ebuild
new file mode 100644
index ..317738907bde
--- /dev/null
+++ b/dev-python/hypothesis/hypothesis-6.48.1.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+CLI_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( "${CLI_COMPAT[@]}" python3_11 pypy3 )
+PYTHON_REQ_USE="threads(+),sqlite"
+
+inherit distutils-r1 multiprocessing optfeature
+
+TAG=hypothesis-python-${PV}
+MY_P=hypothesis-${TAG}
+DESCRIPTION="A library for property based testing"
+HOMEPAGE="
+   https://github.com/HypothesisWorks/hypothesis/
+   https://pypi.org/project/hypothesis/
+"
+SRC_URI="
+   https://github.com/HypothesisWorks/hypothesis/archive/${TAG}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+S="${WORKDIR}/${MY_P}/hypothesis-python"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~m68k ~ppc ~ppc64 ~riscv ~sparc ~x86"
+IUSE="cli"
+
+RDEPEND="
+   >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
+   >=dev-python/sortedcontainers-2.1.0[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   >=dev-python/exceptiongroup-1.0.0_rc8[${PYTHON_USEDEP}]
+   ' 3.8 3.9 3.10)
+   cli? (
+   $(python_gen_cond_dep '
+   dev-python/black[${PYTHON_USEDEP}]
+   dev-python/click[${PYTHON_USEDEP}]
+   ' "${CLI_COMPAT[@]}")
+   )
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pexpect[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   # subtests are broken by warnings from random plugins
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   local -x 
PYTEST_PLUGINS=xdist.plugin,pytest_forked,_hypothesis_pytestplugin
+
+   epytest tests/cover tests/pytest tests/quality -n "$(makeopts_jobs)"
+}
+
+python_install() {
+   distutils-r1_python_install
+   if ! use cli || ! has "${EPYTHON}" "${CLI_COMPAT[@]/_/.}"; then
+   rm -r "${ED}/usr/bin" "${D}$(python_get_scriptdir)" || die
+   fi
+}
+
+pkg_postinst() {
+   optfeature "datetime support" dev-python/pytz
+   optfeature "dateutil support" dev-python/python-dateutil
+   optfeature "numpy support" dev-python/numpy
+   optfeature "django support" dev-python/django dev-python/pytz
+   optfeature "pandas 

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

2022-06-27 Thread Michał Górny
commit: 7643aea7c83dfc12adcf2669bdd525be83d64270
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 03:21:34 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 04:03:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7643aea7

dev-python/suds-community: Bump to 1.1.2

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

 dev-python/suds-community/Manifest |  1 +
 .../suds-community/suds-community-1.1.2.ebuild | 31 ++
 2 files changed, 32 insertions(+)

diff --git a/dev-python/suds-community/Manifest 
b/dev-python/suds-community/Manifest
index 23a7eb0658c5..e21933e8f839 100644
--- a/dev-python/suds-community/Manifest
+++ b/dev-python/suds-community/Manifest
@@ -1 +1,2 @@
 DIST suds-community-1.1.1.tar.gz 284934 BLAKE2B 
9df1a5f6b4dd2ca060c639147a090cef6a194f275706e03a3fdafa46c4d18b890f7c94249db8db6202e95abea71948e0c42fe42f14f659ca14bb0aca11b4b5f5
 SHA512 
9b343d704b2db123ff44685fb03da8f6912cefb32d38e9b79f9f84aeebff32ba26936a0f70a6121628c6f2c5388e94d380f08ed546f55fbf84fdc8e4fdbd3d0a
+DIST suds-community-1.1.2.tar.gz 285409 BLAKE2B 
6cf047bb6fa6aed147fa519fee4300f52195c94a409aaa769feffaaf4d43552a566efb0162e440092c3dcb8ec21cf441325db449e5417b81a5f859133a078b83
 SHA512 
9f26ebbf36fcbd915281f3c3afd4ea776ca409ede4ba9e487b746ef4e527171ee2fdb44075100d52b5bba0658fafec817eea2cbf64b8d2851bdc974aee430d57

diff --git a/dev-python/suds-community/suds-community-1.1.2.ebuild 
b/dev-python/suds-community/suds-community-1.1.2.ebuild
new file mode 100644
index ..a41f925a470f
--- /dev/null
+++ b/dev-python/suds-community/suds-community-1.1.2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_REQ_USE="xml(+)"
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Lightweight SOAP client"
+HOMEPAGE="
+   https://github.com/suds-community/suds/
+   https://pypi.org/project/suds-community/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+
+DOCS=( README.md notes/. )
+
+BDEPEND="
+   test? (
+   dev-python/six[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest



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

2022-06-27 Thread Michał Górny
commit: ca9d11d10f350d3f132677767e3f14de8a2bee34
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 03:27:26 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 04:03:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca9d11d1

dev-python/setuptools_scm_git_archive: Bump to 1.3

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

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

diff --git a/dev-python/setuptools_scm_git_archive/Manifest 
b/dev-python/setuptools_scm_git_archive/Manifest
index 9775354ae235..dd9bd3c878cd 100644
--- a/dev-python/setuptools_scm_git_archive/Manifest
+++ b/dev-python/setuptools_scm_git_archive/Manifest
@@ -1,2 +1,3 @@
 DIST setuptools_scm_git_archive-1.1.tar.gz 2584 BLAKE2B 
7c7569a92300be966b5447b1ab6c30a982c837efdb7a125173f6014420d78cf28e0d8cb0f04c4349ce364219e1567bcbc2e13bd85cb7627d3bdbae9c7974385b
 SHA512 
73783d60d33782fb18012e64685db6333a2dda1be41ce75e0cd74a81585d8ebb7c85f23371056a42974c93b2d4a068945cf2a2219b0ee2a21f063dad8809
 DIST setuptools_scm_git_archive-1.2.gh.tar.gz 2648 BLAKE2B 
d2a6629fa1eb8c413def6c7cb192afb47299cd1ffce3692951fb6f90e9b6b4d0f4f2286486a5ae7e550c4659ed3ef7289746ec48be2bfe43c6c3d80143cc4e46
 SHA512 
980a7463dd7a53f71c8f9f1fde0f14927a6063bfae386b85d42a2909e05de42339a3770d5cf0c22981f17bbdec52febf7041fb54628f2d8321e46401ef0beccb
+DIST setuptools_scm_git_archive-1.3.gh.tar.gz 2556 BLAKE2B 
338c02b9b377a165b4bcd29790e04b9e3215f2f892a681888760e5bdd2bc2a5c4970646fff42d652a6dde8557602af4dbde0decf5ac0f0605cbb55fc1f3ec085
 SHA512 
28146bef914f310590d29a1c3c2a97f1fe33d19d28eb7477983b6164d99d2e40e02afe541e5ef3ca8b7ff3297cc002d35da1f971d5d2183f2c5634c10b098476

diff --git 
a/dev-python/setuptools_scm_git_archive/setuptools_scm_git_archive-1.3.ebuild 
b/dev-python/setuptools_scm_git_archive/setuptools_scm_git_archive-1.3.ebuild
new file mode 100644
index ..394a9500b20f
--- /dev/null
+++ 
b/dev-python/setuptools_scm_git_archive/setuptools_scm_git_archive-1.3.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="A setuptools_scm plugin for git archives"
+HOMEPAGE="
+   https://github.com/Changaco/setuptools_scm_git_archive/
+   https://pypi.org/project/setuptools-scm-git-archive/
+"
+SRC_URI="
+   
https://github.com/Changaco/setuptools_scm_git_archive/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   ${RDEPEND}
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION="${PV}"
+
+python_test() {
+   epytest tests.py
+}



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

2022-06-27 Thread Michał Górny
commit: ca84a704bdf3d569e2c7e92cf1bf51881bbc127c
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 03:25:44 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 04:03:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca84a704

dev-python/geventhttpclient: Bump to 1.5.5

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

 dev-python/geventhttpclient/Manifest   |  1 +
 .../geventhttpclient/geventhttpclient-1.5.5.ebuild | 52 ++
 2 files changed, 53 insertions(+)

diff --git a/dev-python/geventhttpclient/Manifest 
b/dev-python/geventhttpclient/Manifest
index 471a605c3854..7635b374a973 100644
--- a/dev-python/geventhttpclient/Manifest
+++ b/dev-python/geventhttpclient/Manifest
@@ -1,2 +1,3 @@
 DIST geventhttpclient-1.5.3.tar.gz 58447 BLAKE2B 
a1cf529c6d40ee81ebe17cb066f2d837cf3d5ce2511bb735c1a63503b612c98c17c91f08de99d604c9ff6ebfa7e6502c338e7fbbc86de954ae7e559966aa8006
 SHA512 
9a0ed907f73f7f5ff8675502ef6fc82bff7b543d0a2d22e1eca5aba3592675a87fe09c48981f496b7f63a660e7eab5f68801ae74da8c33ac9d9bf55a0425eed1
 DIST geventhttpclient-1.5.4.tar.gz 59551 BLAKE2B 
d1bda5315a92afeb408f33043c8ccf5911d6519dbe50266688f0b123fd92a95f1cb9cea449676117ea051af1400c656fe47d241b6e4e03803dc017806b5e0be4
 SHA512 
10d9ace4a555a5c39d8b737d96484041f9e704df41b8a3cca3b05b3c9ccb30d0490d154fa47a45edcad762a2e0807ca89425ed484275ee1b3098f0094fd6d166
+DIST geventhttpclient-1.5.5.tar.gz 59566 BLAKE2B 
f43ffe9880eefe77f19adc00bcef612df057f96e256f50ca4081658d7e0d01deca2473da3d2055dbc1cb98fc4f7f0a7442809fdcab635c43042792e2601efdb9
 SHA512 
89efe008099935ac8715ddf09c13e70c1a3552da50c495522b2a62e1ff51a407808e6b797f8fd3b0863a3a59e5b03e604bda8b1027c0326da75cb1fddb5d0fa3

diff --git a/dev-python/geventhttpclient/geventhttpclient-1.5.5.ebuild 
b/dev-python/geventhttpclient/geventhttpclient-1.5.5.ebuild
new file mode 100644
index ..d4807ee44f57
--- /dev/null
+++ b/dev-python/geventhttpclient/geventhttpclient-1.5.5.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="A high performance, concurrent HTTP client library for Python 
using gevent"
+HOMEPAGE="
+   https://github.com/geventhttpclient/geventhttpclient/
+   https://pypi.org/project/geventhttpclient/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+
+RDEPEND="
+   app-arch/brotli[python,${PYTHON_USEDEP}]
+   dev-python/certifi[${PYTHON_USEDEP}]
+   dev-python/gevent[events(+),${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # Avoid ModuleNotFoundError for tests we skip later
+   sed -i '/^import dpkt.ssl/d' src/geventhttpclient/tests/test_ssl.py || 
die
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # These SNI tests require dpkt which is not in the tree
+   
src/geventhttpclient/tests/test_ssl.py::test_implicit_sni_from_host_in_ssl
+   
src/geventhttpclient/tests/test_ssl.py::test_implicit_sni_from_header_in_ssl
+   src/geventhttpclient/tests/test_ssl.py::test_explicit_sni_in_ssl
+   )
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   # Skip tests which require internet access
+   epytest -m "not online"
+}



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

2022-06-27 Thread Michał Górny
commit: 130897eebb8e069653aa133755db10bd859952c4
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 03:55:36 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 04:03:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=130897ee

dev-python/testresources: Mark ALLARCHES

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

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

diff --git a/dev-python/testresources/metadata.xml 
b/dev-python/testresources/metadata.xml
index cf54c26c3d00..db9726aac1d4 100644
--- a/dev-python/testresources/metadata.xml
+++ b/dev-python/testresources/metadata.xml
@@ -19,6 +19,7 @@
for example sample working trees for VCS systems, reference databases 
for
enterprise applications, or web servers ... let imagination run wild.

+   

testresources
testresources



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

2022-06-27 Thread Michał Górny
commit: eee9d58b66a41de8d5f114368394ad9fe8eb2978
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 03:08:30 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 04:03:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eee9d58b

dev-python/boto3: Bump to 1.24.18

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

 dev-python/boto3/Manifest |  1 +
 dev-python/boto3/boto3-1.24.18.ebuild | 68 +++
 2 files changed, 69 insertions(+)

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index c2e145ebe744..8e07f7dbaabf 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -4,4 +4,5 @@ DIST boto3-1.24.14.gh.tar.gz 510393 BLAKE2B 
c5a3f28abdeb3deaf33620ab7278b5d14dce
 DIST boto3-1.24.15.gh.tar.gz 510710 BLAKE2B 
9640c037d6bc95225b9dbb9fc8b33d65a4253057b9a534c1dc2f33a5040796b25fe069a1842aee61851b0b5a75c15770564c5348b8937cc38cc8b898a5d01106
 SHA512 
07b8758afa9454d435a8935e90e7bfbe91ba266fecfd8413f81cb000c86101a8ad14cd9dd7e5ba620dd807da9501409896c36b532d243d68f26b4d0aa8574fbb
 DIST boto3-1.24.16.gh.tar.gz 511182 BLAKE2B 
00180c2cee9499efb3093c517f776536a85972014c622ec87d327c0e1a628b1440a85ddb239431d7c647a459f8c55422136f61254cd192cd3ca8f68eb03270d9
 SHA512 
cc2d179ba3975fdfc1127565d352077529159cd97d120831629650af881600d022f8a55f4ccfb3c732be5814b58739178063042ca7a0e26f0163f47ba8dddb36
 DIST boto3-1.24.17.gh.tar.gz 511281 BLAKE2B 
577efc0ebfb39957e55bcaf7aa678cdf072eed885ab1055b15fc8ca2295fedd6d56fd2fb919913beedcdd335ff26e452bc5434283c9ca9d8f0135080e2aa1312
 SHA512 
a843146951eb2a5ad7dd31159d833806ae403014abf3e9a617f6457e3ecec1a0dc4c6ce6a87079c9112513cbd6a2ccd26542e5736eeea6c5723c7e39c660befa
+DIST boto3-1.24.18.gh.tar.gz 511407 BLAKE2B 
a723c58db4cf11a982aa5b779cd27870c96fc63d08dc733f5c7c70bcd027c4ec542c5f988bdab6dd35d9c72bd985b21473b6bc58604ef4ae84b7993de42e754c
 SHA512 
369200635e7c52761ea13f4755e8c105dca92259922e947d777b1400f69f8ed443ae6dae0df4f8c46cdf5493819be696ab4b200216d86285ac68ccc817ecd13e
 DIST boto3-1.24.7.gh.tar.gz 508670 BLAKE2B 
d526f6a4dc4c6126c61ca7c9074b4341c742f84a6e95b38cd8a450fb74df379cee44513e1be6bc7cd0c8f728598d0ecfc06240120a8da71f75f86371498f5233
 SHA512 
4d57e38c18138b950f93a234132ac1d31c9a29ad00ca5e1298517d6b16ff2849802ce6cfeb8de390c2eb25086043d45e0276a7a563707595649ca1905367be52

diff --git a/dev-python/boto3/boto3-1.24.18.ebuild 
b/dev-python/boto3/boto3-1.24.18.ebuild
new file mode 100644
index ..6edcc751d54b
--- /dev/null
+++ b/dev-python/boto3/boto3-1.24.18.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1 multiprocessing
+
+DESCRIPTION="The AWS SDK for Python"
+HOMEPAGE="
+   https://github.com/boto/boto3/
+   https://pypi.org/project/boto3/
+"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/boto3;
+   inherit git-r3
+   BOTOCORE_PV=${PV}
+else
+   SRC_URI="
+   https://github.com/boto/boto3/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux"
+
+   # botocore is x.(y+3).z
+   BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)"
+fi
+
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.6.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # don't lock versions to narrow ranges
+   sed -e '/botocore/ d' \
+   -e '/jmespath/ d' \
+   -e '/s3transfer/ d' \
+   -i setup.py || die
+
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   epytest tests/{functional,unit} -n "$(makeopts_jobs)"
+}



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

2022-06-27 Thread Michał Górny
commit: 3571ebff43f075cae70ab0d939e130dcaadd0e8f
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 03:31:11 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 04:03:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3571ebff

dev-python/bleach: Bump to 5.0.1

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

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

diff --git a/dev-python/bleach/Manifest b/dev-python/bleach/Manifest
index ef4867956ee5..0cc0dbf6d9c3 100644
--- a/dev-python/bleach/Manifest
+++ b/dev-python/bleach/Manifest
@@ -1 +1,2 @@
 DIST bleach-5.0.0.tar.gz 198789 BLAKE2B 
0b2847e9342be1854a08679230b3ea0fcb1a514eaa6c11f344057e59310b6d769e2bee91272295a0f60fa0ed1c2e4503340276d99794d260b6a63e2c4ea76703
 SHA512 
5b8e0c94a7bd8270581719928ec869c5c3c91900be0a293adfb342acfc55df7e63211e95786e6a39b3661b3852e91a8b37ff805387fb3e6a286e8a5dce8e3655
+DIST bleach-5.0.1.tar.gz 199642 BLAKE2B 
8d06dd38e89b91bf48f3481b5337b8d9700d8cc88faf3a260898b2b8f15ecf5c5160f96bff2c5ce02f361b773b0ce9a51322d9836dcc99b7878921846e8da182
 SHA512 
6c8e80eaf6db6f0e6d9066f3443192f44c489e079945b6d11b11e7eb270ea865011019e05d43c7896262dc11ca168e697630d9da8dca9f5bb48f0e2161fda6c8

diff --git a/dev-python/bleach/bleach-5.0.1.ebuild 
b/dev-python/bleach/bleach-5.0.1.ebuild
new file mode 100644
index ..587c260240bf
--- /dev/null
+++ b/dev-python/bleach/bleach-5.0.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="An easy whitelist-based HTML-sanitizing tool"
+HOMEPAGE="
+   https://github.com/mozilla/bleach/
+   https://pypi.org/project/bleach/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~x64-macos"
+
+RDEPEND="
+   dev-python/packaging[${PYTHON_USEDEP}]
+   >=dev-python/html5lib-1.0.1-r1[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+PATCHES=(
+   "${FILESDIR}"/bleach-4.1.0-py39.patch
+)
+
+src_prepare() {
+   # unbundle unpatched broken html5lib
+   rm -r bleach/_vendor || die
+   sed -i -e 's:bleach\._vendor\.parse:urllib.parse:' \
+   bleach/parse_shim.py || die
+   sed -i -e 's:bleach\._vendor\.::' \
+   bleach/html5lib_shim.py \
+   bleach/sanitizer.py \
+   tests/test_clean.py || die
+   # indirect html5lib deps
+   sed -i -e '/six/d' -e '/webencodings/d' setup.py || die
+
+   distutils-r1_src_prepare
+}



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

2022-06-27 Thread Michał Górny
commit: a2899170dcebd28ceb1f1a5a1586035e14c4721c
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 03:29:31 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 04:03:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2899170

dev-python/humanize: Bump to 4.2.2

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

 dev-python/humanize/Manifest  |  1 +
 dev-python/humanize/humanize-4.2.2.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/dev-python/humanize/Manifest b/dev-python/humanize/Manifest
index e98f4c69b733..8ac3410f15bd 100644
--- a/dev-python/humanize/Manifest
+++ b/dev-python/humanize/Manifest
@@ -1,3 +1,4 @@
 DIST humanize-4.1.0.tar.gz 73777 BLAKE2B 
fcbde90977ae9fcd706e423767b1d5617fd118ae8903283f4b307ee05a5adffb3bb68305e5d758b1860d37a37d22766127d84479d331a7ed05c83cd53e5b0829
 SHA512 
7e2d92ed44e773bd8a53d4b151e80949fda057d8f4a52003826efa9ec2a569360b76663d44c3d1239fd2ecdd5365357d3fac72a395d1c10d5207b4a27f248878
 DIST humanize-4.2.0.tar.gz 75169 BLAKE2B 
dc590d296362be20f607282686e18df73e1bb07aa37459431d7ec1f74ff6611497811da974b7eb62cd791536268018460d9171eb65ed958af6f12f668b3ae2a8
 SHA512 
ac0a067320d4dc236d97a69a3019cf01ce87efe2cb98e758f516f90986352fe87d03bfa497d66a2a75e61152a35fd8fac827bafd926d6bd84c8f0d2366e5beb7
 DIST humanize-4.2.1.tar.gz 75327 BLAKE2B 
1c36002a2a5d103bc1dae444d9d8a70c3983c778674d5c6aa3a76aa82dc9bd3bf39faefd1c3dcf8d0726b151dfb4f8d8247bb88fdc9af765f703edfb08226b8a
 SHA512 
c84f797b01bb8bcc2e036496f0b727f9c21fe88148a6d90f73ddacd25f73059a46bbc60ef8c3bb81554db0c75f1ab9aa1e551d8473aecb40761e51b59580092a
+DIST humanize-4.2.2.tar.gz 75336 BLAKE2B 
a95e9fe8536c9a2ecf5c4c40797810ac5825e99504386a8d55f8da0f7c16d4ac7f7aa36d8460e8357d05f34fd5fb6c30b15870b3ff792df7ba2d58080053ab3f
 SHA512 
fa6606975629ef56a72528a543a3114acf17d65d684e868268fb9298f564aac8a1049b9318a4717c8b21f689570f1083fc32bc9eb17bc018c9c2e8e0ee06ec4f

diff --git a/dev-python/humanize/humanize-4.2.2.ebuild 
b/dev-python/humanize/humanize-4.2.2.ebuild
new file mode 100644
index ..b471878fc311
--- /dev/null
+++ b/dev-python/humanize/humanize-4.2.2.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Common humanization utilities"
+HOMEPAGE="
+   https://github.com/python-humanize/humanize/
+   https://pypi.org/project/humanize/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? (
+   dev-python/freezegun[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest



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

2022-06-27 Thread Michał Górny
commit: 81977a81e2b85c43448f808b3da4c99cf93f1d0e
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 03:08:15 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 04:03:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81977a81

dev-python/botocore: Bump to 1.27.18

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

 dev-python/botocore/Manifest|  1 +
 dev-python/botocore/botocore-1.27.18.ebuild | 66 +
 2 files changed, 67 insertions(+)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 8b4b193c6de2..9224a7b1720a 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -4,4 +4,5 @@ DIST botocore-1.27.14.tar.gz 9134503 BLAKE2B 
ca29a33c5363457053f8ac042279726a15d
 DIST botocore-1.27.15.tar.gz 9134585 BLAKE2B 
33fcf026334e0be28b7f20b78e072d4eed85e857438319dfe6a1aefb2aeb287aa7a4d6b5f40cd47b9ca5e904263bd7716e58fe2962a75fa64ffea8da383fd527
 SHA512 
15a65137b131220863fc7fb4c085d83b858a673ee49370bc8d5ce8433f2ee3c99dffd102830da10ed1c4fa4a6f5fdc5f543be4e88646f981409fb855ea100932
 DIST botocore-1.27.16.tar.gz 9138117 BLAKE2B 
ed636cd031445b14f57282326836616dca626c27ff912b5a2014df83c5574264f773d9ab8aae2f01b55bb810d00233f1a4cceb0f746767247b5954bb8739b7be
 SHA512 
c4b1debe648cd3027fe409f4ec095a4b454050ec427e8a11e04bc1f82d452566d2168dd539d5dc687e46e612f3d47e218d99de9510156e19eac477ea3c0259d2
 DIST botocore-1.27.17.tar.gz 9130505 BLAKE2B 
04c6b37f3b42a0f9fb696b5213338b004418a68c754f5027ad447119fb20556dc49bd53f40fd9560ea3f5bdcf2afbe151dba68e901079baec770f9f223b1a894
 SHA512 
b1a145d3c97adfd4df40639da99e1c34087508be189d5818ee7176f20454f2897a6f518a14b4bfbf41cb169a17188bec467337c10d0ad511e223f0c1ff5b64ee
+DIST botocore-1.27.18.tar.gz 9129942 BLAKE2B 
61c06ec3ec8350cb9c43c5716faabe5035b74907fd4a94f9b007ec6e488ffb38a9d75d5b3372fcbbd26cb7f9599ba185cbcf2fb48f7e5900e0028832bef74187
 SHA512 
9eb700af06b1eca88df77ad46a54a73bbd198d36b055ea219c8948557bda7edd0307f48321c416c3128fe2baacc35aaea10f31c57b43511a512c6c7c46b0a6db
 DIST botocore-1.27.7.tar.gz 9102259 BLAKE2B 
094ec463531f1dfd54ff32d0f44ebc39cdc0a6d4c3e19b49a25e25d9d13acdcd26c782c1d4819ea4f1cb8954a858aa6e997411785678700b7ca03cd8844527b5
 SHA512 
d4a1327f4314279548af00fbc6da2f9fc5f25f704da3f6ddfa90773878f28ac9f03556b00fa4c0207ec2e952eb716aa98c1c22abffbd51d82dc55d9e4ceeca5c

diff --git a/dev-python/botocore/botocore-1.27.18.ebuild 
b/dev-python/botocore/botocore-1.27.18.ebuild
new file mode 100644
index ..830c713f6036
--- /dev/null
+++ b/dev-python/botocore/botocore-1.27.18.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1 multiprocessing
+
+DESCRIPTION="Low-level, data-driven core of boto 3"
+HOMEPAGE="
+   https://github.com/boto/botocore/
+   https://pypi.org/project/botocore/
+"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/botocore;
+   inherit git-r3
+else
+   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux"
+fi
+
+RDEPEND="
+   dev-python/six[${PYTHON_USEDEP}]
+   =dev-python/urllib3-1.25.4[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin deps
+   sed -i -e "s:>=.*':':" setup.py || die
+
+   # unbundle deps
+   rm -r botocore/vendored || die
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # rely on bundled six
+   tests/functional/test_six_imports.py::test_no_bare_six_imports
+   tests/functional/test_six_threading.py::test_six_thread_safety
+   )
+
+   epytest tests/{functional,unit} -n "$(makeopts_jobs)"
+}



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

2022-06-27 Thread Michał Górny
commit: aa27f32bf1a934e73f59cfcc14447e03b80bb62a
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 03:24:40 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 04:03:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa27f32b

dev-python/black: Bump to 22.6.0

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

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

diff --git a/dev-python/black/Manifest b/dev-python/black/Manifest
index 1151d6b0ba7c..72e1f49e703b 100644
--- a/dev-python/black/Manifest
+++ b/dev-python/black/Manifest
@@ -1,2 +1,3 @@
 DIST black-22.1.0.tar.gz 1161720 BLAKE2B 
d74cbdd39dc1576583cee57089cb6d75a338f2d6640697adda79d38d02eeb51664049dca934d5014761d0fd4080ca2f40a3ea10c30e40bde9fe6af6c178b202c
 SHA512 
9b97a3b32ecebebeb61ea581784a9b2215540c20533097fe87d5ef3c046dbe7c2ab8f2f21d1884cbe0ddd458434f17eb9b540764f955385873e6fdef86c3014c
 DIST black-22.3.0.tar.gz 1154456 BLAKE2B 
c89b43722839748dff0ce60debb684cd8eeae5ef5fb7e080f6b0031412381d7be121ce62ad252a67fa7930726243680a4bf183417611617be5af39722164289d
 SHA512 
fc44576b93a6e158f625ad5444247f6a59a1ebcc7f0c73ed40d557a9a865457b297eabd492f01999e51ee3e5c3fa83f3d6e3c10937ecaa8c1d36f7541736d2e4
+DIST black-22.6.0.gh.tar.gz 1165070 BLAKE2B 
ce2eef529e230954a13913063dbb9000fa13f4debb2e5ed33605e8efe5c6d62fc1b3c0b7847c26ad931b9becae43fa23b15701a1672c1e056f729810020cc282
 SHA512 
72e4b4dfc69436e4dbee5a75ea72a1be69a26dc37a5e4d7edfb84d62736f0e0aba8d14420f3069798b568bd8ba916e8850f0c958afc9b6134ee8832e54d3dc4c

diff --git a/dev-python/black/black-22.6.0.ebuild 
b/dev-python/black/black-22.6.0.ebuild
new file mode 100644
index ..2136bb8644c5
--- /dev/null
+++ b/dev-python/black/black-22.6.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="The uncompromising Python code formatter"
+HOMEPAGE="
+   https://black.readthedocs.io/en/stable/
+   https://github.com/psf/black/
+   https://pypi.org/project/black/
+"
+SRC_URI="
+   https://github.com/psf/black/archive/${PV}.tar.gz -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~x64-macos"
+
+RDEPEND="
+   >=dev-python/click-8.0.0[${PYTHON_USEDEP}]
+   >=dev-python/mypy_extensions-0.4.3[${PYTHON_USEDEP}]
+   >=dev-python/platformdirs-2[${PYTHON_USEDEP}]
+   >=dev-python/pathspec-0.9.0[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   >=dev-python/tomli-1.1.0[${PYTHON_USEDEP}]
+   ' 3.8 3.9 3.10)
+   $(python_gen_cond_dep '
+   >=dev-python/typing-extensions-3.10.0.0[${PYTHON_USEDEP}]
+   ' 3.8 3.9)
+"
+BDEPEND="
+   >=dev-python/setuptools_scm-6.3.1[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/aiohttp-3.7.4[${PYTHON_USEDEP}]
+   dev-python/aiohttp-cors[${PYTHON_USEDEP}]
+   dev-python/colorama[${PYTHON_USEDEP}]
+   dev-python/parameterized[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+pkg_postinst() {
+   optfeature "blackd - HTTP API for black" "dev-python/aiohttp 
dev-python/aiohttp-cors"
+}



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

2022-06-27 Thread Michał Górny
commit: 7932dae68e1532c0cd333e115079c95ad4ae3bb9
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 03:08:44 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 04:03:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7932dae6

app-admin/awscli: Bump to 1.25.18

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

 app-admin/awscli/Manifest  |  1 +
 app-admin/awscli/awscli-1.25.18.ebuild | 71 ++
 2 files changed, 72 insertions(+)

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index 79d0ae64c3d0..17d303b9dad4 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -4,4 +4,5 @@ DIST aws-cli-1.25.14.gh.tar.gz 2225058 BLAKE2B 
185fb35a574a73d1d43adef515dbc1e67
 DIST aws-cli-1.25.15.gh.tar.gz 2225254 BLAKE2B 
afc4ef97b0c8eebaba3874ab5291cda8b971cc934379973b19e9ccc855b99a42be2a26737104e0eed151db280afb1c1a7866c9f8a376ec8e6a59d09372217cfa
 SHA512 
b5dfb47b1b256b2c3ee2ca92e161f0e59afc955159e28d368ee947cc8a41765919828dcfcfd00f7024bb328f4ed698cf040f81747cc892c6c3914a1f7e97d875
 DIST aws-cli-1.25.16.gh.tar.gz 2225519 BLAKE2B 
5800f49afe526f29b76f74078431235ab302237cbb3d6977c902d218fd65fb1eb341534020f1b8c495eb1834d3ef4c87fec7b4dee6ac8ceff4a528ec9bbf045b
 SHA512 
4641ead6693a54d34dbd3426baaf8c389221d85aba950e21e1ba7ccbdc142633d0d4215598fe55865a90c98c4df8ea2eb78610fd0567ce49b82f32aac1941f3b
 DIST aws-cli-1.25.17.gh.tar.gz 2226115 BLAKE2B 
d07a9c7a8e13019fd728489d27465497ba31f53087ef09e5f816792267bcb58158fa0a7f71fc499d3e343b5b3a0da45cc3632f8c69345b8cd93ebc735f645672
 SHA512 
1a7f90e28d6702f9e73fe3a93e0d91e2c4ea3d93574f21a3ecde1148445fe6b5f98f217e2e61a1cbba50a07590f0ab0abd00390fb04cbb3db74dfff698224997
+DIST aws-cli-1.25.18.gh.tar.gz 2226354 BLAKE2B 
5dafc484fcb592bef9e1aa18ff21897bc93c2eda049e5dff64d706fc492c5778ccb818c4368b95ee7f326ad47ee59b7b230875d1ef6e63ed7997e1e761228fd9
 SHA512 
40a5f0d35956d8fadc8950e0498e9254126914172a26b092ad6cb874f32e9f36a790295687da30d3e9bc41e41672d1e1424ba91051d4e32c46e44ef89601b289
 DIST aws-cli-1.25.7.gh.tar.gz 2223153 BLAKE2B 
fcadda94fd721135f94b1538c4b27e41108064f6fd32f324d5436138e3d1b0ffcab53fcc545b01c461365d55c4bfa2a05d90e94c875c929a3227efae76452415
 SHA512 
194adacab0df87d8e4f0cdc71bb956bef6dc8b2de2e7e4416c9c079ff2b7c2bce7584ac1049428d0bcb134368b39c37c04bc5e6a8fc7540c44c64f3934ccaf21

diff --git a/app-admin/awscli/awscli-1.25.18.ebuild 
b/app-admin/awscli/awscli-1.25.18.ebuild
new file mode 100644
index ..4154af977ee6
--- /dev/null
+++ b/app-admin/awscli/awscli-1.25.18.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit bash-completion-r1 distutils-r1 multiprocessing
+
+MY_P=aws-cli-${PV}
+DESCRIPTION="Universal Command Line Environment for AWS"
+HOMEPAGE="
+   https://github.com/aws/aws-cli/
+   https://pypi.org/project/awscli/
+"
+SRC_URI="
+   https://github.com/aws/aws-cli/archive/${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+# botocore is x.(y+2).z
+BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 2)).$(ver_cut 3-)"
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   dev-python/colorama[${PYTHON_USEDEP}]
+   dev-python/docutils[${PYTHON_USEDEP}]
+   dev-python/rsa[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.6.0[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/pytest-forked[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+   # strip overzealous upper bounds on requirements
+   sed -i -e 's:,<[0-9.]*::' -e 's:==:>=:' setup.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   # integration tests require AWS credentials and Internet access
+   epytest tests/{functional,unit} -n "$(makeopts_jobs)" --forked
+}
+
+python_install_all() {
+   newbashcomp bin/aws_bash_completer aws
+
+   insinto /usr/share/zsh/site-functions
+   newins bin/aws_zsh_completer.sh _aws
+
+   distutils-r1_python_install_all
+
+   rm "${ED}"/usr/bin/{aws.cmd,aws_bash_completer,aws_zsh_completer.sh} || 
die
+}



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

2022-06-27 Thread Miroslav Šulc
commit: 8ef99e0353bc1d47d8ace1530657a6b801796854
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Tue Jun 28 04:02:37 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Tue Jun 28 04:02:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ef99e03

media-libs/openal: bump to 1.22.2, dropped 1.22.1

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/openal/Manifest   | 2 +-
 media-libs/openal/{openal-1.22.1.ebuild => openal-1.22.2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/openal/Manifest b/media-libs/openal/Manifest
index 2aa401c4acf4..ccc45ada143c 100644
--- a/media-libs/openal/Manifest
+++ b/media-libs/openal/Manifest
@@ -1,2 +1,2 @@
 DIST openal-soft-1.22.0.tar.bz2 606420 BLAKE2B 
c244c28a253168a6651230d31608449b885d3519d07bf9befb51a5618c2cab6166496f69230969ff38982eb2c82e1e467a741376a2af38dfe59687143411
 SHA512 
1e3df371d126e19e369dd01e3c5e95d6a32b664adf54ee37836d51ca7bc829f275d945388d8a40a3ac92c1151380bd68bbab4f8a08f59ea67dd1bd9b9a1d0cbd
-DIST openal-soft-1.22.1.tar.bz2 606062 BLAKE2B 
a7f18ab35fc67488b31b62ed7049e70b22dadfdf9db1f0d8132bb5391be144611d82ea938692761909edd38ca3b3b9828b4f5a9eb8730c0a7673c346a18321c6
 SHA512 
1685890c358319a74a9fd1bd054d13194287697aa63d149323b98fc56837d574d7c74d2f54e0fdf5671c6effe5909fec54060e471a294d14dc82ba1dc38a
+DIST openal-soft-1.22.2.tar.bz2 606151 BLAKE2B 
78cb5ad38635908a59850aeb511223fd6a28f7699294836cbbfdd09cbfd9016250d68b26115131a7cb4af5d5d0a4d2cbd52813d813f78a045b797c5fb601bc7a
 SHA512 
2271968955d55746caf514b6d4304d09d5e552d5640552e2503186ef36bc872a836804ebf79ffbda663931bd13d4e2ce53e0c46cc4faf4134bdb3c08983a5e47

diff --git a/media-libs/openal/openal-1.22.1.ebuild 
b/media-libs/openal/openal-1.22.2.ebuild
similarity index 100%
rename from media-libs/openal/openal-1.22.1.ebuild
rename to media-libs/openal/openal-1.22.2.ebuild



[gentoo-commits] repo/gentoo:master commit in: app-laptop/rogauracore/

2022-06-27 Thread Miroslav Šulc
commit: c4d879d60a2f5edcce042d8c120655b0086be6d5
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Tue Jun 28 03:58:56 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Tue Jun 28 03:58:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4d879d6

app-laptop/rogauracore: fixed udev reload

Closes: https://bugs.gentoo.org/854690
Signed-off-by: Miroslav Šulc  gentoo.org>

 app-laptop/rogauracore/rogauracore-1.5.ebuild  | 10 +-
 app-laptop/rogauracore/rogauracore-1.6.ebuild  |  4 
 app-laptop/rogauracore/rogauracore-.ebuild |  4 
 3 files changed, 17 insertions(+), 1 deletion(-)

diff --git a/app-laptop/rogauracore/rogauracore-1.5.ebuild 
b/app-laptop/rogauracore/rogauracore-1.5.ebuild
index 083d9ea4e335..06b0cf8b4207 100644
--- a/app-laptop/rogauracore/rogauracore-1.5.ebuild
+++ b/app-laptop/rogauracore/rogauracore-1.5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit autotools
+inherit autotools udev
 
 if [[ ${PV} = "" ]]; then
EGIT_REPO_URI="https://github.com/wroberts/rogauracore.git;
@@ -33,3 +33,11 @@ src_configure() {
 src_compile() {
emake
 }
+
+pkg_postinst() {
+   udev_reload
+}
+
+pkg_postrm() {
+   udev_reload
+}

diff --git a/app-laptop/rogauracore/rogauracore-1.6.ebuild 
b/app-laptop/rogauracore/rogauracore-1.6.ebuild
index 5c7ce4a941bd..4507dee9a9ea 100644
--- a/app-laptop/rogauracore/rogauracore-1.6.ebuild
+++ b/app-laptop/rogauracore/rogauracore-1.6.ebuild
@@ -37,3 +37,7 @@ src_compile() {
 pkg_postinst() {
udev_reload
 }
+
+pkg_postrm() {
+   udev_reload
+}

diff --git a/app-laptop/rogauracore/rogauracore-.ebuild 
b/app-laptop/rogauracore/rogauracore-.ebuild
index 5c7ce4a941bd..4507dee9a9ea 100644
--- a/app-laptop/rogauracore/rogauracore-.ebuild
+++ b/app-laptop/rogauracore/rogauracore-.ebuild
@@ -37,3 +37,7 @@ src_compile() {
 pkg_postinst() {
udev_reload
 }
+
+pkg_postrm() {
+   udev_reload
+}



[gentoo-commits] repo/proj/guru:dev commit in: app-editors/neovim-qt/

2022-06-27 Thread Brian Gloyer
commit: 4749e1aea3b5c1f97e3e0920f32342b997b7fdde
Author: brian gloyer  gmail  com>
AuthorDate: Tue Jun 28 02:35:19 2022 +
Commit: Brian Gloyer  gmail  com>
CommitDate: Tue Jun 28 02:42:30 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4749e1ae

app-editors/neovim-qt: fix package

Closes: https://bugs.gentoo.org/849620
Fixed runtime library problem.

Signed-off-by: brian gloyer  gmail.com>

 app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild | 17 ++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild 
b/app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild
index 5dfcfa586..14609e016 100644
--- a/app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild
+++ b/app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit cmake
+inherit cmake xdg-utils
 
 DESCRIPTION="Neovim client library and GUI, in Qt5"
 HOMEPAGE="https://github.com/equalsraf/neovim-qt;
@@ -12,13 +12,14 @@ 
SRC_URI="https://github.com/equalsraf/neovim-qt/archive/v${PV}.tar.gz -> ${P}.ta
 LICENSE="ISC"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="gcov"
+IUSE=""
 
 DEPEND="
dev-libs/msgpack
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
+   dev-qt/qtsvg:5
dev-qt/qttest:5
dev-qt/qtwidgets:5"
 RDEPEND="${DEPEND}
@@ -26,9 +27,19 @@ RDEPEND="${DEPEND}
 
 src_configure() {
local mycmakeargs=(
-   -DUSE_GCOV=$(usex gcov ON OFF)
-DUSE_SYSTEM_MSGPACK=ON
+   -DUSE_GCOV=OFF
+   -DENABLE_TESTS=OFF
+   -DBUILD_SHARED_LIBS=OFF # it links to static lib
)
 
cmake_src_configure
 }
+
+pkg_postinst() {
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+}



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

2022-06-27 Thread Sam James
commit: 4c7c85f9333ee05f0f4b7ad757b562a62037fe44
Author: Sam James  gentoo  org>
AuthorDate: Tue Jun 28 02:09:53 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jun 28 02:09:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c7c85f9

sys-apps/systemd: drop obsolete F_S=3 revert

Reverted upstream.

Bug: https://bugs.gentoo.org/841770
Signed-off-by: Sam James  gentoo.org>

 sys-apps/systemd/systemd-.ebuild | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/sys-apps/systemd/systemd-.ebuild 
b/sys-apps/systemd/systemd-.ebuild
index 7f24477218f0..0b4f28e4c6b5 100644
--- a/sys-apps/systemd/systemd-.ebuild
+++ b/sys-apps/systemd/systemd-.ebuild
@@ -241,9 +241,6 @@ src_prepare() {
 
# Add local patches here
PATCHES+=(
-   # Breaks Clang. Revert the commit for now and force off F_S=3.
-   # bug #841770.
-   "${FILESDIR}/251-revert-fortify-source-3-fix.patch"
)
 
if ! use vanilla; then



[gentoo-commits] repo/gentoo:master commit in: mate-base/mate/

2022-06-27 Thread WANG Xuerui
commit: bd12f179a58775ac56bb76afae5181b9168e07cd
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:48 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd12f179

mate-base/mate: keyword 1.24 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 mate-base/mate/mate-1.24.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mate-base/mate/mate-1.24.ebuild b/mate-base/mate/mate-1.24.ebuild
index 4ff898f12c58..98ce83118b27 100644
--- a/mate-base/mate/mate-1.24.ebuild
+++ b/mate-base/mate/mate-1.24.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ else
inherit eapi7-ver
MATE_BRANCH="$(ver_cut 1-2)"
MATE_THEMES_V=3
-   KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
 fi
 
 SRC_URI=""



[gentoo-commits] repo/gentoo:master commit in: mate-base/mate-applets/

2022-06-27 Thread WANG Xuerui
commit: 697ce7d33ebf51f8dec725f7cf5d05f45372b8de
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:35 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=697ce7d3

mate-base/mate-applets: keyword 1.24.1 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 mate-base/mate-applets/mate-applets-1.24.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mate-base/mate-applets/mate-applets-1.24.1.ebuild 
b/mate-base/mate-applets/mate-applets-1.24.1.ebuild
index 9048ecda03a8..853995dbef46 100644
--- a/mate-base/mate-applets/mate-applets-1.24.1.ebuild
+++ b/mate-base/mate-applets/mate-applets-1.24.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
 fi
 
 DESCRIPTION="Applets for the MATE Desktop and Panel"



[gentoo-commits] repo/gentoo:master commit in: x11-themes/mate-themes/

2022-06-27 Thread WANG Xuerui
commit: 1030eaadd71163d4a51c8b1c5c31a8e15dd9d0b5
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:44 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1030eaad

x11-themes/mate-themes: keyword 3.22.22 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 x11-themes/mate-themes/mate-themes-3.22.22.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-themes/mate-themes/mate-themes-3.22.22.ebuild 
b/x11-themes/mate-themes/mate-themes-3.22.22.ebuild
index 1fffc3d061fe..aafe12a592bf 100644
--- a/x11-themes/mate-themes/mate-themes-3.22.22.ebuild
+++ b/x11-themes/mate-themes/mate-themes-3.22.22.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ 
SRC_URI="https://pub.mate-desktop.org/releases/themes/${MATE_GTK_V}/${P}.tar.xz;
 
 LICENSE="CC-BY-SA-3.0 GPL-3+ LGPL-2.1+ LGPL-3"
 SLOT="0/${MATE_GTK_V}"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
 
 RDEPEND="
>=x11-libs/gdk-pixbuf-2:2



[gentoo-commits] repo/gentoo:master commit in: x11-themes/mate-themes-meta/

2022-06-27 Thread WANG Xuerui
commit: a6c7d4497bc73ec0490c70df7897b53b18e39e2f
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:46 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6c7d449

x11-themes/mate-themes-meta: keyword 3-r3 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 x11-themes/mate-themes-meta/mate-themes-meta-3-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-themes/mate-themes-meta/mate-themes-meta-3-r3.ebuild 
b/x11-themes/mate-themes-meta/mate-themes-meta-3-r3.ebuild
index a368e24c9cdc..5d62ba3e1579 100644
--- a/x11-themes/mate-themes-meta/mate-themes-meta-3-r3.ebuild
+++ b/x11-themes/mate-themes-meta/mate-themes-meta-3-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -7,7 +7,7 @@ DESCRIPTION="Meta package to facilitate easy use of 
x11-themes/mate-themes"
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:MATE;
 SRC_URI=""
 
-KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
+KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
 LICENSE="metapackage"
 SLOT="0"
 IUSE="gtk2-only"



[gentoo-commits] repo/gentoo:master commit in: x11-themes/murrine-themes/

2022-06-27 Thread WANG Xuerui
commit: 86405278e3285518f7de11645106eec49e9be789
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:43 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86405278

x11-themes/murrine-themes: keyword 0.98.11 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 x11-themes/murrine-themes/murrine-themes-0.98.11.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-themes/murrine-themes/murrine-themes-0.98.11.ebuild 
b/x11-themes/murrine-themes/murrine-themes-0.98.11.ebuild
index 541fb16bc6a2..39b61a1305cd 100644
--- a/x11-themes/murrine-themes/murrine-themes-0.98.11.ebuild
+++ b/x11-themes/murrine-themes/murrine-themes-0.98.11.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -9,7 +9,7 @@ 
SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm ~arm64 ~loong ppc ppc64 ~riscv x86"
 
 RDEPEND=">=x11-themes/gtk-engines-murrine-0.98.0"
 



[gentoo-commits] repo/gentoo:master commit in: x11-themes/gtk-engines-murrine/

2022-06-27 Thread WANG Xuerui
commit: 1a05ec22f6ccd40dd3363142b890143710a9bcf5
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:41 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a05ec22

x11-themes/gtk-engines-murrine: keyword 0.98.2-r3 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 x11-themes/gtk-engines-murrine/gtk-engines-murrine-0.98.2-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/x11-themes/gtk-engines-murrine/gtk-engines-murrine-0.98.2-r3.ebuild 
b/x11-themes/gtk-engines-murrine/gtk-engines-murrine-0.98.2-r3.ebuild
index b98e768b03a3..37553df41dba 100644
--- a/x11-themes/gtk-engines-murrine/gtk-engines-murrine-0.98.2-r3.ebuild
+++ b/x11-themes/gtk-engines-murrine/gtk-engines-murrine-0.98.2-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ HOMEPAGE="https://tracker.debian.org/pkg/gtk2-engines-murrine;
 
 LICENSE="LGPL-2.1 LGPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~loong ppc ppc64 ~riscv x86 ~amd64-linux 
~x86-linux"
 IUSE="+themes animation-rtl"
 
 RDEPEND=">=x11-libs/gtk+-2.24.23:2[${MULTILIB_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: x11-themes/gtk-engines/

2022-06-27 Thread WANG Xuerui
commit: 746e5aead53a90db563866a30144e4aee2681a79
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:39 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=746e5aea

x11-themes/gtk-engines: keyword 2.20.2-r100 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 x11-themes/gtk-engines/gtk-engines-2.20.2-r100.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-themes/gtk-engines/gtk-engines-2.20.2-r100.ebuild 
b/x11-themes/gtk-engines/gtk-engines-2.20.2-r100.ebuild
index 361473bd2f19..42e426543bad 100644
--- a/x11-themes/gtk-engines/gtk-engines-2.20.2-r100.ebuild
+++ b/x11-themes/gtk-engines/gtk-engines-2.20.2-r100.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,7 +15,7 @@ HOMEPAGE="https://www.gtk.org/;
 
 LICENSE="LGPL-2.1"
 SLOT="2"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
 IUSE="accessibility lua"
 
 REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )"



[gentoo-commits] repo/gentoo:master commit in: mate-base/mate-control-center/

2022-06-27 Thread WANG Xuerui
commit: d756c776999277d93b744fef18c1d76364b3f54d
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:34 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d756c776

mate-base/mate-control-center: keyword 1.24.2 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 mate-base/mate-control-center/mate-control-center-1.24.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mate-base/mate-control-center/mate-control-center-1.24.2.ebuild 
b/mate-base/mate-control-center/mate-control-center-1.24.2.ebuild
index 6f8e13c8403d..b62c67f9fb85 100644
--- a/mate-base/mate-control-center/mate-control-center-1.24.2.ebuild
+++ b/mate-base/mate-control-center/mate-control-center-1.24.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ MATE_LA_PUNT="yes"
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
 fi
 
 DESCRIPTION="The MATE Desktop configuration tool"



[gentoo-commits] repo/gentoo:master commit in: mate-extra/caja-extensions/

2022-06-27 Thread WANG Xuerui
commit: 1c71bbd1ffdfc7227db60e8d28f228f1f6953631
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:32 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c71bbd1

mate-extra/caja-extensions: keyword 1.24.1 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 mate-extra/caja-extensions/caja-extensions-1.24.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mate-extra/caja-extensions/caja-extensions-1.24.1.ebuild 
b/mate-extra/caja-extensions/caja-extensions-1.24.1.ebuild
index 5136c36dbdd3..3a5f39527d08 100644
--- a/mate-extra/caja-extensions/caja-extensions-1.24.1.ebuild
+++ b/mate-extra/caja-extensions/caja-extensions-1.24.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ MATE_LA_PUNT="yes"
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
 fi
 
 DESCRIPTION="Several Caja extensions"



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

2022-06-27 Thread WANG Xuerui
commit: 3b51720fb1fcb2d274178c28990ce8b3f7d1461e
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:16 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b51720f

virtual/notification-daemon: keyword 0 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 virtual/notification-daemon/notification-daemon-0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/virtual/notification-daemon/notification-daemon-0.ebuild 
b/virtual/notification-daemon/notification-daemon-0.ebuild
index 469b0ab77ffd..3ee79e344390 100644
--- a/virtual/notification-daemon/notification-daemon-0.ebuild
+++ b/virtual/notification-daemon/notification-daemon-0.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 DESCRIPTION="Virtual for notification daemon dbus service"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
 IUSE="gnome kde"
 
 RDEPEND="



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

2022-06-27 Thread WANG Xuerui
commit: 6d5ba7d453464dba45461a51a86eb30f097db383
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:23 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d5ba7d4

media-libs/libmatemixer: keyword 1.24.1-r1 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

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

diff --git a/media-libs/libmatemixer/libmatemixer-1.24.1-r1.ebuild 
b/media-libs/libmatemixer/libmatemixer-1.24.1-r1.ebuild
index 5bb125a158b0..40b85fb8cb19 100644
--- a/media-libs/libmatemixer/libmatemixer-1.24.1-r1.ebuild
+++ b/media-libs/libmatemixer/libmatemixer-1.24.1-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
 fi
 
 DESCRIPTION="Mixer library for MATE Desktop"



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

2022-06-27 Thread WANG Xuerui
commit: f0b7621125a27942f70a4739afeb0fe4ed93a435
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:15 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0b76211

x11-libs/libnotify: keyword 0.7.12 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 x11-libs/libnotify/libnotify-0.7.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libnotify/libnotify-0.7.12.ebuild 
b/x11-libs/libnotify/libnotify-0.7.12.ebuild
index b2f00994e9f7..47b686ac66a8 100644
--- a/x11-libs/libnotify/libnotify-0.7.12.ebuild
+++ b/x11-libs/libnotify/libnotify-0.7.12.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/libnotify;
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
 IUSE="gtk-doc +introspection test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-wm/marco/

2022-06-27 Thread WANG Xuerui
commit: ce45092e6228011e8a2a117ae508a4ea6706f49f
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:22 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce45092e

x11-wm/marco: keyword 1.24.2 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 x11-wm/marco/marco-1.24.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-wm/marco/marco-1.24.2.ebuild b/x11-wm/marco/marco-1.24.2.ebuild
index 3583e642ce12..3b1150d4eb99 100644
--- a/x11-wm/marco/marco-1.24.2.ebuild
+++ b/x11-wm/marco/marco-1.24.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ MATE2_LA_PUNT="yes"
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
 fi
 
 DESCRIPTION="MATE default window manager"



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-power-manager/

2022-06-27 Thread WANG Xuerui
commit: 188224afd6c5f5f7592f4769f1f43d3d41cca3fe
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:25 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=188224af

mate-extra/mate-power-manager: keyword 1.24.3 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 mate-extra/mate-power-manager/mate-power-manager-1.24.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mate-extra/mate-power-manager/mate-power-manager-1.24.3.ebuild 
b/mate-extra/mate-power-manager/mate-power-manager-1.24.3.ebuild
index f7a21ef8ddb3..c4ac7770bc43 100644
--- a/mate-extra/mate-power-manager/mate-power-manager-1.24.3.ebuild
+++ b/mate-extra/mate-power-manager/mate-power-manager-1.24.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
 fi
 
 DESCRIPTION="A session daemon for MATE that makes it easy to manage your 
laptop or desktop"



[gentoo-commits] repo/gentoo:master commit in: mate-base/caja/

2022-06-27 Thread WANG Xuerui
commit: 5c6f835831c19f54b9795899023ddb77ce7631bf
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:20 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c6f8358

mate-base/caja: keyword 1.24.1 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 mate-base/caja/caja-1.24.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mate-base/caja/caja-1.24.1.ebuild 
b/mate-base/caja/caja-1.24.1.ebuild
index c1fb7b8ef456..8a2e35819535 100644
--- a/mate-base/caja/caja-1.24.1.ebuild
+++ b/mate-base/caja/caja-1.24.1.ebuild
@@ -8,7 +8,7 @@ MATE_LA_PUNT="yes"
 inherit mate virtualx
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
 fi
 
 DESCRIPTION="Caja file manager for the MATE desktop"



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-utils/

2022-06-27 Thread WANG Xuerui
commit: 44d6d9fdc0a4c0af3d085a18fc99ce06ae226ada
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:27 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44d6d9fd

mate-extra/mate-utils: keyword 1.24.0-r3 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 mate-extra/mate-utils/mate-utils-1.24.0-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mate-extra/mate-utils/mate-utils-1.24.0-r3.ebuild 
b/mate-extra/mate-utils/mate-utils-1.24.0-r3.ebuild
index 7e154e4f693d..a9324e23dc40 100644
--- a/mate-extra/mate-utils/mate-utils-1.24.0-r3.ebuild
+++ b/mate-extra/mate-utils/mate-utils-1.24.0-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ MATE_LA_PUNT="yes"
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
 fi
 
 DESCRIPTION="Utilities for the MATE desktop"



[gentoo-commits] repo/gentoo:master commit in: mate-base/mate-settings-daemon/

2022-06-27 Thread WANG Xuerui
commit: 947f4e36d83b6ec1ff262c1cfa7e59bfd7c9e475
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:28 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=947f4e36

mate-base/mate-settings-daemon: keyword 1.24.2 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 mate-base/mate-settings-daemon/mate-settings-daemon-1.24.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mate-base/mate-settings-daemon/mate-settings-daemon-1.24.2.ebuild 
b/mate-base/mate-settings-daemon/mate-settings-daemon-1.24.2.ebuild
index 499d0dc2fcc8..231d1692ca6c 100644
--- a/mate-base/mate-settings-daemon/mate-settings-daemon-1.24.2.ebuild
+++ b/mate-base/mate-settings-daemon/mate-settings-daemon-1.24.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ MATE_LA_PUNT="yes"
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
 fi
 
 DESCRIPTION="MATE Settings Daemon"



[gentoo-commits] repo/gentoo:master commit in: mate-base/mate-applets-meta/

2022-06-27 Thread WANG Xuerui
commit: 6adbf4eb3c8076a6e3ed5922804f2406cf7c7393
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:38 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6adbf4eb

mate-base/mate-applets-meta: keyword 1.24.0 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 mate-base/mate-applets-meta/mate-applets-meta-1.24.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mate-base/mate-applets-meta/mate-applets-meta-1.24.0.ebuild 
b/mate-base/mate-applets-meta/mate-applets-meta-1.24.0.ebuild
index 32f917722a6f..7d00d478bf83 100644
--- a/mate-base/mate-applets-meta/mate-applets-meta-1.24.0.ebuild
+++ b/mate-base/mate-applets-meta/mate-applets-meta-1.24.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ if [[ ${PV} ==  ]]; then
 else
inherit eapi7-ver
MATE_BRANCH="$(ver_cut 1-2)"
-   KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
 fi
 
 DESCRIPTION="Meta package for MATE panel applets"



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-screensaver/

2022-06-27 Thread WANG Xuerui
commit: f60241fe50581e40df5279f57d1792772817e1ca
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:13 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f60241fe

mate-extra/mate-screensaver: keyword 1.24.2 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 mate-extra/mate-screensaver/mate-screensaver-1.24.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mate-extra/mate-screensaver/mate-screensaver-1.24.2.ebuild 
b/mate-extra/mate-screensaver/mate-screensaver-1.24.2.ebuild
index 6e4064add149..aefbc5810afa 100644
--- a/mate-extra/mate-screensaver/mate-screensaver-1.24.2.ebuild
+++ b/mate-extra/mate-screensaver/mate-screensaver-1.24.2.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit mate readme.gentoo-r1
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
 fi
 
 DESCRIPTION="Replaces xscreensaver, integrating with the MATE desktop"



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

2022-06-27 Thread WANG Xuerui
commit: f975cc798088c293892e1abe9aed94a78076de65
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:11 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f975cc79

net-libs/gupnp: keyword 1.4.3 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 net-libs/gupnp/gupnp-1.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/gupnp/gupnp-1.4.3.ebuild 
b/net-libs/gupnp/gupnp-1.4.3.ebuild
index c1d291ef2e7b..3eedfc589df6 100644
--- a/net-libs/gupnp/gupnp-1.4.3.ebuild
+++ b/net-libs/gupnp/gupnp-1.4.3.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/GUPnP 
https://gitlab.gnome.org/GNOME/g
 
 LICENSE="LGPL-2+ GPL-2+" # gupnp-binding-tool is GPL-2+
 SLOT="0/1.2-0" # -
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc 
x86"
 
 IUSE="connman gtk-doc +introspection networkmanager vala"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-media/

2022-06-27 Thread WANG Xuerui
commit: 1a07ff75866d2e1e86c410b4fd8ef24efc03009b
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:30 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a07ff75

mate-extra/mate-media: keyword 1.24.1 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 mate-extra/mate-media/mate-media-1.24.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mate-extra/mate-media/mate-media-1.24.1.ebuild 
b/mate-extra/mate-media/mate-media-1.24.1.ebuild
index 203939ac20ae..b42f76d681b7 100644
--- a/mate-extra/mate-media/mate-media-1.24.1.ebuild
+++ b/mate-extra/mate-media/mate-media-1.24.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
 fi
 
 DESCRIPTION="Multimedia related programs for the MATE desktop"



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

2022-06-27 Thread WANG Xuerui
commit: 79b4de22ae8b1b52e6473a95c5cf0e6bd85e00bb
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:08 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79b4de22

app-text/atril: keyword 1.24.1 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 app-text/atril/atril-1.24.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/atril/atril-1.24.1.ebuild 
b/app-text/atril/atril-1.24.1.ebuild
index 16cc0e88ee90..3d098e7a9f2d 100644
--- a/app-text/atril/atril-1.24.1.ebuild
+++ b/app-text/atril/atril-1.24.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ PYTHON_COMPAT=( python3_{7..9} )
 inherit mate python-any-r1 virtualx
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
 fi
 
 DESCRIPTION="Atril document viewer for MATE"



[gentoo-commits] repo/gentoo:master commit in: x11-misc/mate-notification-daemon/

2022-06-27 Thread WANG Xuerui
commit: 658a1000b01994cedbbe9d37cd1a8b15bd200ffb
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:18 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=658a1000

x11-misc/mate-notification-daemon: keyword 1.24.2 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 .../mate-notification-daemon/mate-notification-daemon-1.24.2.ebuild   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/x11-misc/mate-notification-daemon/mate-notification-daemon-1.24.2.ebuild 
b/x11-misc/mate-notification-daemon/mate-notification-daemon-1.24.2.ebuild
index 0cfababe83cf..1c0ecf0f1800 100644
--- a/x11-misc/mate-notification-daemon/mate-notification-daemon-1.24.2.ebuild
+++ b/x11-misc/mate-notification-daemon/mate-notification-daemon-1.24.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ MATE_LA_PUNT="yes"
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
 fi
 
 DESCRIPTION="MATE Notification daemon"



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

2022-06-27 Thread WANG Xuerui
commit: fda2f39d212e38286d9d44b10005c1fd69082b6b
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:06 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fda2f39d

app-text/libspectre: keyword 0.2.10 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

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

diff --git a/app-text/libspectre/libspectre-0.2.10.ebuild 
b/app-text/libspectre/libspectre-0.2.10.ebuild
index ce53ac9b6fb0..50aad4538d17 100644
--- a/app-text/libspectre/libspectre-0.2.10.ebuild
+++ b/app-text/libspectre/libspectre-0.2.10.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://libspectre.freedesktop.org/releases/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux ~x64-solaris"
 IUSE="debug doc"
 
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-netbook/

2022-06-27 Thread WANG Xuerui
commit: e5fa3bb7f3709feec7ff073687166ac960c36778
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 01:58:09 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 01:58:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5fa3bb7

mate-extra/mate-netbook: keyword 1.24.0-r1 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 mate-extra/mate-netbook/mate-netbook-1.24.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mate-extra/mate-netbook/mate-netbook-1.24.0-r1.ebuild 
b/mate-extra/mate-netbook/mate-netbook-1.24.0-r1.ebuild
index f581e74807db..ff10cb08adaf 100644
--- a/mate-extra/mate-netbook/mate-netbook-1.24.0-r1.ebuild
+++ b/mate-extra/mate-netbook/mate-netbook-1.24.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
 fi
 
 DESCRIPTION="MATE utilities for netbooks"



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

2022-06-27 Thread Ionen Wolkens
commit: 9205115c593d73d895b563be85a22d4fbf8946e8
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Jun 28 01:25:46 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Jun 28 01:28:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9205115c

games-util/xpadneo: drop 0.9.3

Virtual identical to 0.9.4 beside a version string fix.

Signed-off-by: Ionen Wolkens  gentoo.org>

 games-util/xpadneo/Manifest |  1 -
 games-util/xpadneo/xpadneo-0.9.3.ebuild | 74 -
 2 files changed, 75 deletions(-)

diff --git a/games-util/xpadneo/Manifest b/games-util/xpadneo/Manifest
index 5d771b210a90..5f03162043d5 100644
--- a/games-util/xpadneo/Manifest
+++ b/games-util/xpadneo/Manifest
@@ -1,2 +1 @@
-DIST xpadneo-0.9.3.tar.gz 1342315 BLAKE2B 
040f16e949a301926cc8e4c38212a658ffbc52832e1cd310ce5ae8bc568e2fd0fadad630771812f8b7ff76eaf5ad0f7ea8f158673a834aa1bd4d9407674acea7
 SHA512 
dd95e4bdbead8c8d93eca7d574989261e12bce232c1845e9bf11b5acdf3b9e47d62afb90f5a4208c788cf02ccaa73e99dc505f35679631119ba014a1f7796562
 DIST xpadneo-0.9.4.tar.gz 1342566 BLAKE2B 
82c5bd4e9d68e0b9465047d446a1ffe0c95b9590d76f1c6cec2d6e1c770a6c3f7c6c47cffef5ce27c449f1ada854dd9b6e6413791360c0d8eee8a697718bb320
 SHA512 
347b0a066044926681863b342a71e5a9a03e9ca58b5f1c5e20b5d7d68d92b373c14ec809b3bd6e0d719f53792b146966a03e169f997a5f65cef762d6058d0d01

diff --git a/games-util/xpadneo/xpadneo-0.9.3.ebuild 
b/games-util/xpadneo/xpadneo-0.9.3.ebuild
deleted file mode 100644
index b193e5517951..
--- a/games-util/xpadneo/xpadneo-0.9.3.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# pkgcheck note: toolchain-funcs is not unused
-inherit linux-mod toolchain-funcs udev
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/atar-axis/xpadneo.git;
-   EGIT_MIN_CLONE_TYPE="single"
-else
-   SRC_URI="https://github.com/atar-axis/xpadneo/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="Advanced Linux Driver for Xbox One Wireless Controller"
-HOMEPAGE="https://atar-axis.github.io/xpadneo/;
-
-LICENSE="GPL-3"
-SLOT="0"
-
-S="${WORKDIR}/${P}/hid-${PN}"
-MODULE_NAMES="hid-${PN}(kernel/drivers/hid::src)"
-BUILD_PARAMS='V=1 LD="$(tc-getLD)" KERNEL_SOURCE_DIR="${KV_OUT_DIR}"'
-BUILD_TARGETS="modules"
-
-CONFIG_CHECK="INPUT_FF_MEMLESS"
-
-src_install() {
-   linux-mod_src_install
-
-   insinto /etc/modprobe.d
-   doins etc-modprobe.d/${PN}.conf
-
-   udev_dorules etc-udev-rules.d/60-${PN}.rules
-
-   dodoc -r ../docs/{[^i]*.md,descriptors,reports} ../NEWS.md
-}
-
-pkg_postinst() {
-   linux-mod_pkg_postinst
-   udev_reload
-
-   local disable_ertm=/sys/module/bluetooth/parameters/disable_ertm
-   if kernel_is -ge 5 12; then
-   if [[ $(<${disable_ertm}) == Y ]]; then
-   elog "Warning: bluetooth ERTM (Enhanced ReTransmission 
Mode) is disabled."
-   elog "This is no longer recommended with kernel >=5.12 
to use ${PN}."
-   elog "Can remove ${EROOT}/etc/modprobe.d/no-ertm.conf 
if it exists, and run:"
-   elog "  echo N > ${disable_ertm}"
-   elog "After changing, may need to re-pair the gamepad 
with bluetooth."
-   fi
-   elif [[ $(<${disable_ertm}) == N ]]; then
-   elog "Warning: bluetooth ERTM (Enhanced ReTransmission Mode) is 
enabled."
-   elog "While keeping enabled is recommended for rumble usage 
stability, it can"
-   elog "cause connection issues without a fix included in kernel 
>=5.12"
-   elog "If needed, this mode can be disabled by running:"
-   elog "  echo Y > ${disable_ertm}"
-   elog "  echo 'options bluetooth disable_ertm=y' > 
${EROOT}/etc/modprobe.d/no-ertm.conf"
-   elog "After changing, may need to re-pair the gamepad with 
bluetooth."
-   fi
-
-   if [[ ! ${REPLACING_VERSIONS} ]]; then
-   elog "To pair the gamepad and view module options, see 
documentation in:"
-   elog "  ${EROOT}/usr/share/doc/${PF}/"
-   fi
-}
-
-pkg_postrm() {
-   linux-mod_pkg_postrm
-   udev_reload
-}



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

2022-06-27 Thread Ionen Wolkens
commit: 1a35262fc0d609ff4a9a2d028244e3a3844bdae2
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Jun 28 01:25:37 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Jun 28 01:28:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a35262f

games-util/xpadneo: add 0.9.4

Signed-off-by: Ionen Wolkens  gentoo.org>

 games-util/xpadneo/Manifest |  1 +
 games-util/xpadneo/xpadneo-0.9.4.ebuild | 74 +
 2 files changed, 75 insertions(+)

diff --git a/games-util/xpadneo/Manifest b/games-util/xpadneo/Manifest
index f915eab4944a..5d771b210a90 100644
--- a/games-util/xpadneo/Manifest
+++ b/games-util/xpadneo/Manifest
@@ -1 +1,2 @@
 DIST xpadneo-0.9.3.tar.gz 1342315 BLAKE2B 
040f16e949a301926cc8e4c38212a658ffbc52832e1cd310ce5ae8bc568e2fd0fadad630771812f8b7ff76eaf5ad0f7ea8f158673a834aa1bd4d9407674acea7
 SHA512 
dd95e4bdbead8c8d93eca7d574989261e12bce232c1845e9bf11b5acdf3b9e47d62afb90f5a4208c788cf02ccaa73e99dc505f35679631119ba014a1f7796562
+DIST xpadneo-0.9.4.tar.gz 1342566 BLAKE2B 
82c5bd4e9d68e0b9465047d446a1ffe0c95b9590d76f1c6cec2d6e1c770a6c3f7c6c47cffef5ce27c449f1ada854dd9b6e6413791360c0d8eee8a697718bb320
 SHA512 
347b0a066044926681863b342a71e5a9a03e9ca58b5f1c5e20b5d7d68d92b373c14ec809b3bd6e0d719f53792b146966a03e169f997a5f65cef762d6058d0d01

diff --git a/games-util/xpadneo/xpadneo-0.9.4.ebuild 
b/games-util/xpadneo/xpadneo-0.9.4.ebuild
new file mode 100644
index ..b193e5517951
--- /dev/null
+++ b/games-util/xpadneo/xpadneo-0.9.4.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# pkgcheck note: toolchain-funcs is not unused
+inherit linux-mod toolchain-funcs udev
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/atar-axis/xpadneo.git;
+   EGIT_MIN_CLONE_TYPE="single"
+else
+   SRC_URI="https://github.com/atar-axis/xpadneo/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Advanced Linux Driver for Xbox One Wireless Controller"
+HOMEPAGE="https://atar-axis.github.io/xpadneo/;
+
+LICENSE="GPL-3"
+SLOT="0"
+
+S="${WORKDIR}/${P}/hid-${PN}"
+MODULE_NAMES="hid-${PN}(kernel/drivers/hid::src)"
+BUILD_PARAMS='V=1 LD="$(tc-getLD)" KERNEL_SOURCE_DIR="${KV_OUT_DIR}"'
+BUILD_TARGETS="modules"
+
+CONFIG_CHECK="INPUT_FF_MEMLESS"
+
+src_install() {
+   linux-mod_src_install
+
+   insinto /etc/modprobe.d
+   doins etc-modprobe.d/${PN}.conf
+
+   udev_dorules etc-udev-rules.d/60-${PN}.rules
+
+   dodoc -r ../docs/{[^i]*.md,descriptors,reports} ../NEWS.md
+}
+
+pkg_postinst() {
+   linux-mod_pkg_postinst
+   udev_reload
+
+   local disable_ertm=/sys/module/bluetooth/parameters/disable_ertm
+   if kernel_is -ge 5 12; then
+   if [[ $(<${disable_ertm}) == Y ]]; then
+   elog "Warning: bluetooth ERTM (Enhanced ReTransmission 
Mode) is disabled."
+   elog "This is no longer recommended with kernel >=5.12 
to use ${PN}."
+   elog "Can remove ${EROOT}/etc/modprobe.d/no-ertm.conf 
if it exists, and run:"
+   elog "  echo N > ${disable_ertm}"
+   elog "After changing, may need to re-pair the gamepad 
with bluetooth."
+   fi
+   elif [[ $(<${disable_ertm}) == N ]]; then
+   elog "Warning: bluetooth ERTM (Enhanced ReTransmission Mode) is 
enabled."
+   elog "While keeping enabled is recommended for rumble usage 
stability, it can"
+   elog "cause connection issues without a fix included in kernel 
>=5.12"
+   elog "If needed, this mode can be disabled by running:"
+   elog "  echo Y > ${disable_ertm}"
+   elog "  echo 'options bluetooth disable_ertm=y' > 
${EROOT}/etc/modprobe.d/no-ertm.conf"
+   elog "After changing, may need to re-pair the gamepad with 
bluetooth."
+   fi
+
+   if [[ ! ${REPLACING_VERSIONS} ]]; then
+   elog "To pair the gamepad and view module options, see 
documentation in:"
+   elog "  ${EROOT}/usr/share/doc/${PF}/"
+   fi
+}
+
+pkg_postrm() {
+   linux-mod_pkg_postrm
+   udev_reload
+}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/rust-mode/

2022-06-27 Thread Maciej Barć
commit: fbad5cc3c0db047e5b567be0f87d6e205eab13e6
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Jun 28 00:58:11 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Tue Jun 28 01:00:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbad5cc3

app-emacs/rust-mode: bump to 1.0.5

Signed-off-by: Maciej Barć  gentoo.org>

 app-emacs/rust-mode/Manifest   |  1 +
 app-emacs/rust-mode/rust-mode-1.0.5.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/app-emacs/rust-mode/Manifest b/app-emacs/rust-mode/Manifest
index 55ad87fb19fb..2dcf26940fd7 100644
--- a/app-emacs/rust-mode/Manifest
+++ b/app-emacs/rust-mode/Manifest
@@ -1,3 +1,4 @@
 DIST rust-mode-0.3.0_p20190125.tar.xz 37580 BLAKE2B 
d4d3ae9dac452ba3e2966d5036bd5f4edb4066ca65954b7f18a99c56ad6a8848fd80ef799c7c266c77a844839d87ab9641c77afc089a17e4e459fea27b6af982
 SHA512 
303d7f183006769b3fdf7a7118b36d29d785c2a29cf88ae286cb86180f84a4e50e66597d3bc984979e2509b872632d750fba96ff522081df5351d8d9511a3272
 DIST rust-mode-0.4.0.tar.gz 41774 BLAKE2B 
c0263f9fa839dcf5ee74706d8d13c10161d024114fda161dbd5235036eb322d273e8624a23f5e848e9246500d1da0c272420cb89f250f8d1852c7552eb7d0939
 SHA512 
fe0e1d667ba9595f9cbed22e0f88096508e49ffe8e3c86349cb3319eefea38a1dd86c2b55aef1415ae0cfc3b65ac6807f1863eb0e6eaa9ff49aea989a46e5edc
 DIST rust-mode-1.0.4.tar.gz 52123 BLAKE2B 
3b7535d8906da6a477b029991c21520114c516a194f5f627ad544953f5f04c380e9481858e8045db4d96ef42f620c23d4b6002c76464216908c4ecf94c9de650
 SHA512 
8318c96280760a66841a4549407cb749cf0da15979d92e41d0c4f9ddd9d6a4d4fd22a4292b22fc69107ea6afa729f4c7516a10ceee044211829435078bd2814c
+DIST rust-mode-1.0.5.tar.gz 52665 BLAKE2B 
3b61372223637b7950ec7a15a80abd3b74972ecda0677f730f3ebc8e574b50985a7427b4531766b1dfd20225f7b718497aa4437dadfa041c5a9cde9413d3cb5c
 SHA512 
7b76384adf7281866fbef0ab507098084a96fe562d1dbd5dd99e03fda2a91c23392c8667c21aa5800b188cd09f5349a7394b0a7215826b9bc668cc36ac902999

diff --git a/app-emacs/rust-mode/rust-mode-1.0.5.ebuild 
b/app-emacs/rust-mode/rust-mode-1.0.5.ebuild
new file mode 100644
index ..bd23bef33b88
--- /dev/null
+++ b/app-emacs/rust-mode/rust-mode-1.0.5.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS=24
+
+inherit elisp
+
+DESCRIPTION="A major emacs mode for editing Rust source code"
+HOMEPAGE="https://github.com/rust-lang/rust-mode;
+SRC_URI="https://github.com/rust-lang/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="|| ( MIT Apache-2.0 )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DOCS=( README.md )
+SITEFILE="50${PN}-gentoo.el"
+
+src_test() {
+   ${EMACS} ${EMACSFLAGS} ${BYTECOMPFLAGS} \
+   -l rust-mode.el -l rust-mode-tests.el \
+   -f ert-run-tests-batch-and-exit || die "tests failed"
+}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/rust-mode/

2022-06-27 Thread Maciej Barć
commit: 1440e12cdfe64ec6583b9b51a5ffe7f2dd3d4f77
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Jun 28 00:59:10 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Tue Jun 28 01:00:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1440e12c

app-emacs/rust-mode: drop old 0.3.0_p20190125

Signed-off-by: Maciej Barć  gentoo.org>

 app-emacs/rust-mode/Manifest   |  1 -
 .../rust-mode/rust-mode-0.3.0_p20190125.ebuild | 28 --
 2 files changed, 29 deletions(-)

diff --git a/app-emacs/rust-mode/Manifest b/app-emacs/rust-mode/Manifest
index 2dcf26940fd7..bc42ebc63343 100644
--- a/app-emacs/rust-mode/Manifest
+++ b/app-emacs/rust-mode/Manifest
@@ -1,4 +1,3 @@
-DIST rust-mode-0.3.0_p20190125.tar.xz 37580 BLAKE2B 
d4d3ae9dac452ba3e2966d5036bd5f4edb4066ca65954b7f18a99c56ad6a8848fd80ef799c7c266c77a844839d87ab9641c77afc089a17e4e459fea27b6af982
 SHA512 
303d7f183006769b3fdf7a7118b36d29d785c2a29cf88ae286cb86180f84a4e50e66597d3bc984979e2509b872632d750fba96ff522081df5351d8d9511a3272
 DIST rust-mode-0.4.0.tar.gz 41774 BLAKE2B 
c0263f9fa839dcf5ee74706d8d13c10161d024114fda161dbd5235036eb322d273e8624a23f5e848e9246500d1da0c272420cb89f250f8d1852c7552eb7d0939
 SHA512 
fe0e1d667ba9595f9cbed22e0f88096508e49ffe8e3c86349cb3319eefea38a1dd86c2b55aef1415ae0cfc3b65ac6807f1863eb0e6eaa9ff49aea989a46e5edc
 DIST rust-mode-1.0.4.tar.gz 52123 BLAKE2B 
3b7535d8906da6a477b029991c21520114c516a194f5f627ad544953f5f04c380e9481858e8045db4d96ef42f620c23d4b6002c76464216908c4ecf94c9de650
 SHA512 
8318c96280760a66841a4549407cb749cf0da15979d92e41d0c4f9ddd9d6a4d4fd22a4292b22fc69107ea6afa729f4c7516a10ceee044211829435078bd2814c
 DIST rust-mode-1.0.5.tar.gz 52665 BLAKE2B 
3b61372223637b7950ec7a15a80abd3b74972ecda0677f730f3ebc8e574b50985a7427b4531766b1dfd20225f7b718497aa4437dadfa041c5a9cde9413d3cb5c
 SHA512 
7b76384adf7281866fbef0ab507098084a96fe562d1dbd5dd99e03fda2a91c23392c8667c21aa5800b188cd09f5349a7394b0a7215826b9bc668cc36ac902999

diff --git a/app-emacs/rust-mode/rust-mode-0.3.0_p20190125.ebuild 
b/app-emacs/rust-mode/rust-mode-0.3.0_p20190125.ebuild
deleted file mode 100644
index 08710c7798e1..
--- a/app-emacs/rust-mode/rust-mode-0.3.0_p20190125.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-NEED_EMACS=24
-
-inherit elisp
-
-DESCRIPTION="A major emacs mode for editing Rust source code"
-HOMEPAGE="https://github.com/rust-lang/rust-mode;
-SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz;
-
-LICENSE="|| ( MIT Apache-2.0 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-SITEFILE="50${PN}-gentoo.el"
-
-src_test() {
-   ${EMACS} ${EMACSFLAGS} ${BYTECOMPFLAGS} \
-   -l rust-mode.el -l rust-mode-tests.el \
-   -f ert-run-tests-batch-and-exit || die "tests failed"
-}
-
-src_install() {
-   elisp-install ${PN} rust-mode.{el,elc}
-   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-}



  1   2   3   >