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

2020-06-11 Thread Georgy Yakovlev
commit: b4de7d877132d95544df77c92bab692af8c24c2d
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Jun 12 06:48:46 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Jun 12 06:50:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4de7d87

dev-lang/rust: add some comments to cross section

Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-lang/rust/rust-1.44.0.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/dev-lang/rust/rust-1.44.0.ebuild b/dev-lang/rust/rust-1.44.0.ebuild
index 1a6fdeabca6..a0e29a784e9 100644
--- a/dev-lang/rust/rust-1.44.0.ebuild
+++ b/dev-lang/rust/rust-1.44.0.ebuild
@@ -344,8 +344,13 @@ src_configure() {
EOF
fi
 
+   # append cross target to "normal" target list
+   # example 'target = ["powerpc64le-unknown-linux-gnu"]'
+   # becomes 'target = 
["powerpc64le-unknown-linux-gnu","aarch64-unknown-linux-gnu"]'
+
rust_targets="${rust_targets},\"${cross_rust_target}\""
sed -i "/^target = \[/ s#\[.*\]#\[${rust_targets}\]#" 
config.toml || die
+
ewarn
ewarn "enabled ${rust_target} rust target, using 
${cross_toolchain} cross toolchain"
ewarn



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

2020-06-11 Thread Michał Górny
commit: 888c4fcb2bd56530b4a4f16edaa1af26515a2416
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 12 06:44:41 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 12 06:45:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=888c4fcb

dev-python/rsa: Bump to 4.2

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

 dev-python/rsa/Manifest   |  1 +
 dev-python/rsa/rsa-4.2.ebuild | 35 +++
 2 files changed, 36 insertions(+)

diff --git a/dev-python/rsa/Manifest b/dev-python/rsa/Manifest
index 43e1ebfee4e..d4bc5173cd4 100644
--- a/dev-python/rsa/Manifest
+++ b/dev-python/rsa/Manifest
@@ -1,3 +1,4 @@
 DIST python-rsa-version-4.1.gh.tar.gz 68748 BLAKE2B 
f7f80fab701e52db0949dae709a8ac01db773ecf721427536a4cc5a7dedae6285eab12b3377daa15e0ecf23682ba800fc8601149a98277331b1cc19573a94596
 SHA512 
93d80050d7c249285e8e05e2d9d84940b15f08380c3108da3463c1625fde18884189757e480ff62cc2b65d1521c57f8aee15aec501f3f1b9961ce053b304c25c
+DIST python-rsa-version-4.2.gh.tar.gz 63280 BLAKE2B 
1260fe2a0f34c16b3cd2e18bc642da2e9c6caad851920a4c010aaad31959d0baab397356cd2437eb4a9091b3f524760f45b8d46ff9a207be009b2613615681c1
 SHA512 
a4df2de41d252a42627e96298b044a50953c429b5062f02cc7b64a7e17f75b09bb8b0f9b371353e639d1daec7775c20f20348f45baf00f591514c54e1315f044
 DIST rsa-3.4.2.tar.gz 40956 BLAKE2B 
9a6353c84329303c655e7a25fcfa2ca42ea846c913fac0c26fee4a27bb85f9380de876b2ec07ae2212eb37efe5d2e401b2672f187f74bbeee1e9ef1099629e36
 SHA512 
62b0ff31fb3b9c18ae65bd102329e69726b853560576b1b66b9b89b26d3ff79154239af7e7a581b6a27c7017cc013f738762cd9662777ef594cc11c5b1f8e267
 DIST rsa-4.0.tar.gz 37385 BLAKE2B 
2621ee732f15ea12283b723efb5e88847d3e030e8115bb4a3e986099fc94adc3409202d54b4350b0888deefd8dc801d8d3e57fef9e85f386ead53e4412da6d05
 SHA512 
e11106741cc4275246c986d39b3f028b5a4df6fbffdd08a78072ac3d3a9a7ade7a39789c504a2705f54d858a9bdbf03981251f32f9c45baba71e4a986e14b24e

diff --git a/dev-python/rsa/rsa-4.2.ebuild b/dev-python/rsa/rsa-4.2.ebuild
new file mode 100644
index 000..30d113c5c59
--- /dev/null
+++ b/dev-python/rsa/rsa-4.2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+MY_P=python-rsa-version-${PV}
+DESCRIPTION="Pure-Python RSA implementation"
+HOMEPAGE="https://stuvel.eu/rsa https://pypi.org/project/rsa/";
+SRC_URI="
+   https://github.com/sybrenstuvel/python-rsa/archive/version-${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND="
+   >=dev-python/pyasn1-0.1.3[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? ( dev-python/mock[${PYTHON_USEDEP}] )
+"
+
+distutils_enable_tests unittest
+
+src_prepare() {
+   rm tests/test_mypy.py || die
+   distutils-r1_src_prepare
+}



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

2020-06-11 Thread Michał Górny
commit: daafdcf150931fd5110d97771652cd40be874f38
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 12 06:33:34 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 12 06:33:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daafdcf1

dev-python/responses: Bump to 0.10.15

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

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

diff --git a/dev-python/responses/Manifest b/dev-python/responses/Manifest
index 2f9d784a090..62261771154 100644
--- a/dev-python/responses/Manifest
+++ b/dev-python/responses/Manifest
@@ -1,2 +1,3 @@
 DIST responses-0.10.14.tar.gz 24782 BLAKE2B 
2c233ad41bfc1d9eeaaf84d2e8a98f5f808e39ffbb50c796aed6a3065827a0c33301c8d6ed1e7c4d88e6d0f7378796bdaba3816fd558f5797a725ea99835c54c
 SHA512 
f7edf64d4e6d62fa7295b6ac95d60bc30adbf0b141d9624ed7ca03efe02790973aa8ebd3f93187d0fdb41e323c1d87184717b77bba2ea70a7ae25f4d9237314f
+DIST responses-0.10.15.tar.gz 25350 BLAKE2B 
6d9dff99e2dc18b7361cb2b75f0438c62ab771364b1a572823cf1fb0cdb6175fee8c4cd372ac5d1b27ef31b88e66dd7d1410429213af240f6f743f0c85e36d1b
 SHA512 
513df58b40968e271cfb429ee09ab2ca7c3cf2f6ebe3607276ed1b949670871f8d6993449cfd5871bfd119cda0c0628dce6ebe8ed40595696e550541413f12b0
 DIST responses-0.10.7.tar.gz 22666 BLAKE2B 
9f6d8ee0cc36ebb94bf6ac4284b474d30754af339f623a8a899061392321ba48a1f2d21593fb5bf2e6fac7c65ca6c252b6b7a1072e5548f91db489633aa3b686
 SHA512 
dcdbac1555090309b17eec1c02887eea5080321ff359afc42e6b558954caec2ab757e6009ae539e6e4d002cd06f2289d909a28ae583e6fa062a5df89c301e1ff

diff --git a/dev-python/responses/responses-0.10.15.ebuild 
b/dev-python/responses/responses-0.10.15.ebuild
new file mode 100644
index 000..adae6e7ab45
--- /dev/null
+++ b/dev-python/responses/responses-0.10.15.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6..9} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Utility for mocking out the Python Requests library"
+HOMEPAGE="https://github.com/getsentry/responses";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+   >=dev-python/requests-2.0[${PYTHON_USEDEP}]
+   dev-python/cookies[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   dev-python/pytest-localserver[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest



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

2020-06-11 Thread Michał Górny
commit: d95224e21cea8439b97b4d6992c5225d5b61c1bc
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun 11 06:45:36 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 12 06:15:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d95224e2

sys-kernel/gentoo-kernel: Bump to 5.6.18

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

 sys-kernel/gentoo-kernel/Manifest  |  2 +
 .../gentoo-kernel/gentoo-kernel-5.6.18.ebuild  | 79 ++
 2 files changed, 81 insertions(+)

diff --git a/sys-kernel/gentoo-kernel/Manifest 
b/sys-kernel/gentoo-kernel/Manifest
index cbc90ab7417..3e00cf275eb 100644
--- a/sys-kernel/gentoo-kernel/Manifest
+++ b/sys-kernel/gentoo-kernel/Manifest
@@ -26,6 +26,8 @@ DIST genpatches-5.6-20.base.tar.xz 474872 BLAKE2B 
ee8eb1db2f33a8f3b6dbc700f92b7b
 DIST genpatches-5.6-20.extras.tar.xz 1764 BLAKE2B 
ffa3cdebb5e9a0f22d23f106d0a3f4395d878277d3c62e2df1e2d333542b9c8ab3cb076a50092d1d19b6288bd39571275037246380b3944c003cc2c309b09732
 SHA512 
704b9c25aea54d746c83eb96797068af3c7fd1e39966f4e21a3f6242a3b0ad5bf749865088d1df9b93f4fb765e49f96dcca5929c5c194abdb25d7fd3e36d531c
 DIST genpatches-5.6-21.base.tar.xz 484912 BLAKE2B 
95d41865b7c6d26ffb2bdf517c6d53c9ea274bc50101078abc3a002c19b127e56d4f142bb09864389daf57d1f0b48858006e4eb08c2cf2cbfe16cf158d7b71e3
 SHA512 
2ec25b0360508542999229df54c51d6d66f7083377a9080cc5efb43ea5640c98e385ef0324f1cce666eb03ce6c8798fc357c1a72867e5a241f5aa991964e1879
 DIST genpatches-5.6-21.extras.tar.xz 1764 BLAKE2B 
3bb364ea4fa5d1de6e35687b56ae00c88f060cd3f6ae0a4bc4dbd9dcd3c29b8c846ae5a1c333505626c74ed7fab350a9c595f5733328a65580f8d891fd3ea756
 SHA512 
55761e55cd32b3d1d3807232aa91d1277d30b978b405c82ceb8029f8c2d62198cabf0754ed2caa33b851c0c6a3523f98d31b0a083a9e7e6376eb900a5ea1e044
+DIST genpatches-5.6-22.base.tar.xz 499020 BLAKE2B 
c6a9977f776a79a3da7b61dd57fbf76af7cb91069bd87cbf7189cefd207befdbec044c7bd440aad194245b93ef4254dda949f15a19d1c82e7aac44bc306e14b6
 SHA512 
c40c15088b75dc325712cb95468d84a4eb87616d634f51a479ac6a34e9515329c90f8360a3f7d7876ab5bb335c4d435d308e37c1562507fa6c57c88f9ecd775c
+DIST genpatches-5.6-22.extras.tar.xz 1764 BLAKE2B 
64a589b498dfa1cc41b525a90b77a1524926a4ff9a2f9c1e2e7bd3d3750c531df3545e4af68a04fc7e3e641b6c8985a627190407f6eb85657eac960261f98ef6
 SHA512 
d0c11d9d5d2966ad3bf2da898e89f99b83f179f5ffda28c8ff4c0c0d0eb7a0e2553d1773ced53557fa54a58a85486802acd51f372ec3026862af58c09049a0f4
 DIST linux-5.4.15-arch1.amd64.config 241498 BLAKE2B 
2ba5eab2455c909878c36c6084718331042d0f6ab42127868ffb1522f4b53de38879e5707328968e943d1fa44cc504626af52b733829e943532931b49a612834
 SHA512 
582577bfe4139a8f50c5881cd5a9f24dc3da3124e464756f9efc3d39894eac378483d052e1142730585e40a45641166d309b5e1b5e379f4a5ea2d5ebb2d3314b
 DIST linux-5.4.15-arch1.i686.config 241195 BLAKE2B 
d3332b83a3d57c450bb1d5e85d83c71f3be730a15775b7e1d89cec2d72d28f1921987c63d95fe7bea6778efe0012ece6186449f07f6aca35ccf86805186c0f4c
 SHA512 
187d88bdde7325d46b4bfee8d59ace88ab7dc377606b411e1249f9deee2b571ec42bac52c29d26d67bfadece2e77aad6d5e0255a95a84c200757cb05c69160a1
 DIST linux-5.4.tar.xz 109441440 BLAKE2B 
193bc4a3147e147d5529956164ec4912fad5d5c6fb07f909ff1056e57235834173194afc686993ccd785c1ff15804de0961b625f3008cca0e27493efc8f27b13
 SHA512 
9f60f77e8ab972b9438ac648bed17551c8491d6585a5e85f694b2eaa4c623fbc61eb18419b2656b6795eac5deec0edaa04547fc6723fbda52256bd7f3486898f

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.6.18.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-5.6.18.ebuild
new file mode 100644
index 000..81016591119
--- /dev/null
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.6.18.ebuild
@@ -0,0 +1,79 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-build
+
+MY_P=linux-${PV%.*}
+GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 4 ))
+# 
https://git.archlinux.org/svntogit/packages.git/log/trunk/config?h=packages/linux
+AMD64_CONFIG_VER=5.6.8-arch1
+AMD64_CONFIG_HASH=7dcb86e3e6f24c6d5462c5c8d25c3fa09e7e9f55
+# https://git.archlinux32.org/packages/log/core/linux/config.i686
+I686_CONFIG_VER=5.6.8-arch1
+I686_CONFIG_HASH=bc42cce2cca0d42b5cfeb8c6bcbf9f39430791f2
+
+DESCRIPTION="Linux kernel built with Gentoo patches"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 
1).x/${MY_P}.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   amd64? (
+   
https://git.archlinux.org/svntogit/packages.git/plain/trunk/config?h=packages/linux&id=${AMD64_CONFIG_HASH}
+   -> linux-${AMD64_CONFIG_VER}.amd64.config
+   )
+   x86? (
+   
https://git.archlinux32.org/packages/plain/core/linux/config.i686?id=${I686_CONFIG_HASH}
+   -> linux-${I686_CONFIG_VER}.i686.config
+   )"
+S=${WORKDIR}/${MY_P}
+
+LICE

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

2020-06-11 Thread Michał Górny
commit: 829d60229b003bd39d419c47ffeb1410156b1100
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 12 06:30:42 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 12 06:30:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=829d6022

sys-kernel/gentoo-kernel-bin: Bump to 5.4.46

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

 sys-kernel/gentoo-kernel-bin/Manifest  |  2 +
 .../gentoo-kernel-bin-5.4.46.ebuild| 46 ++
 2 files changed, 48 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index c1227200b44..cf2b679c878 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -11,6 +11,8 @@ DIST gentoo-kernel-5.4.44-1.amd64.xpak 65048310 BLAKE2B 
d82b409cf4d4edc2d3896f08
 DIST gentoo-kernel-5.4.44-1.x86.xpak 56455692 BLAKE2B 
750aa881c27d32572a9a108c3a5e7e220111bac5513753a1c59b36dfe931b40e98f3ab871aebed20368c9ae1774cfdad30fb4e12a743e7b63e3247da04c626f1
 SHA512 
92affa723d355d332e1c97b1e3e110e43cdb54b1045094de647bb22feb772238609fc28f0d7c9074e0b323d53aa1a2180855e78403eaabefb6b64990bac5
 DIST gentoo-kernel-5.4.45-1.amd64.xpak 65049397 BLAKE2B 
3933885be89646405d18414cae9965dbdcc39c774477ff6ef9d61c1916748dc574d8fb87a3b65bbbd1ef131de726af5ce306bca454b08cfca5d02b544dfaca55
 SHA512 
70322d05e9582f330d84b1a3794407f9a5d23b09769e2bebca80ae083c6f22e0b793dae698fd18c38ab686a2f0df927bce5ecb8fd2fe678af6a0d8510e2e3790
 DIST gentoo-kernel-5.4.45-1.x86.xpak 56477427 BLAKE2B 
6a323b400e0602b12b2116ce508010242a6a16537e9fc6239dbfc1cb83c4008b681d1ed3237ab770aa8eb921de7f4853b6e57d64799ded8f39f2d1f3239fb92e
 SHA512 
f516b3fbbed6e8b129293af79f22e52e6b321ba10e20882733a55de09c6c48988014715688eabbb1d0740b89809839cf40b0c25b09b9a3d6d21622cd4b9476ca
+DIST gentoo-kernel-5.4.46-1.amd64.xpak 65041216 BLAKE2B 
560936f45725977c85925cdef6667773e88cc77adb44fd503f07e4ad8bdfa718a644e792abebceabfec028185043eae62cfd9c365751771a607c2cdb20bf1119
 SHA512 
fe936122c5e3dd392813bf4f06ce07b5f6215fb1efd09c5797fe7020d2c57128a2e9e378f5959aff5814c9569358d71aec0c294b9bbaa2dfb84324eade8f26d5
+DIST gentoo-kernel-5.4.46-1.x86.xpak 56466748 BLAKE2B 
790e4df7a1908f260fc4a67989f2b37f6cd6a8b03c4f0b6ccb05af3109235391130a00d80b7f47980954807854d2cca74078b30e31d18f51f8c21c968a7a3fb8
 SHA512 
88552fc262137e46eccedcaf00db86402a07fae4811c6b48292d9ee147d343e7ba9d0970b3773ed1027c44aaa0a1c118dd6c2dd46171de2daa665d46c854e70d
 DIST gentoo-kernel-5.6.11-1.amd64.xpak 66149442 BLAKE2B 
e122dea49c9ef20c9140924b7bef46af77325d6311100c3f9f04137a7200da7eb6f6ab100c41da5bf72dc144561fa34a5215f06f6c34550b6043d20fd5f15a27
 SHA512 
8b7b178b1c096e3ad816f754cae173205a743194b19a40399e8f4d349fa14d189833fa2ba5638d03818938ad128e7349cb1663cce47391ea5874cedc259acde6
 DIST gentoo-kernel-5.6.12-1.amd64.xpak 66146856 BLAKE2B 
dd9ab45933fcc41d5e3f5e365870824e06f1493f776d746f1d64a4b897c757d20fcc4ba4b51ff68cce13775e762051e6ca1cb06f1d1669ae2446a520872d9574
 SHA512 
9c0ff1da6f981b52514dbea1074bf8f8a8650de3901eb0801ce14bf70a802b63679ca80734e7bb23afba7c0a8b9b642dd12a02759dff552a131fd5058136a8d9
 DIST gentoo-kernel-5.6.12-1.x86.xpak 57548361 BLAKE2B 
129f0f937ad77514690e907887d3449dc3ebfa95d8fba413aae2d53eb08923531856d22f7a9e1c0bf68b09ca04e0020944ab0c74c53f4f437b74be8319bbfd50
 SHA512 
fa3b4152c2baa1d54ffa8f099250fa5c149ab98930bc21f70aaa1dfd00931f74f0bca499fb959295b84998ac508387b4cea8c868c2d50663bfd52af06b128082

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.46.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.46.ebuild
new file mode 100644
index 000..68ca59b5735
--- /dev/null
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.46.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-install
+
+MY_P=${P/-bin/}-1
+DESCRIPTION="Pre-built Linux kernel with genpatches"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+="
+   amd64? (
+   
https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak
+   -> ${MY_P}.amd64.xpak
+   )
+   x86? (
+   
https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak
+   -> ${MY_P}.x86.xpak
+   )"
+S=${WORKDIR}
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   !sys-kernel/gentoo-kernel:${SLOT}
+   !sys-kernel/vanilla-kernel:${SLOT}
+   !sys-kernel/vanilla-kernel-bin:${SLOT}"
+
+QA_PREBUILT='*'
+
+src_unpack() {
+   ebegin "Unpacking ${MY_P}.${ARCH}.xpak"
+   tar -x < <(xz -c -d --single-stream "${DISTDIR}/${MY_P}.${ARCH}.xpak")
+   eend ${?} || die "Unpacking ${MY_P} failed"
+}
+
+src_test() {
+   kernel-install_test "${PV}" \
+   
"${WORKDIR}/usr/src/linux-${PV}/$(kernel-install_get_image_path)" \
+   "lib/modules/${PV}"
+}
+
+src_install() {
+   mv *

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

2020-06-11 Thread Michał Górny
commit: 7eafdc87e56ebe178e95dba675e201f1046ad152
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 12 06:30:47 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 12 06:30:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7eafdc87

sys-kernel/gentoo-kernel-bin: Bump to 5.6.18

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

 sys-kernel/gentoo-kernel-bin/Manifest  |  2 +
 .../gentoo-kernel-bin-5.6.18.ebuild| 46 ++
 2 files changed, 48 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index cf2b679c878..d9941df44dd 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -24,5 +24,7 @@ DIST gentoo-kernel-5.6.16-1.amd64.xpak 66171389 BLAKE2B 
9f2df413f8177570d78d10c4
 DIST gentoo-kernel-5.6.16-1.x86.xpak 57546697 BLAKE2B 
bd6785287dfa6e4f5de803f9e9ce60ff812752d54979056d25fe40ecc48f2bec26983af17818a80a04a1418d651357708f3aa9197c78f20efc1d0b8a0e5ede50
 SHA512 
f641c9b29457bdebef038c69d71c508360d4c3af1630af937ef03fbccc3bfcd214c9c03ee2f39479259d972e565a4354882ebadad625926a81a862ed2a7a6d13
 DIST gentoo-kernel-5.6.17-1.amd64.xpak 66179215 BLAKE2B 
6742f9be3351cf5957e00a7307e4d7d89c8efc30720483602a53f68a1c79d838de16311a935e366d6df30455e5aac273c272d7771bf11edeb93079ba552f1546
 SHA512 
fab51e7834b5bfd4ed7d56008808a4f7b5a5a3664283676bc141c37007ce254b4a8dde00ed0c8cc8bb561686f01df44b382a0735d3fc06cb3f5f8d9c8c72
 DIST gentoo-kernel-5.6.17-1.x86.xpak 57552959 BLAKE2B 
69543112ef6d7adf416d8129586014d54189432e68de987958b539deb8d14eae50241ff8a65d7d4652cdadd26bca50e24350d56add279e2c3f062bc4b70c4503
 SHA512 
dca8e4368f6fbbc8851e3f4dec337e9575fb2391b5c53481b151be8057f8b033b37bd9c470387868ffce780d13c1ee51b9e9f935211f8832893e9873dea9723f
+DIST gentoo-kernel-5.6.18-1.amd64.xpak 66169658 BLAKE2B 
cb111eca2a88a6cde81e4eb80ab9a025ab5f66f780fdb6e04c16686f78ae80b6fac5ed5c511508411d24b5439503ba205f8bae287acfdde75aa6f7e609ef3a1e
 SHA512 
ffb6aa3e0269bcb9fc159b9e8237f97c569b527ac2250722f342872b1a7d603309caef5a9a83ce4770838bcccfbbefa8bf77eea9b3e4680145aee1614cc86250
+DIST gentoo-kernel-5.6.18-1.x86.xpak 57553136 BLAKE2B 
3a26cd459a99c42228bd942033b6abcc9d06ae77961a4591bbc27deecbadb895ac0344298877a9474dc3057cc854d5b3be495674f8b6c549f7d136417a568271
 SHA512 
36c10328587a784be5d5099b5a103a9603357a2e5228be2a3f24aeb325ee4cc7aafedb98eb9314ce3fd38e45dfc3034fbdc0776e4753642945421018e03e7371
 DIST tinycorelinux-10.1-amd64.qcow2 16842752 BLAKE2B 
e013e76503c335739a9623c0901ca791937a0e6b177854535cadec1e2c2cd2df588283ed3128cf652595f32264fbfe5b3bd3a8c97665fd4da344e308535be366
 SHA512 
c3aeb20ff8769da9211694b7f701907cc7ae7582cdfad2c2fdc008d97ebcbd9dc08245b4e8f8450e1cb304bd705345a11fe79f901a47979fee91443841d55641
 DIST tinycorelinux-10.1-x86.qcow2 14876672 BLAKE2B 
3c760eb7438b13261e52ecfaa33a53649ced95f1ab40aae52134b8cdc31a16d7aa0d6a6dd716e268ed148e9d77a10b7c700b141b61d70c82d271ffe88e8e2a3c
 SHA512 
9964538dc42f232a11949f74b61d46422ea5da3bdc253a217119bd0b8a750c40fd2da0b07157067be9ac0226472614f210a1248114df0d331df390979867a895

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.6.18.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.6.18.ebuild
new file mode 100644
index 000..68ca59b5735
--- /dev/null
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.6.18.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-install
+
+MY_P=${P/-bin/}-1
+DESCRIPTION="Pre-built Linux kernel with genpatches"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+="
+   amd64? (
+   
https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak
+   -> ${MY_P}.amd64.xpak
+   )
+   x86? (
+   
https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak
+   -> ${MY_P}.x86.xpak
+   )"
+S=${WORKDIR}
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   !sys-kernel/gentoo-kernel:${SLOT}
+   !sys-kernel/vanilla-kernel:${SLOT}
+   !sys-kernel/vanilla-kernel-bin:${SLOT}"
+
+QA_PREBUILT='*'
+
+src_unpack() {
+   ebegin "Unpacking ${MY_P}.${ARCH}.xpak"
+   tar -x < <(xz -c -d --single-stream "${DISTDIR}/${MY_P}.${ARCH}.xpak")
+   eend ${?} || die "Unpacking ${MY_P} failed"
+}
+
+src_test() {
+   kernel-install_test "${PV}" \
+   
"${WORKDIR}/usr/src/linux-${PV}/$(kernel-install_get_image_path)" \
+   "lib/modules/${PV}"
+}
+
+src_install() {
+   mv * "${ED}" || die
+}



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

2020-06-11 Thread Michał Górny
commit: f77c3d90bd21700be39ca92ee224342bac060d41
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun 11 06:45:33 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 12 06:15:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f77c3d90

sys-kernel/vanilla-kernel: Bump to 5.6.18

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

 sys-kernel/vanilla-kernel/Manifest |  1 +
 .../vanilla-kernel/vanilla-kernel-5.6.18.ebuild| 71 ++
 2 files changed, 72 insertions(+)

diff --git a/sys-kernel/vanilla-kernel/Manifest 
b/sys-kernel/vanilla-kernel/Manifest
index caecd0d0fe7..4b32b68c639 100644
--- a/sys-kernel/vanilla-kernel/Manifest
+++ b/sys-kernel/vanilla-kernel/Manifest
@@ -13,6 +13,7 @@ DIST linux-5.6.14.tar.xz 111812744 BLAKE2B 
6613ae43fde5313c972a314a5e4008d32da51
 DIST linux-5.6.15.tar.xz 111812776 BLAKE2B 
3e38479d0921015d37473b110b6f7a4a94ce12f3fc6b64030c13a12c59b7683cda9a16ae031f4fbd7d0032cbaa3075aa31a1243717ccaeae0022b6fcb2eb3c5a
 SHA512 
fb87f0857b242cda7137b8ef32431f14f48ab9349cbf964b06d07ccbb81d1d4683e33c2b629fb41edf6d0c32c412069397b85683654ee632a9539c764fd9e7a2
 DIST linux-5.6.16.tar.xz 111824400 BLAKE2B 
8304f112ba8861ad7a807b0e58ce2a265998225f045aa45fab4f51d714cd7484a6d6fd65d65e51786b27334360ebeb955117b2f5d1fd2d1e9c24eae8aa9820f7
 SHA512 
77b1d65a477e4acdc27851d984d0e9e8ac08c3d68f5a6994163246e93d9f81bd2c56f6fef3766496edb104d6a049bdfb8a6c12a152151d7da307cf851494a299
 DIST linux-5.6.17.tar.xz 111818008 BLAKE2B 
848b0a64ceff91de0e99bcaba826d11df9f95afc2e264c5b26a3bbb3da3f9cd2ec0910cd5923de0464cb1bc8d349455ef5e8c602b982cce5a0a942851208c1d4
 SHA512 
7d42eb0327997df85b4c5c7c0babab738f0dd85ef3e739cbc7ce6a21e19821acb72ca6f0beb7636f988b95c29e61b9bf79175ecbdb309835a517f5f538cbc2b3
+DIST linux-5.6.18.tar.xz 111817124 BLAKE2B 
a8c01860ac9e55b33709c450fb663815205260b5e62cd2bed224a47ccf1e249d2b02515f945d2508b83f1f59727d9fed29937fe584d5cfe42c5d035c020f3407
 SHA512 
4cef44b489b51bc4f826aafb36d0b767fc33adeb471c69c088d5e5f8a779a580a6992bcc0769800ecf658e77434dd513ed436813cbffa39d3f98f24ea8fcf1f3
 DIST linux-5.6.8-arch1.amd64.config 246166 BLAKE2B 
e749472cf4bcd1fae509bf524367106c07111f5d385b5cacf335fe03188c30c184e3535603de2b855f81538fa6fb09cedfec16ff02db5b5583a90e5cb150dba5
 SHA512 
873275e0ba75fb5670ac7f90abfb16ab912b1a94e5f8f39845283230763118d244c1b02e33f1b05b5d86fce90cd274c944725465dabf2dd0e79fa735fabe4d4f
 DIST linux-5.6.8-arch1.i686.config 245339 BLAKE2B 
746b39cc8d8d880eadd3a04eaed7fa978ec73a412428fbd99e7e3543ac722a86a004b5fc31b4a307e8f4bb706224e032f22681dad8dea0340652cb4aade0d65b
 SHA512 
a97487a842344e8dbda758b602c2b2095641d3e504c866e12afefa6744cbea39fe0d23900b0749cf4896160baf2bcde5a77a9614b23132665f1c7e3a580c7ca6
 DIST tinycorelinux-10.1-amd64.qcow2 16842752 BLAKE2B 
e013e76503c335739a9623c0901ca791937a0e6b177854535cadec1e2c2cd2df588283ed3128cf652595f32264fbfe5b3bd3a8c97665fd4da344e308535be366
 SHA512 
c3aeb20ff8769da9211694b7f701907cc7ae7582cdfad2c2fdc008d97ebcbd9dc08245b4e8f8450e1cb304bd705345a11fe79f901a47979fee91443841d55641

diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-5.6.18.ebuild 
b/sys-kernel/vanilla-kernel/vanilla-kernel-5.6.18.ebuild
new file mode 100644
index 000..ae908034bdc
--- /dev/null
+++ b/sys-kernel/vanilla-kernel/vanilla-kernel-5.6.18.ebuild
@@ -0,0 +1,71 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-build
+
+MY_P=linux-${PV}
+# 
https://git.archlinux.org/svntogit/packages.git/log/trunk/config?h=packages/linux
+AMD64_CONFIG_VER=5.6.8-arch1
+AMD64_CONFIG_HASH=7dcb86e3e6f24c6d5462c5c8d25c3fa09e7e9f55
+# https://git.archlinux32.org/packages/log/core/linux/config.i686
+I686_CONFIG_VER=5.6.8-arch1
+I686_CONFIG_HASH=bc42cce2cca0d42b5cfeb8c6bcbf9f39430791f2
+
+DESCRIPTION="Linux kernel built from vanilla upstream sources"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 
1).x/${MY_P}.tar.xz
+   amd64? (
+   
https://git.archlinux.org/svntogit/packages.git/plain/trunk/config?h=packages/linux&id=${AMD64_CONFIG_HASH}
+   -> linux-${AMD64_CONFIG_VER}.amd64.config
+   )
+   x86? (
+   
https://git.archlinux32.org/packages/plain/core/linux/config.i686?id=${I686_CONFIG_HASH}
+   -> linux-${I686_CONFIG_VER}.i686.config
+   )"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+REQUIRED_USE="
+   arm? ( savedconfig )
+   arm64? ( savedconfig )"
+
+RDEPEND="
+   !sys-kernel/vanilla-kernel-bin:${SLOT}"
+
+src_prepare() {
+   default
+
+   # prepare the default config
+   case ${ARCH} in
+   amd64)
+   cp "${DISTDIR}"/linux-${AMD64_CONFIG_VER}.amd64.config 
.config || die
+   ;;
+   x86)
+   cp "${DISTDIR}"/linux-${I686_CONFIG_VER}.i686.config 
.config || die
+ 

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

2020-06-11 Thread Michał Górny
commit: f373cc571f71de0c1fa84a48cd111813d3d872f9
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun 11 06:45:13 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 12 06:15:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f373cc57

sys-kernel/vanilla-kernel: Bump to 5.4.46

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

 sys-kernel/vanilla-kernel/Manifest |  1 +
 .../vanilla-kernel/vanilla-kernel-5.4.46.ebuild| 65 ++
 2 files changed, 66 insertions(+)

diff --git a/sys-kernel/vanilla-kernel/Manifest 
b/sys-kernel/vanilla-kernel/Manifest
index 07175d43ca3..caecd0d0fe7 100644
--- a/sys-kernel/vanilla-kernel/Manifest
+++ b/sys-kernel/vanilla-kernel/Manifest
@@ -6,6 +6,7 @@ DIST linux-5.4.42.tar.xz 109532008 BLAKE2B 
673a3e9ecca06f74d8506e5723c7cd888a7c9
 DIST linux-5.4.43.tar.xz 109534404 BLAKE2B 
33a467b5c57d1457ec4c02961bc4ea798819ecb424431070537e01f425a8f6560a94242e1227a43ee59bdde257cf5facae21d896c1357d35435c6c953607a365
 SHA512 
e32433fd45724831d30df38dd17cf6e14c8ba6c62e469dc5e86ffed3bab72b1b1a5a44ad5c4c16c0bc30c97cc046c8a62ab581e95caa3c62e0b6c33e26d1
 DIST linux-5.4.44.tar.xz 109536112 BLAKE2B 
85a355b99cb2c69a87899162a41dc48b2f956ddab6e9927daf2f99de126766571e04ac17a3317638ee43497056ed643ff258315bc9e095b22d51b4112031d252
 SHA512 
e91ddf29880668786de8d08ab220616fc0fc11ac962789a843dd70f92697c782699df2356c55f355161804c91653b63467a582694fafc85b23e3ab0189f5059a
 DIST linux-5.4.45.tar.xz 109551316 BLAKE2B 
ae8829277fa716dd786f5a27148f038d326f3a00d8967242d18b6f7e65de9d802b733cb64136f2904dc6b04364baa8925299742cb72812e3db6cd2c4e3ac4430
 SHA512 
c50acbc6466d276e41f511a63e86f7280c5f4bddbbc5c482dc303c72b30d3e6051b1f9e66bee85fc091209daf35118bb886b6efbb8df809f5dbb949185e55ab7
+DIST linux-5.4.46.tar.xz 109542096 BLAKE2B 
99c63fc28649fc7e75a18a8a6786ca81f46516979cae9dabfe604f3353ae8a145a1a2b7e6e2747af6ea7e11d52518e7ff4261ffce0cbbd7084318da56d429e2c
 SHA512 
780d515dfb7490f3d0ea8683d4a8f7da88c2d027c1d94a0c76507f0a9b2aa3a898401eec6684206dafd281a886062c2537b8ab1865ed08a576bb1cd6c9c75f7c
 DIST linux-5.6.11.tar.xz 111798824 BLAKE2B 
0b483cea53eade0e0f74dfc7230c79c0df8b383f1bcbaa71c6bcfa05a06f15e3c8b7ad2ffd0fb096d091cc3d191ffa91c984b60377f28c8fd77873ed8751668a
 SHA512 
f4c02f59353d2199084583bed6fa9cec6e7a7cb755296c883969c579a8f9d34e202c3c922eaf32ca7a3ffbd35ada7f835545d4beab50b2bab2a66c43e739ec74
 DIST linux-5.6.12.tar.xz 111805220 BLAKE2B 
e7fe1bdfd7acbbe774c6630785533d3f76e6d0bc195472f106a5859579a5d7ff11b9ec474a86d9a714283110606865bc0abdb96d57b478f7b90fea328f197fcc
 SHA512 
34f91c07287707901786166c6056e75edabea263fa61bcce8d5c925ed48323020e1400283fa29263e6e2e740b75e0165077388330ed900d81f30b35c73fa7752
 DIST linux-5.6.14.tar.xz 111812744 BLAKE2B 
6613ae43fde5313c972a314a5e4008d32da51b87a5773e2f9819d53209e8661fd7436e029a3b28f21e26aab937fb0a4b1b6891bd1f865b642a386ae3d89470f7
 SHA512 
fe19ad3165ae46f1511e39c495ba1a5a304ea3f69a169debe27026e0c888a4766b1618c76aee2279ba6fb0316cb731fdcd8ad5f9ac8dc1d4058573bd5dc00cd0

diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.46.ebuild 
b/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.46.ebuild
new file mode 100644
index 000..cc5e365bda5
--- /dev/null
+++ b/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.46.ebuild
@@ -0,0 +1,65 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-build
+
+MY_P=linux-${PV}
+# 
https://git.archlinux.org/svntogit/packages.git/log/trunk/config?h=packages/linux
+AMD64_CONFIG_VER=5.4.15-arch1
+AMD64_CONFIG_HASH=dc8d69b59a7a529ec5aaeb6b32b16e59a3cc1569
+# https://git.archlinux32.org/packages/log/core/linux/config.i686
+I686_CONFIG_VER=5.4.15-arch1
+I686_CONFIG_HASH=1ad219bd3f0ab439a81ed01fec7660eeea7daa0e
+
+DESCRIPTION="Linux kernel built from vanilla upstream sources"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 
1).x/${MY_P}.tar.xz
+   amd64? (
+   
https://git.archlinux.org/svntogit/packages.git/plain/trunk/config?h=packages/linux&id=${AMD64_CONFIG_HASH}
+   -> linux-${AMD64_CONFIG_VER}.amd64.config
+   )
+   x86? (
+   
https://git.archlinux32.org/packages/plain/core/linux/config.i686?id=${I686_CONFIG_HASH}
+   -> linux-${I686_CONFIG_VER}.i686.config
+   )"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   !sys-kernel/vanilla-kernel-bin:${SLOT}"
+
+src_prepare() {
+   default
+
+   # prepare the default config
+   case ${ARCH} in
+   amd64)
+   cp "${DISTDIR}"/linux-${AMD64_CONFIG_VER}.amd64.config 
.config || die
+   ;;
+   x86)
+   cp "${DISTDIR}"/linux-${I686_CONFIG_VER}.i686.config 
.config || die
+   ;;
+   *)
+   die "Unsupported arch ${ARCH}"
+  

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

2020-06-11 Thread Michał Górny
commit: d0e00fce658761611dd4879fc65ba3185bb052f5
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun 11 06:45:18 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 12 06:15:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0e00fce

sys-kernel/gentoo-kernel: Bump to 5.4.46

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

 sys-kernel/gentoo-kernel/Manifest  |  2 +
 .../gentoo-kernel/gentoo-kernel-5.4.46.ebuild  | 73 ++
 2 files changed, 75 insertions(+)

diff --git a/sys-kernel/gentoo-kernel/Manifest 
b/sys-kernel/gentoo-kernel/Manifest
index 87188588d60..cbc90ab7417 100644
--- a/sys-kernel/gentoo-kernel/Manifest
+++ b/sys-kernel/gentoo-kernel/Manifest
@@ -12,6 +12,8 @@ DIST genpatches-5.4-44.base.tar.xz 1501024 BLAKE2B 
c65367159612a8ab26cfb78baaf28
 DIST genpatches-5.4-44.extras.tar.xz 1768 BLAKE2B 
85b10762ef888a3afd455c9a42fd6343f6f491d46c0e55d786e1aa3c203dc0a5aa6a296b9770705b31cfa27aa7e4a28a492b8cf95bd413b5dff4c631bdbc7ed1
 SHA512 
21b034036069f919ed73641dbe3fbaa92dfefd16489383d45c6973c367f4ca3261655ae6a0ce11684e8c5eb45c943981251328ddcd001af9507584f00426092a
 DIST genpatches-5.4-45.base.tar.xz 1513092 BLAKE2B 
a727965734e146e93b04468d6dc622f435bb736dd3c5f1d07a13e0ae191940074fd65cb105d4ae4e3e0521d12748ff57768e63bb6e421de4970ab8869bbc9173
 SHA512 
5efae8a94199ba7440824f80216fb2d00257e8ab6094d740a5b248d29363c49cae4c474f4356f918a779a79fc25f23e3191c53d91cc0b92969cee4af4869749e
 DIST genpatches-5.4-45.extras.tar.xz 1764 BLAKE2B 
dcd5f69470511643fae8e6a6239dfd44c9553e1a361c35a57c7101bfb460cec366c26a19cc7a754594f443081c89294bfe5cde2b29d4687fe45faf433f2fa9ff
 SHA512 
ad0e39cdb48083ce3aeaf080897063c95c2b79664f258b6b66c4ba28bc5333888ce9ed31786a0e6e324f56693de3130bfcb8e15aa97982dcc35e876178f52e2d
+DIST genpatches-5.4-46.base.tar.xz 1524648 BLAKE2B 
f51069d6f459762242f172f5bdd3d0c8e68ac333c5cd3dbe81604c5c243be88718352ace650dd4eb31783645b5776e73b61a41bf624ade5fdea947e7e5800010
 SHA512 
c5ae845dc87f2efffd1674cb0cd6b0d0d8addb62a0e3689e1bd7ac62966b284f647f28c728db5c1a8790d34f6207d3e148e4af332d79f2e3d664942b825f2483
+DIST genpatches-5.4-46.extras.tar.xz 1764 BLAKE2B 
80470783d8e6f2fc3ef681e113bc51d8edb3093e0eaa5274412536b35fd23f486df5aaaf749bfc2f5cf6420c647fc96690718d78e10aea9b4bc0d0ee251fe84a
 SHA512 
2c88f9edb3fe514676034b189bf239c7bffed9b4965b696099accf8b9c3d30c125e056772a6c327d2e4b00597d4c53901466fd15140f8815819bc3df5e3d47a4
 DIST genpatches-5.6-15.base.tar.xz 292284 BLAKE2B 
0d80ef60c429516c2888e18704a4deaf6d293f5e60179b4dff080b1aff0088c69d5629a2bef1f57ccd90ca694460f3d57cfde7ed3274d30e982b506edf2bb5f6
 SHA512 
afb1c877d5317881deda321c87aae3138b147b45aeb4af5c1c377d87c142626904db59a5b26758a9f873bd8760c26e305487156438a553c9dda11f3ed1801875
 DIST genpatches-5.6-15.extras.tar.xz 1756 BLAKE2B 
b28a36cb3ccbfb9b79757e1684535eb8283157accdfa357d47ee8a699a4837f75f4aa0dfedfbac3d9e402b36bb669d8623f37b0c8b9dc24d095457a0da40ffe0
 SHA512 
107ab66357f3ae9183488fdf0d963561e1b862dedc0863310d78e6607c380c8dce54d555e1190b6aa8b09c1222e6fd137947b489e84e91a3bf3f98fa7d85df20
 DIST genpatches-5.6-16.base.tar.xz 305568 BLAKE2B 
90609dd7eb9cda256927fbce372f24898098f933cccfb90d73f88ab0d6b4caca29b3f2e8d016eb344394e9828e5fd493f38b3b2c0f621fd08c99f54acff58fae
 SHA512 
19b460551fe26dd7b7dcf929914710f0d7aa51bca384a5184518d97776e14d2ff40ae74e81c2d1f2c833e9a1b61cb513867b5243994dd54ed4aba62cb49291d3

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.46.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.46.ebuild
new file mode 100644
index 000..1412b2980be
--- /dev/null
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.46.ebuild
@@ -0,0 +1,73 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-build
+
+MY_P=linux-${PV%.*}
+GENPATCHES_P=genpatches-${PV%.*}-${PV##*.}
+# 
https://git.archlinux.org/svntogit/packages.git/log/trunk/config?h=packages/linux
+AMD64_CONFIG_VER=5.4.15-arch1
+AMD64_CONFIG_HASH=dc8d69b59a7a529ec5aaeb6b32b16e59a3cc1569
+# https://git.archlinux32.org/packages/log/core/linux/config.i686
+I686_CONFIG_VER=5.4.15-arch1
+I686_CONFIG_HASH=1ad219bd3f0ab439a81ed01fec7660eeea7daa0e
+
+DESCRIPTION="Linux kernel built with Gentoo patches"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 
1).x/${MY_P}.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   amd64? (
+   
https://git.archlinux.org/svntogit/packages.git/plain/trunk/config?h=packages/linux&id=${AMD64_CONFIG_HASH}
+   -> linux-${AMD64_CONFIG_VER}.amd64.config
+   )
+   x86? (
+   
https://git.archlinux32.org/packages/plain/core/linux/config.i686?id=${I686_CONFIG_HASH}
+   -> linux-${I686_CONFIG_VER}.i686.config
+   )"
+S=${WORKDIR}/${MY_P}
+
+LICE

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

2020-06-11 Thread Hans de Graaff
commit: e20b4277b334a0926a3431dffcadc67a0fe17403
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 12 05:42:55 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 12 05:42:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e20b4277

dev-ruby/httparty: add 0.18.1

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

 dev-ruby/httparty/Manifest   |  1 +
 dev-ruby/httparty/httparty-0.18.1.ebuild | 61 
 2 files changed, 62 insertions(+)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index f8c2ce6f645..bc1e2745411 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,3 +1,4 @@
 DIST httparty-0.17.1.tar.gz 97249 BLAKE2B 
044a074c0a11c02d5fd929585b1dd6853871bdbfcf9be0f16b92999ac5e9ad7b0fb60a403a24d4e3ae3901f8fdb119f51e3decfc61e9ddf61419fa50581c1970
 SHA512 
2e92573e164575c462afceec26234731e8eb4472f127374503ee1361d8399116c78f900f88485629ca7ddb51a6383c963a5b1e21d9d5b0acbcc8544ce3f37465
 DIST httparty-0.17.3.tar.gz 97444 BLAKE2B 
773e40fc35ca44cd3b14a30e7a7ea5783c0c158cdb8488b34ffa36af5a572d5f6eef697cab147c5be1448906c35071284947ba598409be35af54a20846f4d98c
 SHA512 
c06aa4456c692e2a32f8e44b2316d46f664c4e2c8efb370607796f6801d96e989a54e61bdf125cff679b8c5f5abb1557b87aef48d8f3a392c1942ac4821db84d
 DIST httparty-0.18.0.tar.gz 97667 BLAKE2B 
8c4086c3186152944a7ae9a57b679bba6ed803067ec849d9fac8323cdef41a45a44f2454ca83a6aecff7fc1e9795793a2fb035f1bf46c5c998703fc5d7425a44
 SHA512 
a208bfd411de6fc080221410d5730f37db074fca25ff0f71b796e4a73ac3a595ca57dde1f415327f710ed23ebed6bbf0f671d0e5940ce60073e6727ac8963580
+DIST httparty-0.18.1.tar.gz 97813 BLAKE2B 
3192ad5f1e8c292456710529f4e1595ea5b70ae4ad61695d6d0b036872d40b2afbc0c958ffb25b0c1222ba8004593d20c4d3954c530d6c836e915b87150d954a
 SHA512 
fca9de534199fbf6a058c39c3ebe28587c34df2bffee313a0e05204258fb6b6b6643bd0a28deca9d0b42de21c90c54dab058124349e4774489578fb23e8bacf5

diff --git a/dev-ruby/httparty/httparty-0.18.1.ebuild 
b/dev-ruby/httparty/httparty-0.18.1.ebuild
new file mode 100644
index 000..c7782d5184c
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.18.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="httparty.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty";
+SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/webmock )'
+
+all_ruby_prepare() {
+   sed -i -e 's/git ls-files \?-\?-\?/find/' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '/pry/ s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   #sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+
+   # Avoid test that is not fully compatible with newer multi_xml
+   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
+
+   # Avoid test that fails due to unicode normalization differences
+   sed -i -e '/handles international domains/askip "unicode differences"' 
spec/httparty_spec.rb || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2020-06-11 Thread Hans de Graaff
commit: 6f61b825afdfc0129e91e530df6b1f8abc140a0a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 12 05:46:00 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 12 05:46:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f61b825

dev-ruby/xdr: add 3.0.1

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

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

diff --git a/dev-ruby/xdr/Manifest b/dev-ruby/xdr/Manifest
index 4025278b8ef..7650f28b516 100644
--- a/dev-ruby/xdr/Manifest
+++ b/dev-ruby/xdr/Manifest
@@ -1,2 +1,3 @@
 DIST xdr-2.0.0.gem 24064 BLAKE2B 
183414b9ef719784729a415adbf85889abe30dfbbc1a7b988a01a841caba6c02c04563b01b5e101a0284729671d1957bfdd78d13781d619a1281f14476cdfa81
 SHA512 
9ba84364c7a4c52ce415361803491d514f9d83f59b7197301d0c4fa94dc715365a89f3a784a90ec077b54de6b6dd64467386c575b42de375a3a9af6a84a5d650
 DIST xdr-3.0.0.gem 24576 BLAKE2B 
a9366e5a8261dadfc71658e4a8e18b98f418d4993b6a25c3ba5fabc22557e1ba19954f4451d7d95598e9d1d5c597d484f763e6b1a4689740e782ec06ed0041f5
 SHA512 
8176378330d9060cf8abe0f9ee18f69682674c407934dcc01b76d561acc10a94b573db3b04a17b9940d6a5d1682181ad15147c3e3acce692a3ccb9e275ec0062
+DIST xdr-3.0.1.gem 24576 BLAKE2B 
e8518e0d25981462aa1b716e16418c8a0e850a10c3be36b3c542893cd0a75968a13209c82002bf43ee25106b161708159c9c16ac492f32b1dc72c1c52aa7169f
 SHA512 
22911bd41b6a6999f9c231c09d4b4ae731a0b38c5e588be9624ae461fc3099615a20c4f0ac4a2cd614e71104b35974727770ffcbe066ae5f1c12f246fa05e5a5

diff --git a/dev-ruby/xdr/xdr-3.0.1.ebuild b/dev-ruby/xdr/xdr-3.0.1.ebuild
new file mode 100644
index 000..fbd62bcb17c
--- /dev/null
+++ b/dev-ruby/xdr/xdr-3.0.1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby24 ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Read/write XDR encoded data structures"
+HOMEPAGE="https://github.com/stellar/ruby-xdr";
+
+LICENSE="Apache-2.0"
+SLOT="${PV}"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="test"
+
+ruby_add_rdepend ">=dev-ruby/activemodel-5.2.0:*
+   >=dev-ruby/activesupport-5.2.0:*"
+
+all_ruby_prepare() {
+   sed -i -e '/bundler/,/pry/ s:^:#:' spec/spec_helper.rb || die
+}



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

2020-06-11 Thread Hans de Graaff
commit: b9cf7c32689af6d83490d477dcab72b1438a659a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 12 05:48:20 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 12 05:48:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9cf7c32

dev-ruby/sexp_processor: add 4.15.0

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

 dev-ruby/sexp_processor/Manifest   |  1 +
 .../sexp_processor/sexp_processor-4.15.0.ebuild| 28 ++
 2 files changed, 29 insertions(+)

diff --git a/dev-ruby/sexp_processor/Manifest b/dev-ruby/sexp_processor/Manifest
index 67b96960e0b..04f82a2b8bf 100644
--- a/dev-ruby/sexp_processor/Manifest
+++ b/dev-ruby/sexp_processor/Manifest
@@ -3,3 +3,4 @@ DIST sexp_processor-4.12.1.gem 54784 BLAKE2B 
95b238abb3050448cd076cfbda61d60c1d2
 DIST sexp_processor-4.13.0.gem 55808 BLAKE2B 
d807f632e93bbffaf92c31214a5d76fb5f069563af07f3f3c9d8095114d4ffc41a759144f93e1081d4192e6b7d572feab2be10a5fd639bafc0d3b166a4d5b5e1
 SHA512 
0b83613c10dd268837bddd552910c799e002eea6b409aa9788a5a65957454d2ef601cc023f84d98dbacc34e3c58923d6c43115510bae7ec9d2d72286f141828a
 DIST sexp_processor-4.14.0.gem 55808 BLAKE2B 
60e19163bfca60b019b462f251eddc1f3644207f8eb4ac6240cb5eec9365621c56bd0a6741d1371a502c745b41e6a5efa29323a43ce919d823c0f11fd1a4d6f5
 SHA512 
90a6ed905d79079b51849521e25d8e6aa87c8d9aced75883b4080568a30aa3c349df35bb74556a1755f77ed73d3260ce88534d1967db93b39b34cf28132e0093
 DIST sexp_processor-4.14.1.gem 56320 BLAKE2B 
86b4ca1f766d224fcaa83cf24df3db00d1790cb8d84cdc17fa427143d1a06b0ae3fa752994f528f5b4ddced04fb285af3c0d30e6227d84188b26dbf7a0a7625f
 SHA512 
2a693afd2eb478360d06b59191a98f6590f6bfaba79dd931c6c7b1f5d6b511ec899e804c9826ce054ed3d625ab74dc775583167e0ff560713c6481785e31b8b3
+DIST sexp_processor-4.15.0.gem 56320 BLAKE2B 
8624b7fe28f4aa9447f42cf4f8c5b424088ca2c1628f3e785f746ceb60725449812205dc657ea856c5bead616ac18d689330315fdb44e92447ee3a89740557d1
 SHA512 
f7877ca59191ab39848c6d3b0cf9625c2e1c180784cd757c00a7cea67aa6eee5549ab5630641f4044c875a1aaadc89b8237f8adadc961ed86c5379cb72db33c3

diff --git a/dev-ruby/sexp_processor/sexp_processor-4.15.0.ebuild 
b/dev-ruby/sexp_processor/sexp_processor-4.15.0.ebuild
new file mode 100644
index 000..19ab7bf0b4c
--- /dev/null
+++ b/dev-ruby/sexp_processor/sexp_processor-4.15.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="README.rdoc History.rdoc"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Processor for s-expressions created as part of the ParseTree 
project"
+HOMEPAGE="https://www.zenspider.com/projects/sexp_processor.html";
+
+LICENSE="GPL-2"
+SLOT="4"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+IUSE=""
+
+ruby_add_bdepend "
+   test? (
+   >=dev-ruby/minitest-5.5
+   )"
+
+each_ruby_test() {
+   ${RUBY} -Ilib:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || die
+}



[gentoo-commits] repo/gentoo:master commit in: media-fonts/fira-code/

2020-06-11 Thread Hans de Graaff
commit: 0927b511f2212b4d510210e0770c94ebc2d1f42b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 12 05:50:31 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 12 05:50:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0927b511

media-fonts/fira-code: add 5.1

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

 media-fonts/fira-code/Manifest | 2 +-
 media-fonts/fira-code/{fira-code-5.ebuild => fira-code-5.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/fira-code/Manifest b/media-fonts/fira-code/Manifest
index b75e1104e1c..0720d209991 100644
--- a/media-fonts/fira-code/Manifest
+++ b/media-fonts/fira-code/Manifest
@@ -3,4 +3,4 @@ DIST fira-code-2.tar.gz 7100481 BLAKE2B 
1ca41276c56b6edb174620224d2a0a72750cd29c
 DIST fira-code-3.1.tar.gz 5665465 BLAKE2B 
d1ad5d8e2d217d9dc1f06b9ac52dcf87f4f108aab1469399f0d1fb011f3619a1ce1c85803213da33a7b7f6e48fffddc194627b3fe560f7340a6a41b15d822062
 SHA512 
6acb941664a773a1186e6b6150ce747977fc95963d4be8756de05eddf7c2785ba0a5eac8319361779f6e747e8cd1edadeff1a72045cdeb3b152ce5bb2c1b77dd
 DIST fira-code-3.tar.gz 5665172 BLAKE2B 
c27861867102b788da151e9b5ed3b8a1d3e610f9f40d6facfc7f850fb15ff6903bc4e0579674e4732b52bf1477b3f9bc223158c59991d4517af3476f7f5d819f
 SHA512 
2518b2fe1e2454da32a023e93c38358b0c89691f2f47b2e26e9ccf583109911b83d73880800fe02f556e9ed5888edf08e447360628eedb4e7a693a2f9e778520
 DIST fira-code-4.tar.gz 5580474 BLAKE2B 
0bc9b4c8a54f238f1c464398162a56dccf0ac5f4aaffac00357bc7ad0ed99436b44220180f9753a0bc6f2fccc5dafe4a47df9cac91dc87fb1441952e1f04eeae
 SHA512 
037698435b3f77f5ad2dcfb6ea6ff3063c50d224c2b95ada472bf9b12a6342e892d60220e1993045858697fff9c4fb5da97b41ac3437c4fa50f48ef1398c9738
-DIST fira-code-5.tar.gz 4875628 BLAKE2B 
5892af7bfd081311c82788806eda346fed8c23782c5c51196b0be241280bd77385eb458a180a19290fe9cba9299b1ea9ae9ceda250825e4be7d9eb6293998ff0
 SHA512 
43eea1c9a19143b7a1bb96761229643ca06f2030f143f8446bde0e4bb39b07892de5427fdd72801511c8843ad9401c28f92f476d2a8f43150947772001571cfc
+DIST fira-code-5.1.tar.gz 5100828 BLAKE2B 
529a6a6cee3ee9e45b5e0a1f4e90468a04a4c15cc888e84d8a0530efe2ea067f315868ad0f00861533a9185e206f157bcee4994be91685f5c3d3c3a046d4f8ca
 SHA512 
806c0bb84253396b239258897a1249c1a3a26354da50b48987ee4a5a61ec3aac60641dc248cb6636b285396d4036f9c2d6759c2c977bc8d977fdb438105e0a85

diff --git a/media-fonts/fira-code/fira-code-5.ebuild 
b/media-fonts/fira-code/fira-code-5.1.ebuild
similarity index 100%
rename from media-fonts/fira-code/fira-code-5.ebuild
rename to media-fonts/fira-code/fira-code-5.1.ebuild



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

2020-06-11 Thread Hans de Graaff
commit: 5e31d034924339304252ee61b8c4302fa9f18fb1
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 12 05:34:18 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 12 05:34:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e31d034

dev-ruby/httparty: amd64 stable

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

 dev-ruby/httparty/httparty-0.17.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/httparty/httparty-0.17.3.ebuild 
b/dev-ruby/httparty/httparty-0.17.3.ebuild
index 418e319afe6..568d1d50706 100644
--- a/dev-ruby/httparty/httparty-0.17.3.ebuild
+++ b/dev-ruby/httparty/httparty-0.17.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -20,7 +20,7 @@ 
SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> ${P}.ta
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'



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

2020-06-11 Thread Aaron Bauman
commit: e26047940e7c08a5893799df90228a62b13eac57
Author: Aaron Bauman  gentoo  org>
AuthorDate: Fri Jun 12 03:48:36 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Fri Jun 12 03:49:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2604794

profiles/package.mask: mask net-libs/nDPI and friends

Bug: https://bugs.gentoo.org/719084
Signed-off-by: Aaron Bauman  gentoo.org>

 profiles/package.mask | 8 
 1 file changed, 8 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 8959b0f06fe..6f8593abc14 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,14 @@
 
 #--- END OF EXAMPLES ---
 
+# Aaron Bauman  (2020-06-11)
+# outstanding vulns. RCE. rdeps masked.
+# maintainer ignored w/irrelevant comment.
+# removal in 30 days. bug #719084
+net-analyzer/ntopng
+net-analyzer/pmacct
+net-libs/nDPI
+
 # Lars Wendler  (2020-06-10)
 # At least alsactl is broken:
 #   double free or corruption (fasttop)



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

2020-06-11 Thread Matt Turner
commit: 969b6ac503c9446ef72ed1a00b58ba85291e5032
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jun 12 03:39:50 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jun 12 03:40:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=969b6ac5

media-libs/mesa: Version bump to 20.0.8

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

 media-libs/mesa/Manifest   |   1 +
 media-libs/mesa/mesa-20.0.8.ebuild | 559 +
 2 files changed, 560 insertions(+)

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

diff --git a/media-libs/mesa/mesa-20.0.8.ebuild 
b/media-libs/mesa/mesa-20.0.8.ebuild
new file mode 100644
index 000..ff719014070
--- /dev/null
+++ b/media-libs/mesa/mesa-20.0.8.ebuild
@@ -0,0 +1,559 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit llvm meson multilib-minimal python-any-r1 linux-info
+
+OPENGL_DIR="xorg-x11"
+
+MY_P="${P/_/-}"
+
+DESCRIPTION="OpenGL-like graphic library for Linux"
+HOMEPAGE="https://www.mesa3d.org/ https://mesa.freedesktop.org/";
+
+if [[ ${PV} ==  ]]; then
+   EGIT_REPO_URI="https://gitlab.freedesktop.org/mesa/mesa.git";
+   inherit git-r3
+else
+   SRC_URI="https://mesa.freedesktop.org/archive/${MY_P}.tar.xz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+RESTRICT="
+   !test? ( test )
+"
+
+RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
+VIDEO_CARDS="${RADEON_CARDS} freedreno i915 i965 intel iris lima nouveau 
panfrost vc4 virgl vivante vmware"
+for card in ${VIDEO_CARDS}; do
+   IUSE_VIDEO_CARDS+=" video_cards_${card}"
+done
+
+IUSE="${IUSE_VIDEO_CARDS}
+   +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 +gles2 +libglvnd 
+llvm
+   lm-sensors opencl osmesa selinux test unwind vaapi valgrind vdpau vulkan
+   vulkan-overlay wayland +X xa xvmc +zstd"
+
+REQUIRED_USE="
+   d3d9?   ( dri3 || ( video_cards_iris video_cards_r300 video_cards_r600 
video_cards_radeonsi video_cards_nouveau video_cards_vmware ) )
+   gles1?  ( egl )
+   gles2?  ( egl )
+   vulkan? ( dri3
+ video_cards_radeonsi? ( llvm ) )
+   vulkan-overlay? ( vulkan )
+   wayland? ( egl gbm )
+   video_cards_freedreno?  ( gallium )
+   video_cards_intel?  ( classic )
+   video_cards_i915?   ( || ( classic gallium ) )
+   video_cards_i965?   ( classic )
+   video_cards_iris?   ( gallium )
+   video_car

[gentoo-commits] repo/gentoo:master commit in: www-apps/wordpress/

2020-06-11 Thread Aaron Bauman
commit: e049b95352cd5111d4c73ecbcd04125a9b881900
Author: Aaron Bauman  gentoo  org>
AuthorDate: Fri Jun 12 03:33:21 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Fri Jun 12 03:33:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e049b953

www-apps/wordpress: drop vulnerable

Bug: https://bugs.gentoo.org/728006
Signed-off-by: Aaron Bauman  gentoo.org>

 www-apps/wordpress/Manifest   |  1 -
 www-apps/wordpress/wordpress-5.4.1.ebuild | 57 ---
 2 files changed, 58 deletions(-)

diff --git a/www-apps/wordpress/Manifest b/www-apps/wordpress/Manifest
index 9c836d75778..33b0d5f37d4 100644
--- a/www-apps/wordpress/Manifest
+++ b/www-apps/wordpress/Manifest
@@ -1,2 +1 @@
-DIST wordpress-5.4.1.tar.gz 12234700 BLAKE2B 
0df1f1b1da22c5ad429ef59861dbcb80b5bd6c8720bc96b450d2b6599b903dda813e16f28fc2ee2afe1654b4047556a06bb409f6d0a3be3671b37e54fac52cf3
 SHA512 
5ed4f3bd593febdf2aec4c582c2ed850d3bf52122273b4306c1fba87939a675228df84092a709052f13e0096b2545cd6f078ab89b232ee4b4dce467d834de0cd
 DIST wordpress-5.4.2.tar.gz 12238031 BLAKE2B 
47e80985392540d5cf46c40b3a4e7ef75ca8ee95996b13442e288ee68510d001ec92cb11c7621dfb1148a7a1409fed2418b2c6758555d63e457b19ae6cf43368
 SHA512 
d1f4366f6e8ec591ce91ed76ea6949feeaf112881c3d742860c79955283b31c1712a04394eda8308d6d5756ff6d20ef4cf2e18559a59469ef195cf2cb437c219

diff --git a/www-apps/wordpress/wordpress-5.4.1.ebuild 
b/www-apps/wordpress/wordpress-5.4.1.ebuild
deleted file mode 100644
index 6fc0786bf3b..000
--- a/www-apps/wordpress/wordpress-5.4.1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit webapp
-
-DESCRIPTION="Wordpress PHP and MySQL based content management system (CMS)"
-HOMEPAGE="https://wordpress.org/";
-SRC_URI="https://wordpress.org/${P/_rc/-RC}.tar.gz";
-
-LICENSE="GPL-2+"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
-
-RDEPEND="virtual/httpd-php
-   || ( dev-lang/php[mysql] dev-lang/php[mysqli] )"
-
-S=${WORKDIR}/${PN}
-
-need_httpd_cgi
-
-IUSE="+akismet examples +themes vhosts"
-
-src_install() {
-   webapp_src_preinst
-
-   dodoc readme.html
-   rm readme.html license.txt || die
-
-   if use !akismet ; then
-   rm -R wp-content/plugins/akismet/ || die
-   fi
-   if use !examples ; then
-   rm wp-content/plugins/hello.php || die
-   fi
-   if use !themes ; then
-   rm -R wp-content/themes/*/ || die
-   fi
-
-   [[ -f wp-config.php ]] || cp wp-config-sample.php wp-config.php
-
-   insinto "${MY_HTDOCSDIR}"
-   doins -r .
-
-   webapp_serverowned "${MY_HTDOCSDIR}"/index.php
-   webapp_serverowned "${MY_HTDOCSDIR}"/wp-admin/menu.php
-   webapp_serverowned "${MY_HTDOCSDIR}"
-   # allows plugins update if allowed within WP
-   webapp_serverowned "${MY_HTDOCSDIR}"/wp-admin/includes/file.php
-
-   webapp_configfile  "${MY_HTDOCSDIR}"/wp-config.php
-
-   webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
-   webapp_postupgrade_txt en "${FILESDIR}"/postupgrade-en.txt
-
-   webapp_src_install
-}



[gentoo-commits] repo/gentoo:master commit in: games-action/heroes/files/, games-action/heroes/

2020-06-11 Thread Stefan Strogin
commit: effe2edd232d7f8decce455309dd6ae252316cfe
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Mon Jun  8 09:58:02 2020 +
Commit: Stefan Strogin  gentoo  org>
CommitDate: Fri Jun 12 03:13:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=effe2edd

games-action/heroes: fix compilation; update ebuild

Fix compilation on GCC 10 (#708794, patch taken from Debian
https://salsa.debian.org/games-team/heroes/-/blob/master/debian/patches/single-declaration.patch),
update to EAPI 7, minor cleanups.

Closes: https://bugs.gentoo.org/708794
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Azamat H. Hackimov  gmail.com>

Add patch to add a missing header and packed attributes for structures
[https://salsa.debian.org/games-team/heroes/-/blob/master/debian/patches/compilation-fixes.patch]
Closes: https://github.com/gentoo/gentoo/pull/16116
Signed-off-by: Stefan Strogin  gentoo.org>

 .../heroes/files/heroes-0.21-compilation.patch | 48 ++
 ...ix.patch => heroes-0.21-cvs-segfault-fix.patch} |  0
 games-action/heroes/files/heroes-0.21-gcc10.patch  | 16 
 games-action/heroes/heroes-0.21-r2.ebuild  | 42 +++
 4 files changed, 89 insertions(+), 17 deletions(-)

diff --git a/games-action/heroes/files/heroes-0.21-compilation.patch 
b/games-action/heroes/files/heroes-0.21-compilation.patch
new file mode 100644
index 000..e972953093c
--- /dev/null
+++ b/games-action/heroes/files/heroes-0.21-compilation.patch
@@ -0,0 +1,48 @@
+Description: GCC 6 compilation fixes
+Author: Stephen Kitt 
+
+Add a missing header.
+Propagate packed attributes as necessary.
+
+--- a/lib/xstrduplwr.c
 b/lib/xstrduplwr.c
+@@ -25,6 +25,7 @@
+ 
+ #include 
+ #include 
++#include 
+ 
+ #include "xalloc.h"
+ #include "xstrduplwr.h"
+--- a/src/pcx.h
 b/src/pcx.h
+@@ -23,7 +23,7 @@
+ 
+ #include "video.h"
+ 
+-typedef struct pcx_header_type
++typedef struct ATTRIBUTE_PACKED pcx_header_type
+ {
+   a_u8 signature;
+   a_u8 version;
+@@ -39,9 +39,9 @@
+   a_u16 palette_kind;
+   a_u8 rien[58];
+ }
+-a_pcx_header ATTRIBUTE_PACKED;
++a_pcx_header;
+ 
+-typedef struct
++typedef struct ATTRIBUTE_PACKED
+ {
+   a_u8 r, g, b;
+ }
+@@ -54,7 +54,7 @@
+ }
+ a_palette;
+ 
+-typedef struct img_type
++typedef struct ATTRIBUTE_PACKED img_type
+ {
+   a_pcx_header header;
+   a_palette palette;

diff --git a/games-action/heroes/files/0.21-cvs-segfault-fix.patch 
b/games-action/heroes/files/heroes-0.21-cvs-segfault-fix.patch
similarity index 100%
rename from games-action/heroes/files/0.21-cvs-segfault-fix.patch
rename to games-action/heroes/files/heroes-0.21-cvs-segfault-fix.patch

diff --git a/games-action/heroes/files/heroes-0.21-gcc10.patch 
b/games-action/heroes/files/heroes-0.21-gcc10.patch
new file mode 100644
index 000..b806e3e8878
--- /dev/null
+++ b/games-action/heroes/files/heroes-0.21-gcc10.patch
@@ -0,0 +1,16 @@
+Descriptions: Ensure variables are only declared once
+Author: Stephen Kitt 
+
+--- a/src/persona.h
 b/src/persona.h
+@@ -28,8 +28,8 @@
+  * difference only if the program has a sgid or suid bit.
+  */
+ 
+-bool keep_sgid;   /* Whether we should keep the  */
+-bool keep_suid;   /* SGID or SUID priviledge. */
++extern bool keep_sgid;/* Whether we should keep the  
*/
++extern bool keep_suid;/* SGID or SUID priviledge. */
+ 
+ /* Get information about the current persona,
+and switch to the user persona.  */

diff --git a/games-action/heroes/heroes-0.21-r2.ebuild 
b/games-action/heroes/heroes-0.21-r2.ebuild
index 5ab9018ee3d..9e7f8d9fcc0 100644
--- a/games-action/heroes/heroes-0.21-r2.ebuild
+++ b/games-action/heroes/heroes-0.21-r2.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
-inherit eutils autotools
+EAPI=7
+
+inherit autotools
 
 data_ver=1.5
 snd_trk_ver=1.0
@@ -21,11 +22,17 @@ KEYWORDS="~amd64 ~x86"
 IUSE="ggi nls sdl"
 RESTRICT="test"
 
-RDEPEND="
-   ggi? ( media-libs/libggi media-libs/libgii media-libs/libmikmod )
+REQUIRED_USE="^^ ( ggi sdl )"
+RDEPEND="ggi? (
+   media-libs/libggi
+   media-libs/libgii
+   media-libs/libmikmod
+   )
nls? ( virtual/libintl )
-   sdl? ( media-libs/libsdl media-libs/sdl-mixer )
-   !sdl? ( !ggi? ( media-libs/libsdl media-libs/sdl-mixer ) )"
+   sdl? (
+   media-libs/libsdl
+   media-libs/sdl-mixer
+   )"
 DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
 
@@ -34,7 +41,9 @@ PATCHES=(
"${FILESDIR}/${P}"-automake-1.12.patch
"${FILESDIR}/${P}"-gcc4.patch
"${FILESDIR}/${P}"-underlink.patch
-   "${FILESDIR}/${PV}"-cvs-segfault-fix.patch
+   "${FILESDIR}/${P}"-cvs-segfault-fix.patch
+   "${FILESDIR}/${P}"-compilation.patch
+   

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

2020-06-11 Thread Georgy Yakovlev
commit: e05f63196a9b4759046d33a423a3a264597fb76c
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Jun 12 03:07:31 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Jun 12 03:10:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e05f6319

sys-apps/fd: 8.1.1 amd64 stable

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Georgy Yakovlev  gentoo.org>

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

diff --git a/sys-apps/fd/fd-8.1.1.ebuild b/sys-apps/fd/fd-8.1.1.ebuild
index 2eba1fbef8a..4eb1803bae9 100644
--- a/sys-apps/fd/fd-8.1.1.ebuild
+++ b/sys-apps/fd/fd-8.1.1.ebuild
@@ -82,7 +82,7 @@ 
SRC_URI="https://github.com/sharkdp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="Apache-2.0 BSD-2 ISC MIT Unlicense"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
 IUSE=""
 
 DEPEND="!elibc_musl? ( >=dev-libs/jemalloc-5.1.0:= )"



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

2020-06-11 Thread Georgy Yakovlev
commit: 68146813ca52b837d8da947c53771c1fe6bed8ff
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Jun 12 03:08:11 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Jun 12 03:10:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68146813

sys-apps/fd: 8.1.1 x86 stable

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Georgy Yakovlev  gentoo.org>

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

diff --git a/sys-apps/fd/fd-8.1.1.ebuild b/sys-apps/fd/fd-8.1.1.ebuild
index 4eb1803bae9..e1a3a8f0436 100644
--- a/sys-apps/fd/fd-8.1.1.ebuild
+++ b/sys-apps/fd/fd-8.1.1.ebuild
@@ -82,7 +82,7 @@ 
SRC_URI="https://github.com/sharkdp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="Apache-2.0 BSD-2 ISC MIT Unlicense"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="!elibc_musl? ( >=dev-libs/jemalloc-5.1.0:= )"



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

2020-06-11 Thread Georgy Yakovlev
commit: bf187ec6de1bcedbe106fcfcb8dcbab8db38dcb7
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Jun 12 03:09:13 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Jun 12 03:10:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf187ec6

sys-apps/fd: drop old

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-apps/fd/Manifest|  57 
 sys-apps/fd/fd-7.4.0.ebuild |  99 --
 sys-apps/fd/fd-7.5.0.ebuild | 102 ---
 sys-apps/fd/fd-8.0.0.ebuild | 103 
 4 files changed, 361 deletions(-)

diff --git a/sys-apps/fd/Manifest b/sys-apps/fd/Manifest
index 0e08ecaae59..82fe5e520b0 100644
--- a/sys-apps/fd/Manifest
+++ b/sys-apps/fd/Manifest
@@ -1,125 +1,68 @@
 DIST aho-corasick-0.7.10.crate 111039 BLAKE2B 
69f984dbe528ece5ce4345bc0f39c122507a88e781d7c2d5c9175d1788aeef8d21e0487c7c449e28fbbdaae8203fe68627d23ac0a58d30dc70befd26ac9af32f
 SHA512 
e8a1cb252015435009883662ca23408f1491d8f01461f3a81082feabeeff72ec61beb4f1f3271fc8a87f1379899ecfc38036ac208dca17889f70ddaca2406a9b
-DIST aho-corasick-0.7.6.crate 108953 BLAKE2B 
d713366d0783e1ffbe65408e4d38ef9f12276f61043c768265de5d47e446a378306096a70252c9a49a6e7d3b97a09f30405a3d8df6b40dc2dfeb7407ed574c95
 SHA512 
120aa28e72279f561d7f51657aa0800dd46504cd92f758f848284e5f3695be6f5e24056a66b0f2d971c527277e92ae938e2357ade37b5cbe1c93913a5dc308b1
 DIST ansi_term-0.11.0.crate 17087 BLAKE2B 
9bd35c045a01ce4c6c4a5db1b4f15e9412bb97426eec19d4421dffbec633de8d13452c13c1dc1b30998690b78d7ed38311aca700087f13a81f66bd1d5d7300c4
 SHA512 
a637466a380748f939b3af090b8c0333f35581925bc03f4dda9b3f95d338836403cf5487ae3af9ff68f8245a837f8ab061aabe57a126a6a2c20f2e972c77d1fa
 DIST ansi_term-0.12.1.crate 24838 BLAKE2B 
f636772c34e2d68cda7b8d3b2b86abda074585a62bd2654812ce92384244655a9197fa66e6939e19a674c0148ca605313d83de262bb18c2339a8a4eb4438a791
 SHA512 
b840e28b3e7700689a69a39659b1e066560078dd4a58326b91a028915819e7af883399ee53e920db68fd974c58d35bb1ddf8d427af5937d5f696f57c4376b671
-DIST anyhow-1.0.28.crate 26549 BLAKE2B 
856d810ebc8765e173601e74e7064ee524c615fda87adcb8e49d6d1c76857edcfdfa8c480bcd1892c0b8be26e3cff3ea9333f3edbe7c60386e48e1deb3f031f2
 SHA512 
d8c2aa7ae279fe5b9b9ecba1bce3acd14f0087f98c494e6727ea3540d59ae021e373fe4d27e07b942061591cabc68cdd7b1abce4970479d0d44851e9fca66524
 DIST anyhow-1.0.31.crate 28514 BLAKE2B 
1177bbac61e96eb007a7a9a79499a7dab08a5c828987221df32c137b69bed53473b37f01debf49a7da0883407c6da40192fbc800c9b7983128738b2889d327a4
 SHA512 
e60394f48b74f8db4e61b9bfdb146b8e7a8b014c0a729ccb9e657d648a9310e642c77f6e5e5d4c8a6ed40a65c65bda79e45cda9a3efd04a901376e3912aebb8a
 DIST arrayref-0.3.6.crate 10035 BLAKE2B 
88292fa4b3ad4fccd03772c2f0eca04cc13373fe094358bac57d7523c256d89f3087603e5bcb2a0b15d8b2ecd48e904a822b2cb800276a9c47ad6c6b660d9d34
 SHA512 
368341d00706c1250ff081b0d99c36c9af694a62ff4f4d8c837234340295771ca49c5439b24b6e1a4f2c3c5821764e98881dcb22d793f83de632fd5cb457671f
 DIST arrayvec-0.5.1.crate 26816 BLAKE2B 
172dab8f0129134dfc89c6032c5fc15e2f86a5cd1e5be18b87fe2108d18a1bdb0f597a6ed4cd214dc663fbfb27b05c66846fba4543b5e068b5c75d075bdc5bff
 SHA512 
53db2fafea1f60ac1af9ecc0bc9b69010e9f8573048481d55969ecdc9f3d19832fe05824acf10a0186b0464f0fbfe898d73500fba39ed63650c64dac2c2e8043
-DIST atty-0.2.13.crate 4764 BLAKE2B 
673eea1d377fc3aca792a3a8bd2a5c058f3041abc76a8760dd6acab7f19fa610f812c57d81a4dbf773675cad3df483904c66e66b45d83393402f747c6db60d89
 SHA512 
4554ca7dedb4c2e8693e5847ef1fe66161ed4cb2c19156bb03f41ce7e7ea21838369dabaf447a60d1468de8bfbb7087438c12934c4569dde63df074f168569ad
 DIST atty-0.2.14.crate 5470 BLAKE2B 
2db856a9e898a430258f059aeaf7c844a153293e8856d90ac81f7d91a888c89198768ad5cb09303c23241fe85c560a55148fa56a303651a82b0edb895616bfab
 SHA512 
d7b6c4b9a0f898d91ddbc41a5ee45bbf45d1d269508c8cc87ee3e3990500e41e0ec387afb1f3bc7db55bedac396dd86c6509f4bf9e5148d809c3802edcc5e1d9
 DIST autocfg-1.0.0.crate 12870 BLAKE2B 
79e495d53298574afd3b292da7c9c363dcb3ea434fd44258efaf3628e95ebfc731f03083f8a1060272a2a3478a6452cdc41539e2dac08465cc6e6283844bf260
 SHA512 
451fc63148792ba1952b884170e3481359b01bacca5ec0456f43ca58f8e092b8f81c9764f8b00d4104059ff608089be5858220ee868127c064cc890c767ec3a3
 DIST base64-0.11.0.crate 48362 BLAKE2B 
90d2a64496e20c4bcca6f21c2546474ec88283679ccae95303ea7521133414eba021810e64e5916e3980b6878f90281f09295ebadcc12324fc9a9060ac41a707
 SHA512 
31b5f56d4907a5e4ae40e92ef1629a446126525186f5236afc2475829bf2e5e067554db200a18f7b3ab741d0cc9c01e20612e77cc0cbc1bc2a4a8d11c0fdbf33
-DIST bitflags-1.1.0.crate 16322 BLAKE2B 
01931976111840ca69b58e77e2c18b26ebabe4ef71ebdbe83565fbef42ffbb9512ad376192c085070485cd344b8614f260aafe0614fb20342cca5a15e9616385
 SHA512 
e3e611cf35a1ed4930727d530e6c78add895bd96636ca1354f1269b3d0e36e77fbb9ec850fe1f448a10f09ea2b2f89c2b16bb96b7da585851ce4c29a308968e3
 DIST bitflags-1.2.1.crate 16745 BLAKE2B 
0fa6d3ce44aad7616d5cd

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

2020-06-11 Thread Lars Wendler
commit: c91a301ff2ca1c413d35dc21db8cbfc2cd703799
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jun 12 03:03:16 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jun 12 03:03:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c91a301f

dev-libs/libgnt: Block older pidgin versions

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

 dev-libs/libgnt/libgnt-2.14.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-libs/libgnt/libgnt-2.14.0.ebuild 
b/dev-libs/libgnt/libgnt-2.14.0.ebuild
index 74cd1cd5670..d3e465f73b5 100644
--- a/dev-libs/libgnt/libgnt-2.14.0.ebuild
+++ b/dev-libs/libgnt/libgnt-2.14.0.ebuild
@@ -15,6 +15,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc 
~x86 ~amd64-linux ~
 IUSE="doc"
 
 RDEPEND="
+   !

[gentoo-commits] proj/musl:master commit in: sys-devel/gcc/

2020-06-11 Thread Jory Pratt
commit: 720162afb30c57bc739fd026fdc7177dfd5ebdee
Author: Jory Pratt  gentoo  org>
AuthorDate: Fri Jun 12 03:02:40 2020 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Fri Jun 12 03:02:40 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=720162af

sys-devel/gcc: sync update with tree

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

 sys-devel/gcc/Manifest| 2 +-
 sys-devel/gcc/{gcc-10.1.0.ebuild => gcc-10.1.0-r1.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index 798807f..986ec1f 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -1,4 +1,4 @@
-DIST gcc-10.1.0-patches-1.tar.bz2 13432 BLAKE2B 
2f0517778eb012288ae305a91f84eb31a5f08f842c504201f1a8085afd42ed4c9b4a5b15f7553982c926735e8ea57307a1749004e679880ef47abad7d4596115
 SHA512 
cc513d8b68dcf484d37c51961c809fc6c470a8341f068b4029430ca4677e7b49155c3d964b3b9ab50c69835b32db98bcb9a91f14de14417e4611521059192118
+DIST gcc-10.1.0-patches-2.tar.bz2 15808 BLAKE2B 
8275c2ac3eda8e87255fefe2bb4ed2a10d790bf6085517cd26589fa6a98aa417f4578da88da91b4639d78ed9c897a07447d2048698b4e003f3adc397881c7ee5
 SHA512 
f3ef55103346a0ca40a5633a520091e93e98a3226d24a2b677f791af511460ea5bb5f6dbda6cdf706af2aeb22eb39d37cf226e012bd378c330db17246da88d09
 DIST gcc-10.1.0.tar.xz 74591240 BLAKE2B 
d64cf01beaaff7af9e7d5b1d5e6fdfb37cce5667b4455c1c9bbfd190e631f03555d63d52d31e7be5ac232256be11058f89d5bc7d0dcb01de44e90a52645ad87f
 SHA512 
0cb2a74c793face751f42bc580960b00e2bfea785872a0a2155f1f1dbfaa248f9591b67f4322db0f096f8844aca9243bc02732bda106c3b6e43b02bb67eb3096
 DIST gcc-9.3.0-patches-2.tar.bz2 13230 BLAKE2B 
d37859c753864be2c4b8c98847f6e51d9c2b1c091304971c31cf680d6f2194131bac3dfd625077117ca452d6f4416e72c7892d19ccc5880eac7a6bcbe5b2a286
 SHA512 
c5f7c9d4350879e5ca61e97897e37e4cfea56d0c961aad8df09041e6b1fededad0d7ed89387836d0779b947bdfe7696009d5c61c73630c45f09ca1f3ec3b163c
 DIST gcc-9.3.0.tar.xz 70533868 BLAKE2B 
21efb1432aefad5ed9b9b395e88ef2adfda3a8ea6e3e808cd151da6e66df9fed1bafdc8b8ff055d4b2272ac786d8b7ddc4293bb6b51c55c40a261a0eda0e7cb4
 SHA512 
4b9e3639eef6e623747a22c37a904b4750c93b6da77cf3958d5047e9b5ebddb7eebe091cc16ca0a227c0ecbd2bf3b984b221130f269a97ee4cc18f9cf6c444de

diff --git a/sys-devel/gcc/gcc-10.1.0.ebuild 
b/sys-devel/gcc/gcc-10.1.0-r1.ebuild
similarity index 97%
rename from sys-devel/gcc/gcc-10.1.0.ebuild
rename to sys-devel/gcc/gcc-10.1.0-r1.ebuild
index 2212fc4..507c829 100644
--- a/sys-devel/gcc/gcc-10.1.0.ebuild
+++ b/sys-devel/gcc/gcc-10.1.0-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="7"
 
-PATCH_VER="1"
+PATCH_VER="2"
 
 inherit toolchain
 



[gentoo-commits] repo/gentoo:master commit in: net-dns/dnscrypt-proxy/

2020-06-11 Thread Georgy Yakovlev
commit: f3f15e6bcf8be448c80237b4f6f7adc91d98eca2
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Thu Jun 11 21:56:12 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Jun 12 02:35:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3f15e6b

net-dns/dnscrypt-proxy: run tests

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

 net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.41.ebuild | 5 +
 net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.42.ebuild | 5 +
 net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.43.ebuild | 5 +
 net-dns/dnscrypt-proxy/dnscrypt-proxy-.ebuild   | 5 +
 4 files changed, 20 insertions(+)

diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.41.ebuild 
b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.41.ebuild
index 7bc0187ab8c..4f7ddaa4a1b 100644
--- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.41.ebuild
+++ b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.41.ebuild
@@ -39,6 +39,11 @@ src_compile() {
popd >/dev/null || die
 }
 
+src_test() {
+   cd "${PN}" || die
+   go test -mod=vendor -buildmode="$(usex pie pie default)" || die "Failed 
to run tests"
+}
+
 src_install() {
pushd "${PN}" >/dev/null || die
 

diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.42.ebuild 
b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.42.ebuild
index 2a13bf21225..a0456c6a5fc 100644
--- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.42.ebuild
+++ b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.42.ebuild
@@ -39,6 +39,11 @@ src_compile() {
popd >/dev/null || die
 }
 
+src_test() {
+   cd "${PN}" || die
+   go test -mod=vendor -buildmode="$(usex pie pie default)" || die "Failed 
to run tests"
+}
+
 src_install() {
pushd "${PN}" >/dev/null || die
 

diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.43.ebuild 
b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.43.ebuild
index 1de44bd952e..bfc4fef8eb0 100644
--- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.43.ebuild
+++ b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.43.ebuild
@@ -39,6 +39,11 @@ src_compile() {
popd >/dev/null || die
 }
 
+src_test() {
+   cd "${PN}" || die
+   go test -mod=vendor -buildmode="$(usex pie pie default)" || die "Failed 
to run tests"
+}
+
 src_install() {
pushd "${PN}" >/dev/null || die
 

diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-.ebuild 
b/net-dns/dnscrypt-proxy/dnscrypt-proxy-.ebuild
index 7bc0187ab8c..4f7ddaa4a1b 100644
--- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-.ebuild
+++ b/net-dns/dnscrypt-proxy/dnscrypt-proxy-.ebuild
@@ -39,6 +39,11 @@ src_compile() {
popd >/dev/null || die
 }
 
+src_test() {
+   cd "${PN}" || die
+   go test -mod=vendor -buildmode="$(usex pie pie default)" || die "Failed 
to run tests"
+}
+
 src_install() {
pushd "${PN}" >/dev/null || die
 



[gentoo-commits] repo/gentoo:master commit in: net-dns/dnscrypt-proxy/

2020-06-11 Thread Georgy Yakovlev
commit: e286ef56f3a147c6ff8ab9f5a46618e0fcdb936c
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Thu Jun 11 21:56:13 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Jun 12 02:35:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e286ef56

net-dns/dnscrypt-proxy: bump to 2.0.44

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Closes: https://github.com/gentoo/gentoo/pull/16198
Signed-off-by: Georgy Yakovlev  gentoo.org>

 net-dns/dnscrypt-proxy/Manifest|   1 +
 .../dnscrypt-proxy/dnscrypt-proxy-2.0.44.ebuild| 105 +
 2 files changed, 106 insertions(+)

diff --git a/net-dns/dnscrypt-proxy/Manifest b/net-dns/dnscrypt-proxy/Manifest
index 2f04d7b30a8..70d7d128cb1 100644
--- a/net-dns/dnscrypt-proxy/Manifest
+++ b/net-dns/dnscrypt-proxy/Manifest
@@ -1,3 +1,4 @@
 DIST dnscrypt-proxy-2.0.41.tar.gz 2323421 BLAKE2B 
572a0ad15df6c40d1738b296972584f5d8fe382ca3c0a05b4fc74e986e767a058227dda2127c843127bc0b90e8b7bbe17a5eaee42175f0b77e21160ac63f7a88
 SHA512 
26be163daa03633f2d76f1121fb1987e0155613bd84cbb2aad2ba0eedbd35ec0b393d1c1a0aaba47968b3a08bd0273ad929a164695ce35d2ebe05ce3b5f5dfd1
 DIST dnscrypt-proxy-2.0.42.tar.gz 2324442 BLAKE2B 
8444eca1fc2bfc6029c1848bbeb77697b9b9c228c1bd0d17ed357b73667524c7052b33410a92847743533c3712f749fd93dbac46a81da48dae367e2a515cad8c
 SHA512 
093b07ee8eb44c1264e6ea4b60ad32e0221b1b02c1d61f142b1fbf37dc5181533cc3c5d6e7468d0f7488611de4620947684269da9f08f21da0aa501ba70be711
 DIST dnscrypt-proxy-2.0.43.tar.gz 2279744 BLAKE2B 
f06892bc14da2be2e97dfb5d233420cf3726e359ccd0658d4309981291a12a7cac7a7592d11717a9466144bd5cb9d9a4e1b6ba8877a8b5c539783749588a10a1
 SHA512 
a1d14756d6be6450683a44adae197aa582df2556dda588debdadd0903b5993a4dc579880479f138ec3690045aeab833a19f23b2555a403930d26d4a5bc90ed5f
+DIST dnscrypt-proxy-2.0.44.tar.gz 2279842 BLAKE2B 
90f156914dd29ab5baa2eb02ed2992583999a6688d09a532f8c7c1ec6d285bd39893f66726da928f295056fd66cd756f4332f1ed21284ffa3d357ce355a08625
 SHA512 
009e2b669c1d6f6cd6b41f5e04d08735587f420dacdea8d422a3c12a62614c1ce1963deebca3af1f956070abd9ff5df9182cb27e31fa0fac8a95478739445801

diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.44.ebuild 
b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.44.ebuild
new file mode 100644
index 000..bfc4fef8eb0
--- /dev/null
+++ b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.44.ebuild
@@ -0,0 +1,105 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGO_PN="github.com/DNSCrypt/${PN}"
+
+inherit fcaps go-module systemd
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://${EGO_PN}.git";
+else
+   SRC_URI="https://${EGO_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+fi
+
+DESCRIPTION="A flexible DNS proxy, with support for encrypted DNS protocols"
+HOMEPAGE="https://github.com/DNSCrypt/dnscrypt-proxy";
+
+LICENSE="Apache-2.0 BSD ISC MIT MPL-2.0"
+SLOT="0"
+IUSE="pie"
+
+BDEPEND=">=dev-lang/go-1.13"
+
+RDEPEND="
+   acct-group/dnscrypt-proxy
+   acct-user/dnscrypt-proxy
+"
+
+FILECAPS=( cap_net_bind_service+ep usr/bin/dnscrypt-proxy )
+
+PATCHES=( "${FILESDIR}"/config-full-paths-r11.patch )
+
+src_compile() {
+   pushd "${PN}" >/dev/null || die
+   go build -v -x -mod=readonly -mod=vendor -buildmode="$(usex pie pie 
default)" || die
+   popd >/dev/null || die
+}
+
+src_test() {
+   cd "${PN}" || die
+   go test -mod=vendor -buildmode="$(usex pie pie default)" || die "Failed 
to run tests"
+}
+
+src_install() {
+   pushd "${PN}" >/dev/null || die
+
+   dobin dnscrypt-proxy
+
+   insinto /etc/dnscrypt-proxy
+   newins example-dnscrypt-proxy.toml dnscrypt-proxy.toml
+   doins example-{blacklist.txt,whitelist.txt}
+   doins example-{cloaking-rules.txt,forwarding-rules.txt}
+
+   popd >/dev/null || die
+
+   insinto /usr/share/dnscrypt-proxy
+   doins -r "utils/generate-domains-blacklists/."
+
+   newinitd "${FILESDIR}"/dnscrypt-proxy.initd dnscrypt-proxy
+   newconfd "${FILESDIR}"/dnscrypt-proxy.confd dnscrypt-proxy
+
+   systemd_newunit "${FILESDIR}"/dnscrypt-proxy.service 
dnscrypt-proxy.service
+   systemd_newunit "${FILESDIR}"/dnscrypt-proxy.socket 
dnscrypt-proxy.socket
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/dnscrypt-proxy.logrotate dnscrypt-proxy
+
+   einstalldocs
+}
+
+pkg_postinst() {
+   fcaps_pkg_postinst
+   go-module_pkg_postinst
+
+   if ! use filecaps; then
+   ewarn "'filecaps' USE flag is disabled"
+   ewarn "${PN} will fail to listen on port 53"
+   ewarn "please do one the following:"
+   ewarn "1) re-enable 'filecaps'"
+   ewarn "2) change port to > 1024"
+   ewarn "3) configure to run ${PN} as root (not recommended)"
+   ewarn
+   

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

2020-06-11 Thread Georgy Yakovlev
commit: 35dd4f43670b89ecb99d87c06806a76bf54c8fce
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Jun 12 02:14:14 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Jun 12 02:35:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35dd4f43

sys-apps/fd: add ~arm64 keyword

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Georgy Yakovlev  gentoo.org>

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

diff --git a/sys-apps/fd/fd-8.1.1.ebuild b/sys-apps/fd/fd-8.1.1.ebuild
index 9fb7f2f6dfd..2eba1fbef8a 100644
--- a/sys-apps/fd/fd-8.1.1.ebuild
+++ b/sys-apps/fd/fd-8.1.1.ebuild
@@ -82,7 +82,7 @@ 
SRC_URI="https://github.com/sharkdp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="Apache-2.0 BSD-2 ISC MIT Unlicense"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 IUSE=""
 
 DEPEND="!elibc_musl? ( >=dev-libs/jemalloc-5.1.0:= )"



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

2020-06-11 Thread Stefan Strogin
commit: a3df3e79a44d2c179dedd118a97f1f3d1fc6ce4c
Author: Stefan Strogin  gentoo  org>
AuthorDate: Fri Jun 12 01:36:52 2020 +
Commit: Stefan Strogin  gentoo  org>
CommitDate: Fri Jun 12 01:38:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3df3e79

games-roguelike/angband: upgrade to 4.2.1

- Add manpage; don't install uncompiled RSTs as docs.
- Drop the gcc-10 patch applied upstream.
- Drop SDL 1.2 front end, install SDL 2 with USE=sdl.

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Stefan Strogin  gentoo.org>

 games-roguelike/angband/Manifest |   2 +
 games-roguelike/angband/angband-4.2.1.ebuild | 106 +++
 2 files changed, 108 insertions(+)

diff --git a/games-roguelike/angband/Manifest b/games-roguelike/angband/Manifest
index 0e9b762249c..b14097e874f 100644
--- a/games-roguelike/angband/Manifest
+++ b/games-roguelike/angband/Manifest
@@ -1,2 +1,4 @@
 DIST angband-4.1.3.tar.gz 19924395 BLAKE2B 
573181ab9b3a01abdc34cfac9e69a757eb7558c67c9490240890bc920c6c2a8ebea6268b733f06a6e421829d807fa135131c1512edfc344610a269139cc5ac47
 SHA512 
7810e1f04e337c1b5d1ddb6013785c953e0149dfa536c75dd8816fdfd304c37a09103d653cee0c150225c6ba702e121300a65012d8034079cd41f86a730f9c2a
 DIST angband-4.2.0.tar.gz 24727127 BLAKE2B 
4bdd5cfe49080fc38b988e6606eadddc2e872ca7b01f34e692ca299a420689310e9e972355986e802e654a27837ac2621eb3bc0823b7e771dc0a851a5c5a8bc6
 SHA512 
b5c4884ce765bc45d7c21b8be06bc29c7d84c16e48341967b5d6a847f250db104ef509fc28e8887d4f1cd9ed545e504781186936a1f38931d5113e2fb58b32c3
+DIST angband-4.2.1-man.tar.gz 104660 BLAKE2B 
ac7a413b1ec29cb3740fb1e57c238a5f87b9bc6965c4180a62e4089eb4b2cf7fa8f4eb2017d605255eacbb2856e64449745144ce0d9848a3b5cfd123fa1e39da
 SHA512 
2dd9e40e6bd4804162fb810d40a81932c65d01b8c8f019e73194f83b222e3ae319fe4b22ad8f59f88cb473426ad59efd4988d0bfaf289726453fa83d678e9ae8
+DIST angband-4.2.1.tar.gz 24938593 BLAKE2B 
ecacf4bd3681f205a3eb0a5b5ddf0fb7ff92600c26dffec3fc8addaccf7da26fd4f805e5fc11803c165c35e8adff9ae6bced08381ddde0e39bc914fac043e11c
 SHA512 
e13681bcd74fa56fe5c606d62f1e9761c9fc5367194e0e46894a5ebf108e1553a1f96191e139f1574238b72c635436c3108c80bc656aba8e328fe4e5b301c6bc

diff --git a/games-roguelike/angband/angband-4.2.1.ebuild 
b/games-roguelike/angband/angband-4.2.1.ebuild
new file mode 100644
index 000..2582bae9915
--- /dev/null
+++ b/games-roguelike/angband/angband-4.2.1.ebuild
@@ -0,0 +1,106 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools desktop xdg-utils
+
+MAJOR_PV=$(ver_cut 1-2)
+
+DESCRIPTION="A roguelike dungeon exploration game based on the books of J.R.R. 
Tolkien"
+HOMEPAGE="https://rephial.org/";
+SRC_URI="https://rephial.org/downloads/${MAJOR_PV}/${P}.tar.gz
+   https://dev.gentoo.org/~steils/distfiles/${P}-man.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ncurses sdl sound +X"
+
+REQUIRED_USE="sound? ( sdl )
+   || ( X ncurses )"
+
+RDEPEND="X? (
+   media-fonts/font-misc-misc
+   x11-libs/libX11
+   )
+   ncurses? ( sys-libs/ncurses:0=[unicode] )
+   sdl? (
+   media-libs/libsdl2[video,X]
+   media-libs/sdl2-image
+   media-libs/sdl2-ttf
+   sound? (
+   media-libs/libsdl2[sound]
+   media-libs/sdl2-mixer[mp3]
+   )
+   )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+   default
+
+   sed -i -e '/libpath/s#datarootdir#datadir#' configure.ac || die
+   sed -i -e "/^.SILENT/d" mk/buildsys.mk.in || die
+
+   if use !sound ; then
+   sed -i -e 's/sounds//' lib/Makefile || die
+   fi
+
+   # Game constant files are now system config files in Angband, but
+   # users will be hidden from applying updates by default
+   {
+   echo "CONFIG_PROTECT_MASK=\"/etc/${PN}/customize/\""
+   echo "CONFIG_PROTECT_MASK=\"/etc/${PN}/gamedata/\""
+   } > "${T}"/99${PN} || die
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --bindir="${EPREFIX}"/usr/bin
+   --with-private-dirs
+   $(use_enable X x11)
+   $(use_enable ncurses curses)
+   )
+   if use sdl; then
+   myconf+=(
+   --enable-sdl2
+   $(use_enable sound sdl2-mixer)
+   )
+   fi
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+
+   dodoc changes.txt README.md
+   doman "${WORKDIR}"/${PN}.1
+   doenvd "${T}"/99${PN}
+
+   if use X || use sdl; then
+   use X && make_desktop_entry "angband -mx11" "Angband (X11)" 
"${PN}"
+   use sdl && make_desktop_entry "angband -msdl2" "Angband (SDL2)" 
"${PN}"
+
+   local s
+   for s in 16 32 128 256 512; do
+   

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

2020-06-11 Thread Patrick McLean
commit: a3e80efa11906fe30c37dc3667464d58622c1a01
Author: Patrick McLean  sony  com>
AuthorDate: Fri Jun 12 00:38:44 2020 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Jun 12 00:39:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3e80efa

dev-python/argparse-manpage: New package

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Patrick McLean  gentoo.org>

 dev-python/argparse-manpage/Manifest   |  1 +
 .../argparse-manpage/argparse-manpage-1.4.ebuild   | 18 ++
 dev-python/argparse-manpage/metadata.xml   |  8 
 3 files changed, 27 insertions(+)

diff --git a/dev-python/argparse-manpage/Manifest 
b/dev-python/argparse-manpage/Manifest
new file mode 100644
index 000..327bbae6cba
--- /dev/null
+++ b/dev-python/argparse-manpage/Manifest
@@ -0,0 +1 @@
+DIST argparse-manpage-1.4.tar.gz 33661 BLAKE2B 
b2f6a0bb7ef3a95470e73c4c94b9fef42f130433d5f91263201d98c0afebd4c3fc38153a172aa86c50a773e3270e1f618083f968bd38a86046362367f2e8c022
 SHA512 
4756781dbe988541cb0e1fd8a79c4d262c7bf54397fb302ff3ad706e9a896d68f781931e73013cdd7136efc6e46914118b862e0377f49b73fb25b20d0a23744d

diff --git a/dev-python/argparse-manpage/argparse-manpage-1.4.ebuild 
b/dev-python/argparse-manpage/argparse-manpage-1.4.ebuild
new file mode 100644
index 000..ad772920204
--- /dev/null
+++ b/dev-python/argparse-manpage/argparse-manpage-1.4.ebuild
@@ -0,0 +1,18 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8,9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+inherit distutils-r1
+
+DESCRIPTION="Automatically build man-pages for your Python project"
+HOMEPAGE="https://github.com/praiskup/argparse-manpage 
https://pypi.org/project/argparse-manpage/";
+SRC_URI="https://github.com/praiskup/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+distutils_enable_tests pytest

diff --git a/dev-python/argparse-manpage/metadata.xml 
b/dev-python/argparse-manpage/metadata.xml
new file mode 100644
index 000..cee379b1540
--- /dev/null
+++ b/dev-python/argparse-manpage/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   chutz...@gentoo.org
+   Patrick McLean
+   
+



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

2020-06-11 Thread Georgy Yakovlev
commit: 0326022d60e80c438d0ea90f489eebb722320417
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jun 11 22:12:30 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Jun 12 00:30:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0326022d

dev-lang/rust: add experimental cross support to 1.44.0

Brief usage how-to in the ebuild
Bug: https://bugs.gentoo.org/680652
Bug: https://bugs.gentoo.org/680652
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-lang/rust/rust-1.44.0.ebuild | 57 
 1 file changed, 57 insertions(+)

diff --git a/dev-lang/rust/rust-1.44.0.ebuild b/dev-lang/rust/rust-1.44.0.ebuild
index 5deb73a5022..1a6fdeabca6 100644
--- a/dev-lang/rust/rust-1.44.0.ebuild
+++ b/dev-lang/rust/rust-1.44.0.ebuild
@@ -295,6 +295,63 @@ src_configure() {
EOF
fi
 
+   if [[ -n ${I_KNOW_WHAT_I_AM_DOING_CROSS} ]]; then #whitespace 
intentionally shifted below
+   # experimental cross support
+   # discussion: https://bugs.gentoo.org/679878
+   # TODO: c*flags, clang, system-llvm, cargo.eclass target support
+   # it would be much better if we could split out stdlib
+   # complilation to separate ebuild and abuse CATEGORY to
+   # just install to /usr/lib/rustlib/
+
+   # extra targets defined as a bash array
+   # spec format:  ::
+   # best place would be /etc/portage/env/dev-lang/rust
+   # Example:
+   # RUST_CROSS_TARGETS=(
+   #   "AArch64:aarch64-unknown-linux-gnu:aarch64-unknown-linux-gnu"
+   # )
+   # no extra hand holding is done, no target transformations, all
+   # values are passed as-is with just basic checks, so it's up to user to 
supply correct values
+   # valid rust targets can be obtained with 
+   #   rustc --print target-list
+   # matching cross toolchain has to be installed
+   # matching LLVM_TARGET has to be enabled for both rust and llvm (if 
using system one)
+   # only gcc toolchains installed with crossdev are checked for now.
+
+   # BUG: we can't pass host flags to cross compiler, so just filter for 
now
+   # BUG: this should be more fine-grained.
+   filter-flags '-mcpu=*' '-march=*' '-mtune=*'
+
+   local cross_target_spec
+   for cross_target_spec in "${RUST_CROSS_TARGETS[@]}";do
+   local cross_llvm_target="${cross_target_spec%%:*}"
+   local cross_triples="${cross_target_spec#*:}"
+   local cross_rust_target="${cross_triples#*:}"
+   local cross_toolchain="${cross_triples%:*}"
+   use llvm_targets_${cross_llvm_target} || die "need 
llvm_targets_${cross_llvm_target} target enabled"
+   command -v ${cross_toolchain}-gcc > /dev/null 2>&1 || die "need 
${cross_toolchain} cross toolchain"
+
+   cat <<- EOF >> "${S}"/config.toml
+   [target.${cross_rust_target}]
+   cc = "${cross_toolchain}-gcc"
+   cxx = "${cross_toolchain}-g++"
+   linker = "${cross_toolchain}-gcc"
+   ar = "${cross_toolchain}-ar"
+   EOF
+   if use system-llvm; then
+   cat <<- EOF >> "${S}"/config.toml
+   llvm-config = "$(get_llvm_prefix 
"${LLVM_MAX_SLOT}")/bin/llvm-config"
+   EOF
+   fi
+
+   rust_targets="${rust_targets},\"${cross_rust_target}\""
+   sed -i "/^target = \[/ s#\[.*\]#\[${rust_targets}\]#" 
config.toml || die
+   ewarn
+   ewarn "enabled ${rust_target} rust target, using 
${cross_toolchain} cross toolchain"
+   ewarn
+   done
+   fi # I_KNOW_WHAT_I_AM_DOING_CROSS
+
einfo "Rust configured with the following settings:"
cat "${S}"/config.toml || die
 }



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

2020-06-11 Thread Nick Sarnie
commit: df1445eb004f15decdccba0df92b42275755d97e
Author: Nick Sarnie  gentoo  org>
AuthorDate: Fri Jun 12 00:21:09 2020 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Fri Jun 12 00:21:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df1445eb

app-emulation/wine-staging: Sync with ::sync

Fix assert

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   1 +
 .../wine-staging/wine-staging-5.10-r1.ebuild   | 620 +
 2 files changed, 621 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 40d94787279..b7b9939d23a 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -4,6 +4,7 @@ DIST wine-5.10.tar.xz 23859084 BLAKE2B 
ee4d06f69e0259de4ec6cf1352c610aa2460762be
 DIST wine-5.7.tar.xz 23723624 BLAKE2B 
fbea8f753dee57368f7532eef6fe6bf366ba52e9c2b970147207cf879858b86a74d0dfb1f813cfd31058462aaa09f74dd07924370b4c3f032f0dcd0015eab90b
 SHA512 
46a8050cb21edf1116c93fd73fdc3bbbc1a19e18d77c38bc192f13e55954d3e503122c780ca9c1a50005b0bca6f3b0c640f3de05267f25289e08660321e27407
 DIST wine-5.8.tar.xz 23753648 BLAKE2B 
086f37ce469f6d176eab8daa2d124b1774526727e2f6fe4ecdd39862c13ed493ac4164cf98848d5bc8cba3675e13365f6ea2b34591d518c40c34d09556851578
 SHA512 
7b9df380655a72e8b9e95ca271a62308262d8efabbeb2ad459071afc9ed51518b42b1f75b019fe8d6b53cf5185e9cfc45ac1b8a7092f118fa2aff14f99c012de
 DIST wine-5.9.tar.xz 23802356 BLAKE2B 
1879c164c647a5b849056e4149a809c390814ae832773a44347cf1902fd49cb6619b4add5ea2d421c189d92b5c907daa0d6f62c37c48a8bd68d0eaa9eb465433
 SHA512 
edc6d55a275cf37430a62dc6d6d86bff6d5a434e708dbd99d245018db7f6a0abe39581a1d91eb947f204a45ac94cc5c931745169a3b63a2aecf8db277553b74b
+DIST wine-staging-5.10-r1.tar.gz 9862728 BLAKE2B 
4d70b0e4d71b4e06a57f9fa43a8d4c91dfdb149ab0dd6b92ff93928dc9f35ef56a0f9e3dc278b2db19d6dbab32a58478ed110d4cf0c35a3a598611afd39ca326
 SHA512 
5d6f495c157d4bd1558f976bd044b62e5ffce188b7d12c1e6d5b3d844aa2070503218778f48ca34a787a8b355ab2c09f76381499b7e474a1c047bdc3b15d803a
 DIST wine-staging-5.10.tar.gz 9863893 BLAKE2B 
aaa1fde81a30f38edaa849fa2ad6dc2a240683ffe9416e225ea60b8f21ad48683c8912f72af7b9379faa30dfeb0e8441d6cd0500f4153c82a319c69dbc43625a
 SHA512 
fca5ddb648ac45c242b9bd7ccb0980161bff1e3539aa1a116f1cceece9d3b4a3188c82bd93624f561653dda793ad16dc00a87c7ed0c38f19a93b538519ef806c
 DIST wine-staging-5.7.tar.gz 9913511 BLAKE2B 
f5d803a067ec61c5d698d7ebf0623b55f0e4fee487e6fcfb4de057d742ff4d55bf184004c4427e8b93052efa74fe9e14da2a41a826c79a0c62ef25de7b6e10ef
 SHA512 
042bcf7b90769c9d88d5cd844009301fb768568ee10ebf7aed9c3397ca35f6d6b512db2010917695f32bed9edf174d95f80a141d5af75a43871444b1830f2922
 DIST wine-staging-5.8.tar.gz 9878712 BLAKE2B 
a96f7e4aa1d1dddcda1a9d6a30ab3b564fb365a09efde22e5b7abab1ac015da0bc242b2fec6d4ae14dc5ddad38e3314a5f8c430e6eb10853ed8619e805bf5787
 SHA512 
3ea2a90ab0613b680274c95cf7ef3d3a7d807571fb792e05fc1df9bbd7a35c80a0d7c38342fea8858c5557ae3f12287a7ce09d0cdab5064000b79ec6c891ad15

diff --git a/app-emulation/wine-staging/wine-staging-5.10-r1.ebuild 
b/app-emulation/wine-staging/wine-staging-5.10-r1.ebuild
new file mode 100644
index 000..b382f9c5f3f
--- /dev/null
+++ b/app-emulation/wine-staging/wine-staging-5.10-r1.ebuild
@@ -0,0 +1,620 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils l10n 
multilib multilib-minimal pax-utils toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git";
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz";
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+STAGING_V="044cb930662d61f401a5d1bdd7b8e75d59cea5ea"
+STAGING_P="wine-staging-${STAGING_V}"
+STAGING_DIR="${WORKDIR}/${STAGING_P}"
+GWP_V="20200523"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, with Wine-Staging 
patchset"
+HOMEPAGE="https://www.winehq.org/";
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+if [[ ${PV} == "" ]] ; then
+   STAGING_EGIT_REPO_URI="https://github.com/wine-staging/wine-staging.git";
+else
+   SRC_URI="${SRC_URI}
+   staging? ( 
https://github.com/wine-staging/wine-staging/archive/${STAGING_V}.tar.gz -> 
wine-staging-5.10-r1.tar.gz )"
+fi
+
+LICE

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2020-06-11 Thread Nick Sarnie
commit: 0dec49b151eab12bc8c75e0b39c79e2c48d43bf8
Author: Nick Sarnie  gentoo  org>
AuthorDate: Fri Jun 12 00:18:51 2020 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Fri Jun 12 00:18:51 2020 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=0dec49b1

app-emulation/wine-staging: Fix assert

Closes: https://bugs.gentoo.org/727754
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   1 +
 .../wine-staging/wine-staging-5.10-r1.ebuild   | 620 +
 2 files changed, 621 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 5107a8a..04a628d 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -61,6 +61,7 @@ DIST wine-staging-4.8.tar.gz 9926681 BLAKE2B 
c5b5017c9675b3124f647d099755a997626
 DIST wine-staging-4.9.tar.gz 9926386 BLAKE2B 
17030134343da1971075f0397b56442d4cb459b491f0751c9f21dd4061d5110ab2c5c44cc984d43b8ad3480f735df3e6b9246868aec4984cc1c8be56072c44c1
 SHA512 
9676f54833a424f965af7591c40aa40cd3fb3b36062484de56585a631dafa68a9a545f00153350c067a0d73146f9f169a678041bb141f7562f9df6e31ec4e2d5
 DIST wine-staging-5.0.tar.gz 9942644 BLAKE2B 
e5d040ae903c6e982c961db1c7c30cfbf7245f00cd0df7c10ceb182c5227f5a555f1a41b24eca982a12b4981edee937cfa5079e6c6fec378d475fca3057cbb7c
 SHA512 
36849fc2c848db9949982619c4544b56468012a1f086cc92eb3e2027377c58c3c24daf508149e0e34a70e6b283edfd80833dc2f346c75f0be69f1fb2c5999cd6
 DIST wine-staging-5.1.tar.gz 9924758 BLAKE2B 
44a5710c126a1ea0a21dbac21826d2513191d79cb96f4a22adc5e6823d28b214d81af8f536914d4434402b5e2b70f89a25e2049cf12cbbde3f31ae2bc3bafab5
 SHA512 
ebb9bf0a0a3c7f108fff8b32ca79124d1da410fbfb320ad3298f3d92fabeb9ca81de6a4fefac344948a70c49771ffa3f0dc30de2ee6d6f61d158ed87a206a14e
+DIST wine-staging-5.10-r1.tar.gz 9862728 BLAKE2B 
4d70b0e4d71b4e06a57f9fa43a8d4c91dfdb149ab0dd6b92ff93928dc9f35ef56a0f9e3dc278b2db19d6dbab32a58478ed110d4cf0c35a3a598611afd39ca326
 SHA512 
5d6f495c157d4bd1558f976bd044b62e5ffce188b7d12c1e6d5b3d844aa2070503218778f48ca34a787a8b355ab2c09f76381499b7e474a1c047bdc3b15d803a
 DIST wine-staging-5.10.tar.gz 9863893 BLAKE2B 
aaa1fde81a30f38edaa849fa2ad6dc2a240683ffe9416e225ea60b8f21ad48683c8912f72af7b9379faa30dfeb0e8441d6cd0500f4153c82a319c69dbc43625a
 SHA512 
fca5ddb648ac45c242b9bd7ccb0980161bff1e3539aa1a116f1cceece9d3b4a3188c82bd93624f561653dda793ad16dc00a87c7ed0c38f19a93b538519ef806c
 DIST wine-staging-5.2.tar.gz 9898002 BLAKE2B 
f4dc43223cf89e6c76fc7898a98acdc9eb3d4a8e8279a38135f155d9a3fe6a2f7bbc52ece5c4a07cf801caa91c10e40f172271b442356e52a59c31a8a82db3c3
 SHA512 
dd2066db1eb4d424579bdf8d25f476eae0b86a6bea7b1f7ff2a21d7bf0209b4ef00d9c0ed29a7cab50c5dea4684acb5d342ebf02554b16fd0938a03e607f6270
 DIST wine-staging-5.3.tar.gz 9904213 BLAKE2B 
5a1a9b41a17533238151ad87ec631a9ff78f954fa51baaebac787bd4eba88730a3524e4778a55eb80fd4153302d443d859c0b27c149495cd72ab6263aa583a8a
 SHA512 
df14a61c04b134a72dc8662ee331fd234e2c82bf82824cb01443ae6516aba0bdcb579e2dbedc1ada47de0f3a1265c5fe9ef5f8183094d74451845b78d0a81702

diff --git a/app-emulation/wine-staging/wine-staging-5.10-r1.ebuild 
b/app-emulation/wine-staging/wine-staging-5.10-r1.ebuild
new file mode 100644
index 000..b382f9c
--- /dev/null
+++ b/app-emulation/wine-staging/wine-staging-5.10-r1.ebuild
@@ -0,0 +1,620 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils l10n 
multilib multilib-minimal pax-utils toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git";
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz";
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+STAGING_V="044cb930662d61f401a5d1bdd7b8e75d59cea5ea"
+STAGING_P="wine-staging-${STAGING_V}"
+STAGING_DIR="${WORKDIR}/${STAGING_P}"
+GWP_V="20200523"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, with Wine-Staging 
patchset"
+HOMEPAGE="https://www.winehq.org/";
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+if [[ ${PV} == "" ]] ; then
+   STAGING_EGIT_REPO_URI="https://github.com/wine-staging/wine-staging.git";
+else
+   SRC_URI="${SRC_URI}
+   staging? ( 
https://github.com/wine-staging/wine-staging/archive/${STAGING_V}.tar.gz -> 
wine-stagin

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

2020-06-11 Thread Mikle Kolyada
commit: 539f1f6692469c43ea329e348868670cc3bd531c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jun 11 23:33:14 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jun 11 23:33:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=539f1f66

media-sound/mpd: mark stable

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

 media-sound/mpd/mpd-0.21.22.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/mpd/mpd-0.21.22.ebuild 
b/media-sound/mpd/mpd-0.21.22.ebuild
index e1d6b01c903..2506310f4d8 100644
--- a/media-sound/mpd/mpd-0.21.22.ebuild
+++ b/media-sound/mpd/mpd-0.21.22.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 x86 ~x64-macos"
 IUSE="+alsa ao +audiofile bzip2 cdio chromaprint +cue +curl +dbus debug
+eventfd expat faad +ffmpeg +fifo flac fluidsynth gme +icu +id3tag 
+inotify
+ipv6 jack lame libmpdclient libsamplerate libsoxr +mad mikmod mms



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

2020-06-11 Thread Mikle Kolyada
commit: 432eab0c406a797a172dee035ed0589ec7a8428f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jun 11 23:34:29 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jun 11 23:34:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=432eab0c

media-sound/mpd: Drop old and buggy

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

 media-sound/mpd/Manifest   |   3 -
 media-sound/mpd/mpd-0.21.20.ebuild | 293 -
 media-sound/mpd/mpd-0.21.21.ebuild | 293 -
 media-sound/mpd/mpd-0.21.23.ebuild | 293 -
 4 files changed, 882 deletions(-)

diff --git a/media-sound/mpd/Manifest b/media-sound/mpd/Manifest
index 14f4940cf13..6f97cd583e7 100644
--- a/media-sound/mpd/Manifest
+++ b/media-sound/mpd/Manifest
@@ -1,5 +1,2 @@
-DIST mpd-0.21.20.tar.xz 676396 BLAKE2B 
e87d844ac0b20f10df7d2306d1c76f76ead84f5e61acb51f60d62847b1fb4f2ada66b20e0a36d87eaf70289027139e4beb80ea8ef7637b1cdb656c9635adb720
 SHA512 
9dd49190ba4c85014d24e88cdb02a4649e8fb687a49fc9ea019f23725eda483980008e9abebf0ad3960bd310b693c56999699d7c7ddee3ca18e9b2aa6d5a2176
-DIST mpd-0.21.21.tar.xz 676668 BLAKE2B 
83964784db4a7372344853ebf2e9c966e23ac293c06304a8aa6f927ec8ea38d2749d88670f1c5e380953bb8b777b4b0f2c5e8a98d7eb3cf1bae50b5e11549150
 SHA512 
1780a24f341dec1cbc3d9170cc2fc8249081cac8f677ff17df15fc959787cf43d30696eefba9b8a44824da14eee3d58e2ee78b34db1335c0a182b4c2a89e6b3a
 DIST mpd-0.21.22.tar.xz 679244 BLAKE2B 
d2d76662d1f249b138d3a173cdf712eafcebf91e819b70f2cbc6ccb36ca4bc1f2319972548445789d8861345af5e18ea82f071cd7874a7380bbdda85cf834b73
 SHA512 
051d97500d8224fe4769a667a58c7915eebcca809e9345a30881f99d7c33d99907d9cc0258c0a5fd20f10609edbeb6da16941099ac3c033762ceb4b116e4df04
-DIST mpd-0.21.23.tar.xz 680060 BLAKE2B 
5c7b4a69ff5960b171d715560aa7a6b0712a7fd3758e1561e5aea957c5d13164d92bee0ed262b70ea7e91d73c16412840078603c95d50959cc06d9aa4a981022
 SHA512 
155f606cd6ddce3e74d745a0f1479776d9f73b4cd250604072a863e28ea72d1ff1a7eafeae44cada7b16042251065634376eaa1a211b503e2f874c72dbcdecf0
 DIST mpd-0.21.24.tar.xz 681576 BLAKE2B 
4fc46841077a4fd20c9e0f21bc3de09be0bc7d6b4964db33c51f8d79672c2911ab747d08e27d3f9ab65586594f8fd560d044048a826fcae5909e34067bbff592
 SHA512 
dd0f97cdb405a0995ceafb965d2e872c54b27b384a721efa8d13ae7e28544b22da9e94433bc544f475d8da52d06c020842b11104cbfbc41406a10599db2d005c

diff --git a/media-sound/mpd/mpd-0.21.20.ebuild 
b/media-sound/mpd/mpd-0.21.20.ebuild
deleted file mode 100644
index 2506310f4d8..000
--- a/media-sound/mpd/mpd-0.21.20.ebuild
+++ /dev/null
@@ -1,293 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic linux-info meson systemd xdg-utils
-
-DESCRIPTION="The Music Player Daemon (mpd)"
-HOMEPAGE="https://www.musicpd.org https://github.com/MusicPlayerDaemon/MPD";
-SRC_URI="https://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 x86 ~x64-macos"
-IUSE="+alsa ao +audiofile bzip2 cdio chromaprint +cue +curl +dbus debug
-   +eventfd expat faad +ffmpeg +fifo flac fluidsynth gme +icu +id3tag 
+inotify
-   +ipv6 jack lame libmpdclient libsamplerate libsoxr +mad mikmod mms
-   modplug mpg123 musepack +network nfs openal opus oss pipe pulseaudio 
qobuz
-   recorder samba selinux sid signalfd sndfile soundcloud sqlite systemd
-   test tidal twolame udisks unicode vorbis wavpack webdav wildmidi upnp
-   zeroconf zip zlib"
-
-OUTPUT_PLUGINS="alsa ao fifo jack network openal oss pipe pulseaudio recorder"
-DECODER_PLUGINS="audiofile faad ffmpeg flac fluidsynth mad mikmod
-   modplug mpg123 musepack flac sid vorbis wavpack wildmidi"
-ENCODER_PLUGINS="audiofile flac lame twolame vorbis"
-
-REQUIRED_USE="
-   || ( ${OUTPUT_PLUGINS} )
-   || ( ${DECODER_PLUGINS} )
-   network? ( || ( ${ENCODER_PLUGINS} ) )
-   recorder? ( || ( ${ENCODER_PLUGINS} ) )
-   upnp? ( expat )
-   webdav? ( curl expat )
-   "
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   acct-user/mpd
-   alsa? (
-   media-libs/alsa-lib
-   media-sound/alsa-utils
-   )
-
-   ao? ( media-libs/libao[alsa?,pulseaudio?] )
-   audiofile? ( media-libs/audiofile:= )
-
-   cdio? (
-   dev-libs/libcdio:=
-   dev-libs/libcdio-paranoia
-   )
-
-   chromaprint? ( media-libs/chromaprint )
-   curl? ( net-misc/curl )
-   dbus? ( sys-apps/dbus )
-   expat? ( dev-libs/expat )
-   faad? ( media-libs/faad2 )
-   ffmpeg? ( media-video/ffmpeg:0= )
-   flac? ( media-libs/flac )
-   fluidsynth? ( media-sound/fluidsynth )
-   gme? ( >=media-libs/game-music-emu-0.6.0_pre20120802 )
-   icu? (  dev-libs/icu:= )
-   id3tag? ( media-libs/libid3tag )
-   jack? ( virtual/jack )
-  

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

2020-06-11 Thread Mikle Kolyada
commit: 32036bf95be1a71eefb82bb333c73a0baf4f1d6e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jun 11 23:30:08 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jun 11 23:31:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32036bf9

media-sound/mpd: Version bump (v0.21.24)

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

 media-sound/mpd/Manifest   |   1 +
 media-sound/mpd/mpd-0.21.24.ebuild | 293 +
 2 files changed, 294 insertions(+)

diff --git a/media-sound/mpd/Manifest b/media-sound/mpd/Manifest
index c1159f7f343..14f4940cf13 100644
--- a/media-sound/mpd/Manifest
+++ b/media-sound/mpd/Manifest
@@ -2,3 +2,4 @@ DIST mpd-0.21.20.tar.xz 676396 BLAKE2B 
e87d844ac0b20f10df7d2306d1c76f76ead84f5e6
 DIST mpd-0.21.21.tar.xz 676668 BLAKE2B 
83964784db4a7372344853ebf2e9c966e23ac293c06304a8aa6f927ec8ea38d2749d88670f1c5e380953bb8b777b4b0f2c5e8a98d7eb3cf1bae50b5e11549150
 SHA512 
1780a24f341dec1cbc3d9170cc2fc8249081cac8f677ff17df15fc959787cf43d30696eefba9b8a44824da14eee3d58e2ee78b34db1335c0a182b4c2a89e6b3a
 DIST mpd-0.21.22.tar.xz 679244 BLAKE2B 
d2d76662d1f249b138d3a173cdf712eafcebf91e819b70f2cbc6ccb36ca4bc1f2319972548445789d8861345af5e18ea82f071cd7874a7380bbdda85cf834b73
 SHA512 
051d97500d8224fe4769a667a58c7915eebcca809e9345a30881f99d7c33d99907d9cc0258c0a5fd20f10609edbeb6da16941099ac3c033762ceb4b116e4df04
 DIST mpd-0.21.23.tar.xz 680060 BLAKE2B 
5c7b4a69ff5960b171d715560aa7a6b0712a7fd3758e1561e5aea957c5d13164d92bee0ed262b70ea7e91d73c16412840078603c95d50959cc06d9aa4a981022
 SHA512 
155f606cd6ddce3e74d745a0f1479776d9f73b4cd250604072a863e28ea72d1ff1a7eafeae44cada7b16042251065634376eaa1a211b503e2f874c72dbcdecf0
+DIST mpd-0.21.24.tar.xz 681576 BLAKE2B 
4fc46841077a4fd20c9e0f21bc3de09be0bc7d6b4964db33c51f8d79672c2911ab747d08e27d3f9ab65586594f8fd560d044048a826fcae5909e34067bbff592
 SHA512 
dd0f97cdb405a0995ceafb965d2e872c54b27b384a721efa8d13ae7e28544b22da9e94433bc544f475d8da52d06c020842b11104cbfbc41406a10599db2d005c

diff --git a/media-sound/mpd/mpd-0.21.24.ebuild 
b/media-sound/mpd/mpd-0.21.24.ebuild
new file mode 100644
index 000..e1d6b01c903
--- /dev/null
+++ b/media-sound/mpd/mpd-0.21.24.ebuild
@@ -0,0 +1,293 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic linux-info meson systemd xdg-utils
+
+DESCRIPTION="The Music Player Daemon (mpd)"
+HOMEPAGE="https://www.musicpd.org https://github.com/MusicPlayerDaemon/MPD";
+SRC_URI="https://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x64-macos"
+IUSE="+alsa ao +audiofile bzip2 cdio chromaprint +cue +curl +dbus debug
+   +eventfd expat faad +ffmpeg +fifo flac fluidsynth gme +icu +id3tag 
+inotify
+   +ipv6 jack lame libmpdclient libsamplerate libsoxr +mad mikmod mms
+   modplug mpg123 musepack +network nfs openal opus oss pipe pulseaudio 
qobuz
+   recorder samba selinux sid signalfd sndfile soundcloud sqlite systemd
+   test tidal twolame udisks unicode vorbis wavpack webdav wildmidi upnp
+   zeroconf zip zlib"
+
+OUTPUT_PLUGINS="alsa ao fifo jack network openal oss pipe pulseaudio recorder"
+DECODER_PLUGINS="audiofile faad ffmpeg flac fluidsynth mad mikmod
+   modplug mpg123 musepack flac sid vorbis wavpack wildmidi"
+ENCODER_PLUGINS="audiofile flac lame twolame vorbis"
+
+REQUIRED_USE="
+   || ( ${OUTPUT_PLUGINS} )
+   || ( ${DECODER_PLUGINS} )
+   network? ( || ( ${ENCODER_PLUGINS} ) )
+   recorder? ( || ( ${ENCODER_PLUGINS} ) )
+   upnp? ( expat )
+   webdav? ( curl expat )
+   "
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   acct-user/mpd
+   alsa? (
+   media-libs/alsa-lib
+   media-sound/alsa-utils
+   )
+
+   ao? ( media-libs/libao[alsa?,pulseaudio?] )
+   audiofile? ( media-libs/audiofile:= )
+
+   cdio? (
+   dev-libs/libcdio:=
+   dev-libs/libcdio-paranoia
+   )
+
+   chromaprint? ( media-libs/chromaprint )
+   curl? ( net-misc/curl )
+   dbus? ( sys-apps/dbus )
+   expat? ( dev-libs/expat )
+   faad? ( media-libs/faad2 )
+   ffmpeg? ( media-video/ffmpeg:0= )
+   flac? ( media-libs/flac )
+   fluidsynth? ( media-sound/fluidsynth )
+   gme? ( >=media-libs/game-music-emu-0.6.0_pre20120802 )
+   icu? (  dev-libs/icu:= )
+   id3tag? ( media-libs/libid3tag )
+   jack? ( virtual/jack )
+   lame? ( network? ( media-sound/lame ) )
+   libmpdclient? ( media-libs/libmpdclient )
+   libsamplerate? ( media-libs/libsamplerate )
+   libsoxr? ( media-libs/soxr )
+   mad? ( media-libs/libmad )
+   mikmod? ( media-libs/libmikmod )
+   mms? ( media-libs/libmms )
+   modplug? ( media-libs/libmodplug )
+   mpg123? ( media-sound/mpg123 )
+

[gentoo-commits] repo/gentoo:master commit in: sci-libs/openblas/, sci-libs/openblas/files/

2020-06-11 Thread Michael Orlitzky
commit: 6926ff3a439ed76c74d1493cbe28ed3ddda5d952
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Thu Jun 11 22:39:32 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Thu Jun 11 23:25:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6926ff3a

sci-libs/openblas: don't clobber FFLAGS while building lapack.

Nothing's ever easy, and bug 726474 is turning out to be no exception.
The problem goes deeper than I originally thought; this commit adds a
patch that prevents "rare and hard to reproduce crashes" when the user
has custom FFLAGS set. A new revision was made to force rebuilds in
case some user has mis-compiled the package.

https://bugs.gentoo.org/726474

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

 sci-libs/openblas/files/dont-clobber-fflags.patch  | 31 ++
 ...nblas-0.3.9.ebuild => openblas-0.3.9-r1.ebuild} |  5 +++-
 2 files changed, 35 insertions(+), 1 deletion(-)

diff --git a/sci-libs/openblas/files/dont-clobber-fflags.patch 
b/sci-libs/openblas/files/dont-clobber-fflags.patch
new file mode 100644
index 000..21bbec4b1b3
--- /dev/null
+++ b/sci-libs/openblas/files/dont-clobber-fflags.patch
@@ -0,0 +1,31 @@
+From 05c96dad9b26cc1f00831661dc55139dcc9d5680 Mon Sep 17 00:00:00 2001
+From: Michael Orlitzky 
+Date: Thu, 11 Jun 2020 18:32:17 -0400
+Subject: [PATCH 1/1] Makefile: don't clobber fortran flags while building
+ lapack.
+
+When a user has the FFLAGS environment variable set, it clobbers the
+flags used to compile lapack. This can lead to "rare and hard to
+reproduce crashes" or test failures, as we have observed in Gentoo.
+
+Issue: https://github.com/xianyi/OpenBLAS/issues/2657
+---
+ Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Makefile b/Makefile
+index a22e16ba..2bae565e 100644
+--- a/Makefile
 b/Makefile
+@@ -248,7 +248,7 @@ prof_lapack : lapack_prebuild
+ lapack_prebuild :
+ ifeq ($(NOFORTRAN), $(filter 0,$(NOFORTRAN)))
+   -@echo "FC  = $(FC)" > $(NETLIB_LAPACK_DIR)/make.inc
+-  -@echo "FFLAGS  = $(LAPACK_FFLAGS)" >> $(NETLIB_LAPACK_DIR)/make.inc
++  -@echo "override FFLAGS  = $(LAPACK_FFLAGS)" >> 
$(NETLIB_LAPACK_DIR)/make.inc
+   -@echo "POPTS   = $(LAPACK_FPFLAGS)" >> 
$(NETLIB_LAPACK_DIR)/make.inc
+   -@echo "FFLAGS_NOOPT   = -O0 $(LAPACK_NOOPT)" >> 
$(NETLIB_LAPACK_DIR)/make.inc
+   -@echo "PNOOPT  = $(LAPACK_FPFLAGS) -O0" >> 
$(NETLIB_LAPACK_DIR)/make.inc
+-- 
+2.26.2
+

diff --git a/sci-libs/openblas/openblas-0.3.9.ebuild 
b/sci-libs/openblas/openblas-0.3.9-r1.ebuild
similarity index 97%
rename from sci-libs/openblas/openblas-0.3.9.ebuild
rename to sci-libs/openblas/openblas-0.3.9-r1.ebuild
index 6427d994b30..c47011a3fa6 100644
--- a/sci-libs/openblas/openblas-0.3.9.ebuild
+++ b/sci-libs/openblas/openblas-0.3.9-r1.ebuild
@@ -22,7 +22,10 @@ RDEPEND="
 
 DEPEND="virtual/pkgconfig"
 
-PATCHES=( "${FILESDIR}/shared-blas-lapack.patch" )
+PATCHES=(
+   "${FILESDIR}/shared-blas-lapack.patch"
+   "${FILESDIR}/dont-clobber-fflags.patch"
+)
 
 pkg_setup() {
fortran-2_pkg_setup



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

2020-06-11 Thread Michael Orlitzky
commit: 45c294854c297e26dff27e88c8d6e0a2405196a8
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Thu Jun 11 22:56:55 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Thu Jun 11 23:25:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45c29485

sci-libs/openblas: earn respect for CFLAGS/FFLAGS.

The upstream Makefile.system adds "-O2" to your C/FORTRAN flags if you
don't tell it not to. Now we tell it not to, so that you can build at
lower optimization levels like -O0.

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

 sci-libs/openblas/openblas-0.3.9-r1.ebuild | 4 
 1 file changed, 4 insertions(+)

diff --git a/sci-libs/openblas/openblas-0.3.9-r1.ebuild 
b/sci-libs/openblas/openblas-0.3.9-r1.ebuild
index c47011a3fa6..cb255367b63 100644
--- a/sci-libs/openblas/openblas-0.3.9-r1.ebuild
+++ b/sci-libs/openblas/openblas-0.3.9-r1.ebuild
@@ -44,6 +44,10 @@ pkg_setup() {
# disable submake with -j
export MAKE_NB_JOBS=-1
 
+   # Set these to "nothing" to prevent the default optimization flags
+   # from being added in Makefile.system.
+   export COMMON_OPT=" " FCOMMON_OPT=" "
+
USE_THREAD=0
if use openmp; then
USE_THREAD=1; USE_OPENMP=1;



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

2020-06-11 Thread Michael Orlitzky
commit: 18d842851da452a7c6acaa3ea9fc61158bb6bb50
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Thu Jun 11 22:59:06 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Thu Jun 11 23:25:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18d84285

sci-libs/openblas: disable -fcheck=all as well.

We already had to disable -fcheck-bounds, but -fcheck=all enables the
bounds checks in addition to whatever else it enables, so we have to
filter that flag too.

Bug: https://bugs.gentoo.org/726474
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michael Orlitzky  gentoo.org>

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

diff --git a/sci-libs/openblas/openblas-0.3.9-r1.ebuild 
b/sci-libs/openblas/openblas-0.3.9-r1.ebuild
index cb255367b63..b0daf6becad 100644
--- a/sci-libs/openblas/openblas-0.3.9-r1.ebuild
+++ b/sci-libs/openblas/openblas-0.3.9-r1.ebuild
@@ -34,7 +34,7 @@ pkg_setup() {
# We need to filter these while building the library, and not just
# while building the test suite. Will hopefully get fixed upstream:
# https://github.com/xianyi/OpenBLAS/issues/2657
-   use test && filter-flags "-fbounds-check" "-fcheck=bounds"
+   use test && filter-flags "-fbounds-check" "-fcheck=bounds" "-fcheck=all"
 
export CC=$(tc-getCC) FC=$(tc-getFC)
 



[gentoo-commits] repo/gentoo:master commit in: sys-devel/gcc/

2020-06-11 Thread Sergei Trofimovich
commit: 376f4a461521d7d7482c6ba4bc34a798bca0a120
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jun 11 23:01:24 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 23:05:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=376f4a46

sys-devel/gcc: 10.1.0: cut 2 patchset

Four new patches:
+ 29_all_fix-float-hang-PR95118.patch: fix looping in printing real numbers
+ 30_all_lto-intl-workaround-PR95194.patch: add a workaround to fix gettext LTO
+ 31_all_ctor-range-PR95241.patch: fix constexpr constructors with ranges
+ 32_all_plugin-objdump.patch: user tuple-prefixed objdump

Bug: https://gcc.gnu.org/PR95118
Closes: https://bugs.gentoo.org/722774
Reported-by: Andrew Savchenko
Bug: https://gcc.gnu.org/PR95194
Closes: https://bugs.gentoo.org/723370
Bug: https://gcc.gnu.org/PR95241
Closes: https://bugs.gentoo.org/726644
Bug: https://gcc.gnu.org/PR95648
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-devel/gcc/Manifest |  1 +
 sys-devel/gcc/gcc-10.1.0-r1.ebuild | 13 +
 2 files changed, 14 insertions(+)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index 985f32841d9..a839c3e1bc6 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -1,5 +1,6 @@
 DIST ecj-4.5.jar 1470676 BLAKE2B 
793c10ba09fd8040c0e1181204141aea16780c9c9088e07126e00da2b510af2ad6f58d876357d7e98cbb02d783a3be434469d5de1df134ccb8cc508e45028d80
 SHA512 
d4e1bf7538ace56e3d69fa91da5bbd16c272923b4de0a9d8dee23ea2b75f9f38c603de72fc4061df49285c450b63f3df211cee5270e9fffc5447445d1a9c9e4e
 DIST gcc-10.1.0-patches-1.tar.bz2 13432 BLAKE2B 
2f0517778eb012288ae305a91f84eb31a5f08f842c504201f1a8085afd42ed4c9b4a5b15f7553982c926735e8ea57307a1749004e679880ef47abad7d4596115
 SHA512 
cc513d8b68dcf484d37c51961c809fc6c470a8341f068b4029430ca4677e7b49155c3d964b3b9ab50c69835b32db98bcb9a91f14de14417e4611521059192118
+DIST gcc-10.1.0-patches-2.tar.bz2 15808 BLAKE2B 
8275c2ac3eda8e87255fefe2bb4ed2a10d790bf6085517cd26589fa6a98aa417f4578da88da91b4639d78ed9c897a07447d2048698b4e003f3adc397881c7ee5
 SHA512 
f3ef55103346a0ca40a5633a520091e93e98a3226d24a2b677f791af511460ea5bb5f6dbda6cdf706af2aeb22eb39d37cf226e012bd378c330db17246da88d09
 DIST gcc-10.1.0.tar.xz 74591240 BLAKE2B 
d64cf01beaaff7af9e7d5b1d5e6fdfb37cce5667b4455c1c9bbfd190e631f03555d63d52d31e7be5ac232256be11058f89d5bc7d0dcb01de44e90a52645ad87f
 SHA512 
0cb2a74c793face751f42bc580960b00e2bfea785872a0a2155f1f1dbfaa248f9591b67f4322db0f096f8844aca9243bc02732bda106c3b6e43b02bb67eb3096
 DIST gcc-11.0.0-patches-1.tar.bz2 12832 BLAKE2B 
aad6ce610fa484c4bb2e80f237c68f253db1767ea4274380c66ae42c45a300e58736c4d64a73106af254d2293f1f6e27e1589d013613346bc56265efb2ca00dc
 SHA512 
cdabb7f3a699aad3d796b1bbff173736dc2ba1c0fbb42980b01221e86b2c964786558bb2197a05785f124217ac083ce83dd97dc29508acc1b6fe4a17f0b5ffe1
 DIST gcc-4.4.3-specs-0.2.0.tar.bz2 2004 BLAKE2B 
96f5ba2028bc6e0ef71e009857c37118a54d13d30de24d697c85e5772f9f2b7853615648cf2e4ee81d8385f6518c64588c0b56675c00f95ef39fca2a808f075e
 SHA512 
779ecb0a064d2138b54569c8ae501975b8a6b72e5a3acbf8597619a8db77ee42ef9b0e62608d5192a15e4393e7dfc009bb50b994782236faa744b2c46b5fe517

diff --git a/sys-devel/gcc/gcc-10.1.0-r1.ebuild 
b/sys-devel/gcc/gcc-10.1.0-r1.ebuild
new file mode 100644
index 000..79c068077f2
--- /dev/null
+++ b/sys-devel/gcc/gcc-10.1.0-r1.ebuild
@@ -0,0 +1,13 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PATCH_VER="2"
+
+inherit toolchain
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+
+RDEPEND=""
+BDEPEND="${CATEGORY}/binutils"



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

2020-06-11 Thread Sergei Trofimovich
commit: 3c29cc8edec29f4cc48ffc77004cfd9d06b220c7
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jun 11 22:52:51 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 22:52:51 2020 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=3c29cc8e

10.1.0: cut 2 patchset

Four new patches:
+ 29_all_fix-float-hang-PR95118.patch: fix looping in printing real numbers
+ 30_all_lto-intl-workaround-PR95194.patch: add a workaround to fix gettext LTO
+ 31_all_ctor-range-PR95241.patch: fix constexpr constructors with ranges
+ 32_all_plugin-objdump.patch: user tuple-prefixed objdump

Bug: https://gcc.gnu.org/PR95118
Bug: https://bugs.gentoo.org/722774
Reported-by: Andrew Savchenko
Bug: https://gcc.gnu.org/PR95194
Bug: https://bugs.gentoo.org/723370
Bug: https://gcc.gnu.org/PR95241
Bug: https://bugs.gentoo.org/726644
Bug: https://gcc.gnu.org/PR95648
Signed-off-by: Sergei Trofimovich  gentoo.org>

 10.1.0/gentoo/README.history | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/10.1.0/gentoo/README.history b/10.1.0/gentoo/README.history
index 33708f4..362382e 100644
--- a/10.1.0/gentoo/README.history
+++ b/10.1.0/gentoo/README.history
@@ -1,4 +1,4 @@
-2  TODO
+2  11 June 2020
+ 29_all_fix-float-hang-PR95118.patch
+ 30_all_lto-intl-workaround-PR95194.patch
+ 31_all_ctor-range-PR95241.patch



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

2020-06-11 Thread Sergei Trofimovich
commit: 97170bc55d13d87334b7d055c3382bd91b58c764
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jun 11 22:49:35 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 22:49:35 2020 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=97170bc5

11.0.0: mark objdump-prefix patch as unreleased yet

Signed-off-by: Sergei Trofimovich  gentoo.org>

 11.0.0/gentoo/README.history | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/11.0.0/gentoo/README.history b/11.0.0/gentoo/README.history
index 40240fc..4add930 100644
--- a/11.0.0/gentoo/README.history
+++ b/11.0.0/gentoo/README.history
@@ -1,3 +1,6 @@
+2  TODO
+   + 29_all_plugin-objdump.patch
+
 1  29 May 2020
+ 01_all_default-fortify-source.patch
+ 02_all_default-warn-format-security.patch
@@ -27,4 +30,3 @@
+ 26_all_EXTRA_OPTIONS-z-now.patch
+ 27_all_EXTRA_OPTIONS-fstack-clash-protection.patch
+ 28_all_lto-intl-workaround-PR95194.patch
-   + 29_all_plugin-objdump.patch



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

2020-06-11 Thread Sergei Trofimovich
commit: b57fca30d3fec404122a7bcf3e0dc1ec64bf2d6f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jun 11 22:48:36 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 22:48:36 2020 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=b57fca30

10.1.0: fix tool-prefixed objdump autodetection

Signed-off-by: Sergei Trofimovich  gentoo.org>

 10.1.0/gentoo/32_all_plugin-objdump.patch | 34 +++
 10.1.0/gentoo/README.history  |  1 +
 2 files changed, 35 insertions(+)

diff --git a/10.1.0/gentoo/32_all_plugin-objdump.patch 
b/10.1.0/gentoo/32_all_plugin-objdump.patch
new file mode 100644
index 000..a9c33fd
--- /dev/null
+++ b/10.1.0/gentoo/32_all_plugin-objdump.patch
@@ -0,0 +1,34 @@
+https://gcc.gnu.org/PR95648
+--- a/config/gcc-plugin.m4
 b/config/gcc-plugin.m4
+@@ -45,7 +45,7 @@ AC_DEFUN([GCC_ENABLE_PLUGINS],
+  ;;
+  *)
+if test x$build = x$host; then
+-   export_sym_check="objdump${exeext} -T"
++   export_sym_check="$ac_cv_prog_OBJDUMP -T"
+elif test x$host = x$target; then
+export_sym_check="$gcc_cv_objdump -T"
+else
+--- a/gcc/configure
 b/gcc/configure
+@@ -30386,7 +30386,7 @@ fi
+  ;;
+  *)
+if test x$build = x$host; then
+-   export_sym_check="objdump${exeext} -T"
++   export_sym_check="$ac_cv_prog_OBJDUMP -T"
+elif test x$host = x$target; then
+export_sym_check="$gcc_cv_objdump -T"
+else
+--- a/libcc1/configure
 b/libcc1/configure
+@@ -14819,7 +14819,7 @@ fi
+  ;;
+  *)
+if test x$build = x$host; then
+-   export_sym_check="objdump${exeext} -T"
++   export_sym_check="$ac_cv_prog_OBJDUMP -T"
+elif test x$host = x$target; then
+export_sym_check="$gcc_cv_objdump -T"
+else

diff --git a/10.1.0/gentoo/README.history b/10.1.0/gentoo/README.history
index deee08f..33708f4 100644
--- a/10.1.0/gentoo/README.history
+++ b/10.1.0/gentoo/README.history
@@ -2,6 +2,7 @@
+ 29_all_fix-float-hang-PR95118.patch
+ 30_all_lto-intl-workaround-PR95194.patch
+ 31_all_ctor-range-PR95241.patch
+   + 32_all_plugin-objdump.patch
 
 1  05 May 2020
+ 01_all_default-fortify-source.patch



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

2020-06-11 Thread Sergei Trofimovich
commit: 9b14dd3e4c34aa6794b8e34ab9bb39462e10e8e0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jun 11 22:47:51 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 22:47:51 2020 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=9b14dd3e

11.0.0: fix tool-prefixed objdump autodetection

Signed-off-by: Sergei Trofimovich  gentoo.org>

 11.0.0/gentoo/29_all_plugin-objdump.patch | 34 +++
 11.0.0/gentoo/README.history  |  1 +
 2 files changed, 35 insertions(+)

diff --git a/11.0.0/gentoo/29_all_plugin-objdump.patch 
b/11.0.0/gentoo/29_all_plugin-objdump.patch
new file mode 100644
index 000..a9c33fd
--- /dev/null
+++ b/11.0.0/gentoo/29_all_plugin-objdump.patch
@@ -0,0 +1,34 @@
+https://gcc.gnu.org/PR95648
+--- a/config/gcc-plugin.m4
 b/config/gcc-plugin.m4
+@@ -45,7 +45,7 @@ AC_DEFUN([GCC_ENABLE_PLUGINS],
+  ;;
+  *)
+if test x$build = x$host; then
+-   export_sym_check="objdump${exeext} -T"
++   export_sym_check="$ac_cv_prog_OBJDUMP -T"
+elif test x$host = x$target; then
+export_sym_check="$gcc_cv_objdump -T"
+else
+--- a/gcc/configure
 b/gcc/configure
+@@ -30386,7 +30386,7 @@ fi
+  ;;
+  *)
+if test x$build = x$host; then
+-   export_sym_check="objdump${exeext} -T"
++   export_sym_check="$ac_cv_prog_OBJDUMP -T"
+elif test x$host = x$target; then
+export_sym_check="$gcc_cv_objdump -T"
+else
+--- a/libcc1/configure
 b/libcc1/configure
+@@ -14819,7 +14819,7 @@ fi
+  ;;
+  *)
+if test x$build = x$host; then
+-   export_sym_check="objdump${exeext} -T"
++   export_sym_check="$ac_cv_prog_OBJDUMP -T"
+elif test x$host = x$target; then
+export_sym_check="$gcc_cv_objdump -T"
+else

diff --git a/11.0.0/gentoo/README.history b/11.0.0/gentoo/README.history
index 6a58231..40240fc 100644
--- a/11.0.0/gentoo/README.history
+++ b/11.0.0/gentoo/README.history
@@ -27,3 +27,4 @@
+ 26_all_EXTRA_OPTIONS-z-now.patch
+ 27_all_EXTRA_OPTIONS-fstack-clash-protection.patch
+ 28_all_lto-intl-workaround-PR95194.patch
+   + 29_all_plugin-objdump.patch



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

2020-06-11 Thread Aaron Bauman
commit: d766603ba4c7e66fb838445f6bdc8ab46a878aac
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Wed Jun 10 18:07:14 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Jun 11 22:40:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d766603b

net-misc/memcached: remove unused patches

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16169
Signed-off-by: Aaron Bauman  gentoo.org>

 .../memcached/files/memcached-1.6.0-gcc10.patch| 34 ---
 .../memcached/files/memcached-1.6.5-ia64.patch | 51 --
 2 files changed, 85 deletions(-)

diff --git a/net-misc/memcached/files/memcached-1.6.0-gcc10.patch 
b/net-misc/memcached/files/memcached-1.6.0-gcc10.patch
deleted file mode 100644
index d250b31e912..000
--- a/net-misc/memcached/files/memcached-1.6.0-gcc10.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-Subject: [PATCH] crc32c: fix multiple definitions
-
-gcc-10 will change the default from -fcommon to fno-common:
-https://gcc.gnu.org/PR85678.
-
-The error also happens if CFLAGS=-fno-common passed explicitly.
-
-Reported-By: Toralf Förster 
-Bug: https://bugs.gentoo.org/711982
-Signed-off-by: Robin H. Johnson 
-
-diff -Nuar --exclude '*~' --exclude config.log --exclude autom4te.cache 
memcached-1.6.0.orig/crc32c.c memcached-1.6.0/crc32c.c
 memcached-1.6.0.orig/crc32c.c  2019-10-21 01:48:04.0 -0700
-+++ memcached-1.6.0/crc32c.c   2020-03-10 22:19:07.610247164 -0700
-@@ -390,6 +390,7 @@
- #endif
- /* Compute a CRC-32C.  If the crc32 instruction is available, use the hardware
-version.  Otherwise, use the software version. */
-+crc_func crc32c;
- void crc32c_init(void) {
- #if defined(__X86_64__)||defined(__x86_64__)||defined(__ia64__)
- int sse42;
-diff -Nuar --exclude '*~' --exclude config.log --exclude autom4te.cache 
memcached-1.6.0.orig/crc32c.h memcached-1.6.0/crc32c.h
 memcached-1.6.0.orig/crc32c.h  2019-10-21 01:48:04.0 -0700
-+++ memcached-1.6.0/crc32c.h   2020-03-10 22:17:12.086974212 -0700
-@@ -2,7 +2,7 @@
- #defineCRC32C_H
- 
- typedef uint32_t (*crc_func)(uint32_t crc, const void *buf, size_t len);
--crc_func crc32c;
-+extern crc_func crc32c;
- 
- void crc32c_init(void);
- 

diff --git a/net-misc/memcached/files/memcached-1.6.5-ia64.patch 
b/net-misc/memcached/files/memcached-1.6.5-ia64.patch
deleted file mode 100644
index 5a73913b92e..000
--- a/net-misc/memcached/files/memcached-1.6.5-ia64.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-https://github.com/memcached/memcached/commit/73633d31b22068dfda5ef969c08139c083d96d71.patch
-
-From 73633d31b22068dfda5ef969c08139c083d96d71 Mon Sep 17 00:00:00 2001
-From: Sergei Trofimovich 
-Date: Sun, 19 Apr 2020 10:08:19 +0100
-Subject: [PATCH] crc32c.c: don't attempt to enable hardware crc32 on ia64
-
-Itanium has no hardware crc32 implementation and build fails as:
-
-```
-ia64-unknown-linux-gnu-gcc -DHAVE_CONFIG_H -I.  -DNDEBUG   -g -O2 -pthread \
-... -c -o memcached-crc32c.o `test -f 'crc32c.c' || echo './'`crc32c.c
-crc32c.c: In function 'crc32c_init':
-crc32c.c:385:9: error: unknown register name '%edx' in 'asm'
-  385 | __asm__("cpuid" \
-  | ^~~
-```
-
-The change removes ia64 from crc32 paths.
-
-Bug: https://bugs.gentoo.org/718136
-Signed-off-by: Sergei Trofimovich 

- crc32c.c | 5 ++---
- 1 file changed, 2 insertions(+), 3 deletions(-)
-
 a/crc32c.c
-+++ b/crc32c.c
-@@ -167,7 +167,7 @@ static uint32_t crc32c_hw_aarch64(uint32_t crc, const 
void* buf, size_t len)
- #endif
- 
- /* Apply if the platform is intel */
--#if defined(__X86_64__)||defined(__x86_64__)||defined(__ia64__)
-+#if defined(__X86_64__)||defined(__x86_64__)
- 
- /* Multiply a matrix times a vector over the Galois field of two elements,
-GF(2).  Each element is a bit in an unsigned integer.  mat must have at
-@@ -388,12 +388,11 @@ static uint32_t crc32c_hw(uint32_t crc, const void *buf, 
size_t len)
- : "%ebx", "%edx"); \
- (have) = (ecx >> 20) & 1; \
- } while (0)
--
- #endif
- /* Compute a CRC-32C.  If the crc32 instruction is available, use the hardware
-version.  Otherwise, use the software version. */
- void crc32c_init(void) {
--#if defined(__X86_64__)||defined(__x86_64__)||defined(__ia64__)
-+#if defined(__X86_64__)||defined(__x86_64__)
- int sse42;
- SSE42(sse42);
- 



[gentoo-commits] repo/gentoo:master commit in: app-emulation/cloud-init/files/

2020-06-11 Thread Aaron Bauman
commit: 3f6d8071054571c09029e4bc709a0eb12a979e48
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Jun  9 18:24:12 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Jun 11 22:41:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f6d8071

app-emulation/cloud-init: remove unused files

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16145
Signed-off-by: Aaron Bauman  gentoo.org>

 app-emulation/cloud-init/files/cloud.cfg | 79 
 app-emulation/cloud-init/files/hosts.gentoo.tmpl | 23 ---
 2 files changed, 102 deletions(-)

diff --git a/app-emulation/cloud-init/files/cloud.cfg 
b/app-emulation/cloud-init/files/cloud.cfg
deleted file mode 100644
index d62e3a22241..000
--- a/app-emulation/cloud-init/files/cloud.cfg
+++ /dev/null
@@ -1,79 +0,0 @@
-# The top level settings are used as module
-# and system configuration.
-
-# A set of users which may be applied and/or used by various modules
-# when a 'default' entry is found it will reference the 'default_user'
-# from the distro configuration specified below
-users:
-   - default
-
-# If this is set, 'root' will not be able to ssh in and they 
-# will get a message to login instead as the above $user (ubuntu)
-disable_root: true
-ssh_pwauth:   false
-
-# This will cause the set+update hostname module to not operate (if true)
-# preserve_hostname: false
-
-syslog_fix_perms: root:root
-
-ssh_deletekeys: false
-ssh_genkeytypes: [rsa, dsa] 
-
-cloud_init_modules:
- - seed_random
- - bootcmd
- - write-files
- - growpart
- - resizefs
- - set_hostname
- - update_hostname
- - update_etc_hosts
- - ca-certs
- - users-groups
- - ssh
-
-cloud_config_modules:
- - disk_setup
- - mounts
- - ssh-import-id
- - set-passwords
- - timezone
- - puppet
- - chef
- - salt-minion
- - mcollective
- - disable-ec2-metadata
- - runcmd
-
-cloud_final_modules:
- - scripts-vendor
- - scripts-per-once
- - scripts-per-boot
- - scripts-per-instance
- - scripts-user
- - ssh-authkey-fingerprints
- - keys-to-console
- - phone-home
- - final-message
- - power-state-change
-
-# System and/or distro specific settings
-# (not accessible to handlers/transforms)
-system_info:
-   # This will affect which distro class gets used
-   distro: gentoo
-   # Default user name + that default users groups (if added/used)
-   default_user:
- name: gentoo
- lock_passwd: True
- gecos: Gentoo
- groups: [users, wheel]
- primary_group: users
- no-user-group: true
- sudo: ["ALL=(ALL) NOPASSWD:ALL"]
- shell: /bin/bash
-   # Other config here will be given to the distro class and/or path classes
-   paths:
-  cloud_dir: /var/lib/cloud/
-  templates_dir: /etc/cloud/templates/

diff --git a/app-emulation/cloud-init/files/hosts.gentoo.tmpl 
b/app-emulation/cloud-init/files/hosts.gentoo.tmpl
deleted file mode 100644
index bc0bca47c5c..000
--- a/app-emulation/cloud-init/files/hosts.gentoo.tmpl
+++ /dev/null
@@ -1,23 +0,0 @@
-## template:jinja
-{#
-This file /etc/cloud/templates/hosts.gentoo.tmpl is only utilized
-if enabled in cloud-config.  Specifically, in order to enable it
-you need to add the following to config:
-  manage_etc_hosts: template
--#}
-# Your system has configured 'manage_etc_hosts' as 'template'.
-# As a result, if you wish for changes to this file to persist
-# then you will need to either
-# a.) make changes to the master file in /etc/cloud/templates/hosts.gentoo.tmpl
-# b.) change or remove the value of 'manage_etc_hosts' in
-# /etc/cloud/cloud.cfg or cloud-config from user-data
-# 
-# The following lines are desirable for IPv4 capable hosts
-127.0.0.1 {{fqdn}} {{hostname}}
-127.0.0.1 localhost.localdomain localhost
-127.0.0.1 localhost4.localdomain4 localhost4
-
-# The following lines are desirable for IPv6 capable hosts
-::1 {{fqdn}} {{hostname}}
-::1 localhost.localdomain localhost
-::1 localhost6.localdomain6 localhost6
\ No newline at end of file



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

2020-06-11 Thread Aaron Bauman
commit: e22eb0b85adf3bb5985161456e6713d88a79495d
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Wed Jun 10 18:05:47 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Jun 11 22:41:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e22eb0b8

dev-util/cmake: remove unused patch

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16168
Signed-off-by: Aaron Bauman  gentoo.org>

 .../cmake/files/cmake-3.14.0_rc1-FindBLAS.patch| 37 --
 1 file changed, 37 deletions(-)

diff --git a/dev-util/cmake/files/cmake-3.14.0_rc1-FindBLAS.patch 
b/dev-util/cmake/files/cmake-3.14.0_rc1-FindBLAS.patch
deleted file mode 100644
index 3a308f57cea..000
--- a/dev-util/cmake/files/cmake-3.14.0_rc1-FindBLAS.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 12b2c3ad6a5c5c7f67afe87fec3f81761de0b909 Mon Sep 17 00:00:00 2001
-From: Lars Wendler 
-Date: Sun, 10 Feb 2019 22:54:51 +0100
-Subject: [PATCH] Prefer pkgconfig in FindBLAS
-

- Modules/FindBLAS.cmake | 7 +++
- 1 file changed, 7 insertions(+)
-
-diff --git a/Modules/FindBLAS.cmake b/Modules/FindBLAS.cmake
-index 0aa4f5035b..7b67c95f1f 100644
 a/Modules/FindBLAS.cmake
-+++ b/Modules/FindBLAS.cmake
-@@ -7,6 +7,10 @@ FindBLAS
- 
- Find BLAS library
- 
-+Version modified for Gentoo Linux.
-+If a valid PkgConfig configuration is found, this overrides and cancels
-+all further checks.
-+
- This module finds an installed fortran library that implements the
- BLAS linear-algebra interface (see http://www.netlib.org/blas/).  The
- list of libraries searched for is taken from the autoconf macro file,
-@@ -85,6 +89,9 @@ This module defines the following variables:
- find_package(BLAS)
- #]===]
- 
-+# first, try PkgConfig
-+set(BLA_PREFER_PKGCONFIG On)
-+
- include(${CMAKE_CURRENT_LIST_DIR}/CheckFunctionExists.cmake)
- include(${CMAKE_CURRENT_LIST_DIR}/CheckFortranFunctionExists.cmake)
- include(${CMAKE_CURRENT_LIST_DIR}/CMakePushCheckState.cmake)
--- 
-2.20.1
-



[gentoo-commits] repo/gentoo:master commit in: app-emulation/spice-vdagent/files/

2020-06-11 Thread Aaron Bauman
commit: 52dc19140bb3d60c42bfc59025979217a38bc691
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Jun  9 18:25:22 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Jun 11 22:41:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52dc1914

app-emulation/spice-vdagent: remove unused file

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16146
Signed-off-by: Aaron Bauman  gentoo.org>

 .../spice-vdagent/files/spice-vdagent.initd-3  | 60 --
 1 file changed, 60 deletions(-)

diff --git a/app-emulation/spice-vdagent/files/spice-vdagent.initd-3 
b/app-emulation/spice-vdagent/files/spice-vdagent.initd-3
deleted file mode 100644
index 255051192b1..000
--- a/app-emulation/spice-vdagent/files/spice-vdagent.initd-3
+++ /dev/null
@@ -1,60 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
-after dbus
-}
-
-PIDFILE="/var/run/spice-vdagentd/spice-vdagentd.pid"
-
-start() {
-PORT="${PORT:-/dev/virtio-ports/com.redhat.spice.0}"
-DEVICE="${DEVICE:-/dev/uinput}"
-
-ebegin "Checking for required modules and devices"
-
-if [ ! -d /sys/module/uinput ]; then
-modprobe -q uinput
-fi
-
-if [ ! -d /sys/module/uinput ]; then
-eerror "Module 'uinput' not loaded or not enabled in the kernel"
-eend 1
-return 1
-fi
-
-if [ ! -c "${PORT}" ] ; then
-eerror "Required virtio port does not exist. Make sure you"
-eerror "started the virtual machine with appropriate parameters."
-eend 1
-return 1
-fi
-eend 0
-
-if [ ! -c ${DEVICE} -a -c /dev/input/uinput ]; then
-DEVICE=/dev/input/uinput
-fi
-
-# recreate the directory since /var/run may reside on a ramdisk
-mkdir -p /var/run/spice-vdagentd
-
-# cleanup stalled socket
-rm -f /var/run/spice-vdagentd/spice-vdagent-sock
-
-ebegin "Starting spice VD agent daemon"
-start-stop-daemon \
---start \
---pidfile "${PIDFILE}" \
---exec /usr/sbin/spice-vdagentd \
--- -u "${DEVICE}" ${SPICE_VDAGENT_ARGS}
-eend $?
-}
-
-stop() {
-ebegin "Stopping spice VD agent daemon"
-start-stop-daemon \
---stop \
---pidfile "${PIDFILE}"
-eend $?
-}



[gentoo-commits] repo/gentoo:master commit in: net-news/newsboat/files/

2020-06-11 Thread Aaron Bauman
commit: ba689f84100315c820da9fb879dd44a44496e8c5
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Wed Jun 10 18:08:07 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Jun 11 22:40:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba689f84

net-news/newsboat: remove unused patch

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16170
Signed-off-by: Aaron Bauman  gentoo.org>

 .../newsboat/files/newsboat-2.17.1-libressl.patch  | 98 --
 1 file changed, 98 deletions(-)

diff --git a/net-news/newsboat/files/newsboat-2.17.1-libressl.patch 
b/net-news/newsboat/files/newsboat-2.17.1-libressl.patch
deleted file mode 100644
index 97f7ae9574f..000
--- a/net-news/newsboat/files/newsboat-2.17.1-libressl.patch
+++ /dev/null
@@ -1,98 +0,0 @@
 newsboat-2.17.1/Cargo.lock 2019-12-04 13:42:07.256925256 +0100
-+++ newsboat-2.17.1/Cargo.lock 2019-12-04 13:54:34.171901288 +0100
-@@ -124,13 +124,13 @@
- 
- [[package]]
- name = "curl-sys"
--version = "0.4.5"
-+version = "0.4.12"
- source = "registry+https://github.com/rust-lang/crates.io-index";
- dependencies = [
-  "cc 1.0.29 (registry+https://github.com/rust-lang/crates.io-index)",
-  "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libz-sys 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)",
-- "openssl-sys 0.9.46 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libz-sys 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "openssl-sys 0.9.53 (registry+https://github.com/rust-lang/crates.io-index)",
-  "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
-  "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
-  "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
-@@ -234,12 +234,12 @@
-  "backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)",
-  "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
-  "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
-- "curl-sys 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "curl-sys 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
-  "dirs 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
-  "gettext-rs 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
-  "gettext-sys 0.19.8 (registry+https://github.com/rust-lang/crates.io-index)",
-  "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libz-sys 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libz-sys 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)",
-  "natord 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
-  "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
-  "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
-@@ -265,7 +265,7 @@
- 
- [[package]]
- name = "libz-sys"
--version = "1.0.17"
-+version = "1.0.18"
- source = "registry+https://github.com/rust-lang/crates.io-index";
- dependencies = [
-  "cc 1.0.29 (registry+https://github.com/rust-lang/crates.io-index)",
-@@ -349,7 +349,7 @@
- 
- [[package]]
- name = "openssl-sys"
--version = "0.9.46"
-+version = "0.9.53"
- source = "registry+https://github.com/rust-lang/crates.io-index";
- dependencies = [
-  "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
-@@ -884,7 +884,7 @@
- "checksum clap 2.33.0 
(registry+https://github.com/rust-lang/crates.io-index)" = 
"5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
- "checksum cloudabi 0.0.3 
(registry+https://github.com/rust-lang/crates.io-index)" = 
"ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
- "checksum constant_time_eq 0.1.3 
(registry+https://github.com/rust-lang/crates.io-index)" = 
"8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e"
--"checksum curl-sys 0.4.5 
(registry+https://github.com/rust-lang/crates.io-index)" = 
"71c63a540a9ee4e15e56c3ed9b11a2f121239b9f6d7b7fe30f616e048148df9a"
-+"checksum curl-sys 0.4.12 
(registry+https://github.com/rust-lang/crates.io-index)" = 
"78800a6de442f65dab6ce26c6f369c14fc585686432bf4b77119d2d384216c31"
- "checksum dirs 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" 
= "88972de891f6118092b643d85a0b28e0678e0f948d7f879aa32f2d5aafe97d2a"
- "checksum failure 0.1.5 
(registry+https://github.com/rust-lang/crates.io-index)" = 
"795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2"
- "checksum failure_derive 0.1.5 
(registry+https://github.com/rust-lang/crates.io-index)" = 
"ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1"
-@@ -897,7 +897,7 @@
- "checksum lazy_static 0.2.11 
(registry+https://github.com/rust-lang/crates.io-index)" = 
"76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d5

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

2020-06-11 Thread Aaron Bauman
commit: 0d0e787541e23aea6c928e1d7b40526bcf695f2f
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Jun  8 14:49:50 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Jun 11 22:20:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d0e7875

app-text/scdoc: version bump + new proxy maint

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Aisha Tammy  aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/16121
Signed-off-by: Aaron Bauman  gentoo.org>

 app-text/scdoc/Manifest   | 1 +
 app-text/scdoc/metadata.xml   | 9 -
 app-text/scdoc/{scdoc-.ebuild => scdoc-1.10.1.ebuild} | 2 +-
 app-text/scdoc/scdoc-.ebuild  | 2 +-
 4 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/app-text/scdoc/Manifest b/app-text/scdoc/Manifest
index 02f5cf585a6..4703e82d040 100644
--- a/app-text/scdoc/Manifest
+++ b/app-text/scdoc/Manifest
@@ -1,2 +1,3 @@
 DIST scdoc-1.10.0.tar.gz 12414 BLAKE2B 
3111b3ace102aca2f7da86e510e00f552874817b6b9d754770bd94f9482e4e444a4bc4d44a8317376a6c374bb7363eae96a49281fefd95dd663134087123034b
 SHA512 
546743376380d84aa9c8be65529dbbe1634e574203220ce1c057341436bd3a15297f393ca79d29372cb125bf457cfc00f64ba2867b8d2e910ca6531acb552e97
+DIST scdoc-1.10.1.tar.gz 12422 BLAKE2B 
4aa5b28994cd03f5d3fc9fff253a02f1052653d25d41225665219ebb6322ebe69f2671d91c5cfe201fd7f9b1ac06f38db3dd126492da06fef0b692fc040300d5
 SHA512 
356aee85c4676a1fbd7367c6087dd7f6f4d33793be0f3fef74803ceb93c0a9e45c78022d219dc08a7d79d71c393849fa3113c36a85d5d60ed474b62bf5f89743
 DIST scdoc-1.9.3.tar.gz 11479 BLAKE2B 
79aa3f18104e06722f087e9c2fa047f6e19fe8eb47ba0b4e6fa86f7abdc52b06a2dfcfd632b16dc7bce6e5ef3b0dbb40ce9170e678bc17c0a4e43dcc0099a1dc
 SHA512 
77be81f042e2099de7fc84b0161bc8a95d5c3dde662284613d84a1e249fa0aa51dad73f53f265c833526d40f5e1f19fce99dc5cd6df35efb0a323c3db6084a55

diff --git a/app-text/scdoc/metadata.xml b/app-text/scdoc/metadata.xml
index ffe4f8a40e7..d75229ff243 100644
--- a/app-text/scdoc/metadata.xml
+++ b/app-text/scdoc/metadata.xml
@@ -1,7 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-   
+   
+   gen...@aisha.cc
+   Aisha Tammy
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

swaywm/sway


diff --git a/app-text/scdoc/scdoc-.ebuild 
b/app-text/scdoc/scdoc-1.10.1.ebuild
similarity index 96%
copy from app-text/scdoc/scdoc-.ebuild
copy to app-text/scdoc/scdoc-1.10.1.ebuild
index a73e3754202..15ecbe1b112 100644
--- a/app-text/scdoc/scdoc-.ebuild
+++ b/app-text/scdoc/scdoc-1.10.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7

diff --git a/app-text/scdoc/scdoc-.ebuild b/app-text/scdoc/scdoc-.ebuild
index a73e3754202..15ecbe1b112 100644
--- a/app-text/scdoc/scdoc-.ebuild
+++ b/app-text/scdoc/scdoc-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7



[gentoo-commits] repo/gentoo:master commit in: gui-wm/hikari/, gui-wm/hikari/files/

2020-06-11 Thread Aaron Bauman
commit: bb39fcc32d1fa5f1194fce69511da2ead7a8f3c6
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Jun  9 13:53:17 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Jun 11 22:21:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb39fcc3

gui-wm/hikari: major version bump

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Aisha Tammy  aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/16136
Signed-off-by: Aaron Bauman  gentoo.org>

 gui-wm/hikari/Manifest  |   1 +
 gui-wm/hikari/files/hikari-2.0.1-gnu-make.patch | 327 
 gui-wm/hikari/hikari-2.0.1.ebuild   |  63 +
 gui-wm/hikari/metadata.xml  |   1 +
 4 files changed, 392 insertions(+)

diff --git a/gui-wm/hikari/Manifest b/gui-wm/hikari/Manifest
index 3feb987dd9e..2ef76be3063 100644
--- a/gui-wm/hikari/Manifest
+++ b/gui-wm/hikari/Manifest
@@ -1 +1,2 @@
 DIST hikari-1.2.0.tar.gz 98941 BLAKE2B 
0b882d483143e307d4b173560f335e85b4c5613b75c51c6b70b68df9b4f70f9a009d95cb8eda1c211f4968b5c8600e7113bca5e014cecfb1917db2acae7e6f3d
 SHA512 
2bd0b6032541ca63a2bd12aee9155e9b0d08e4c541ec2f837073f1498ecb39df969f8821fcbd066e44c5ddaf658e4875bea25f344226b7ea97fe008a0db4d328
+DIST hikari-2.0.1.tar.gz 1003467 BLAKE2B 
8a299fe1d85fac5df04f2475295250d78706c5da9c14a965ff8c7c91af36eaf5711675dc07c43c83974411719b88d483eee24ebd24a87eb1b3280a89b521a19e
 SHA512 
18f8f46ae38fa307b63c44011da084ee0ec4a0925ff8ea3677fda9171bfd25b42853719cea812aabee2d377e6208ddcaf69692e1fb0655110f8d1905d1be00e8

diff --git a/gui-wm/hikari/files/hikari-2.0.1-gnu-make.patch 
b/gui-wm/hikari/files/hikari-2.0.1-gnu-make.patch
new file mode 100644
index 000..0f5a67a6242
--- /dev/null
+++ b/gui-wm/hikari/files/hikari-2.0.1-gnu-make.patch
@@ -0,0 +1,327 @@
+diff --git a/Makefile b/Makefile
+index 0f104d0..39d6972 100644
+--- a/Makefile
 b/Makefile
+@@ -1,7 +1,22 @@
++TARGET =  hikari
++
++DESTDIR   ?=
++
++prefix ?= /usr/local
++exec_prefix ?=$(prefix)
++bindir ?= $(exec_prefix)/bin
++sysconfdir ?= $(prefix)/etc
++
++PKG_CONFIG ?= pkg-config
++
++VERSION ?="CURRENT"
++
++### Upstream variables
++PREFIX ?= $(DESTDIR)$(prefix)
++ETC_PREFIX ?= $(DESTDIR)$(sysconfdir)
++
+ OS != uname
+-VERSION ?= "CURRENT"
+-PREFIX ?= /usr/local
+-ETC_PREFIX ?= ${PREFIX}
++INSTALL_GROUP != id -gn
+ 
+ OBJS = \
+   action.o \
+@@ -29,7 +44,6 @@ OBJS = \
+   layout.o \
+   layout_config.o \
+   layout_select_mode.o \
+-  main.o \
+   mark.o \
+   mark_assign_mode.o \
+   mark_select_mode.o \
+@@ -56,116 +70,127 @@ OBJS = \
+   xwayland_unmanaged_view.o \
+   xwayland_view.o
+ 
+-WAYLAND_PROTOCOLS != pkg-config --variable pkgdatadir wayland-protocols
+-
+-.PHONY: distclean clean clean-doc doc dist install uninstall
+-.PATH: src
++WAYLAND_PROTOCOLS != $(PKG_CONFIG) --variable pkgdatadir wayland-protocols
+ 
+ # Allow specification of /extra/ CFLAGS and LDFLAGS
+-CFLAGS += ${CFLAGS_EXTRA}
+-LDFLAGS += ${LDFLAGS_EXTRA}
++CFLAGS += $(CFLAGS_EXTRA)
++LDFLAGS += $(LDFLAGS_EXTRA)
+ 
+-.ifdef DEBUG
++ifdef DEBUG
+ CFLAGS += -g -O0 -fsanitize=address
+-.else
++else
+ CFLAGS += -DNDEBUG
+-.endif
++endif
+ 
+-.ifdef WITH_POSIX_C_SOURCE
++ifdef WITH_POSIX_C_SOURCE
+ CFLAGS += -D_POSIX_C_SOURCE=200809L
+-.endif
++endif
+ 
+-.ifdef WITH_XWAYLAND
++ifdef WITH_XWAYLAND
+ CFLAGS += -DHAVE_XWAYLAND=1
+-.endif
++endif
+ 
+-.ifdef WITH_GAMMACONTROL
++ifdef WITH_GAMMACONTROL
+ CFLAGS += -DHAVE_GAMMACONTROL=1
+-.endif
++endif
+ 
+-.ifdef WITH_SCREENCOPY
++ifdef WITH_SCREENCOPY
+ CFLAGS += -DHAVE_SCREENCOPY=1
+-.endif
++endif
+ 
+-.ifdef WITH_LAYERSHELL
++ifdef WITH_LAYERSHELL
+ CFLAGS += -DHAVE_LAYERSHELL=1
+-.endif
++endif
+ 
+-.ifdef WITHOUT_SUID
++ifdef WITHOUT_SUID
+ PERMS = 555
+-.else
++else
+ PERMS = 4555
+-.endif
++endif
+ 
+-CFLAGS += -Wall -I. -Iinclude -DHIKARI_ETC_PREFIX=${ETC_PREFIX}
++CFLAGS += -Wall -I. -Iinclude -DHIKARI_ETC_PREFIX=$(ETC_PREFIX)
+ 
+-WLROOTS_CFLAGS != pkg-config --cflags wlroots
+-WLROOTS_LIBS != pkg-config --libs wlroots
++WLROOTS_CFLAGS != $(PKG_CONFIG) --cflags wlroots
++WLROOTS_LIBS != $(PKG_CONFIG) --libs wlroots
+ 
+ WLROOTS_CFLAGS += -DWLR_USE_UNSTABLE=1
+ 
+-PANGO_CFLAGS != pkg-config --cflags pangocairo
+-PANGO_LIBS != pkg-config --libs pangocairo
++PANGO_CFLAGS != $(PKG_CONFIG) --cflags pangocairo
++PANGO_LIBS != $(PKG_CONFIG) --libs pangocairo
+ 
+-CAIRO_CFLAGS != pkg-config --cflags cairo
+-CAIRO_LIBS != pkg-config --libs cairo
++CAIRO_CFLAGS != $(PKG_CONFIG) --cflags cairo
++CAIRO_LIBS != $(PKG_CONFIG) --libs cairo
+ 
+-GLIB_CFLAGS != pkg-config --cflags glib-2.0
+-GLIB_LIBS != pkg-config --libs glib-2.0
++GLIB_CFLAGS != $(PKG_CONFIG) --cflags glib-2.0
++GLIB_LIBS != $(PKG_CONFIG) --libs glib-2.0
+ 
+-PIXMAN_CFLAGS != pkg-config --cflags pixman-1
+-PIXMAN_LIBS != pkg-config --libs pixman-1
++PIXMAN_CFLAGS != $(PKG_CONFIG) --cflags pixman-1
++PIXMAN_LIBS != $(PKG_CONFIG) --libs pixma

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

2020-06-11 Thread Aaron Bauman
commit: 3023c1ddd9de13130bbefe6a320d814ad7dbd5c7
Author: Aaron Bauman  gentoo  org>
AuthorDate: Thu Jun 11 22:20:50 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Jun 11 22:20:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3023c1dd

app-text/scdoc: drop p-m and add myself as co-maint

Signed-off-by: Aaron Bauman  gentoo.org>

 app-text/scdoc/metadata.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-text/scdoc/metadata.xml b/app-text/scdoc/metadata.xml
index d75229ff243..36dc13c52c2 100644
--- a/app-text/scdoc/metadata.xml
+++ b/app-text/scdoc/metadata.xml
@@ -5,9 +5,9 @@
gen...@aisha.cc
Aisha Tammy

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
+   
+   b...@gentoo.org
+   Aaron Bauman


swaywm/sway



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

2020-06-11 Thread Mart Raudsepp
commit: f2ff072e368960d38fb2aada13c6448e4d22342e
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Wed Jun 10 17:14:28 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Jun 11 22:08:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2ff072e

sys-apps/man-pages: ALLARCHES stable (via arm64, bug #727714)

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

 sys-apps/man-pages/man-pages-5.06.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/man-pages/man-pages-5.06.ebuild 
b/sys-apps/man-pages/man-pages-5.06.ebuild
index fdb165ae9c5..5095446eeaa 100644
--- a/sys-apps/man-pages/man-pages-5.06.ebuild
+++ b/sys-apps/man-pages/man-pages-5.06.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://www.kernel.org/pub/linux/docs/man-pages/Archive/${P}.tar.xz
 
 LICENSE="man-pages GPL-2+ BSD"
 SLOT="0"
-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 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~amd64-linux ~x86-linux"
 IUSE_L10N=" de fr it ja nl pl ru zh-CN"
 IUSE="${IUSE_L10N// / l10n_}"
 RESTRICT="binchecks"



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

2020-06-11 Thread Mart Raudsepp
commit: 8955d9cb20cb275b15cb62a09e33063ba747015c
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Thu Jun 11 13:46:44 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Jun 11 22:08:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8955d9cb

dev-python/rsa: arm64 stable (bug #727888)

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

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

diff --git a/dev-python/rsa/rsa-4.1.ebuild b/dev-python/rsa/rsa-4.1.ebuild
index 0e636d2fd21..0008a7fe97f 100644
--- a/dev-python/rsa/rsa-4.1.ebuild
+++ b/dev-python/rsa/rsa-4.1.ebuild
@@ -19,7 +19,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~x86"
 
 RDEPEND="
>=dev-python/pyasn1-0.1.3[${PYTHON_USEDEP}]



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

2020-06-11 Thread Mart Raudsepp
commit: 18466a23a94c32b93cad908ef82a177216d5a35c
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Thu Jun 11 13:16:48 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Jun 11 22:08:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18466a23

arm64: Unmask www-client/firefox[pgo]

Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 profiles/arch/arm64/package.use.mask | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index 59142926497..456dd0d6523 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Sam James  (2020-06-11)
+# PGO works on arm64
+>=www-client/firefox-68.9.0 -pgo
+
 # Michał Górny  (2020-06-02)
 # Avoid unkeyworded deps, we really need a minimal install
 # for imagemagick.



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

2020-06-11 Thread Mart Raudsepp
commit: 0ddf03b0f87784219c094c0c32ed89a2463f2b20
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Wed Jun 10 19:03:44 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Jun 11 22:08:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ddf03b0

sys-apps/kbd: arm64 stable (bug #722158)

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

 sys-apps/kbd/kbd-2.2.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/kbd/kbd-2.2.0-r2.ebuild b/sys-apps/kbd/kbd-2.2.0-r2.ebuild
index 25828b7c1af..051a2409b41 100644
--- a/sys-apps/kbd/kbd-2.2.0-r2.ebuild
+++ b/sys-apps/kbd/kbd-2.2.0-r2.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "" ]] ; then
EGIT_BRANCH="master"
 else
SRC_URI="https://www.kernel.org/pub/linux/utils/kbd/${P}.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86"
 fi
 
 DESCRIPTION="Keyboard and console utilities"



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

2020-06-11 Thread Mart Raudsepp
commit: 16d54f60f2116b92edb24c380cba38a4087a0af3
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Wed Jun 10 12:00:14 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Jun 11 22:04:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16d54f60

dev-libs/keybinder: arm64 keyworded (bug #727700)

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

 dev-libs/keybinder/keybinder-0.3.2-r300.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/keybinder/keybinder-0.3.2-r300.ebuild 
b/dev-libs/keybinder/keybinder-0.3.2-r300.ebuild
index a7830de1126..bf14d929fcf 100644
--- a/dev-libs/keybinder/keybinder-0.3.2-r300.ebuild
+++ b/dev-libs/keybinder/keybinder-0.3.2-r300.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kupferlauncher/keybinder/releases/download/${PN}-3.0
 
 LICENSE="MIT"
 SLOT="3"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 x86"
 IUSE="+introspection"
 
 RDEPEND="x11-libs/gtk+:3[X]



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

2020-06-11 Thread Mart Raudsepp
commit: 8aa4d9b70e2d0bd81a8a727de17f917c8267dc6a
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Thu Jun 11 13:47:29 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Jun 11 22:08:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8aa4d9b7

dev-python/pyproject2setuppy: arm64 stable (bug #727888)

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

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

diff --git a/dev-python/pyproject2setuppy/pyproject2setuppy-7.ebuild 
b/dev-python/pyproject2setuppy/pyproject2setuppy-7.ebuild
index b8ca661b51c..346f6735e4f 100644
--- a/dev-python/pyproject2setuppy/pyproject2setuppy-7.ebuild
+++ b/dev-python/pyproject2setuppy/pyproject2setuppy-7.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 RDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]



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

2020-06-11 Thread Mart Raudsepp
commit: 55908073aa9ddc1947057fa8929cebbc8a2c2bf8
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Wed Jun 10 13:17:44 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Jun 11 22:04:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55908073

sys-apps/man-pages: arm64 stable (bug #727714)

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

 sys-apps/man-pages/man-pages-5.06.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/man-pages/man-pages-5.06.ebuild 
b/sys-apps/man-pages/man-pages-5.06.ebuild
index addb37143f7..fdb165ae9c5 100644
--- a/sys-apps/man-pages/man-pages-5.06.ebuild
+++ b/sys-apps/man-pages/man-pages-5.06.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://www.kernel.org/pub/linux/docs/man-pages/Archive/${P}.tar.xz
 
 LICENSE="man-pages GPL-2+ BSD"
 SLOT="0"
-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 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~amd64-linux ~x86-linux"
 IUSE_L10N=" de fr it ja nl pl ru zh-CN"
 IUSE="${IUSE_L10N// / l10n_}"
 RESTRICT="binchecks"



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

2020-06-11 Thread Mart Raudsepp
commit: ec7e6d597aec0d8842de622318af182c543a0024
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Wed Jun 10 11:58:26 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Jun 11 22:04:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec7e6d59

sys-apps/sed: arm64 stable (bug #725356)

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

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

diff --git a/sys-apps/sed/sed-4.8.ebuild b/sys-apps/sed/sed-4.8.ebuild
index 3e443e0ee3a..35656086a9a 100644
--- a/sys-apps/sed/sed-4.8.ebuild
+++ b/sys-apps/sed/sed-4.8.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/sed/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86"
 IUSE="acl nls selinux static"
 
 RDEPEND="



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

2020-06-11 Thread Mart Raudsepp
commit: 361396ca4a9ae5a10fb3993d8107510dc07970ca
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Wed Jun 10 09:08:19 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Jun 11 22:04:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=361396ca

app-editors/mousepad: arm64 keyworded (bug #727698)

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

 app-editors/mousepad/mousepad-0.4.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/mousepad/mousepad-0.4.2.ebuild 
b/app-editors/mousepad/mousepad-0.4.2.ebuild
index d6c73c13414..de411259d53 100644
--- a/app-editors/mousepad/mousepad-0.4.2.ebuild
+++ b/app-editors/mousepad/mousepad-0.4.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,7 +10,7 @@ 
SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2";
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="dbus +gtk3"
 # D-Bus code fails to build against GTK+2
 # https://bugzilla.xfce.org/show_bug.cgi?id=15755



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

2020-06-11 Thread Mart Raudsepp
commit: bfd65727ef6cf667cdf51cc15ed89fe03dbf9b3f
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Wed Jun 10 09:17:38 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Jun 11 22:04:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfd65727

dev-libs/libtasn1: arm64 stable (bug #725352)

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

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

diff --git a/dev-libs/libtasn1/libtasn1-4.16.0.ebuild 
b/dev-libs/libtasn1/libtasn1-4.16.0.ebuild
index f2c6bb01dfb..047b616a8cf 100644
--- a/dev-libs/libtasn1/libtasn1-4.16.0.ebuild
+++ b/dev-libs/libtasn1/libtasn1-4.16.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3 LGPL-2.1"
 SLOT="0/6" # subslot = libtasn1 soname version
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs test valgrind"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-volumed-pulse/

2020-06-11 Thread Mart Raudsepp
commit: 4765136047022b1caacdda5b26f74748d3237463
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Wed Jun 10 12:01:34 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Jun 11 22:04:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47651360

xfce-extra/xfce4-volumed-pulse: arm64 keyworded (bug #727700)

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

 xfce-extra/xfce4-volumed-pulse/xfce4-volumed-pulse-0.2.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfce-extra/xfce4-volumed-pulse/xfce4-volumed-pulse-0.2.3.ebuild 
b/xfce-extra/xfce4-volumed-pulse/xfce4-volumed-pulse-0.2.3.ebuild
index c7003ec8315..2008a747cf3 100644
--- a/xfce-extra/xfce4-volumed-pulse/xfce4-volumed-pulse-0.2.3.ebuild
+++ b/xfce-extra/xfce4-volumed-pulse/xfce4-volumed-pulse-0.2.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ 
SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2";
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="libnotify"
 
 RDEPEND=">=dev-libs/glib-2.16:2=



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

2020-06-11 Thread Mart Raudsepp
commit: 8bb196ca60886add02994ea68633ad8c24988e37
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Wed Jun 10 18:01:46 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Jun 11 22:08:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bb196ca

net-vpn/vpnc: arm64 stable (bug #727842)

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

 net-vpn/vpnc/vpnc-0.5.3_p550-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/vpnc/vpnc-0.5.3_p550-r1.ebuild 
b/net-vpn/vpnc/vpnc-0.5.3_p550-r1.ebuild
index 88974e18427..1b066c87733 100644
--- a/net-vpn/vpnc/vpnc-0.5.3_p550-r1.ebuild
+++ b/net-vpn/vpnc/vpnc-0.5.3_p550-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/streambinder/vpnc/archive/fa0689c.tar.gz -> ${PF}.ta
 
 LICENSE="GPL-2 BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 sparc ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~ppc ~ppc64 sparc ~x86"
 IUSE="resolvconf +gnutls selinux"
 RESTRICT="!gnutls? ( bindist )"
 



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

2020-06-11 Thread Mart Raudsepp
commit: 318db947d72a9ce9c4cb14a6a503c89bfcde2c86
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Tue Jun  9 18:17:02 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Jun 11 22:04:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=318db947

sys-apps/texinfo: arm64 stable (bug #725366)

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

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

diff --git a/sys-apps/texinfo/texinfo-6.7.ebuild 
b/sys-apps/texinfo/texinfo-6.7.ebuild
index 00fac87fa39..90ab654 100644
--- a/sys-apps/texinfo/texinfo-6.7.ebuild
+++ b/sys-apps/texinfo/texinfo-6.7.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv s390 
sparc x86"
 IUSE="nls +standalone static"
 
 RDEPEND="



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

2020-06-11 Thread Sergei Trofimovich
commit: ff87718b283a50728839a461ec43eedcddacd81c
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jun 11 21:28:37 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 21:48:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff87718b

dev-python/pytest-timeout: stable 1.3.3 for hppa, bug #719946

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

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

diff --git a/dev-python/pytest-timeout/pytest-timeout-1.3.3.ebuild 
b/dev-python/pytest-timeout/pytest-timeout-1.3.3.ebuild
index 2b362ace1e1..2b7786b403a 100644
--- a/dev-python/pytest-timeout/pytest-timeout-1.3.3.ebuild
+++ b/dev-python/pytest-timeout/pytest-timeout-1.3.3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="MIT"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~s390 sparc x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ppc ppc64 ~s390 sparc x86 ~amd64-linux 
~x86-linux"
 
 RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]"
 BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2020-06-11 Thread Sergei Trofimovich
commit: f84d068fc904d248d9082c2535c56cd51eb27ce4
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jun 11 21:27:44 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 21:48:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f84d068f

dev-python/scripttest: stable 1.3.0 for hppa, bug #719946

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

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

diff --git a/dev-python/scripttest/scripttest-1.3.0.ebuild 
b/dev-python/scripttest/scripttest-1.3.0.ebuild
index ced51f75881..ccad3cfea21 100644
--- a/dev-python/scripttest/scripttest-1.3.0.ebuild
+++ b/dev-python/scripttest/scripttest-1.3.0.ebuild
@@ -14,6 +14,6 @@ 
SRC_URI="https://github.com/pypa/scripttest/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86"
 
 distutils_enable_tests pytest



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

2020-06-11 Thread Sergei Trofimovich
commit: e86785190eb85d70006ff6f7603074dc94b79571
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jun 11 21:32:20 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 21:48:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8678519

dev-python/pip: stable 20.0.2 for hppa, bug #719946

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

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

diff --git a/dev-python/pip/pip-20.0.2.ebuild b/dev-python/pip/pip-20.0.2.ebuild
index fa155d4b02d..fcb8d78d31a 100644
--- a/dev-python/pip/pip-20.0.2.ebuild
+++ b/dev-python/pip/pip-20.0.2.ebuild
@@ -25,7 +25,7 @@ SRC_URI="
 # setuptools & wheel .whl files are required for testing, exact version is not 
very important.
 
 LICENSE="MIT"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc ~x86"
 SLOT="0"
 IUSE="test -vanilla"
 



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

2020-06-11 Thread Sergei Trofimovich
commit: 7b23d610d4382f5a4b5e9abae0597c5a0c65ceec
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jun 11 21:31:43 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 21:48:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b23d610

dev-python/werkzeug: stable 0.16.1 for hppa, bug #719946

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

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

diff --git a/dev-python/werkzeug/werkzeug-0.16.1.ebuild 
b/dev-python/werkzeug/werkzeug-0.16.1.ebuild
index 551fc0b5391..7bc514bedc1 100644
--- a/dev-python/werkzeug/werkzeug-0.16.1.ebuild
+++ b/dev-python/werkzeug/werkzeug-0.16.1.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/pallets/werkzeug/archive/${PV}.tar.gz -> ${P}.gh.tar
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 arm arm64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 
 RDEPEND="dev-python/simplejson[${PYTHON_USEDEP}]"
 DEPEND="



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

2020-06-11 Thread Sergei Trofimovich
commit: d180e15c1bd4641ebde0b4744f5f57d883fdaf15
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jun 11 21:32:55 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 21:48:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d180e15c

dev-python/pip: keyworded 20.0.2 for hppa

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

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

diff --git a/dev-python/pip/pip-20.0.2.ebuild b/dev-python/pip/pip-20.0.2.ebuild
index fcb8d78d31a..fa155d4b02d 100644
--- a/dev-python/pip/pip-20.0.2.ebuild
+++ b/dev-python/pip/pip-20.0.2.ebuild
@@ -25,7 +25,7 @@ SRC_URI="
 # setuptools & wheel .whl files are required for testing, exact version is not 
very important.
 
 LICENSE="MIT"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86"
 SLOT="0"
 IUSE="test -vanilla"
 



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

2020-06-11 Thread Sergei Trofimovich
commit: bad32018d49384326f03bec5d33c9fc6e5f14c62
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jun 11 21:29:06 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 21:48:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bad32018

dev-python/pytest-xprocess: stable 0.13.1 for hppa, bug #719946

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

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

diff --git a/dev-python/pytest-xprocess/pytest-xprocess-0.13.1.ebuild 
b/dev-python/pytest-xprocess/pytest-xprocess-0.13.1.ebuild
index 47bc0f21b37..69cd4344e0a 100644
--- a/dev-python/pytest-xprocess/pytest-xprocess-0.13.1.ebuild
+++ b/dev-python/pytest-xprocess/pytest-xprocess-0.13.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="MIT"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
 
 RDEPEND="
dev-python/pytest[${PYTHON_USEDEP}]



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

2020-06-11 Thread Sergei Trofimovich
commit: c4df2068a5931ae835a2fb9dae466905d94aa9a3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jun 11 21:14:56 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 21:15:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4df2068

dev-util/diffoscope: bump up to 147

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

 dev-util/diffoscope/Manifest  |  1 +
 dev-util/diffoscope/diffoscope-147.ebuild | 71 +++
 2 files changed, 72 insertions(+)

diff --git a/dev-util/diffoscope/Manifest b/dev-util/diffoscope/Manifest
index 089f6a8e9d2..d962f0a0976 100644
--- a/dev-util/diffoscope/Manifest
+++ b/dev-util/diffoscope/Manifest
@@ -1,2 +1,3 @@
 DIST diffoscope-145.tar.gz 1570621 BLAKE2B 
f40ecde3e5392559c62c3e9c4dc37b1255f8db22e0a21fb2228995d9da8e977fd88fbbdd44a4cbdb75762cc56afba801de2f235a9f348fcdc4f3e77c7c665ceb
 SHA512 
400d40b7a6a00b246630d8ab251dc9fc1a1c0ca117102ef13f793cff63dfa551f4b77081f6061c47bf87d8de65fef406d34a8b63692c5b129526132c01b1b082
 DIST diffoscope-146.tar.gz 1570347 BLAKE2B 
c94be83c8c1de97c054b10dccb66f9f1df9dd1a84b0491137a61b5c1d539947332a2629b4e752ff338d4797cb1eb655a7244b17abcaf7f1dc856b3bd4303810e
 SHA512 
50c6ae4241f599e3fbe0a99bc9654a739d2c97314c2e04d0f1c225c0e90fab1ea6e1e2f39ab1f14efb06d2e29683a8a76419b1dc044f7f2f11db1329a831a30f
+DIST diffoscope-147.tar.gz 1570418 BLAKE2B 
845d4c5f59d479237b614962601493b06f07955d5aa4469e47e4e2619587c32b6daad81a528fd0a9db6c492cb7a4c8366edf69aec460bc994e1b38fc01cc5ad9
 SHA512 
4017bbf3164febfa7ec628ad34a7ee5aa3cde6528878f0197ce0fab82bbf8067f0f9e7d51ed569e0d69c8a82bd3b044d9dfcbc3c4f4a6195ac9886594796ec61

diff --git a/dev-util/diffoscope/diffoscope-147.ebuild 
b/dev-util/diffoscope/diffoscope-147.ebuild
new file mode 100644
index 000..63058ee2f20
--- /dev/null
+++ b/dev-util/diffoscope/diffoscope-147.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+inherit distutils-r1
+
+DESCRIPTION="Will try to get to the bottom of what makes files or directories 
different"
+HOMEPAGE="https://diffoscope.org/ https://pypi.org/project/diffoscope/";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="acl binutils bzip2 libcaca colord cpio +diff docx dtc e2fsprogs file
+find gettext gif gpg gzip haskell hdf5 hex imagemagick iso java llvm
+mono opendocument pascal pdf postscript R rpm sqlite squashfs
+ssh tar tcpdump xz zip zstd"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="dev-python/python-magic[${PYTHON_USEDEP}]
+   dev-python/libarchive-c[${PYTHON_USEDEP}]
+   dev-python/distro[${PYTHON_USEDEP}]
+   acl? ( sys-apps/acl )
+   binutils? ( sys-devel/binutils )
+   bzip2? ( app-arch/bzip2 )
+   libcaca? ( media-libs/libcaca )
+   colord? ( x11-misc/colord )
+   cpio? ( app-arch/cpio )
+   diff? ( sys-apps/diffutils )
+   docx? ( app-text/docx2txt )
+   dtc? ( sys-apps/dtc )
+   e2fsprogs? ( sys-fs/e2fsprogs )
+   file? ( sys-apps/file )
+   find? ( sys-apps/findutils )
+   gettext? ( sys-devel/gettext )
+   gif? ( media-libs/giflib )
+   gpg? ( app-crypt/gnupg )
+   gzip? ( app-arch/gzip )
+   haskell? ( dev-lang/ghc )
+   hdf5? ( sci-libs/hdf5 )
+   hex? ( app-editors/vim-core )
+   imagemagick? ( media-gfx/imagemagick )
+   iso? ( virtual/cdrtools )
+   java? ( virtual/jdk )
+   llvm? ( sys-devel/llvm )
+   mono? ( dev-lang/mono )
+   opendocument? ( app-text/odt2txt )
+   pascal? ( dev-lang/fpc )
+   pdf? (
+   app-text/pdftk
+   app-text/poppler
+   dev-python/PyPDF2[${PYTHON_USEDEP}]
+   )
+   postscript? ( app-text/ghostscript-gpl )
+   R? ( dev-lang/R )
+   rpm? ( app-arch/rpm )
+   sqlite? ( dev-db/sqlite:3 )
+   squashfs? ( sys-fs/squashfs-tools )
+   ssh? ( net-misc/openssh )
+   tar? ( app-arch/tar )
+   tcpdump? ( net-analyzer/tcpdump )
+   xz? ( app-arch/xz-utils )
+   zip? ( app-arch/unzip )
+   zstd? ( app-arch/zstd )
+"
+# Presence if filemagic's magic.py breaks imports
+# of dev-python/python-magic: https://bugs.gentoo.org/716482
+RDEPEND+=" !dev-python/filemagic"



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

2020-06-11 Thread Sergei Trofimovich
commit: 245c81eb328027b757ef840caca48c12cf18965e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jun 11 21:15:41 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 21:15:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=245c81eb

dev-util/diffoscope: drop old

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

 dev-util/diffoscope/Manifest  |  1 -
 dev-util/diffoscope/diffoscope-145.ebuild | 71 ---
 2 files changed, 72 deletions(-)

diff --git a/dev-util/diffoscope/Manifest b/dev-util/diffoscope/Manifest
index d962f0a0976..dfff5cb698b 100644
--- a/dev-util/diffoscope/Manifest
+++ b/dev-util/diffoscope/Manifest
@@ -1,3 +1,2 @@
-DIST diffoscope-145.tar.gz 1570621 BLAKE2B 
f40ecde3e5392559c62c3e9c4dc37b1255f8db22e0a21fb2228995d9da8e977fd88fbbdd44a4cbdb75762cc56afba801de2f235a9f348fcdc4f3e77c7c665ceb
 SHA512 
400d40b7a6a00b246630d8ab251dc9fc1a1c0ca117102ef13f793cff63dfa551f4b77081f6061c47bf87d8de65fef406d34a8b63692c5b129526132c01b1b082
 DIST diffoscope-146.tar.gz 1570347 BLAKE2B 
c94be83c8c1de97c054b10dccb66f9f1df9dd1a84b0491137a61b5c1d539947332a2629b4e752ff338d4797cb1eb655a7244b17abcaf7f1dc856b3bd4303810e
 SHA512 
50c6ae4241f599e3fbe0a99bc9654a739d2c97314c2e04d0f1c225c0e90fab1ea6e1e2f39ab1f14efb06d2e29683a8a76419b1dc044f7f2f11db1329a831a30f
 DIST diffoscope-147.tar.gz 1570418 BLAKE2B 
845d4c5f59d479237b614962601493b06f07955d5aa4469e47e4e2619587c32b6daad81a528fd0a9db6c492cb7a4c8366edf69aec460bc994e1b38fc01cc5ad9
 SHA512 
4017bbf3164febfa7ec628ad34a7ee5aa3cde6528878f0197ce0fab82bbf8067f0f9e7d51ed569e0d69c8a82bd3b044d9dfcbc3c4f4a6195ac9886594796ec61

diff --git a/dev-util/diffoscope/diffoscope-145.ebuild 
b/dev-util/diffoscope/diffoscope-145.ebuild
deleted file mode 100644
index 63058ee2f20..000
--- a/dev-util/diffoscope/diffoscope-145.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-inherit distutils-r1
-
-DESCRIPTION="Will try to get to the bottom of what makes files or directories 
different"
-HOMEPAGE="https://diffoscope.org/ https://pypi.org/project/diffoscope/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="acl binutils bzip2 libcaca colord cpio +diff docx dtc e2fsprogs file
-find gettext gif gpg gzip haskell hdf5 hex imagemagick iso java llvm
-mono opendocument pascal pdf postscript R rpm sqlite squashfs
-ssh tar tcpdump xz zip zstd"
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="dev-python/python-magic[${PYTHON_USEDEP}]
-   dev-python/libarchive-c[${PYTHON_USEDEP}]
-   dev-python/distro[${PYTHON_USEDEP}]
-   acl? ( sys-apps/acl )
-   binutils? ( sys-devel/binutils )
-   bzip2? ( app-arch/bzip2 )
-   libcaca? ( media-libs/libcaca )
-   colord? ( x11-misc/colord )
-   cpio? ( app-arch/cpio )
-   diff? ( sys-apps/diffutils )
-   docx? ( app-text/docx2txt )
-   dtc? ( sys-apps/dtc )
-   e2fsprogs? ( sys-fs/e2fsprogs )
-   file? ( sys-apps/file )
-   find? ( sys-apps/findutils )
-   gettext? ( sys-devel/gettext )
-   gif? ( media-libs/giflib )
-   gpg? ( app-crypt/gnupg )
-   gzip? ( app-arch/gzip )
-   haskell? ( dev-lang/ghc )
-   hdf5? ( sci-libs/hdf5 )
-   hex? ( app-editors/vim-core )
-   imagemagick? ( media-gfx/imagemagick )
-   iso? ( virtual/cdrtools )
-   java? ( virtual/jdk )
-   llvm? ( sys-devel/llvm )
-   mono? ( dev-lang/mono )
-   opendocument? ( app-text/odt2txt )
-   pascal? ( dev-lang/fpc )
-   pdf? (
-   app-text/pdftk
-   app-text/poppler
-   dev-python/PyPDF2[${PYTHON_USEDEP}]
-   )
-   postscript? ( app-text/ghostscript-gpl )
-   R? ( dev-lang/R )
-   rpm? ( app-arch/rpm )
-   sqlite? ( dev-db/sqlite:3 )
-   squashfs? ( sys-fs/squashfs-tools )
-   ssh? ( net-misc/openssh )
-   tar? ( app-arch/tar )
-   tcpdump? ( net-analyzer/tcpdump )
-   xz? ( app-arch/xz-utils )
-   zip? ( app-arch/unzip )
-   zstd? ( app-arch/zstd )
-"
-# Presence if filemagic's magic.py breaks imports
-# of dev-python/python-magic: https://bugs.gentoo.org/716482
-RDEPEND+=" !dev-python/filemagic"



[gentoo-commits] repo/gentoo:master commit in: dev-ada/gprbuild/

2020-06-11 Thread Alfredo Tupone
commit: 7769b261c8be306a5455a84eafc6e8fac9851f67
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Thu Jun 11 21:04:23 2020 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Thu Jun 11 21:04:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7769b261

dev-ada/gprbuild: fix source name

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

 dev-ada/gprbuild/Manifest | 2 +-
 dev-ada/gprbuild/gprbuild-2020.ebuild | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-ada/gprbuild/Manifest b/dev-ada/gprbuild/Manifest
index ed748ce42b2..f7e381e3e4e 100644
--- a/dev-ada/gprbuild/Manifest
+++ b/dev-ada/gprbuild/Manifest
@@ -1,5 +1,5 @@
-DIST 
408ec35c3bb86bd227db3da55d3e1e0c572a56e3?filename=gprbuild-2020-20200429-19BD2-src.tar.gz
 2489399 BLAKE2B 
3a036cb40bbe5522af63c376a672384093901b44df6fd74013f1eff9d269c2f5056224ab5e7d59b6f3cf126cd14dd30420056b09e887851351462de59f700e3a
 SHA512 
d2ff6a5d8281d332a31533c7a5744b6169fd250c9086373fd658486c1e529564d9830b9ef3b2dfcbec5f8c1ba50d244a9eb45bf8fdccd53f8b711dcf29258dfd
 DIST gprbuild-2019-20190517-194D8-src.tar.gz 2507961 BLAKE2B 
0f70d94cb0db9ddc1dd308862aaa305a91965a62a936cfbdde2ae9f3f735f0cc3d69596b09da4b979a1d7923087ab0ec5cf2d6541551f057b5e8e0c499065a90
 SHA512 
0388d7e6cdf625fef40b33da764091b3283dd88714c64ecfad4b5e99253f183b1a9b717c19281e6d45cc4277a05fadb2e2ace394d6f30638664b66c97123052b
+DIST gprbuild-2020-20200429-19BD2-src.tar.gz 2489399 BLAKE2B 
3a036cb40bbe5522af63c376a672384093901b44df6fd74013f1eff9d269c2f5056224ab5e7d59b6f3cf126cd14dd30420056b09e887851351462de59f700e3a
 SHA512 
d2ff6a5d8281d332a31533c7a5744b6169fd250c9086373fd658486c1e529564d9830b9ef3b2dfcbec5f8c1ba50d244a9eb45bf8fdccd53f8b711dcf29258dfd
 DIST gprbuild-gpl-2017-src.tar.gz 2454957 BLAKE2B 
890e5aa29e9f8fa8b140988ee8e5d6042640c34fe0877acde959de803bf690bb33c63b1c7e7db486f804882bddd77ab76ffbaa4dd27da327e21ed0376cadb99d
 SHA512 
12f3682d64ce0718de4940c1e71a4380b20021805d88543842dbf3b5ce5d518c23a6b2d868565579baf81efa1d8cf05c7778253162f0df5d7adc0eb1865c9f88
 DIST xmlada-2019-20190429-19B9D-src.tar.gz 1582603 BLAKE2B 
e2be3e7c0c8b843bfc808a3dd726235a82588caed8c919975a97ce34c72d6d634361bbc34208590210936add9e2f881b59d01168ef79abed1e489c50b27094d8
 SHA512 
f8e0e25b0aee9a7a18223ae7761603082af55134f062c767d0cd0dbf0dbcb2058fc7c57532b567fb2c6efa464a53ead57b300578e98962025866e5c3ad73e380
 DIST xmlada-2020-20200429-19A99-src.tar.gz 1533111 BLAKE2B 
e2c25e103c5c560cf7c9580118580e2952f3ef56c244b0f76c7f484e5629b684d5ee546d2d40520e1a4bf963271d360522423f4e7d81570f7dc1dbc8424c9147
 SHA512 
e53dd1fba504d2aa91ce29ea381c62adea12c5d8c72cd87396b903143279456cc6547c18035f6e988e95bd93607360075789532378f33cbe23bef9b49c8d984c

diff --git a/dev-ada/gprbuild/gprbuild-2020.ebuild 
b/dev-ada/gprbuild/gprbuild-2020.ebuild
index fa4ded0b7f3..c633f202b55 100644
--- a/dev-ada/gprbuild/gprbuild-2020.ebuild
+++ b/dev-ada/gprbuild/gprbuild-2020.ebuild
@@ -14,6 +14,7 @@ DESCRIPTION="Multi-Language Management"
 HOMEPAGE="http://libre.adacore.com/";
 SRC_URI="

https://community.download.adacore.com/v1/408ec35c3bb86bd227db3da55d3e1e0c572a56e3?filename=${MYP}.tar.gz
+   -> ${MYP}.tar.gz

https://community.download.adacore.com/v1/c799502295baf074ad17b48c50f621879c392c57?filename=${XMLADA}.tar.gz
-> ${XMLADA}.tar.gz"
 LICENSE="GPL-3"



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

2020-06-11 Thread Michał Górny
commit: 3e14281d40d45f7807852a3956b44a9949dbf0c3
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun 11 20:32:07 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun 11 20:33:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e14281d

dev-python/pymysql: Use UNIX socket rather than TCP in tests

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

 dev-python/pymysql/pymysql-0.9.3.ebuild | 20 +++-
 1 file changed, 19 insertions(+), 1 deletion(-)

diff --git a/dev-python/pymysql/pymysql-0.9.3.ebuild 
b/dev-python/pymysql/pymysql-0.9.3.ebuild
index 2a4aa6e8160..7346a5ab5fb 100644
--- a/dev-python/pymysql/pymysql-0.9.3.ebuild
+++ b/dev-python/pymysql/pymysql-0.9.3.ebuild
@@ -42,7 +42,7 @@ src_test() {
--no-defaults \
--character-set-server=utf8 \
--bind-address=127.0.0.1 \
-   --port=3306 \
+   --port=43306 \
--socket="${T}"/mysqld.sock \
--datadir="${T}"/mysql &
local pid=${!}
@@ -67,6 +67,24 @@ src_test() {
grant all on test2.* to test2@localhost;
' || die
 
+   cat > pymysql/tests/databases.json <<-EOF || die
+   [{
+   "host": "localhost",
+   "user": "root",
+   "passwd": "",
+   "db": "test1",
+   "use_unicode": true,
+   "local_infile": true,
+   "unix_socket": "${T}/mysqld.sock"
+   }, {
+   "host": "localhost",
+   "user": "root",
+   "passwd": "",
+   "db": "test2",
+   "unix_socket": "${T}/mysqld.sock"
+   }]
+   EOF
+
distutils-r1_src_test
 
kill "${pid}"



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

2020-06-11 Thread Michał Górny
commit: 0e2e2731b6f02a900bf2ab99b03496c10e5da089
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun 11 20:18:16 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun 11 20:33:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e2e2731

dev-python/pymysql: Enable tests

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

 dev-python/pymysql/pymysql-0.9.3.ebuild | 55 ++---
 1 file changed, 51 insertions(+), 4 deletions(-)

diff --git a/dev-python/pymysql/pymysql-0.9.3.ebuild 
b/dev-python/pymysql/pymysql-0.9.3.ebuild
index e0580ba4984..5ab0788a13a 100644
--- a/dev-python/pymysql/pymysql-0.9.3.ebuild
+++ b/dev-python/pymysql/pymysql-0.9.3.ebuild
@@ -13,18 +13,65 @@ MY_P="${MY_PN}-${PV}"
 DESCRIPTION="Pure-Python MySQL Driver"
 HOMEPAGE="https://github.com/PyMySQL/PyMySQL";
 SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+S=${WORKDIR}/${MY_P}
 
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="amd64 ~arm64 x86"
 IUSE="test"
+RESTRICT="!test? ( test )"
 
-S=${WORKDIR}/${MY_P}
+# TODO: support other mysql variants
+BDEPEND="
+   test? ( dev-db/mariadb[server] )"
+
+src_prepare() {
+   find -name '*.py' -exec sed -i -e 's:unittest2:unittest:' {} + || die
+   distutils-r1_src_prepare
+}
+
+src_test() {
+   mkdir -p "${T}"/mysql || die
+   "${BROOT}"/usr/share/mariadb/scripts/mysql_install_db \
+   --no-defaults \
+   --auth-root-authentication-method=normal \
+   --basedir="${BROOT}/usr" \
+   --datadir="${T}"/mysql || die
+   # TODO: random port
+   mysqld \
+   --no-defaults \
+   --character-set-server=utf8 \
+   --bind-address=127.0.0.1 \
+   --port=3306 \
+   --socket="${T}"/mysqld.sock \
+   --datadir="${T}"/mysql &
+   local pid=${!}
 
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+   # wait for it to start
+   local i
+   for (( i = 0; i < 10; i++)); do
+   [[ -S ${T}/mysqld.sock ]] && break
+   sleep 1
+   done
+   [[ -S ${T}/mysqld.sock ]] || die "mysqld failed to start"
 
-# While tests exist, they require an unsecure server to run without manual 
config file
-RESTRICT="test"
+   # create test databases
+   mysql -uroot --socket="${T}"/mysqld.sock -e '
+   create database test1 DEFAULT CHARACTER SET utf8mb4;
+   create database test2 DEFAULT CHARACTER SET utf8mb4;
+
+   create user test2 identified by "some password";
+   grant all on test2.* to test2;
+
+   create user test2@localhost identified by "some password";
+   grant all on test2.* to test2@localhost;
+   ' || die
+
+   distutils-r1_src_test
+
+   kill "${pid}"
+   wait "${pid}"
+}
 
 python_test() {
${PYTHON} runtests.py || die



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

2020-06-11 Thread Michał Górny
commit: fe0d77d7963a11725d789c0a420c28adbf3d33eb
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun 11 20:19:29 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun 11 20:33:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe0d77d7

dev-python/pymysql: Port to py3.9

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

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

diff --git a/dev-python/pymysql/pymysql-0.9.3.ebuild 
b/dev-python/pymysql/pymysql-0.9.3.ebuild
index 5ab0788a13a..2a4aa6e8160 100644
--- a/dev-python/pymysql/pymysql-0.9.3.ebuild
+++ b/dev-python/pymysql/pymysql-0.9.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
+PYTHON_COMPAT=( python3_{6..9} pypy3 )
 
 inherit distutils-r1
 



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

2020-06-11 Thread Mike Gilbert
commit: 3020df3ab461d8628ff37956cf96181f9387df77
Author: Stephan Hartmann  googlemail  com>
AuthorDate: Thu Jun 11 17:25:21 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Jun 11 19:49:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3020df3a

www-client/chromium: beta channel bump to 84.0.4147.45

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Stephan Hartmann  googlemail.com>
Signed-off-by: Mike Gilbert  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/16194

 www-client/chromium/Manifest  | 2 +-
 .../{chromium-84.0.4147.38.ebuild => chromium-84.0.4147.45.ebuild}| 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index 705a1e3b595..5c34c8c6547 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -1,5 +1,5 @@
 DIST chromium-83.0.4103.97.tar.xz 802603824 BLAKE2B 
543c7908ba8e712650d1d09d7f1c0eff25c069900a5102ab49a55b2e36c5dceec7d60521dfbceb3192a9e24c55a2a3642d2f8005cd92557a5154c9ff4a671a67
 SHA512 
5b7d7ab2f4e3d7ee965be4bba2d7ee1f3ce7f062920547639fd8d695eb8ef4a94153a99ecd10fb13b46fbcdec59ed3792231fec9c0773a457a60a551ebbe53c9
 DIST chromium-84-patchset-1.tar.xz 17652 BLAKE2B 
17008a5d7b81fd9dd3934f815922a10c4b33bd4b3a13b350011d60627133f2179c2e70a6e74ef11ddf9b68b83b988fad3df15e9307f871006ccb7aca52c819da
 SHA512 
2a45183c60794256b150bf67aa8395bab113e77b338775f737ebd8a822fd17be776b786ad12ffa759774a8876e0976a1c285ef90257e9532cfd9952baba7096d
-DIST chromium-84.0.4147.38.tar.xz 845112748 BLAKE2B 
ab915f235c7005918ce232eb2893a713725dcfcf63d7fc94af399c5fcf793b8bd9e76aef7da6c7a93684d003e86639e3763645738f5e6181ac0986c4014addb5
 SHA512 
93bbff3a7d035f3d5623e4e770a7b887d9f6e5405408106b13052f2c4176c1528484e8ed0daaef14b0e71741d560b20fe13dd4a0f8b8ec2ce716b2884d0c0183
+DIST chromium-84.0.4147.45.tar.xz 845103524 BLAKE2B 
8b1e1c052b2ff3968fc4f13215551b9bd53b2fe89f15512d064267e82e71909f267d4f91665b456ad84ec537601e4fbc097eebc45b461f967aa8fe997da2716c
 SHA512 
d43ef067ed855813d3f003cc8f7302d433c924a58ea79bdafa3ec1fe35b4f71a24c4493389563bbc88744ee8fce9b1664c62548e975e0e5a97c823f90aacfe30
 DIST setuptools-44.1.0.zip 858569 BLAKE2B 
f59f154e121502a731e51294ccd293d60ffccadacf51e23b53bf7ceba38858948b86783238061136c827ac3373ea7ea8e6253d4bb53f3f1dd69284568ec65a68
 SHA512 
4dfb0f42d334b835758e865a26ecd1e725711fa2b9c38ddc273b8b3849fba04527bc97436d11ba1e98f1a42922aa0f0b9032e32998273c705fac6e10735eacbf
 DIST xcb-proto-1.14.tar.xz 143384 BLAKE2B 
60212b0f0ce039a64a2e6cbbc78564eeffc57cff20987b37dc780d8d97ae888a7dbfbbaadc6e0e4bedfc5d1e360f16318e3825ad8406de668d9c7c66cf7f4b5d
 SHA512 
de66d568163b6da2be9d6c59984f3afa3acd119a781378638045fd68018665ef5c9af98f024e9962ba3eb7c7a4d85c27ba70ffafceb2324ccc6940f34de16690

diff --git a/www-client/chromium/chromium-84.0.4147.38.ebuild 
b/www-client/chromium/chromium-84.0.4147.45.ebuild
similarity index 99%
rename from www-client/chromium/chromium-84.0.4147.38.ebuild
rename to www-client/chromium/chromium-84.0.4147.45.ebuild
index 55becb7647a..d50cafdca25 100644
--- a/www-client/chromium/chromium-84.0.4147.38.ebuild
+++ b/www-client/chromium/chromium-84.0.4147.45.ebuild
@@ -163,8 +163,8 @@ in /etc/chromium/default.
 pre_build_checks() {
if [[ ${MERGE_TYPE} != binary ]]; then
local -x CPP="$(tc-getCXX) -E"
-   if tc-is-gcc && ! ver_test "$(gcc-version)" -ge 8.0; then
-   die "At least gcc 8.0 is required"
+   if tc-is-gcc && ! ver_test "$(gcc-version)" -ge 9.2; then
+   die "At least gcc 9.2 is required"
fi
# component build hangs with tcmalloc enabled due to sandbox 
issue, bug #695976.
if has usersandbox ${FEATURES} && use tcmalloc && use 
component-build; then



[gentoo-commits] repo/gentoo:master commit in: net-im/pidgin/

2020-06-11 Thread Lars Wendler
commit: 678f122863495280c9596d6762b14c849fc54203
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Jun 11 19:21:08 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Jun 11 19:21:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=678f1228

net-im/pidgin: Bump to version 2.14.1. Removed old

Fixed build issue with USE="ncurses" by introducing dev-libs/libgnt

Closes: https://bugs.gentoo.org/727878
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Lars Wendler  gentoo.org>

 net-im/pidgin/Manifest   | 2 +-
 net-im/pidgin/{pidgin-2.14.0.ebuild => pidgin-2.14.1.ebuild} | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/net-im/pidgin/Manifest b/net-im/pidgin/Manifest
index 89e81170fbc..19285a4611f 100644
--- a/net-im/pidgin/Manifest
+++ b/net-im/pidgin/Manifest
@@ -1,4 +1,4 @@
 DIST pidgin-2.10.9-irc_join_sleep.patch 534 BLAKE2B 
0215cebb93993e19e700e4d4974351ab5e9a00ea094775076d8f439569b34c0ec2faaed360965867df58bc42677516983ce11a2601dd322c1bdf2f288253a5b8
 SHA512 
8de0d6f05e48cd5a3e894576e06c7fb82e4bfc778cce8bb179fa22e2a05f5c2390a0e4c5b626ee4b910a18eab170d8f4be200f435ce408a86575af99e51e3bdf
 DIST pidgin-2.13.0.tar.bz2 8994457 BLAKE2B 
32be31509a90b924fba4a4dbaba304580d88dfc6d3bbe0c88ef12eef381f70e031af1a55ada2abfb6968a9967a9fdadfa69973482b80dea7bb554a983a96fa12
 SHA512 
68b3d1eefee111544c7eb347386d0aea4f47c3e320d5963a4e0d833ed6af7b1be243a7bcd6a38c9234b58601d10a9aebf8541f1d97decfeca754fa78dc693047
-DIST pidgin-2.14.0.tar.bz2 8852009 BLAKE2B 
36b0def5bcd004f85b7ab1dea633c04f1bd679084016540c473d07ec99c60155315bed7aad89ec7d9fb22e7b80029a559c2698816ee78b8a1b1f4dcc20a12e18
 SHA512 
39da85f7b446f60e8475cd4256b8a0f5681503082087206b887e06f8bb39fb2b56865a564493b67539e04cb90dc2c5da26570469909a692cbb5e7c41f8f497cf
+DIST pidgin-2.14.1.tar.bz2 8849275 BLAKE2B 
27cd58a79f36c0176147c2e5bac7c4c18ec74c446c556e2326465c3607a95c3a58c1bdbbf9b4fb9741783ae982a6ce8fe0556ccff5b1608c9bba98626560412c
 SHA512 
6ce5c58f32fa680d7f67e37a42b0f77c8253018cee21df2895d52166d9eb6ecaf0458b1610adbd46f337d00e75933db7578c2f9808654bd22838ba5db0a13030
 DIST pidgin-eds-3.6.patch.bz2 2352 BLAKE2B 
1d69dc55f43b9efe5d5278a017642702d67a297fe2587467ec0fdca7f9888e26640efe9ac2a18f77ae9c523bf125a2cec6d0bf621f0b2b16f55d30df1bf470df
 SHA512 
a0195679ab55ed9c7ea18ace6dbf0fc994698f1f4eea9d8335dfdcdcd6a68975c0191bd22f150bf5a9a0a691ce7e9e73d79598e1e8be541efa1d9824a633d877

diff --git a/net-im/pidgin/pidgin-2.14.0.ebuild 
b/net-im/pidgin/pidgin-2.14.1.ebuild
similarity index 99%
rename from net-im/pidgin/pidgin-2.14.0.ebuild
rename to net-im/pidgin/pidgin-2.14.1.ebuild
index 36ffb95f5d0..6c9c09eeaab 100644
--- a/net-im/pidgin/pidgin-2.14.0.ebuild
+++ b/net-im/pidgin/pidgin-2.14.1.ebuild
@@ -32,6 +32,7 @@ RDEPEND="
>=dev-libs/glib-2.16
>=dev-libs/libxml2-2.6.18
ncurses? (
+   >=dev-libs/libgnt-$(ver_cut 1-2)
sys-libs/ncurses:0=[unicode]
dbus? ( ${PYTHON_DEPS} )
python? ( ${PYTHON_DEPS} )



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

2020-06-11 Thread Lars Wendler
commit: caf07e799877ea3e933b35b7402bc916c246132d
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Jun 11 18:58:18 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Jun 11 19:21:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caf07e79

dev-libs/libgnt: Initial commit

Use same KEYWORDS like in pidgin as this is an outsourced pidgin plugin

Bug: https://bugs.gentoo.org/727878
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Lars Wendler  gentoo.org>

 dev-libs/libgnt/Manifest   |  1 +
 .../libgnt/files/libgnt-2.14.0-optional_docs.patch | 15 +
 dev-libs/libgnt/files/libgnt-2.14.0-tinfo.patch| 18 +++
 dev-libs/libgnt/libgnt-2.14.0.ebuild   | 37 ++
 dev-libs/libgnt/metadata.xml   |  8 +
 5 files changed, 79 insertions(+)

diff --git a/dev-libs/libgnt/Manifest b/dev-libs/libgnt/Manifest
new file mode 100644
index 000..088bdd50ab9
--- /dev/null
+++ b/dev-libs/libgnt/Manifest
@@ -0,0 +1 @@
+DIST libgnt-2.14.0.tar.xz 102444 BLAKE2B 
303dc33e60571ba4b5b9cc8ce477807b9b2ed6b4d1ed14e40c43e146a6d3d156741597befdf3e6c0c6816e9d43955f57f9e1b61e3f1f2d2fc451bf53f7236022
 SHA512 
0d9c5550374696a0e6ede5246cda3c372d7055d21b9ffaf10be88d6a469bdf18c7dd1113ec612acf4889c0e5686ea87bb0e8348ca8985fd5ff8913afc5813b38

diff --git a/dev-libs/libgnt/files/libgnt-2.14.0-optional_docs.patch 
b/dev-libs/libgnt/files/libgnt-2.14.0-optional_docs.patch
new file mode 100644
index 000..aded0c04767
--- /dev/null
+++ b/dev-libs/libgnt/files/libgnt-2.14.0-optional_docs.patch
@@ -0,0 +1,15 @@
+--- libgnt-2.14.0/meson.build
 libgnt-2.14.0/meson.build
+@@ -231,4 +231,6 @@
+ 
+ subdir('wms')
+ subdir('test')
+-subdir('doc')
++if get_option('doc')
++subdir('doc')
++endif
+--- libgnt-2.14.0/meson_options.txt
 libgnt-2.14.0/meson_options.txt
+@@ -0,0 +1,2 @@
++option('doc', type : 'boolean', value : true,
++   description : 'build documentation with gtk-doc')

diff --git a/dev-libs/libgnt/files/libgnt-2.14.0-tinfo.patch 
b/dev-libs/libgnt/files/libgnt-2.14.0-tinfo.patch
new file mode 100644
index 000..1e4ab49020b
--- /dev/null
+++ b/dev-libs/libgnt/files/libgnt-2.14.0-tinfo.patch
@@ -0,0 +1,18 @@
+--- libgnt-2.14.0/meson.build
 libgnt-2.14.0/meson.build
+@@ -72,6 +72,7 @@
+ ncurses_available = true
+ ncurses_inc = []
+ ncurses_libs = [
++  compiler.find_library('tinfow', required : false),
+   compiler.find_library('ncursesw', required : false),
+   compiler.find_library('panelw', required : false)
+ ]
+@@ -113,6 +114,7 @@
+ else
+   # ncursesw was not found. Look for plain old ncurses
+   ncurses_libs = [
++  compiler.find_library('tinfo', required : false),
+   compiler.find_library('ncurses', required : false),
+   compiler.find_library('panel', required : false)
+   ]

diff --git a/dev-libs/libgnt/libgnt-2.14.0.ebuild 
b/dev-libs/libgnt/libgnt-2.14.0.ebuild
new file mode 100644
index 000..74cd1cd5670
--- /dev/null
+++ b/dev-libs/libgnt/libgnt-2.14.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="Pidgin's GLib Ncurses Toolkit"
+HOMEPAGE="https://bitbucket.org/pidgin/libgnt";
+SRC_URI="mirror://sourceforge/pidgin/${P}.tar.xz"
+LICENSE="GPL-2"
+SLOT="0"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~x86-macos"
+IUSE="doc"
+
+RDEPEND="
+   dev-libs/glib:2
+   dev-libs/libxml2
+   sys-libs/ncurses:0=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-2.14.0-optional_docs.patch"
+   "${FILESDIR}/${PN}-2.14.0-tinfo.patch"
+)
+
+src_configure() {
+   local emesonargs=(
+   $(meson_use doc)
+   )
+   meson_src_configure
+}

diff --git a/dev-libs/libgnt/metadata.xml b/dev-libs/libgnt/metadata.xml
new file mode 100644
index 000..c7be278b645
--- /dev/null
+++ b/dev-libs/libgnt/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+  
+polynomia...@gentoo.org
+Lars Wendler
+  
+



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

2020-06-11 Thread Jörg Bornkessel
commit: 13631318925feb6159f63ee66f98b632178b52a5
Author: Joerg Bornkessel  gentoo  org>
AuthorDate: Thu Jun 11 19:03:12 2020 +
Commit: Jörg Bornkessel  gentoo  org>
CommitDate: Thu Jun 11 19:03:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13631318

media-video/vdr2jpeg: cannot run 'strip' fixed

Closes: https://bugs.gentoo.org/727804
Package-Manager: Portage-2.3.90, Repoman-2.3.20
Signed-off-by: Joerg Bornkessel  gentoo.org>

 .../vdr2jpeg/{vdr2jpeg-0.2.0-r3.ebuild => vdr2jpeg-0.2.0-r4.ebuild}| 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/media-video/vdr2jpeg/vdr2jpeg-0.2.0-r3.ebuild 
b/media-video/vdr2jpeg/vdr2jpeg-0.2.0-r4.ebuild
similarity index 88%
rename from media-video/vdr2jpeg/vdr2jpeg-0.2.0-r3.ebuild
rename to media-video/vdr2jpeg/vdr2jpeg-0.2.0-r4.ebuild
index 26aa8e530f0..0e099a60c24 100644
--- a/media-video/vdr2jpeg/vdr2jpeg-0.2.0-r3.ebuild
+++ b/media-video/vdr2jpeg/vdr2jpeg-0.2.0-r4.ebuild
@@ -29,8 +29,9 @@ src_prepare() {
-e "s:usr/local:usr:" \
-e "s:-o vdr2jpeg:\$(LDFLAGS) -shared -o vdr2jpeg:" || die
 
-   # bug 727640, do not call strip directly
+   # bug 727640, 727804 do not call strip directly
export  STRIP="$(tc-getSTRIP)"
+   sed -i Makefile -e "s:-s vdr2jpeg:vdr2jpeg:" || die
 
default
 }



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

2020-06-11 Thread Sergei Trofimovich
commit: aade89cb390291b26042ba68b80878e0ba00c1b8
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jun 11 13:58:04 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 18:00:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aade89cb

net-vpn/vpnc: stable 0.5.3_p550-r1 for sparc, bug #727842

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

 net-vpn/vpnc/vpnc-0.5.3_p550-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/vpnc/vpnc-0.5.3_p550-r1.ebuild 
b/net-vpn/vpnc/vpnc-0.5.3_p550-r1.ebuild
index 4276d407ffa..88974e18427 100644
--- a/net-vpn/vpnc/vpnc-0.5.3_p550-r1.ebuild
+++ b/net-vpn/vpnc/vpnc-0.5.3_p550-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/streambinder/vpnc/archive/fa0689c.tar.gz -> ${PF}.ta
 
 LICENSE="GPL-2 BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 sparc ~x86"
 IUSE="resolvconf +gnutls selinux"
 RESTRICT="!gnutls? ( bindist )"
 



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

2020-06-11 Thread Sergei Trofimovich
commit: b593de5fb47b572425d8ada08b4b966115ea61fc
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jun 11 13:59:53 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 18:00:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b593de5f

www-servers/tornado: keyworded 6.0.4 for hppa, bug #713276

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

 www-servers/tornado/tornado-6.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/tornado/tornado-6.0.4.ebuild 
b/www-servers/tornado/tornado-6.0.4.ebuild
index 46dd999b289..26cc0c315e0 100644
--- a/www-servers/tornado/tornado-6.0.4.ebuild
+++ b/www-servers/tornado/tornado-6.0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



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

2020-06-11 Thread Sergei Trofimovich
commit: cb504d1cd4f4ec0475df9c8cb4936964c1a28f6b
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jun 11 13:58:59 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 18:00:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb504d1c

dev-python/httplib2: stable 0.18.1 for sparc, bug #724362

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

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

diff --git a/dev-python/httplib2/httplib2-0.18.1.ebuild 
b/dev-python/httplib2/httplib2-0.18.1.ebuild
index b0c37b6e2c7..a19c260e91a 100644
--- a/dev-python/httplib2/httplib2-0.18.1.ebuild
+++ b/dev-python/httplib2/httplib2-0.18.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 sparc ~x86 
~amd64-linux ~x86-linux ~x64-macos"
 
 RDEPEND="app-misc/ca-certificates"
 BDEPEND="



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

2020-06-11 Thread Sergei Trofimovich
commit: 5718d6bf5b6e574a6534ac2074343aecf07dda9e
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jun 11 13:56:34 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 18:00:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5718d6bf

mail-client/roundcube: stable 1.4.4 for sparc, bug #727150

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

 mail-client/roundcube/roundcube-1.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/roundcube/roundcube-1.4.4.ebuild 
b/mail-client/roundcube/roundcube-1.4.4.ebuild
index 6d3b3ede4e4..d55f6f4eebd 100644
--- a/mail-client/roundcube/roundcube-1.4.4.ebuild
+++ b/mail-client/roundcube/roundcube-1.4.4.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/${PN}/${MY_PN}/releases/download/${MY_PV}/${MY_P}-co
 # roundcube is GPL-licensed, the rest of the licenses here are
 # for bundled PEAR components, googiespell and utf8.class.php
 LICENSE="GPL-3 BSD PHP-2.02 PHP-3 MIT public-domain"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 sparc ~x86"
 
 IUSE="change-password enigma ldap mysql postgres sqlite ssl spell"
 REQUIRED_USE="|| ( mysql postgres sqlite )"



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

2020-06-11 Thread Sergei Trofimovich
commit: bd13681569bd56201865493f477662dee4188c37
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jun 11 13:54:48 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 18:00:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd136815

sys-apps/sed: stable 4.8 for hppa, bug #725356

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

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

diff --git a/sys-apps/sed/sed-4.8.ebuild b/sys-apps/sed/sed-4.8.ebuild
index b8090e716a4..3e443e0ee3a 100644
--- a/sys-apps/sed/sed-4.8.ebuild
+++ b/sys-apps/sed/sed-4.8.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/sed/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
s390 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86"
 IUSE="acl nls selinux static"
 
 RDEPEND="



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

2020-06-11 Thread Sergei Trofimovich
commit: ad14ebc867627df19eb885a1454bbf6df3d3ba1c
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jun 11 14:17:13 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 18:00:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad14ebc8

sys-apps/texinfo: stable 6.7 for hppa, bug #725366

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

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

diff --git a/sys-apps/texinfo/texinfo-6.7.ebuild 
b/sys-apps/texinfo/texinfo-6.7.ebuild
index dab1cfed273..00fac87fa39 100644
--- a/sys-apps/texinfo/texinfo-6.7.ebuild
+++ b/sys-apps/texinfo/texinfo-6.7.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
s390 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
s390 sparc x86"
 IUSE="nls +standalone static"
 
 RDEPEND="



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

2020-06-11 Thread Sergei Trofimovich
commit: f999be7e4d3b7937576930056e12563c577ac1fc
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jun 11 14:34:24 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jun 11 18:00:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f999be7e

dev-python/werkzeug: move ~hppa forward

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

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

diff --git a/dev-python/werkzeug/werkzeug-0.16.1.ebuild 
b/dev-python/werkzeug/werkzeug-0.16.1.ebuild
index 38f1046956d..551fc0b5391 100644
--- a/dev-python/werkzeug/werkzeug-0.16.1.ebuild
+++ b/dev-python/werkzeug/werkzeug-0.16.1.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/pallets/werkzeug/archive/${PV}.tar.gz -> ${P}.gh.tar
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 
 RDEPEND="dev-python/simplejson[${PYTHON_USEDEP}]"
 DEPEND="



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

2020-06-11 Thread Ronny Gutbrod
commit: f0aae818cd95d7d3d688a437b93f0bc6e69f3a2e
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Thu Jun 11 17:14:13 2020 +
Commit: Ronny Gutbrod  tastytea  de>
CommitDate: Thu Jun 11 17:14:13 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f0aae818

dev-libs/olm: Version bump 3.1.5.

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

 dev-libs/olm/Manifest |  1 +
 dev-libs/olm/olm-3.1.5.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/dev-libs/olm/Manifest b/dev-libs/olm/Manifest
index 31dcef7..bff4e73 100644
--- a/dev-libs/olm/Manifest
+++ b/dev-libs/olm/Manifest
@@ -1 +1,2 @@
 DIST olm-3.1.4.tar.bz2 461540 BLAKE2B 
fa69b1543330c5da37c04227b51197ba57968ef24def40df621b85c0988eac91f8a155f600ab26849f2cd213059c97c7035be6dcca0943245cd4e4895da314b3
 SHA512 
87265d835ca7332d162bd3573dffdd09c8337c464dd673f100db9193e8ea4cedd8cb2a92cf2c34ad1b552a55bbbce8f87a47559ccfba03fa69b32fc7ff07f5f0
+DIST olm-3.1.5.tar.bz2 461855 BLAKE2B 
20412686ea1621de0d45885ae6f44331389cb401410809901187431eb101113f4186dc5b31c055da15143bec70f2251ee506e4fb50b0a8e495bdfa6cdb302b9e
 SHA512 
a41be45e3fadb4e24654a4db8a68dab7fb8b021aeaf48b524d9c2c1e9d48e0b2200b9f1ac8431e79bc620560b16c66fb4c2d3727901b47b78288ea22b3f6ba02

diff --git a/dev-libs/olm/olm-3.1.5.ebuild b/dev-libs/olm/olm-3.1.5.ebuild
new file mode 100644
index 000..5030239
--- /dev/null
+++ b/dev-libs/olm/olm-3.1.5.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Implementation of the olm and megolm cryptographic ratchets"
+HOMEPAGE="https://gitlab.matrix.org/matrix-org/olm";
+SRC_URI="https://gitlab.matrix.org/matrix-org/${PN}/-/archive/${PV}/${P}.tar.bz2";
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="doc test"
+KEYWORDS="~amd64"
+
+RDEPEND=""
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local -a mycmakeargs=(
+   -DOLM_TESTS="$(usex test)"
+   )
+
+   cmake_src_configure
+}
+
+src_test() {
+   BUILD_DIR="${BUILD_DIR}/tests" cmake_src_test
+}
+
+src_install() {
+   use doc && DOCS=( README.md docs/{{,meg}olm,signing}.md )
+
+   cmake_src_install
+}



[gentoo-commits] repo/proj/guru:master commit in: x11-themes/candy-icon-theme/

2020-06-11 Thread Andrew Ammerlaan
commit: 829945927664b76f6259f6903fe3e226bf4b3085
Author: Aisha Tammy  aisha  cc>
AuthorDate: Thu Jun 11 00:54:37 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Thu Jun 11 00:54:58 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=82994592

x11-themes/candy-icon-theme: sweet gradient icons

really modern looking icon theme resembling
android linebit icons

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

 x11-themes/candy-icon-theme/Manifest   |  1 +
 .../candy-icon-theme-0_pre20200606.ebuild  | 29 ++
 .../candy-icon-theme/candy-icon-theme-.ebuild  | 29 ++
 x11-themes/candy-icon-theme/metadata.xml   |  8 ++
 4 files changed, 67 insertions(+)

diff --git a/x11-themes/candy-icon-theme/Manifest 
b/x11-themes/candy-icon-theme/Manifest
new file mode 100644
index 000..8a624a4
--- /dev/null
+++ b/x11-themes/candy-icon-theme/Manifest
@@ -0,0 +1 @@
+DIST candy-icon-theme-0_pre20200606.tar.gz 1018867 BLAKE2B 
35aed3d59f501dc16837eb1271e1d60e4db7f4a3e8d5714192c3c138c21f26b71b48486fa699fd3329df5c9a9ca2f5ecc9d744de3102b5e3b9eb0e0e6b9c
 SHA512 
5729547bda9859e4b3b29587c86e3f11af2113e55790070f7d2f3a9ebd53f20c4136e1e1801af97406e65a3a4ea5558d6821657a6d4b42b9838469cbe435b3d6

diff --git a/x11-themes/candy-icon-theme/candy-icon-theme-0_pre20200606.ebuild 
b/x11-themes/candy-icon-theme/candy-icon-theme-0_pre20200606.ebuild
new file mode 100644
index 000..5137a11
--- /dev/null
+++ b/x11-themes/candy-icon-theme/candy-icon-theme-0_pre20200606.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+MY_PN="candy-icons"
+
+DESCRIPTION="sweet gradient icons"
+
+HOMEPAGE="https://github.com/EliverLara/candy-icons";
+
+if [[ "${PV}" == "" ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/EliverLara/candy-icons.git";
+else
+   COMMIT="1b69d37f6ffecf04d4029ee6fa1d72c2f5875a92"
+   
SRC_URI="https://github.com/EliverLara/candy-icons/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   S="${WORKDIR}/${MY_PN}-${COMMIT}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+src_install() {
+   dodir /usr/share/icons/candy-icons
+   insinto /usr/share/icons/candy-icons
+   doins -r index.theme preview places apps
+}

diff --git a/x11-themes/candy-icon-theme/candy-icon-theme-.ebuild 
b/x11-themes/candy-icon-theme/candy-icon-theme-.ebuild
new file mode 100644
index 000..5137a11
--- /dev/null
+++ b/x11-themes/candy-icon-theme/candy-icon-theme-.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+MY_PN="candy-icons"
+
+DESCRIPTION="sweet gradient icons"
+
+HOMEPAGE="https://github.com/EliverLara/candy-icons";
+
+if [[ "${PV}" == "" ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/EliverLara/candy-icons.git";
+else
+   COMMIT="1b69d37f6ffecf04d4029ee6fa1d72c2f5875a92"
+   
SRC_URI="https://github.com/EliverLara/candy-icons/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   S="${WORKDIR}/${MY_PN}-${COMMIT}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+src_install() {
+   dodir /usr/share/icons/candy-icons
+   insinto /usr/share/icons/candy-icons
+   doins -r index.theme preview places apps
+}

diff --git a/x11-themes/candy-icon-theme/metadata.xml 
b/x11-themes/candy-icon-theme/metadata.xml
new file mode 100644
index 000..a3865a3
--- /dev/null
+++ b/x11-themes/candy-icon-theme/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+
+gen...@aisha.cc
+Aisha Tammy
+
+



[gentoo-commits] repo/proj/guru:master commit in: dev-libs/libcloudproviders/

2020-06-11 Thread Andrew Ammerlaan
commit: a992fda24bfd47a76a019ab7c2afcfbfead579ce
Author: David Heidelberg  ixit  cz>
AuthorDate: Wed Jun 10 12:53:50 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Wed Jun 10 12:53:50 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a992fda2

dev-libs/libcloudproviders: fix USE vala dep on introspection

Closes: https://github.com/pimvullers/elementary/issues/197
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: David Heidelberg  ixit.cz>

 dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild 
b/dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild
index 6d351c5..667bc61 100644
--- a/dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild
+++ b/dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild
@@ -15,6 +15,7 @@ LICENSE="LGPL-3+"
 SLOT="0"
 KEYWORDS="~amd64"
 IUSE="doc introspection vala"
+REQUIRED_USE="vala? ( introspection )"
 
 RDEPEND="
>=dev-libs/glib-2.58.0:2



[gentoo-commits] repo/proj/guru:master commit in: x11-themes/sweet-folders-icon-theme/

2020-06-11 Thread Andrew Ammerlaan
commit: a525fda283499c20a6c6715e46245dc497bc7dec
Author: Aisha Tammy  aisha  cc>
AuthorDate: Thu Jun 11 01:28:31 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Thu Jun 11 01:28:31 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a525fda2

x11-themes/sweet-folders-icon-theme: sweet gradient folder icons

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

 x11-themes/sweet-folders-icon-theme/Manifest   |  1 +
 x11-themes/sweet-folders-icon-theme/metadata.xml   |  8 +++
 .../sweet-folders-icon-theme-0_pre20200227.ebuild  | 28 ++
 .../sweet-folders-icon-theme-.ebuild   | 28 ++
 4 files changed, 65 insertions(+)

diff --git a/x11-themes/sweet-folders-icon-theme/Manifest 
b/x11-themes/sweet-folders-icon-theme/Manifest
new file mode 100644
index 000..43d978a
--- /dev/null
+++ b/x11-themes/sweet-folders-icon-theme/Manifest
@@ -0,0 +1 @@
+DIST sweet-folders-icon-theme-0_pre20200227.tar.gz 1475423 BLAKE2B 
e64b5b018a8e56f0ee107b36b203299addf4816a5525560056dae322c634cccb52c314ac2b86b3678a26c27bd65ceb2d5c9afc98b119bc2f68f2cfd33a77ea8c
 SHA512 
4c4a06c5ddbe50a2030ba4b5cf57429ec7525a3e7db0c5ae9b10fbdc99f21cbd04c045a37d49c77e0a8fe55aa2c76a45340a99e9a227c1a89879cb4f46f36867

diff --git a/x11-themes/sweet-folders-icon-theme/metadata.xml 
b/x11-themes/sweet-folders-icon-theme/metadata.xml
new file mode 100644
index 000..a3865a3
--- /dev/null
+++ b/x11-themes/sweet-folders-icon-theme/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+
+gen...@aisha.cc
+Aisha Tammy
+
+

diff --git 
a/x11-themes/sweet-folders-icon-theme/sweet-folders-icon-theme-0_pre20200227.ebuild
 
b/x11-themes/sweet-folders-icon-theme/sweet-folders-icon-theme-0_pre20200227.ebuild
new file mode 100644
index 000..c416d3b
--- /dev/null
+++ 
b/x11-themes/sweet-folders-icon-theme/sweet-folders-icon-theme-0_pre20200227.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+MY_PN="Sweet-folders"
+
+DESCRIPTION="sweet gradient icons"
+
+HOMEPAGE="https://github.com/EliverLara/Sweet-folders";
+
+if [[ "${PV}" == "" ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/EliverLara/Sweet-folders.git";
+else
+   COMMIT="d50fbe3d93df4c494958c773b681ab36049935a1"
+   
SRC_URI="https://github.com/EliverLara/Sweet-folders/archive/${COMMIT}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   S="${WORKDIR}/${MY_PN}-${COMMIT}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+src_install() {
+   insinto /usr/share/icons/
+   doins -r Sweet-*
+}

diff --git 
a/x11-themes/sweet-folders-icon-theme/sweet-folders-icon-theme-.ebuild 
b/x11-themes/sweet-folders-icon-theme/sweet-folders-icon-theme-.ebuild
new file mode 100644
index 000..c416d3b
--- /dev/null
+++ b/x11-themes/sweet-folders-icon-theme/sweet-folders-icon-theme-.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+MY_PN="Sweet-folders"
+
+DESCRIPTION="sweet gradient icons"
+
+HOMEPAGE="https://github.com/EliverLara/Sweet-folders";
+
+if [[ "${PV}" == "" ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/EliverLara/Sweet-folders.git";
+else
+   COMMIT="d50fbe3d93df4c494958c773b681ab36049935a1"
+   
SRC_URI="https://github.com/EliverLara/Sweet-folders/archive/${COMMIT}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   S="${WORKDIR}/${MY_PN}-${COMMIT}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+src_install() {
+   insinto /usr/share/icons/
+   doins -r Sweet-*
+}



[gentoo-commits] repo/proj/guru:master commit in: x11-themes/sweet-gtk-theme/

2020-06-11 Thread Andrew Ammerlaan
commit: 46fcd6e5fc3b142928dd219215bfe524d5c6d5b6
Author: Aisha Tammy  aisha  cc>
AuthorDate: Thu Jun 11 01:43:35 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Thu Jun 11 01:43:35 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=46fcd6e5

x11-themes/sweet-gtk-theme: sweet gtk theme

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

 x11-themes/sweet-gtk-theme/Manifest|  1 +
 x11-themes/sweet-gtk-theme/metadata.xml|  8 ++
 .../sweet-gtk-theme-1.10.5_p20200603.ebuild| 30 ++
 .../sweet-gtk-theme/sweet-gtk-theme-.ebuild| 30 ++
 4 files changed, 69 insertions(+)

diff --git a/x11-themes/sweet-gtk-theme/Manifest 
b/x11-themes/sweet-gtk-theme/Manifest
new file mode 100644
index 000..98beb49
--- /dev/null
+++ b/x11-themes/sweet-gtk-theme/Manifest
@@ -0,0 +1 @@
+DIST sweet-gtk-theme-1.10.5_p20200603.tar.gz 914452 BLAKE2B 
5665e4d3a4adad962f6206058ead62c265523d10c97f15facf9d5b5f2c1470673bbcc34cd603d53221e3ee0ef64a1ba3bc830b560a914afafeec216ccbf04bab
 SHA512 
6c90fa0bc96bdee86e34a2541d649838a2647237bb986310ab5e96363b7e76410c5318a1d3b08f023c58444e3be0ff1aa0f3fcfc2696d236c7570e4428f094f5

diff --git a/x11-themes/sweet-gtk-theme/metadata.xml 
b/x11-themes/sweet-gtk-theme/metadata.xml
new file mode 100644
index 000..a3865a3
--- /dev/null
+++ b/x11-themes/sweet-gtk-theme/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+
+gen...@aisha.cc
+Aisha Tammy
+
+

diff --git a/x11-themes/sweet-gtk-theme/sweet-gtk-theme-1.10.5_p20200603.ebuild 
b/x11-themes/sweet-gtk-theme/sweet-gtk-theme-1.10.5_p20200603.ebuild
new file mode 100644
index 000..fd06303
--- /dev/null
+++ b/x11-themes/sweet-gtk-theme/sweet-gtk-theme-1.10.5_p20200603.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+MY_PN="Sweet"
+
+DESCRIPTION="light and dark colorful gtk theme"
+
+HOMEPAGE="https://github.com/EliverLara/Sweet";
+
+if [[ "${PV}" == "" ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/EliverLara/Sweet.git";
+else
+   COMMIT="9e3bfe44e5acf13b2bb9fcadb45aea75bc05"
+   SRC_URI="https://github.com/EliverLara/Sweet/archive/${COMMIT}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   S="${WORKDIR}/${MY_PN}-${COMMIT}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+src_install() {
+   dodir /usr/share/themes/sweet-gtk
+   insinto /usr/share/themes/sweet-gtk
+   doins -r Art assets gnome-shell gtk-{2.0,3.0} \
+ metacity-1 src xfwm4 index.theme
+}

diff --git a/x11-themes/sweet-gtk-theme/sweet-gtk-theme-.ebuild 
b/x11-themes/sweet-gtk-theme/sweet-gtk-theme-.ebuild
new file mode 100644
index 000..fd06303
--- /dev/null
+++ b/x11-themes/sweet-gtk-theme/sweet-gtk-theme-.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+MY_PN="Sweet"
+
+DESCRIPTION="light and dark colorful gtk theme"
+
+HOMEPAGE="https://github.com/EliverLara/Sweet";
+
+if [[ "${PV}" == "" ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/EliverLara/Sweet.git";
+else
+   COMMIT="9e3bfe44e5acf13b2bb9fcadb45aea75bc05"
+   SRC_URI="https://github.com/EliverLara/Sweet/archive/${COMMIT}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   S="${WORKDIR}/${MY_PN}-${COMMIT}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+src_install() {
+   dodir /usr/share/themes/sweet-gtk
+   insinto /usr/share/themes/sweet-gtk
+   doins -r Art assets gnome-shell gtk-{2.0,3.0} \
+ metacity-1 src xfwm4 index.theme
+}



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

2020-06-11 Thread Andrew Ammerlaan
commit: 38a200b4b6374137205fe65882cb8acbd2eab756
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Wed Jun 10 16:43:41 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Wed Jun 10 16:44:44 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=38a200b4

net-misc/kristall: New package.

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

 net-misc/kristall/Manifest|  1 +
 net-misc/kristall/kristall-0.2.ebuild | 34 ++
 net-misc/kristall/metadata.xml| 15 +++
 3 files changed, 50 insertions(+)

diff --git a/net-misc/kristall/Manifest b/net-misc/kristall/Manifest
new file mode 100644
index 000..f9715f9
--- /dev/null
+++ b/net-misc/kristall/Manifest
@@ -0,0 +1 @@
+DIST kristall-0.2.tar.gz 7483452 BLAKE2B 
ab2cd662ce91d36310fcd0b643c18a673e2da504166936826e3642eff14fe80bd1d42a6c284317216069b67fff2f452b7d5d299d47bf19cd074f553ecf98eb33
 SHA512 
2f0492772b19cc7340e7690c2a5be199826bebddf02777a2a38de1607277bdcd8c7f1069499cc42e7070f1c978731a153bc1e79e1c17f022a8d7b78eca5e8bdb

diff --git a/net-misc/kristall/kristall-0.2.ebuild 
b/net-misc/kristall/kristall-0.2.ebuild
new file mode 100644
index 000..a80dc6a
--- /dev/null
+++ b/net-misc/kristall/kristall-0.2.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop qmake-utils xdg
+
+DESCRIPTION="Visual cross-platform gemini browser"
+HOMEPAGE="https://github.com/MasterQ32/kristall";
+SRC_URI="https://github.com/MasterQ32/${PN}/archive/V${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="dev-qt/qtmultimedia[widgets]"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   default
+   sed -Ei 's|(target\.path) = .+|\1 = /usr/bin|' src/kristall.pro || die
+}
+
+src_configure() {
+   eqmake5 src/kristall.pro
+}
+
+src_install() {
+   emake install INSTALL_ROOT="${D}"
+   einstalldocs
+
+   doicon src/icons/kristall.svg
+   domenu Kristall.desktop
+}

diff --git a/net-misc/kristall/metadata.xml b/net-misc/kristall/metadata.xml
new file mode 100644
index 000..137aa60
--- /dev/null
+++ b/net-misc/kristall/metadata.xml
@@ -0,0 +1,15 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   gen...@tastytea.de
+   Ronny (tastytea) Gutbrod
+   
+   
+   Graphical small-internet client for windows, linux, MacOS X and
+   BSDs. Supports gemini, http, https, gopher, finger.
+   
+   
+   https://github.com/MasterQ32/kristall/issues
+   
+



[gentoo-commits] repo/proj/guru:master commit in: dev-libs/libcloudproviders/

2020-06-11 Thread Andrew Ammerlaan
commit: 7a428657b5625222c0fc40d9755ecfa2c9719145
Author: David Heidelberg  ixit  cz>
AuthorDate: Wed Jun 10 12:49:14 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Wed Jun 10 12:49:14 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7a428657

dev-libs/libcloudproviders: New package.

Required for GTK with cloud providers support.

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: David Heidelberg  ixit.cz>

 dev-libs/libcloudproviders/Manifest|  1 +
 .../libcloudproviders-0.3.1.ebuild | 42 ++
 dev-libs/libcloudproviders/metadata.xml| 12 +++
 3 files changed, 55 insertions(+)

diff --git a/dev-libs/libcloudproviders/Manifest 
b/dev-libs/libcloudproviders/Manifest
new file mode 100644
index 000..2990e5a
--- /dev/null
+++ b/dev-libs/libcloudproviders/Manifest
@@ -0,0 +1 @@
+DIST libcloudproviders-0.3.1.tar.gz 25426 BLAKE2B 
816308d0d18ab63e7ce8a90b4d9c6b041e47c45f83832b2ba120b4e24f7c56f1bbfdc18e923c421bef53de6147761e89a6b07cbaa117119494127f88ea67c943
 SHA512 
ea84659715aa66cbfe8d909430004d28aea88922fabc81742c867967ea2449045a4054c3b795934c17a18982054416e0e10815b3c306ea38753c2efed0318d90

diff --git a/dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild 
b/dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild
new file mode 100644
index 000..6d351c5
--- /dev/null
+++ b/dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+VALA_USE_DEPEND="vapigen"
+
+inherit meson vala
+
+DESCRIPTION="DBus API that allows cloud storage sync clients to expose their 
services."
+HOMEPAGE="https://gitlab.gnome.org/World/libcloudproviders";
+SRC_URI="https://gitlab.gnome.org/World/libcloudproviders/-/archive/${PV}/libcloudproviders-${PV}.tar.gz";
+
+LICENSE="LGPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc introspection vala"
+
+RDEPEND="
+   >=dev-libs/glib-2.58.0:2
+"
+DEPEND="${RDEPEND}
+   introspection? ( dev-libs/gobject-introspection:= )
+"
+BDEPEND="$(vala_depend)
+   doc? ( dev-util/gdbus-codegen )
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   vala_src_prepare
+   default
+}
+src_configure() {
+   local emesonargs=(
+   $(meson_use vala vapigen)
+   $(meson_use introspection)
+   $(meson_use doc enable-gtk-doc)
+   -Dinstalled-tests=false
+   )
+   meson_src_configure
+}

diff --git a/dev-libs/libcloudproviders/metadata.xml 
b/dev-libs/libcloudproviders/metadata.xml
new file mode 100644
index 000..3eb4de0
--- /dev/null
+++ b/dev-libs/libcloudproviders/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   libcloudproviders is a DBus API that allows cloud storage sync 
clients to expose their services. Clients such as file managers and desktop 
environments can then provide integrated access to the cloud providers services.
+
+   
+   
+   da...@ixit.cz
+   David Heidelberg
+   
+



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

2020-06-11 Thread Andrew Ammerlaan
commit: a1b3c48976b586e28652a89fd69e105c2fce9f85
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Thu Jun 11 16:42:55 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Thu Jun 11 16:42:55 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a1b3c489

dev-libs/libcloudproviders: add missing doc dep

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

 dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild 
b/dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild
index 667bc61..09e24d9 100644
--- a/dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild
+++ b/dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild
@@ -24,7 +24,10 @@ DEPEND="${RDEPEND}
introspection? ( dev-libs/gobject-introspection:= )
 "
 BDEPEND="$(vala_depend)
-   doc? ( dev-util/gdbus-codegen )
+   doc? (
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc
+   )
virtual/pkgconfig
 "
 



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

2020-06-11 Thread Alexis Ballier
commit: a540dbc34a22b83a1fbc6c77b0ee9bf1746fb390
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 11 14:34:23 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 11 15:30:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a540dbc3

media-video/ffmpeg: bump nv-codec-header dep

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Alexis Ballier  gentoo.org>

 media-video/ffmpeg/ffmpeg-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/ffmpeg/ffmpeg-.ebuild 
b/media-video/ffmpeg/ffmpeg-.ebuild
index d8aaadca77f..4ae1e09c81f 100644
--- a/media-video/ffmpeg/ffmpeg-.ebuild
+++ b/media-video/ffmpeg/ffmpeg-.ebuild
@@ -247,7 +247,7 @@ RDEPEND="
svg? ( gnome-base/librsvg:2=[${MULTILIB_USEDEP}] )
truetype? ( >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] )
vaapi? ( >=x11-libs/libva-1.2.1-r1:0=[${MULTILIB_USEDEP}] )
-   video_cards_nvidia? ( 
>=media-libs/nv-codec-headers-9.0.18.0[${MULTILIB_USEDEP}] )
+   video_cards_nvidia? ( 
>=media-libs/nv-codec-headers-9.1.23.1[${MULTILIB_USEDEP}] )
vdpau? ( >=x11-libs/libvdpau-0.7[${MULTILIB_USEDEP}] )
vidstab? ( >=media-libs/vidstab-1.1.0[${MULTILIB_USEDEP}] )
vorbis? (



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

2020-06-11 Thread Alexis Ballier
commit: ffb96f736986dbb012a50168f89b0798d626bfe0
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 11 15:30:29 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 11 15:30:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffb96f73

media-video/ffmpeg: vidstab requires gpl

Closes: https://bugs.gentoo.org/716552
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Alexis Ballier  gentoo.org>

 media-video/ffmpeg/ffmpeg-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-video/ffmpeg/ffmpeg-.ebuild 
b/media-video/ffmpeg/ffmpeg-.ebuild
index b7debc58f30..3c29683e04b 100644
--- a/media-video/ffmpeg/ffmpeg-.ebuild
+++ b/media-video/ffmpeg/ffmpeg-.ebuild
@@ -301,6 +301,7 @@ GPL_REQUIRED_USE="
frei0r? ( gpl )
cdio? ( gpl )
rubberband? ( gpl )
+   vidstab? ( gpl )
samba? ( gpl )
encode? (
x264? ( gpl )



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

2020-06-11 Thread Alexis Ballier
commit: f1fb8c0c9f4794cf077914a5ac6687f00bc2eeae
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 11 14:53:49 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 11 15:30:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1fb8c0c

media-video/ffmpeg: improve vpx usedesc

Closes: https://bugs.gentoo.org/720262
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Alexis Ballier  gentoo.org>

 media-video/ffmpeg/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/ffmpeg/metadata.xml b/media-video/ffmpeg/metadata.xml
index c206f58b9b9..f6e9c9f3cf8 100644
--- a/media-video/ffmpeg/metadata.xml
+++ b/media-video/ffmpeg/metadata.xml
@@ -54,7 +54,7 @@
Enable SSH/sftp support via 
net-libs/libssh.
Enables MP2 encoding via 
media-sound/twolame as an alternative to the internal encoder.
Enables video stabilization filter using vid.stab 
library (media-libs/vidstab).
-   Enables vp8 codec support using libvpx: Decoding vp8 
does not require this to be enabled but libvpx can also be used for decoding; 
encoding vp8 requires this useflag to be enabled though.
+   Enables VP8 and VP9 codec support using libvpx: 
Decoding does not require this to be enabled but libvpx can also be used for 
decoding; encoding requires this useflag to be enabled though.
Enables support for the vulkan API for GPU 
offload.
Enables HEVC encoding with 
media-libs/x265.
Enables net-libs/zeromq support with the 
zmq/azmq filters.



[gentoo-commits] repo/gentoo:master commit in: media-libs/nv-codec-headers/

2020-06-11 Thread Alexis Ballier
commit: 26e52932c03f18e5936070b7f04167b21f6839ce
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 11 14:32:14 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 11 15:30:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26e52932

media-libs/nv-codec-headers: bump to 9.1.23.1

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Alexis Ballier  gentoo.org>

 media-libs/nv-codec-headers/Manifest   |  1 +
 .../nv-codec-headers-9.1.23.1.ebuild   | 33 ++
 2 files changed, 34 insertions(+)

diff --git a/media-libs/nv-codec-headers/Manifest 
b/media-libs/nv-codec-headers/Manifest
index 6125bce449b..a2e9bb35357 100644
--- a/media-libs/nv-codec-headers/Manifest
+++ b/media-libs/nv-codec-headers/Manifest
@@ -1,2 +1,3 @@
 DIST nv-codec-headers-8.1.24.2.tar.gz 53627 BLAKE2B 
482c86824f81652b439fba1b765261de107d51a3bd780d3f0c58e1cdd53cd21ddad3fea59e8ab5d920fb34c73e43c10c007a5efe32024bfd3523ed8d4ad26f44
 SHA512 
daa45ae8bcc11eb6b8d671c2d720d5c3edce9e4ef68f913ed25a8c4d1a4b165e0576b03eff9ce2fe355156ab5a5d8d74573158ef190feec5cfb5ac0838e0caa7
 DIST nv-codec-headers-9.0.18.1.tar.gz 58850 BLAKE2B 
8e940ffb929f67c4e459cfd55113298527cf8430b94d20e9bb7148cf532dbed798138e63801f29d168d0b4b465c0eb6ef3c58596289063f461b7d5e8832ce7e8
 SHA512 
4306ee3c6e72e9e3172b28c5e6166ec3fb9dfdc32578aebda0588afc682f56286dd6f616284c9892907cd413f57770be3662572207a36d6ac65c75a03d381f6f
+DIST nv-codec-headers-9.1.23.1.tar.gz 59400 BLAKE2B 
a4f437b5abc8bac05bafde4f01a4fa42f7acf2fd4a1d8b7e58f6a5a5e54c95a6ef9d6b510829bed9ed63f804220de460adc6441bf3c0bd451774dacc6f11e43e
 SHA512 
0c1112cb1db98f60e6424e3592b65c31ea8a808de707d4d0a56efb71c9a483bb3af45a641bff1f8422ab44e6be4bffd548b6567305021a448bcd66202b29

diff --git a/media-libs/nv-codec-headers/nv-codec-headers-9.1.23.1.ebuild 
b/media-libs/nv-codec-headers/nv-codec-headers-9.1.23.1.ebuild
new file mode 100644
index 000..53d4bd8e6f3
--- /dev/null
+++ b/media-libs/nv-codec-headers/nv-codec-headers-9.1.23.1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit multilib-minimal
+
+DESCRIPTION="FFmpeg version of headers required to interface with Nvidias 
codec APIs"
+HOMEPAGE="https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git";
+SRC_URI="https://github.com/FFmpeg/nv-codec-headers/releases/download/n${PV}/${P}.tar.gz";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}
+   >=x11-drivers/nvidia-drivers-435.21[${MULTILIB_USEDEP}]
+"
+
+src_prepare() {
+   multilib_copy_sources
+   default
+}
+
+multilib_src_compile() {
+   emake PREFIX="${EPREFIX}/usr" LIBDIR="$(get_libdir)"
+}
+
+multilib_src_install() {
+   emake PREFIX="${EPREFIX}/usr" LIBDIR="$(get_libdir)" DESTDIR="${D}" 
install
+}



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

2020-06-11 Thread Alexis Ballier
commit: 147420c29c551d482ed150b467fb8ef8bdd33f0e
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 11 15:27:33 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 11 15:30:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=147420c2

media-video/ffmpeg: pass ranlib to configure too

Closes: https://bugs.gentoo.org/719054
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Alexis Ballier  gentoo.org>

 media-video/ffmpeg/ffmpeg-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-video/ffmpeg/ffmpeg-.ebuild 
b/media-video/ffmpeg/ffmpeg-.ebuild
index 4ae1e09c81f..b7debc58f30 100644
--- a/media-video/ffmpeg/ffmpeg-.ebuild
+++ b/media-video/ffmpeg/ffmpeg-.ebuild
@@ -469,6 +469,7 @@ multilib_src_configure() {
--cc="$(tc-getCC)" \
--cxx="$(tc-getCXX)" \
--ar="$(tc-getAR)" \
+   --ranlib="$(tc-getRANLIB)" \
--optflags="${CFLAGS}" \
$(use_enable static-libs static) \
"${myconf[@]}"



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

2020-06-11 Thread Alexis Ballier
commit: 103c129c62f9507c27e547d6489123520f982469
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 11 14:28:11 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 11 15:30:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=103c129c

media-video/ffmpeg: add vulkan useflag

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Alexis Ballier  gentoo.org>

 media-video/ffmpeg/ffmpeg-.ebuild | 3 ++-
 media-video/ffmpeg/metadata.xml   | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/media-video/ffmpeg/ffmpeg-.ebuild 
b/media-video/ffmpeg/ffmpeg-.ebuild
index dbbe222fdd4..d8aaadca77f 100644
--- a/media-video/ffmpeg/ffmpeg-.ebuild
+++ b/media-video/ffmpeg/ffmpeg-.ebuild
@@ -69,7 +69,7 @@ fi
 FFMPEG_FLAG_MAP=(
+bzip2:bzlib cpudetection:runtime-cpudetect debug gcrypt gnutls 
gmp
+gpl hardcoded-tables +iconv libressl:libtls libxml2 lzma 
+network opencl
-   openssl +postproc samba:libsmbclient sdl:ffplay sdl:sdl2 vaapi 
vdpau
+   openssl +postproc samba:libsmbclient sdl:ffplay sdl:sdl2 vaapi 
vdpau vulkan
X:xlib X:libxcb X:libxcb-shm X:libxcb-xfixes +zlib
# libavdevice options
cdio:libcdio iec61883:libiec61883 ieee1394:libdc1394 libcaca 
openal
@@ -255,6 +255,7 @@ RDEPEND="
>=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
)
vpx? ( >=media-libs/libvpx-1.4.0:=[${MULTILIB_USEDEP}] )
+   vulkan? ( >=media-libs/vulkan-loader-1.1.97:=[${MULTILIB_USEDEP}] )
X? (
>=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
>=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}]

diff --git a/media-video/ffmpeg/metadata.xml b/media-video/ffmpeg/metadata.xml
index 338a8f56297..c206f58b9b9 100644
--- a/media-video/ffmpeg/metadata.xml
+++ b/media-video/ffmpeg/metadata.xml
@@ -55,6 +55,7 @@
Enables MP2 encoding via 
media-sound/twolame as an alternative to the internal encoder.
Enables video stabilization filter using vid.stab 
library (media-libs/vidstab).
Enables vp8 codec support using libvpx: Decoding vp8 
does not require this to be enabled but libvpx can also be used for decoding; 
encoding vp8 requires this useflag to be enabled though.
+   Enables support for the vulkan API for GPU 
offload.
Enables HEVC encoding with 
media-libs/x265.
Enables net-libs/zeromq support with the 
zmq/azmq filters.
Enables media-libs/zimg based scale 
filter.



  1   2   3   >