[gentoo-commits] repo/gentoo:master commit in: app-backup/snapper/files/, app-backup/snapper/

2021-09-23 Thread Yixun Lan
commit: fddcab208fc4de66d108aeb687f1dba8b5fc4b10
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Sep 24 03:40:20 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Sep 24 05:43:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fddcab20

app-backup/snapper: version bump, 0.9.1

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 app-backup/snapper/Manifest|  1 +
 .../snapper/files/snapper-0.9.1-testsuite.patch| 84 
 app-backup/snapper/snapper-0.9.1.ebuild| 89 ++
 3 files changed, 174 insertions(+)

diff --git a/app-backup/snapper/Manifest b/app-backup/snapper/Manifest
index bf2b882ed4e..2bdc33b55a9 100644
--- a/app-backup/snapper/Manifest
+++ b/app-backup/snapper/Manifest
@@ -1,3 +1,4 @@
 DIST snapper-0.8.15.tar.gz 393310 BLAKE2B 
a977ed8cdcbd73b4e49713dc48407c9bdab88e3084f6d9030c555da860b7277961e8e742103bbe04a05a1efa9bbe916a08fc04da3c2bcb59df8d5e53c038c373
 SHA512 
cdcc811c4299373e22043780a2cc06e7d5bca44fbf62f92ecb76162e791849b6002b35fe804b8b89524fd5e3ed26ed4120f09b62b202e41fedb7339ab9fe267c
 DIST snapper-0.8.16.tar.gz 397215 BLAKE2B 
b59563746b89916f2906de61d7b7e1bd50be18095fa1ce18bb60e2e7103c5bc11dd1590d776eea2567a2ec39c5c01745afa83a0bc2e2f57142bab1aa68be7638
 SHA512 
91fb648a32de7c2e9cd549aab2545c75e3bad6a4d52446cb93089469ae6d76ad536f5dcce21b77f633907e9394b44928e99a9003ae6be5508d3fcff0c3fd4aae
 DIST snapper-0.9.0.tar.gz 399600 BLAKE2B 
546fcdd8beb4b5404bb718577d53aa284f04a5a5cf1453849158f963604fe34fed0f3f99325449f9805779e845fc6a105008890ed2d2c63d3e0dde33d1d77350
 SHA512 
0861621764b65365ea7e7cf48baa0c7a64351fed7fca439c91ebf8023dbad6d05c709a5c49b3755d1edbd1b98617b8c202239a63608c11aee808ac21d6a2b412
+DIST snapper-0.9.1.tar.gz 400387 BLAKE2B 
fe9d25f573dc99e0eb6c876fa2ebb34140ea8177c72a65af65bd4b6621b81bcab71ee03948696d311444cad4c69d21db70161f67ef3917aea93e39ad54b10444
 SHA512 
447a024570bbb834adfc789aa5b12b037838fcf50f8d26f87a9a10b250541a589be3b24b01f990625021b8ff5b2eade0f2eda5e992f76113c62bd5e8a27c1293

diff --git a/app-backup/snapper/files/snapper-0.9.1-testsuite.patch 
b/app-backup/snapper/files/snapper-0.9.1-testsuite.patch
new file mode 100644
index 000..0bd3fd3189f
--- /dev/null
+++ b/app-backup/snapper/files/snapper-0.9.1-testsuite.patch
@@ -0,0 +1,84 @@
+diff --git a/configure.ac b/configure.ac
+index 3f5c911..a8c9c95 100644
+--- a/configure.ac
 b/configure.ac
+@@ -84,6 +84,13 @@ CPPFLAGS="${CPPFLAGS} -DCONF_DIR='\"${SYSCONFIG}\"'"
+ 
+ PAM_SECURITY=${libdir}/security
+ 
++AC_ARG_ENABLE([tests], AC_HELP_STRING([--disable-tests],[Disable internal 
tests support]),
++  [with_tests=$enableval],[with_tests=yes])
++AM_CONDITIONAL(ENABLE_TESTS, [test "x$with_tests" = "xyes"])
++if test "x$with_tests" = "xyes"; then
++  AC_DEFINE(ENABLE_TESTS, 1, [Enable internal tests support])
++fi
++
+ AC_ARG_WITH([pam-security], AC_HELP_STRING([--pam-security], [Use a custom 
pam security directory (default is $libdir/security)]),
+   [with_pam_security=$withval], [with_pam_security=no])
+ AS_IF([test "x$with_pam_security" != xno], 
[PAM_SECURITY="${with_pam_security}"])
+diff --git a/testsuite-cmp/Makefile.am b/testsuite-cmp/Makefile.am
+index 81104bf..9c29477 100644
+--- a/testsuite-cmp/Makefile.am
 b/testsuite-cmp/Makefile.am
+@@ -2,6 +2,7 @@
+ # Makefile.am for snapper/testsuite-cmp
+ #
+ 
++if ENABLE_TESTS
+ AM_CPPFLAGS = -I$(top_srcdir)
+ AM_LDFLAGS = -lboost_system
+ 
+@@ -15,3 +16,4 @@ cmp_SOURCES = cmp.cc
+ 
+ EXTRA_DIST = $(noinst_SCRIPTS)
+ 
++endif
+diff --git a/testsuite-real/Makefile.am b/testsuite-real/Makefile.am
+index 717313a..527843d 100644
+--- a/testsuite-real/Makefile.am
 b/testsuite-real/Makefile.am
+@@ -2,6 +2,7 @@
+ # Makefile.am for snapper/testsuite-real
+ #
+ 
++if ENABLE_TESTS
+ CXXFLAGS += -std=gnu++0x
+ 
+ AM_CPPFLAGS = -I$(top_srcdir)
+@@ -53,3 +54,4 @@ ug_tests_SOURCES = ug-tests.cc
+ 
+ EXTRA_DIST = $(test_DATA) $(test_SCRIPTS)
+ 
++endif
+diff --git a/testsuite/Makefile.am b/testsuite/Makefile.am
+index ccb84d3..409e265 100644
+--- a/testsuite/Makefile.am
 b/testsuite/Makefile.am
+@@ -2,6 +2,7 @@
+ # Makefile.am for snapper/testsuite
+ #
+ 
++if ENABLE_TESTS
+ AM_CPPFLAGS = -I$(top_srcdir) $(DBUS_CFLAGS)
+ 
+ LDADD = ../snapper/libsnapper.la ../dbus/libdbus.la 
-lboost_unit_test_framework
+@@ -48,3 +49,4 @@ lvm_utils_test_LDADD = -lboost_unit_test_framework 
../snapper/libsnapper.la
+ range_test_LDADD = -lboost_unit_test_framework ../client/utils/libutils.la
+ 
+ limit_test_LDADD = -lboost_unit_test_framework ../client/utils/libutils.la
++endif
+diff --git a/zypp-plugin/testsuite/Makefile.am 
b/zypp-plugin/testsuite/Makefile.am
+index 7b52e13..71cb545 100644
+--- a/zypp-plugin/testsuite/Makefile.am
 b/zypp-plugin/testsuite/Makefile.am
+@@ -1,3 +1,5 @@
++
++if ENABLE_TESTS
+ if HAVE_ZYPP
+ TEST_LOG_DRIVER = $(SHELL) tap-driver.sh
+ 
+@@ -12,3 +14,4 @@ TESTS = 

[gentoo-commits] repo/gentoo:master commit in: app-portage/recover-broken-vdb/

2021-09-23 Thread Sam James
commit: 98d6d4e1828b1673e11b5ae130cc9a5df93fac72
Author: Sam James  gentoo  org>
AuthorDate: Fri Sep 24 05:38:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Sep 24 05:39:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98d6d4e1

app-portage/recover-broken-vdb: add 0.0.4

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

 app-portage/recover-broken-vdb/Manifest|  1 +
 .../recover-broken-vdb-0.0.4.ebuild| 29 ++
 2 files changed, 30 insertions(+)

diff --git a/app-portage/recover-broken-vdb/Manifest 
b/app-portage/recover-broken-vdb/Manifest
index bbbf998ba70..ab687b6ab79 100644
--- a/app-portage/recover-broken-vdb/Manifest
+++ b/app-portage/recover-broken-vdb/Manifest
@@ -1,2 +1,3 @@
 DIST recover-broken-vdb-0.0.2.tar.gz 12038 BLAKE2B 
ad1c780e6a9499d734839c099c123c525704b00f421d1470801aa791bc691b43b2119c4138bee85f579f3524cf4f8f4544651dab222b86116fb9f1a80c4f319d
 SHA512 
c9c404fbbf8ffa8993a9596a62bb35b88e0f814b5e82c0771c514dcb662a438a1282f23268e4cffd22863246f3a63f3d116630378c0ab10a19966ec0d7b6e8a6
 DIST recover-broken-vdb-0.0.3.tar.gz 12492 BLAKE2B 
aa3fb529cac6d61ed7f41364c784c3879fe1993ace84ad48e648db4bb970c348a55714091a0c467c75234f8e0eecf448fbd20e198c0998240e5f89d0a285dca1
 SHA512 
e102406b1921527e2564f28d3fcc28e7507f7148b849f35ba0157fc299135ecfc304a3c60ed06900daea95382645414268eb008dcc405112fdf8d74fc1a64d41
+DIST recover-broken-vdb-0.0.4.tar.gz 12693 BLAKE2B 
f9690aa16dbe1121dc7ffcfe2caac51530fb0d55bb1da9069bff53c5c43ba350a9fc14f957999e9136d52fbc241ff3017fa564da7bdbf54fa47f998fa6358665
 SHA512 
b6e7c1fa7c1870719ce93ff679a470c0e880de84a236fe077cb54cae8cb4e921a1c649f1a676e9f10256ff13d8a373f03d18a8ef84c0979d9a02fceed769a07a

diff --git a/app-portage/recover-broken-vdb/recover-broken-vdb-0.0.4.ebuild 
b/app-portage/recover-broken-vdb/recover-broken-vdb-0.0.4.ebuild
new file mode 100644
index 000..b70e84d1270
--- /dev/null
+++ b/app-portage/recover-broken-vdb/recover-broken-vdb-0.0.4.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_SINGLE_IMPL=1
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Check Portage's VDB for internal inconsistency on ELF metadata"
+HOMEPAGE="https://github.com/thesamesam/recover-broken-vdb;
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/thesamesam/recover-broken-vdb.git;
+else
+   
SRC_URI="https://github.com/thesamesam/recover-broken-vdb/archive/refs/tags/${PV}.tar.gz
 -> ${P}.tar.gz"
+   #KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+# Require latest version of pax-utils to avoid users breaking their systems 
again
+# The tool itself works fine with older versions
+RDEPEND=">=app-misc/pax-utils-1.3.3
+   sys-apps/file
+   $(python_gen_cond_dep 'sys-apps/portage[${PYTHON_USEDEP}]')"



[gentoo-commits] repo/gentoo:master commit in: net-dns/pdns-recursor/

2021-09-23 Thread Sven Wegener
commit: 65b3da01b17cc8e846126e6677023475c6709c3a
Author: Sven Wegener  gentoo  org>
AuthorDate: Sun Sep 19 20:23:40 2021 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Fri Sep 24 05:37:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65b3da01

net-dns/pdns-recursor: Stabilize 4.5.5 on amd64

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Sven Wegener  gentoo.org>

 net-dns/pdns-recursor/pdns-recursor-4.5.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/pdns-recursor/pdns-recursor-4.5.5.ebuild 
b/net-dns/pdns-recursor/pdns-recursor-4.5.5.ebuild
index 391869be2ae..cf3bf318576 100644
--- a/net-dns/pdns-recursor/pdns-recursor-4.5.5.ebuild
+++ b/net-dns/pdns-recursor/pdns-recursor-4.5.5.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://downloads.powerdns.com/releases/${P/_/-}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="debug dnstap snmp sodium systemd test"
 REQUIRED_USE="${LUA_REQUIRED_USE}"
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: net-dns/pdns-recursor/

2021-09-23 Thread Sven Wegener
commit: ddd7e5ceceb7e21a6e066bcc699126d7fa799acb
Author: Sven Wegener  gentoo  org>
AuthorDate: Sun Sep 19 20:23:02 2021 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Fri Sep 24 05:37:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddd7e5ce

net-dns/pdns-recursor: Stabilize 4.4.5 on amd64/x86

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Sven Wegener  gentoo.org>

 net-dns/pdns-recursor/pdns-recursor-4.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/pdns-recursor/pdns-recursor-4.4.5.ebuild 
b/net-dns/pdns-recursor/pdns-recursor-4.4.5.ebuild
index dc546d8cd6c..6233a790ac7 100644
--- a/net-dns/pdns-recursor/pdns-recursor-4.4.5.ebuild
+++ b/net-dns/pdns-recursor/pdns-recursor-4.4.5.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://downloads.powerdns.com/releases/${P/_/-}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="debug dnstap protobuf snmp sodium systemd test"
 REQUIRED_USE="${LUA_REQUIRED_USE}
dnstap? ( protobuf )"



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

2021-09-23 Thread Sven Wegener
commit: bebe62acddb332f49fe02346ed1bf95e4ac3178a
Author: Sven Wegener  gentoo  org>
AuthorDate: Sun Sep 19 20:21:44 2021 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Fri Sep 24 05:37:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bebe62ac

net-dns/pdns: Stabilize 4.5.1 on amd64

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Sven Wegener  gentoo.org>

 net-dns/pdns/pdns-4.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/pdns/pdns-4.5.1.ebuild b/net-dns/pdns/pdns-4.5.1.ebuild
index c45db0959c3..263adb88811 100644
--- a/net-dns/pdns/pdns-4.5.1.ebuild
+++ b/net-dns/pdns/pdns-4.5.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://downloads.powerdns.com/releases/${P/_/-}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 # other possible flags:
 # db2: we lack the dep



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

2021-09-23 Thread Arthur Zamarin
commit: 0199e5d1dfeb54543c72da28b8a8b544ac9708a5
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Sep 24 05:08:41 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Sep 24 05:08:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0199e5d1

dev-python/openpyxl: add 3.0.9

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/openpyxl/Manifest b/dev-python/openpyxl/Manifest
index 2cb6f36ca3b..b6958dab39d 100644
--- a/dev-python/openpyxl/Manifest
+++ b/dev-python/openpyxl/Manifest
@@ -1,2 +1,3 @@
 DIST openpyxl-3.0.7.tar.bz2 2426608 BLAKE2B 
5ce0a34ea4ec8f33da2224555f3d681c4cfa2145f4cba10ed182044e6a6d69ce61c500c51a26db7ded2a3a0e778d0d8e2bd996c3852732f565501f233b145db7
 SHA512 
bd697c353d0a9fe66a7947dc0f51530b8419e39b36833e5322cca544fafcbd6aba36e42e53c1a1672f44b3940de9b91417bc58955c87257b7b82782c480ef738
 DIST openpyxl-3.0.8.tar.bz2 2514689 BLAKE2B 
a640104c4afcafa5dad8615986a0d3acdac563c60c0ae4b6301978f2257dfbf64eb9413cfdea690600d6c267cc104e3667f51e1ebb23a2c8e74908c1aaeb62ed
 SHA512 
921ee6e37a7242bf807cda3a86ba224edc80c64623b6cf0d3f344217485b53bcddbdd2a81a35bd8e80fe0dc9637d6c08988c191fb4a905287a8af340b97fadf3
+DIST openpyxl-3.0.9.tar.bz2 2428070 BLAKE2B 
b62133ee8e732142428b4f9eaf158e6f33daf314ed1ad620d921ad10265d1db93e2fcef807a61b3277e96f245392fd19b48da715eb0c560c882683fb1407f7a1
 SHA512 
33c313c842a43003a6e056b58869652377bef74bcaf267c50cc49f6abb7caa8a1b4e8f3b400a054f7d1776e03763ebebc984d331520bd63411ec4acfa8a03787

diff --git a/dev-python/openpyxl/openpyxl-3.0.9.ebuild 
b/dev-python/openpyxl/openpyxl-3.0.9.ebuild
new file mode 100644
index 000..23c8e219fb6
--- /dev/null
+++ b/dev-python/openpyxl/openpyxl-3.0.9.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Pure python reader and writer of Excel OpenXML files"
+HOMEPAGE="https://openpyxl.readthedocs.io/en/stable/;
+# Upstream doesn't want to include tests in PyPI tarballs
+SRC_URI="https://foss.heptapod.net/openpyxl/openpyxl/-/archive/${PV}/${P}.tar.bz2;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~x86"
+
+RDEPEND="
+   dev-python/et_xmlfile[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP},tiff,jpeg]
+   )"
+
+distutils_enable_sphinx doc
+distutils_enable_tests pytest



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

2021-09-23 Thread Yixun Lan
commit: a7ea1bcb61b4b22a94d1f25daf635c0965b30ea5
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Sep 24 02:45:06 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Sep 24 02:56:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7ea1bcb

net-misc/ofono: version bump, 1.33

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 net-misc/ofono/Manifest  |  1 +
 net-misc/ofono/ofono-1.33.ebuild | 66 
 2 files changed, 67 insertions(+)

diff --git a/net-misc/ofono/Manifest b/net-misc/ofono/Manifest
index c92a484776d..6c678670a5d 100644
--- a/net-misc/ofono/Manifest
+++ b/net-misc/ofono/Manifest
@@ -1 +1,2 @@
 DIST ofono-1.31.tar.xz 1049252 BLAKE2B 
f7b40d3aa7854369a7886a4b64bb66044e8f016682665935f7727bf219c084d266d8fd7f80c97e58234d845f7db3dc52133298697274745d115cf14c62769d82
 SHA512 
377cda34dcc92d1f339a4b3271de5a14afaf309061c4467e5af18089cd821e65c0d8ad29d07e96d0f0480bb51554b284afb6bc2b9da586cc30dc0c1440612b20
+DIST ofono-1.33.tar.xz 1060408 BLAKE2B 
646a96c0926ea032fef0357aabe6a4be6da88f4ccbdff59bb86b5de73a9b469362151b212a05234619f5d616b534343137c66e923782c7d50dfe13d2bf66558c
 SHA512 
8d88226aa2b43eca840c6330045ee7a96c91f6003b06fca5ea55b74fc229f0e0ba0c8d98f7945f8c23ec5a8e7057bffef6335c61842e245686e0ed7c5feda589

diff --git a/net-misc/ofono/ofono-1.33.ebuild b/net-misc/ofono/ofono-1.33.ebuild
new file mode 100644
index 000..7b3600dc6b8
--- /dev/null
+++ b/net-misc/ofono/ofono-1.33.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd
+
+DESCRIPTION="Open Source mobile telephony (GSM/UMTS) daemon"
+HOMEPAGE="https://01.org/ofono;
+SRC_URI="https://www.kernel.org/pub/linux/network/${PN}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+IUSE="+atmodem bluetooth +cdmamodem +datafiles doc dundee examples +isimodem 
+phonesim +provision +qmimodem tools +udev upower"
+
+REQUIRED_USE="dundee? ( bluetooth )"
+
+RDEPEND=">=sys-apps/dbus-1.6
+   >=dev-libs/glib-2.68
+   net-misc/mobile-broadband-provider-info
+   bluetooth? ( >=net-wireless/bluez-4.99 )
+   udev? ( virtual/udev )
+   examples? ( dev-python/dbus-python )
+   tools? ( virtual/libusb:1 )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+DOCS=( ChangeLog AUTHORS )
+
+src_configure() {
+   econf \
+   $(use_enable udev) \
+   $(use_enable isimodem) \
+   $(use_enable atmodem) \
+   $(use_enable cdmamodem) \
+   $(use_enable datafiles) \
+   $(use_enable dundee) \
+   $(use_enable bluetooth) \
+   $(use_enable phonesim) \
+   $(use_enable provision) \
+   $(use_enable qmimodem) \
+   $(use_enable tools) \
+   $(use_enable examples test) \
+   $(use_enable upower) \
+   --disable-maintainer-mode \
+   --disable-rilmodem
+   --localstatedir=/var \
+   --with-systemdunitdir="$(systemd_get_systemunitdir)"
+}
+
+src_install() {
+   default
+
+   if use tools ; then
+   dobin tools/auto-enable \
+   tools/huawei-audio \
+   tools/lookup-provider-name \
+   tools/lookup-apn \
+   tools/get-location \
+   tools/tty-redirector
+   fi
+
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   use doc && dodoc doc/*.txt
+}



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

2021-09-23 Thread Matt Turner
commit: 6035fefb46e93cd3471c779bbf3bdd431b060a99
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Sep 24 02:47:46 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Sep 24 02:54:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6035fefb

x11-libs/libxkbcommon: Version bump to 1.3.1

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

 x11-libs/libxkbcommon/Manifest  |  1 +
 x11-libs/libxkbcommon/libxkbcommon-1.3.1.ebuild | 61 +
 2 files changed, 62 insertions(+)

diff --git a/x11-libs/libxkbcommon/Manifest b/x11-libs/libxkbcommon/Manifest
index 4d717f518ba..c60f8ee9f9c 100644
--- a/x11-libs/libxkbcommon/Manifest
+++ b/x11-libs/libxkbcommon/Manifest
@@ -1 +1,2 @@
 DIST libxkbcommon-1.3.0.tar.xz 455256 BLAKE2B 
f53a47005dd411855d1d5c39a33ef58d22982b2d4c2014320722f7fe9a9b468366c6090fadd067e50a846f22de7b80164b684615a8bcb1b14a478609cc4deb74
 SHA512 
9585ab1df7f2d95b991a786ee1f1de0a645aa315edb93cb093f3409fc76ef7b8f8189a6a7bfd179dc01c5d105d9c9eea40a395762eeffe0618b0c3ee116c0d18
+DIST libxkbcommon-1.3.1.tar.xz 471036 BLAKE2B 
c46d39876bd4477fe838e17e744ed04388417cfae8bb77c7de48237d31f51fe230d2705733dc0873253b48c61530fbe932e4da7317217c31a7897702fa1d03b4
 SHA512 
3b2cf6ae9ba4dc8b6fe702ac1fa700034fbc9bd147c73bd2cd93546bcfb71865734b3e46bad35a8fd618ed97266a02dad1dc966c63e6b10404a64919459d933e

diff --git a/x11-libs/libxkbcommon/libxkbcommon-1.3.1.ebuild 
b/x11-libs/libxkbcommon/libxkbcommon-1.3.1.ebuild
new file mode 100644
index 000..afdec5dec58
--- /dev/null
+++ b/x11-libs/libxkbcommon/libxkbcommon-1.3.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ ${PV} = ** ]]; then
+   GIT_ECLASS="git-r3"
+   EGIT_REPO_URI="https://github.com/xkbcommon/${PN};
+else
+   SRC_URI="https://xkbcommon.org/download/${P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+fi
+
+PYTHON_COMPAT=( python3_{7..10} )
+
+inherit meson-multilib ${GIT_ECLASS} python-any-r1 virtualx
+
+DESCRIPTION="keymap handling library for toolkits and window systems"
+HOMEPAGE="https://xkbcommon.org/ https://github.com/xkbcommon/libxkbcommon/;
+LICENSE="MIT"
+IUSE="doc static-libs test wayland X"
+RESTRICT="!test? ( test )"
+SLOT="0"
+
+BDEPEND="
+   sys-devel/bison
+   doc? ( app-doc/doxygen )
+   test? ( ${PYTHON_DEPS} )
+   wayland? ( dev-util/wayland-scanner )
+"
+RDEPEND="
+   X? ( >=x11-libs/libxcb-1.10:=[${MULTILIB_USEDEP},xkb] )
+   wayland? ( >=dev-libs/wayland-1.2.0 )
+   dev-libs/libxml2[${MULTILIB_USEDEP}]
+   x11-misc/compose-tables
+"
+DEPEND="${RDEPEND}
+   X? ( x11-base/xorg-proto )
+   wayland? ( >=dev-libs/wayland-protocols-1.12 )
+"
+
+pkg_setup() {
+   if use test; then
+   python-any-r1_pkg_setup
+   fi
+}
+
+multilib_src_configure() {
+   local emesonargs=(
+   -Ddefault_library="$(usex static-libs both shared)"
+   -Dxkb-config-root="${EPREFIX}/usr/share/X11/xkb"
+   $(meson_use wayland enable-wayland)
+   $(meson_use X enable-x11)
+   $(meson_use doc enable-docs)
+   )
+   meson_src_configure
+}
+
+multilib_src_test() {
+   virtx meson_src_test
+}



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-input-libinput/

2021-09-23 Thread Matt Turner
commit: 5b7f5fc439bdf4ce1d998ba8067259c760fb9ec4
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Sep 24 02:51:30 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Sep 24 02:54:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b7f5fc4

x11-drivers/xf86-input-libinput: Version bump to 1.2.0

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

 x11-drivers/xf86-input-libinput/Manifest|  1 +
 .../xf86-input-libinput-1.2.0.ebuild| 21 +
 2 files changed, 22 insertions(+)

diff --git a/x11-drivers/xf86-input-libinput/Manifest 
b/x11-drivers/xf86-input-libinput/Manifest
index 4705655b51e..1ccf5ad9ef7 100644
--- a/x11-drivers/xf86-input-libinput/Manifest
+++ b/x11-drivers/xf86-input-libinput/Manifest
@@ -1 +1,2 @@
 DIST xf86-input-libinput-1.1.0.tar.bz2 380727 BLAKE2B 
03f394340bb79ee928509471200434fd8efa1385a1747bd1c95743e2d235f806c7b2816496ec74518c18dc967c6761ea779d0c66b525aa80ac6a36bb80c4a45b
 SHA512 
7def9a4834a9203d1672613b1a4b384a0eb3d664818865b375969bf9ca96c512b752859acc8916de9224f7e488f8d59953308e53b983dfa8031ca01fd707fa2b
+DIST xf86-input-libinput-1.2.0.tar.bz2 358985 BLAKE2B 
f6fc97c4cb81ae61604d2a56063127a5a9a548c529eda9c506a77d8591b9a439cd0fac9c471e7429fddac6e8c4c043087e53d5113ac62c8bdb5b11381f3d5dce
 SHA512 
ebff9490d33fd7495df2e03203060a76b3274f0e638bc92f3d95257fac57cdb9dac308e90e54006fe9522b6de3b1f1c38fd5f0b0b75b7051e5422290f43de52d

diff --git a/x11-drivers/xf86-input-libinput/xf86-input-libinput-1.2.0.ebuild 
b/x11-drivers/xf86-input-libinput/xf86-input-libinput-1.2.0.ebuild
new file mode 100644
index 000..23bff0d8928
--- /dev/null
+++ b/x11-drivers/xf86-input-libinput/xf86-input-libinput-1.2.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info xorg-3
+
+DESCRIPTION="X.org input driver based on libinput"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+RDEPEND=">=dev-libs/libinput-1.11.0:0="
+DEPEND="${RDEPEND}
+   >=x11-base/xorg-proto-2021.5"
+
+DOCS=( "README.md" )
+
+pkg_pretend() {
+   CONFIG_CHECK="~TIMERFD"
+   check_extra_config
+}



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

2021-09-23 Thread Matt Turner
commit: f8f8419441a761acbe86a2c5a2c9d7db54461122
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Sep 24 02:45:42 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Sep 24 02:54:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8f84194

dev-libs/wayland-protocols: Version bump to 1.23

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

 dev-libs/wayland-protocols/Manifest|  1 +
 .../wayland-protocols-1.23.ebuild  | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/dev-libs/wayland-protocols/Manifest 
b/dev-libs/wayland-protocols/Manifest
index 992d69b1689..526aa495c77 100644
--- a/dev-libs/wayland-protocols/Manifest
+++ b/dev-libs/wayland-protocols/Manifest
@@ -1,2 +1,3 @@
 DIST wayland-protocols-1.21.tar.xz 117296 BLAKE2B 
91dbfea6045e981fe94172fd13b74b150b0585560c06ad6990cfc57e02c97a013428431de54b196b4ed16db43724aae56f57dffb2b3f21615fe5522fe33aedc8
 SHA512 
40133ba36d4201de9626e9869ebdf2d4f7ad06904d6a747d5af87958a08368abdc65be3acc21b8959d0c5ec37d47051ba5b81d3844079fe237dac81a7291bbb8
 DIST wayland-protocols-1.22.tar.xz 120084 BLAKE2B 
955c35906757e60b434c53f0748d608f49c9061ddf148475a15d524896543f0498eb3e768fa1ddde82f60051a24b74d92733278f96a352971853b3bdcf4ad27d
 SHA512 
fd69b33ab81d0f7b3b96b03bf820a80fdd8d6f5854c2851e4b72a69d7133fc136dde7a3c6b0d67856230ff40ee26dedf6157236897c7ba239d1e3ce32e9a22c7
+DIST wayland-protocols-1.23.tar.xz 74116 BLAKE2B 
a92f9d80e8d9062fb79c06e13141b46e0f43d0813f461e087a9fa724fa752df3b4fe5698e34e7431f3b43cca0adf7b86ab77c948060f6c02e4c7693f7975cd15
 SHA512 
11f09147da1dd01a9f5c921eb0bfc6244a72023a052ef96bc121e16437a2c43d0dbba748c2de832539f57371e90b16bd13069bec07391305717f8fca295ea2a6

diff --git a/dev-libs/wayland-protocols/wayland-protocols-1.23.ebuild 
b/dev-libs/wayland-protocols/wayland-protocols-1.23.ebuild
new file mode 100644
index 000..f9b1910a51a
--- /dev/null
+++ b/dev-libs/wayland-protocols/wayland-protocols-1.23.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="Wayland protocol files"
+HOMEPAGE="https://wayland.freedesktop.org/;
+
+if [[ ${PV} = * ]]; then
+   EGIT_REPO_URI="https://gitlab.freedesktop.org/wayland/${PN}.git/;
+   inherit git-r3
+else
+   SRC_URI="https://wayland.freedesktop.org/releases/${P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+   test? ( dev-libs/wayland )
+"
+RDEPEND=""
+BDEPEND="
+   dev-util/wayland-scanner
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local emesonargs=(
+   $(meson_use test tests)
+   )
+   meson_src_configure
+}



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

2021-09-23 Thread Matthew Thode
commit: bf2e41729276f912c3ed63db9ea609b156e58071
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Sep 24 02:53:50 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Sep 24 02:54:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf2e4172

app-admin/ansible: we use new ansible now

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

 app-admin/ansible/Manifest  |  1 -
 app-admin/ansible/ansible-2.10.7.ebuild | 60 -
 2 files changed, 61 deletions(-)

diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest
index 25cf30eed03..b99a9a5ba39 100644
--- a/app-admin/ansible/Manifest
+++ b/app-admin/ansible/Manifest
@@ -1,3 +1,2 @@
-DIST ansible-2.10.7.tar.gz 29862966 BLAKE2B 
fa86deaac034adc8e02f91cbf4b63ca718d50376cab19e156c85f8372c1787275e2ce24840fc3cbad2b9191146c785feafcf024a0c14052ee39a839390cc1319
 SHA512 
7a6522bcc57c178c9c6e87e313f6f175d5c74ac0d1b9dd0cad5506c7fa0efb16d4a627dc2d9c73f988177544bd9ccfdbec162d0feacc757edeb20280d7414191
 DIST ansible-4.3.0.tar.gz 35135987 BLAKE2B 
6f4bf55f07275b7264a7fba693816bf925d574d4da3d4d13af9b85c44d4b5adf9e823b9bd936408a0e424273f8f2aa529e960105842444d26eb3f45973109ec5
 SHA512 
035a236d0762e425c4ce4ffd709386075aee438bb8085a25920543bb2378feb07fb8f0a50ce9fb6b0d1f5dde1f27a408b828c286bfc1173d38da5f8c7b572c3a
 DIST ansible-4.5.0.tar.gz 35530106 BLAKE2B 
3176f374df6b9e7fdb8554187f8132a25b474627d66729c776e5935ee0eb84c296e951a511afec6787bb1cebda8d72670f9305e1904cff221229a459a671ddf7
 SHA512 
fd8461d22d6d3fd325a12480d78009cf65580c790c56164a50c5d74061034a1f387772f687bc730d23192a9a72221f87e11a44e984d05308311b9d6d2441a976

diff --git a/app-admin/ansible/ansible-2.10.7.ebuild 
b/app-admin/ansible/ansible-2.10.7.ebuild
deleted file mode 100644
index 1e2357818c8..000
--- a/app-admin/ansible/ansible-2.10.7.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=bdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Model-driven deployment, config management, and command execution 
framework"
-HOMEPAGE="https://ansible.com/;
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/ansible/ansible.git;
-   EGIT_BRANCH="devel"
-else
-   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~x64-macos"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="test"
-RESTRICT="test"
-
-RDEPEND="
-   dev-python/paramiko[${PYTHON_USEDEP}]
-   dev-python/jinja[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/cryptography[${PYTHON_USEDEP}]
-   dev-python/httplib2[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-   dev-python/netaddr[${PYTHON_USEDEP}]
-   dev-python/pexpect[${PYTHON_USEDEP}]
-   net-misc/sshpass
-   virtual/ssh
-   

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

2021-09-23 Thread Zac Medico
commit: d68f6a141fa8c9226dfb92e2af49a00a16ffadce
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Sep 24 02:49:51 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Sep 24 02:51:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d68f6a14

app-admin/vault: Remove old versions

Old versions do not build with go-1.17.

Bug: https://bugs.gentoo.org/814431
Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Zac Medico  gentoo.org>

 app-admin/vault/Manifest   |  4 ---
 app-admin/vault/vault-1.6.6.ebuild | 73 --
 app-admin/vault/vault-1.7.4.ebuild | 73 --
 3 files changed, 150 deletions(-)

diff --git a/app-admin/vault/Manifest b/app-admin/vault/Manifest
index 42ba4317b9e..66038bf4342 100644
--- a/app-admin/vault/Manifest
+++ b/app-admin/vault/Manifest
@@ -1744,9 +1744,5 @@ DIST sigs.k8s.io%2Fyaml%2F@v%2Fv1.1.0.mod 24 BLAKE2B 
d33080dbc62b185d029eb43f75d
 DIST sigs.k8s.io%2Fyaml%2F@v%2Fv1.2.0.mod 106 BLAKE2B 
bd5d8af6c5046c6de9b171ea2915c308de08e9696a8c82b3831bf5dc01f8aefc21b13b5b9a210f24ff8782909308137c25363074753427109e009889b7860f5f
 SHA512 
712a936d07bfe4c2e67a4f199346d7e96db35486a0f051365c4636ddbc6505cf540995bc67e6a03b1b58e1e4816ece573418f23bf9ce93fcdc141a05f922f527
 DIST sigs.k8s.io%2Fyaml%2F@v%2Fv1.2.0.zip 20937 BLAKE2B 
1bc20da34d11c6704b2d34eb93b06fd376d1b0932626c7dcbdaf43df8c8eb14e07529e84e028576bb67ce1961c3c86d0303d375d8d0aa372ded259c3561b9291
 SHA512 
52a52b3d380ae6e2cbe1b2c849d3089f74aa876fb3fadfbd02eada97446e0f2cf387f10ddb527f2dfefd57dccba8c82b0b349efbecaa0e6e3d00dc2b5d4fc21e
 DIST 
sourcegraph.com%2Fsourcegraph%2Fappdash%2F@v%2Fv0.0.0-20190731080439-ebfcffb1b5c0.mod
 43 BLAKE2B 
44d562f1cdabdb24ca05eb508183dc158939129a4cf6ec0c58815076367b2902b660ee0ef526aa01e920846fb633d001c499bf63a3cea16494213eec41587408
 SHA512 
7d863e4af4e480a247bc767d1de96ff8050b12a13a182a9a8fa68c983c2f0b1a16b509d40de3cca552082535f876458034e1510f0f0feef383f16e1f84f81282
-DIST vault-1.6.6-webui.tar.xz 1268292 BLAKE2B 
ea30ecaee5ff58a6b7281a5cedb9e8484c6d19feb2b5f0391002a2022dfc4978ac9c37bdcb69617034f93c44835bd4d88720788affcd45d516c190a011dc3882
 SHA512 
458cb4093a06142c11376a65a11deecc135915586353eae9511bdbdc49539ed296d3a008a91d8c6c6a43d71a0dfff85727a669428a822246265ffd1e48ce3972
-DIST vault-1.6.6.tar.gz 39139148 BLAKE2B 
1b6615fddb649c852d62f8a4d9d97d09be4e966427753ba87add08cf758416c349caae189e6bb6a3b24edf3c708f17655090d713f6e9ab2c02b7db8656c4cd02
 SHA512 
820ec2f0b71defe6e6920bb4eefec55536d3d06345b676323d4af0c74c837c886871b0951b54f917e27b61bade9b4a8e9f36e3905a82a134b9e5f887ed744534
-DIST vault-1.7.4-webui.tar.xz 1324720 BLAKE2B 
822f4afd2dd2ede0741b597b66a89fa04d1e160fa826ce609816786f9393aac24bbe36d27c7c3a11642d93b35606804d52ddd7da51aa9d3346f67caa5a886f21
 SHA512 
cfc0f8ccdb5ca348286676c3ff512483ed7e5c129bf5a6d7a5cfd60d4c5679688f4aff66221874cf413fad654aa0d71ba72eb58bb5f0165d42b9603e1cec279b
-DIST vault-1.7.4.tar.gz 39607823 BLAKE2B 
24b1c5473bac6fe0973a95a4c7ce30d5e8b4d3e78ec606cfe64ac3a1dcf84733aac4309496da0fd6b8bec5d98d951df29a4f1e1709f30856cc35e1d0464bdb25
 SHA512 
ec2f13741a182f1127424cd135ca1d5e9000e5e1cb3410135d805ff5cebb728091ffd67c7fea2134b1488ec13c8e298683adae23cb7ef87d8d35404ffddf9be3
 DIST vault-1.8.2-webui.tar.xz 1382592 BLAKE2B 
e7df79275f65b601de577f1197b89c03bd4e299fb4c5ee67f5e91439a79c15eeb4b58946d4cf2c837ca3c2d655ae86388f2f194a06f159c6580d4e6b1e59
 SHA512 
35c738be79fd956f09595045d7616599cfd7948baf2b774d0585c4cc12f9cfbd8bf262eb3c9a3969b96184560f2b2f7eb203271100a4ce452347d1100a5884b8
 DIST vault-1.8.2.tar.gz 20974085 BLAKE2B 
dbef32b3b1881f61053fed410c80caca253af9fd27d525eaf7e8b471af15d62c16423d35905302ccd4c32d7f2bc983a09d4ccbf2f835b7c60e2ac5067b17348c
 SHA512 
fe203f68a8b2f91356a59ee5a5e072aad232bfb9b037c7673297240ddd6270936f144c9a25bcba399053ef0fbc756146cc0e9e9f3642f0fd07008d8ee003d793

diff --git a/app-admin/vault/vault-1.6.6.ebuild 
b/app-admin/vault/vault-1.6.6.ebuild
deleted file mode 100644
index 28654c83196..000
--- a/app-admin/vault/vault-1.6.6.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit fcaps go-module systemd
-
-DESCRIPTION="A tool for managing secrets"
-HOMEPAGE="https://vaultproject.io/;
-VAULT_WEBUI_ARCHIVE="${P}-webui.tar.xz"
-SRC_URI="https://github.com/hashicorp/vault/archive/v${PV}.tar.gz -> 
${P}.tar.gz
-   webui? (
-   https://dev.gentoo.org/~zmedico/dist/${VAULT_WEBUI_ARCHIVE}
-   )"
-
-LICENSE="MPL-2.0 Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT"
-SLOT="0"
-KEYWORDS="amd64"
-IUSE="+webui"
-
-BDEPEND="dev-go/gox
-   >=dev-lang/go-1.15.3"
-COMMON_DEPEND="acct-group/vault
-   acct-user/vault"
-   DEPEND="${COMMON_DEPEND}"
-   RDEPEND="${COMMON_DEPEND}"
-
-FILECAPS=(
-   -m 755 'cap_ipc_lock=+ep' usr/bin/${PN}
-)
-
-RESTRICT+=" test"
-
-src_prepare() {
-   default
-   # Avoid the 

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

2021-09-23 Thread Zac Medico
commit: 4eb4c7f1c99af99d7296200bf149f9d2ab66a0ac
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Sep 24 02:48:29 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Sep 24 02:48:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eb4c7f1

app-admin/vault: stable 1.8.2 for amd64, bug #814431

Closes: https://bugs.gentoo.org/814431
Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Zac Medico  gentoo.org>

 app-admin/vault/vault-1.8.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/vault/vault-1.8.2.ebuild 
b/app-admin/vault/vault-1.8.2.ebuild
index 7f8468a86e1..8957da4edc8 100644
--- a/app-admin/vault/vault-1.8.2.ebuild
+++ b/app-admin/vault/vault-1.8.2.ebuild
@@ -1766,7 +1766,7 @@ 
SRC_URI="https://github.com/hashicorp/vault/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MPL-2.0 Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="+webui"
 
 BDEPEND="dev-go/gox



[gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/

2021-09-23 Thread Matthew Thode
commit: e31c95ca28aa4938668aaee0a1394a8e5648be5b
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Sep 24 02:22:11 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Sep 24 02:25:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e31c95ca

gui-apps/mako: 1.5 cleanup

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

 gui-apps/mako/Manifest|  1 -
 gui-apps/mako/mako-1.5.ebuild | 52 ---
 2 files changed, 53 deletions(-)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
index 6f776759d1a..cef4811e171 100644
--- a/gui-apps/mako/Manifest
+++ b/gui-apps/mako/Manifest
@@ -1,2 +1 @@
-DIST mako-1.5.tar.gz 57077 BLAKE2B 
0ad931ce6408774f029855d0d98bd9444ff246f2ee82dcaa59774caddc9aaa7d632a7584eaaa4439eafd17b72935eada8400fe93e1ec7f9c23b3860049b55269
 SHA512 
64bb78d391bf07259a62a4045103803c8e108ac2da2fe8a413b09a0e8c2ac9c82eea1ae9576db41f7088476099fc2071543c99d3a52a35f72f5dbb537bba8c47
 DIST mako-1.6.tar.gz 60468 BLAKE2B 
77fcd52e69d6e253d0afb2b0057c94090c0ad6f6bd929eafb88808ad7b7a0deb76f06af99de8bc94064436c47a4110aa2314557b7ff068ba482f285f2ea23e13
 SHA512 
1b503779b5607ae072d72ba43a2c4557fdf9fdad113e5a2370eb2e603e51422b3a483ac5f4a948ae33d62e7d9e86a6bbc89b2cba98647c4789505a49981c8baf

diff --git a/gui-apps/mako/mako-1.5.ebuild b/gui-apps/mako/mako-1.5.ebuild
deleted file mode 100644
index 81df72cd957..000
--- a/gui-apps/mako/mako-1.5.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway."
-HOMEPAGE="https://github.com/emersion/mako;
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/emersion/${PN}.git;
-else
-   SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 arm64 x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+icons"
-
-DEPEND="
-   dev-libs/wayland
-   x11-libs/pango
-   x11-libs/cairo
-   || (
-   sys-apps/systemd
-   sys-auth/elogind
-   )
-   sys-apps/dbus[user-session]
-   icons? (
-   x11-libs/gtk+:3
-   x11-libs/gdk-pixbuf
-   )
-"
-RDEPEND="
-   ${DEPEND}
-   dev-libs/wayland-protocols
-"
-BDEPEND="
-   virtual/pkgconfig
-   app-text/scdoc
-"
-
-src_configure() {
-   local emesonargs=(
-   -Dicons=$(usex icons enabled disabled)
-   "-Dwerror=false"
-   )
-   meson_src_configure
-}



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

2021-09-23 Thread Matthew Thode
commit: 50fea4a8c7fd8e617570b0ccefe5ade429c60833
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Sep 24 02:24:42 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Sep 24 02:25:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50fea4a8

app-crypt/certbot-apache: 1.16.0 cleanup

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

 app-crypt/certbot-apache/Manifest  |  1 -
 .../certbot-apache/certbot-apache-1.16.0.ebuild| 30 --
 2 files changed, 31 deletions(-)

diff --git a/app-crypt/certbot-apache/Manifest 
b/app-crypt/certbot-apache/Manifest
index e9a9f0b0390..c42b4a6f463 100644
--- a/app-crypt/certbot-apache/Manifest
+++ b/app-crypt/certbot-apache/Manifest
@@ -1,4 +1,3 @@
-DIST certbot-1.16.0.tar.gz 1384177 BLAKE2B 
4e46e7d7b9db2f6ef19fab60c2d904f84b502d2911ed496967bbe272db5352c1e9bdb65b8f45358f14bce4721ceecc12c018b875148bc897f83c5eb63933
 SHA512 
c2a0c4ea52ab241e387d686a9e5ed67aa5e8b4b7d34ad8996e34562e036c25ab8b397bf482a856758ca787b97bbd78c890189250c0c3d948f03fbf91aa25ece0
 DIST certbot-1.17.0.tar.gz 1386471 BLAKE2B 
26cf23c481cc67e1fa0f698dee83dd42b1d382814f10bdb4d2a459f1274f3d661d2a58815c30110701d46362c3fbaee9f57089a7eda1221c9b9dadb2c48dc79d
 SHA512 
104deb8e6e804a3a3f50c730f00307aa39d9d42756f24be009fedc27c889c1575b456455ee11441e341025db6f528359e927a347554ebd57b64c39e789576eda
 DIST certbot-1.18.0.tar.gz 1332615 BLAKE2B 
eb086710b943893025d6e1091470ca02de074232372f4c9fa21fa83a347fe54df988b9553c8cf6afd6e166b8c464d595171984c984008a872e16c0179bb774b2
 SHA512 
94b16ba0586e0f5d3036280c68f9976c25889ca48fbbe7aded41f0d9feba2300a3f0ff8fe321b39d8642bcdd874c7332cf2acb3187b5869fe415831f58a75a7b
 DIST certbot-1.19.0.tar.gz 1338653 BLAKE2B 
b6ed909da2aed9853cf3dc6b936c513f33a127548ee30ac45a32a682141c5e4e79401ea328b7caf4e28d1d85aa2a9831e93deaa26c93216708a33be465dc8387
 SHA512 
2c1beb8c06299b9003fafd970cd3e977db85c4e84f1bf710166b7a99035b5c43a2a222d8d51513ac595255dd8eda02a1fb834c01ce68921927715c880052536e

diff --git a/app-crypt/certbot-apache/certbot-apache-1.16.0.ebuild 
b/app-crypt/certbot-apache/certbot-apache-1.16.0.ebuild
deleted file mode 100644
index 0ef28b9c413..000
--- a/app-crypt/certbot-apache/certbot-apache-1.16.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=(python{3_7,3_8,3_9})
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
-   inherit git-r3
-   S=${WORKDIR}/${P}/${PN}
-else
-   
SRC_URI="https://github.com/${PN%-apache}/${PN%-apache}/archive/v${PV}.tar.gz 
-> ${PN%-apache}-${PV}.tar.gz"
-   KEYWORDS="amd64 ~arm64 x86"
-   S=${WORKDIR}/${PN%-apache}-${PV}/${PN}
-fi
-
-inherit distutils-r1
-
-DESCRIPTION="Apache plugin for certbot (Let's Encrypt Client)"
-HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-
-RDEPEND=">=app-crypt/acme-${PV}[${PYTHON_USEDEP}]
-   >=app-crypt/certbot-${PV}[${PYTHON_USEDEP}]
-   dev-python/python-augeas[${PYTHON_USEDEP}]
-   dev-python/zope-component[${PYTHON_USEDEP}]
-   dev-python/zope-interface[${PYTHON_USEDEP}]"



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

2021-09-23 Thread Matthew Thode
commit: 218cbacd168bb18001dab3627c8921f4d6757498
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Sep 24 02:25:02 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Sep 24 02:25:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=218cbacd

app-crypt/certbot-nginx: 1.16.0 cleanup

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

 app-crypt/certbot-nginx/Manifest   |  1 -
 .../certbot-nginx/certbot-nginx-1.16.0.ebuild  | 32 --
 2 files changed, 33 deletions(-)

diff --git a/app-crypt/certbot-nginx/Manifest b/app-crypt/certbot-nginx/Manifest
index e9a9f0b0390..c42b4a6f463 100644
--- a/app-crypt/certbot-nginx/Manifest
+++ b/app-crypt/certbot-nginx/Manifest
@@ -1,4 +1,3 @@
-DIST certbot-1.16.0.tar.gz 1384177 BLAKE2B 
4e46e7d7b9db2f6ef19fab60c2d904f84b502d2911ed496967bbe272db5352c1e9bdb65b8f45358f14bce4721ceecc12c018b875148bc897f83c5eb63933
 SHA512 
c2a0c4ea52ab241e387d686a9e5ed67aa5e8b4b7d34ad8996e34562e036c25ab8b397bf482a856758ca787b97bbd78c890189250c0c3d948f03fbf91aa25ece0
 DIST certbot-1.17.0.tar.gz 1386471 BLAKE2B 
26cf23c481cc67e1fa0f698dee83dd42b1d382814f10bdb4d2a459f1274f3d661d2a58815c30110701d46362c3fbaee9f57089a7eda1221c9b9dadb2c48dc79d
 SHA512 
104deb8e6e804a3a3f50c730f00307aa39d9d42756f24be009fedc27c889c1575b456455ee11441e341025db6f528359e927a347554ebd57b64c39e789576eda
 DIST certbot-1.18.0.tar.gz 1332615 BLAKE2B 
eb086710b943893025d6e1091470ca02de074232372f4c9fa21fa83a347fe54df988b9553c8cf6afd6e166b8c464d595171984c984008a872e16c0179bb774b2
 SHA512 
94b16ba0586e0f5d3036280c68f9976c25889ca48fbbe7aded41f0d9feba2300a3f0ff8fe321b39d8642bcdd874c7332cf2acb3187b5869fe415831f58a75a7b
 DIST certbot-1.19.0.tar.gz 1338653 BLAKE2B 
b6ed909da2aed9853cf3dc6b936c513f33a127548ee30ac45a32a682141c5e4e79401ea328b7caf4e28d1d85aa2a9831e93deaa26c93216708a33be465dc8387
 SHA512 
2c1beb8c06299b9003fafd970cd3e977db85c4e84f1bf710166b7a99035b5c43a2a222d8d51513ac595255dd8eda02a1fb834c01ce68921927715c880052536e

diff --git a/app-crypt/certbot-nginx/certbot-nginx-1.16.0.ebuild 
b/app-crypt/certbot-nginx/certbot-nginx-1.16.0.ebuild
deleted file mode 100644
index 8aeb6ce5d52..000
--- a/app-crypt/certbot-nginx/certbot-nginx-1.16.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=(python{3_7,3_8,3_9})
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
-   inherit git-r3
-   S=${WORKDIR}/${P}/${PN}
-else
-   
SRC_URI="https://github.com/${PN%-nginx}/${PN%-nginx}/archive/v${PV}.tar.gz -> 
${PN%-nginx}-${PV}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-   S=${WORKDIR}/${PN%-nginx}-${PV}/${PN}
-fi
-
-inherit distutils-r1
-
-DESCRIPTION="Nginx plugin for certbot (Let's Encrypt Client)"
-HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   >=app-crypt/acme-${PV}[${PYTHON_USEDEP}]
-   >=app-crypt/certbot-${PV}[${PYTHON_USEDEP}]
-   >=dev-python/pyopenssl-17.3.0[${PYTHON_USEDEP}]
-   >=dev-python/pyparsing-2.2.0[${PYTHON_USEDEP}]
-   dev-python/zope-interface[${PYTHON_USEDEP}]"



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

2021-09-23 Thread Matthew Thode
commit: 90a2198071a553ecbb7942cab2bec630d490db14
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Sep 24 02:21:15 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Sep 24 02:25:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90a21980

app-admin/ansible-base: 2.10.9 cleanup

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

 app-admin/ansible-base/Manifest   |  1 -
 app-admin/ansible-base/ansible-base-2.10.9.ebuild | 62 ---
 2 files changed, 63 deletions(-)

diff --git a/app-admin/ansible-base/Manifest b/app-admin/ansible-base/Manifest
index 67b165c4af5..cdb24cc4e9a 100644
--- a/app-admin/ansible-base/Manifest
+++ b/app-admin/ansible-base/Manifest
@@ -1,5 +1,4 @@
 DIST ansible-base-2.10.10.tar.gz 5986488 BLAKE2B 
5c793d25ac5a216d05e15f49cd447cbdfb2ef97c2881bca60be5c23e3245262e15304a63431704d8b69fff56594e25517c0e5e1f2641b3eca5ad6a1e76e4d7b3
 SHA512 
b599b498a20b77cd3346f5b865b5a0436cdd835af250e8cc4ed20d61ac6a4929bf4ceef9a95c6e7b8e825c5f513d33ea32b24661c58e2f1d285db0569d71fc1b
-DIST ansible-base-2.10.9.tar.gz 6039597 BLAKE2B 
de455cc402ae4c5c4acd6b1c3d3f2e16572d4a4e79c5f3e4151ec8b913a3be0cfbcb42e5743fe627b7aba9b0e6b004189960cd5a17ff46166cd033a952d3c560
 SHA512 
093514230a3f6680ddeda07c24e77c2e793475895f44da6e5dd68335341d6fefe10091a124cf84e18475257a099b39fd2c16e6fc0dae0bbaf2d26e70b09c277a
 DIST ansible-core-2.11.3.tar.gz 6841255 BLAKE2B 
fde1143515d04121de79ddb2c14bf326f9efa596c39418b9def1679539dd144551b64dff83c66795e44f48e776dbc60bc456125904bbb64970f8c44e072b5abf
 SHA512 
93a28200dd0ab289cc05add5fbe46a1cfbbd4ba91fc7d7e95ee4060dc4f126bf4bd4affce5e44dac9cf2c12792b2a2a10b97d96b795f5bed579959391b7c4a65
 DIST ansible-core-2.11.4.tar.gz 6843603 BLAKE2B 
fa8e72a9e77633b1b43a9a290d92db009e95ed87357f666059ed7898031f584c993ebeb6acec8cad2937f3a714a742f4e52ac8f2baaf5d01c02796b64acd
 SHA512 
9385a3877e6e9a25d244c855cf50c0c6b62a91cc9cebc5e7b5b5ec23424b3e3dcddd71e7367482a03996fcd5d591ad29771edd19d62758ae61473f97a5c9351d
 DIST ansible-core-2.11.5.tar.gz 6847600 BLAKE2B 
83a80dcfda427b5d41eb3288d6b60cf710124a82edce2817a6bd5bbed0dc0157fed444b45db6428640dd25164306c987af9aba6f87ef52c63229ae113754b7c3
 SHA512 
73cfdb65e984856b84a0f7d0e1164a97ddbcdc38e00479f15c4a335297ba3a8f43dc503dc5b4a3f1fea06f91a3c4590b66dd680adb95b765c034207a8de5d589

diff --git a/app-admin/ansible-base/ansible-base-2.10.9.ebuild 
b/app-admin/ansible-base/ansible-base-2.10.9.ebuild
deleted file mode 100644
index 46ca9a204a0..000
--- a/app-admin/ansible-base/ansible-base-2.10.9.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Model-driven deployment, config management, and command execution 
framework"
-HOMEPAGE="https://ansible.com/;
-SRC_URI="https://releases.ansible.com/${PN}/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 x86 ~x64-macos"
-IUSE="test"
-RESTRICT="test"
-# doc removed due to https://github.com/ansible/ansible/issues/71395
-
-RDEPEND="
-   dev-python/paramiko[${PYTHON_USEDEP}]
-   dev-python/jinja[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/cryptography[${PYTHON_USEDEP}]
-   dev-python/httplib2[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-   dev-python/netaddr[${PYTHON_USEDEP}]
-   dev-python/pexpect[${PYTHON_USEDEP}]
-   net-misc/sshpass
-   virtual/ssh
-   !

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

2021-09-23 Thread Matthew Thode
commit: 15930cf44954ced44cd714899c990acf349903d8
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Sep 24 02:24:12 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Sep 24 02:25:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15930cf4

app-crypt/certbot: 1.16.0 cleanup

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

 app-crypt/certbot/Manifest  |  1 -
 app-crypt/certbot/certbot-1.16.0.ebuild | 36 -
 2 files changed, 37 deletions(-)

diff --git a/app-crypt/certbot/Manifest b/app-crypt/certbot/Manifest
index e9a9f0b0390..c42b4a6f463 100644
--- a/app-crypt/certbot/Manifest
+++ b/app-crypt/certbot/Manifest
@@ -1,4 +1,3 @@
-DIST certbot-1.16.0.tar.gz 1384177 BLAKE2B 
4e46e7d7b9db2f6ef19fab60c2d904f84b502d2911ed496967bbe272db5352c1e9bdb65b8f45358f14bce4721ceecc12c018b875148bc897f83c5eb63933
 SHA512 
c2a0c4ea52ab241e387d686a9e5ed67aa5e8b4b7d34ad8996e34562e036c25ab8b397bf482a856758ca787b97bbd78c890189250c0c3d948f03fbf91aa25ece0
 DIST certbot-1.17.0.tar.gz 1386471 BLAKE2B 
26cf23c481cc67e1fa0f698dee83dd42b1d382814f10bdb4d2a459f1274f3d661d2a58815c30110701d46362c3fbaee9f57089a7eda1221c9b9dadb2c48dc79d
 SHA512 
104deb8e6e804a3a3f50c730f00307aa39d9d42756f24be009fedc27c889c1575b456455ee11441e341025db6f528359e927a347554ebd57b64c39e789576eda
 DIST certbot-1.18.0.tar.gz 1332615 BLAKE2B 
eb086710b943893025d6e1091470ca02de074232372f4c9fa21fa83a347fe54df988b9553c8cf6afd6e166b8c464d595171984c984008a872e16c0179bb774b2
 SHA512 
94b16ba0586e0f5d3036280c68f9976c25889ca48fbbe7aded41f0d9feba2300a3f0ff8fe321b39d8642bcdd874c7332cf2acb3187b5869fe415831f58a75a7b
 DIST certbot-1.19.0.tar.gz 1338653 BLAKE2B 
b6ed909da2aed9853cf3dc6b936c513f33a127548ee30ac45a32a682141c5e4e79401ea328b7caf4e28d1d85aa2a9831e93deaa26c93216708a33be465dc8387
 SHA512 
2c1beb8c06299b9003fafd970cd3e977db85c4e84f1bf710166b7a99035b5c43a2a222d8d51513ac595255dd8eda02a1fb834c01ce68921927715c880052536e

diff --git a/app-crypt/certbot/certbot-1.16.0.ebuild 
b/app-crypt/certbot/certbot-1.16.0.ebuild
deleted file mode 100644
index a2ad43b5a62..000
--- a/app-crypt/certbot/certbot-1.16.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=(python{3_7,3_8,3_9})
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
-   inherit git-r3
-else
-   SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
-fi
-S=${WORKDIR}/${P}/${PN}
-
-inherit distutils-r1
-
-DESCRIPTION="Let's encrypt client to automate deployment of X.509 certificates"
-HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-
-RDEPEND="
-   >=app-crypt/acme-${PV}[${PYTHON_USEDEP}]
-   >=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
-   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
-   >=dev-python/cryptography-2.8[${PYTHON_USEDEP}]
-   >=dev-python/distro-1.0.1[${PYTHON_USEDEP}]
-   >=dev-python/josepy-1.1.0[${PYTHON_USEDEP}]
-   >=dev-python/parsedatetime-2.4[${PYTHON_USEDEP}]
-   dev-python/pyrfc3339[${PYTHON_USEDEP}]
-   dev-python/pytz[${PYTHON_USEDEP}]
-   dev-python/zope-component[${PYTHON_USEDEP}]
-   dev-python/zope-interface[${PYTHON_USEDEP}]"



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

2021-09-23 Thread Matthew Thode
commit: ac576d50989aab8789ffe0d82c9777222b4133a1
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Sep 24 02:23:44 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Sep 24 02:25:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac576d50

app-crypt/acme: 1.16.0 cleanup

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

 app-crypt/acme/Manifest   |  1 -
 app-crypt/acme/acme-1.16.0.ebuild | 68 ---
 2 files changed, 69 deletions(-)

diff --git a/app-crypt/acme/Manifest b/app-crypt/acme/Manifest
index e9a9f0b0390..c42b4a6f463 100644
--- a/app-crypt/acme/Manifest
+++ b/app-crypt/acme/Manifest
@@ -1,4 +1,3 @@
-DIST certbot-1.16.0.tar.gz 1384177 BLAKE2B 
4e46e7d7b9db2f6ef19fab60c2d904f84b502d2911ed496967bbe272db5352c1e9bdb65b8f45358f14bce4721ceecc12c018b875148bc897f83c5eb63933
 SHA512 
c2a0c4ea52ab241e387d686a9e5ed67aa5e8b4b7d34ad8996e34562e036c25ab8b397bf482a856758ca787b97bbd78c890189250c0c3d948f03fbf91aa25ece0
 DIST certbot-1.17.0.tar.gz 1386471 BLAKE2B 
26cf23c481cc67e1fa0f698dee83dd42b1d382814f10bdb4d2a459f1274f3d661d2a58815c30110701d46362c3fbaee9f57089a7eda1221c9b9dadb2c48dc79d
 SHA512 
104deb8e6e804a3a3f50c730f00307aa39d9d42756f24be009fedc27c889c1575b456455ee11441e341025db6f528359e927a347554ebd57b64c39e789576eda
 DIST certbot-1.18.0.tar.gz 1332615 BLAKE2B 
eb086710b943893025d6e1091470ca02de074232372f4c9fa21fa83a347fe54df988b9553c8cf6afd6e166b8c464d595171984c984008a872e16c0179bb774b2
 SHA512 
94b16ba0586e0f5d3036280c68f9976c25889ca48fbbe7aded41f0d9feba2300a3f0ff8fe321b39d8642bcdd874c7332cf2acb3187b5869fe415831f58a75a7b
 DIST certbot-1.19.0.tar.gz 1338653 BLAKE2B 
b6ed909da2aed9853cf3dc6b936c513f33a127548ee30ac45a32a682141c5e4e79401ea328b7caf4e28d1d85aa2a9831e93deaa26c93216708a33be465dc8387
 SHA512 
2c1beb8c06299b9003fafd970cd3e977db85c4e84f1bf710166b7a99035b5c43a2a222d8d51513ac595255dd8eda02a1fb834c01ce68921927715c880052536e

diff --git a/app-crypt/acme/acme-1.16.0.ebuild 
b/app-crypt/acme/acme-1.16.0.ebuild
deleted file mode 100644
index 37a6145366a..000
--- a/app-crypt/acme/acme-1.16.0.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=(python{3_7,3_8,3_9})
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
-   inherit git-r3
-   S=${WORKDIR}/${P}/${PN}
-else
-   SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> 
certbot-${PV}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
-   S=${WORKDIR}/certbot-${PV}/acme
-fi
-
-inherit distutils-r1
-
-DESCRIPTION="An implementation of the ACME protocol"
-HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-python/cryptography-2.1.4[${PYTHON_USEDEP}]
-   >=dev-python/idna-2.0.0[${PYTHON_USEDEP}]
-   >=dev-python/josepy-1.1.0[${PYTHON_USEDEP}]
-   >=dev-python/pyopenssl-17.3.0[${PYTHON_USEDEP}]
-   dev-python/pyrfc3339[${PYTHON_USEDEP}]
-   dev-python/pytz[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.10[${PYTHON_USEDEP}]
-   >=dev-python/requests-toolbelt-0.3.0[${PYTHON_USEDEP}]
-"
-DEPEND="
-   doc? (
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
-   )
-   test? (
-   ${RDEPEND}
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-xdist[${PYTHON_USEDEP}]
-   )
-"
-
-src_compile() {
-   python_foreach_impl run_in_build_dir default
-   distutils-r1_src_compile
-   if use doc ; then
-   cd docs || die
-   sphinx-build -b html -d _build/doctrees   . _build/html
-   fi
-}
-
-python_test() {
-   nosetests -w ${PN} || die
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/_build/html/. )
-
-   distutils-r1_python_install_all
-}



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

2021-09-23 Thread Matthew Thode
commit: 9b97b0c75f9d660c9adc0a84df78d7fa16857ef2
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Sep 24 02:19:42 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Sep 24 02:25:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b97b0c7

app-admin/ansible: 4.1.0 cleanup

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

 app-admin/ansible/Manifest |  1 -
 app-admin/ansible/ansible-4.1.0.ebuild | 25 -
 2 files changed, 26 deletions(-)

diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest
index ae219aef012..25cf30eed03 100644
--- a/app-admin/ansible/Manifest
+++ b/app-admin/ansible/Manifest
@@ -1,4 +1,3 @@
 DIST ansible-2.10.7.tar.gz 29862966 BLAKE2B 
fa86deaac034adc8e02f91cbf4b63ca718d50376cab19e156c85f8372c1787275e2ce24840fc3cbad2b9191146c785feafcf024a0c14052ee39a839390cc1319
 SHA512 
7a6522bcc57c178c9c6e87e313f6f175d5c74ac0d1b9dd0cad5506c7fa0efb16d4a627dc2d9c73f988177544bd9ccfdbec162d0feacc757edeb20280d7414191
-DIST ansible-4.1.0.tar.gz 33999079 BLAKE2B 
b7c512ed01f220dbfdd5c90cd67c88cc3b50dce5a83a783b798afafe88d75d96ae7abd9a512a1d4fc4e1ad0305c72e6d2b4ebe3811addf78faf2d14dab7dd188
 SHA512 
603a5aa6b63d447efcb6e2f04f40c1bf5d7cc888f344bdc00ca3f9bca92c406554328a0e77cf3d5f2633addc9d6459d7b9d9176d14ecc506c67013fc8180b0c0
 DIST ansible-4.3.0.tar.gz 35135987 BLAKE2B 
6f4bf55f07275b7264a7fba693816bf925d574d4da3d4d13af9b85c44d4b5adf9e823b9bd936408a0e424273f8f2aa529e960105842444d26eb3f45973109ec5
 SHA512 
035a236d0762e425c4ce4ffd709386075aee438bb8085a25920543bb2378feb07fb8f0a50ce9fb6b0d1f5dde1f27a408b828c286bfc1173d38da5f8c7b572c3a
 DIST ansible-4.5.0.tar.gz 35530106 BLAKE2B 
3176f374df6b9e7fdb8554187f8132a25b474627d66729c776e5935ee0eb84c296e951a511afec6787bb1cebda8d72670f9305e1904cff221229a459a671ddf7
 SHA512 
fd8461d22d6d3fd325a12480d78009cf65580c790c56164a50c5d74061034a1f387772f687bc730d23192a9a72221f87e11a44e984d05308311b9d6d2441a976

diff --git a/app-admin/ansible/ansible-4.1.0.ebuild 
b/app-admin/ansible/ansible-4.1.0.ebuild
deleted file mode 100644
index e7cb69449a0..000
--- a/app-admin/ansible/ansible-4.1.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Model-driven deployment, config management, and command execution 
framework"
-HOMEPAGE="https://www.ansible.com/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 x86 ~x64-macos"
-RESTRICT="test"
-
-RDEPEND=">=app-admin/ansible-base-2.11.1
-   

[gentoo-commits] proj/tinderbox-cluster-www:master commit in: python/templates/pages/packages/ebuilds/ebuild/, ...

2021-09-23 Thread Magnus Granberg
commit: 5e84cbca6ca8f525703c062f7e824f2c60ed4bc7
Author: Magnus Granberg  gentoo  org>
AuthorDate: Sun May 30 23:16:54 2021 +
Commit: Magnus Granberg  gentoo  org>
CommitDate: Fri Sep 24 02:22:49 2021 +
URL:
https://gitweb.gentoo.org/proj/tinderbox-cluster-www.git/commit/?id=5e84cbca

Restart

Signed-off-by: Magnus Granberg  gentoo.org>

 .gitignore |   8 -
 htdoc/index.html   |   8 -
 python/gosbs/__init__.py   |   0
 python/gosbs/settings.py.conf  | 144 ---
 python/gosbs/urls.py   |   9 -
 python/gosbs/wsgi.py   |  16 -
 python/gosbs_auth/__init__.py  |   0
 python/gosbs_auth/admin.py |   3 -
 python/gosbs_auth/apps.py  |   5 -
 python/gosbs_auth/migrations/__init__.py   |   0
 python/gosbs_auth/models.py|   3 -
 python/gosbs_auth/tests.py |   3 -
 python/gosbs_auth/urls.py  |  11 -
 python/gosbs_auth/views.py |   3 -
 python/manage.py   |  11 -
 python/packages/__init__.py|   0
 python/packages/admin.py   |   3 -
 python/packages/apps.py|   5 -
 python/packages/migrations/__init__.py |   0
 python/packages/models.py  | 188 
 python/packages/tests.py   |   3 -
 python/packages/urls.py|   7 -
 python/packages/views.py   |   3 -
 python/projects/__init__.py|   0
 python/projects/admin.py   |   3 -
 python/projects/apps.py|   5 -
 python/projects/forms.py   |   7 -
 python/projects/migrations/__init__.py |   0
 python/projects/models.py  |  53 ---
 python/projects/tests.py   |   3 -
 python/projects/urls.py|  11 -
 python/projects/views.py   |  86 
 python/templates/includes/layout/footer.html   |  38 --
 .../templates/includes/layout/footer_sitemap.html  |  12 -
 python/templates/includes/layout/head.html |  25 --
 python/templates/includes/layout/header.html   |  90 
 python/templates/includes/layout/sponsor.html  |   9 -
 python/templates/layout/base.html  |  34 --
 .../templates/pages/packages/category/index.html   |  33 --
 .../pages/packages/ebuilds/ebuild/index.html   |  47 --
 python/templates/pages/packages/ebuilds/index.html |  30 --
 python/templates/pages/packages/index.html |  28 --
 python/templates/pages/projects/add/index.html |   8 -
 python/templates/pages/projects/detail/index.html  |   4 -
 python/templates/pages/projects/index.html |  19 -
 python/templates/pages/projects/repos/index.html   |  31 --
 python/templates/pages/www/index.html  |  49 ---
 python/templates/registration/bugzillauser.html|  10 -
 python/templates/registration/logged_out.html  |   5 -
 python/templates/registration/login.html   |  12 -
 .../registration/password_change_form.html |  13 -
 python/www/__init__.py |   0
 python/www/admin.py|   7 -
 python/www/apps.py |   5 -
 python/www/migrations/0001_initial.py  |  64 ---
 python/www/migrations/__init__.py  |   0
 python/www/models.py   |  74 
 python/www/router.py   |  31 --
 python/www/tests.py|   3 -
 python/www/urls.py |   7 -
 python/www/utils.py|  34 --
 python/www/views.py|  19 -
 sql/gosbs-www.sql  | 475 -
 static/foo.txt |   0
 64 files changed, 1817 deletions(-)

diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 7be3859..000
--- a/.gitignore
+++ /dev/null
@@ -1,8 +0,0 @@
-# Backup files
-*~
-__pycache__
-# log dir
-static/logs
-# Python compiled files
-*.pyc
-python/gosbs/settings.py

diff --git a/htdoc/index.html b/htdoc/index.html
deleted file mode 100644
index c217ab3..000
--- a/htdoc/index.html
+++ /dev/null
@@ -1,8 +0,0 @@
-
-  
-
-
-
-  
-  
-
\ No newline at end of file

diff --git a/python/gosbs/__init__.py b/python/gosbs/__init__.py
deleted file mode 100644
index e69de29..000

diff --git a/python/gosbs/settings.py.conf b/python/gosbs/settings.py.conf
deleted file mode 100644
index a2e4330..000
--- 

[gentoo-commits] proj/tinderbox-cluster-www:master commit in: python/bb_dashboard/, python/templates/includes/container/, ...

2021-09-23 Thread Magnus Granberg
commit: 3fb5065d4b67af1df11cec4e7a3e888c9598b9d1
Author: Magnus Granberg  gentoo  org>
AuthorDate: Fri Sep 24 01:54:59 2021 +
Commit: Magnus Granberg  gentoo  org>
CommitDate: Fri Sep 24 02:22:49 2021 +
URL:
https://gitweb.gentoo.org/proj/tinderbox-cluster-www.git/commit/?id=3fb5065d

Add Buildbot Dashboard for Gentoo Ci

Signed-off-by: Magnus Granberg  gentoo.org>

 .gitignore |   5 +
 python/bb_dashboard/bb_dashboard/__init__.py   |   0
 python/bb_dashboard/bb_dashboard/asgi.py   |  16 +++
 .../bb_dashboard/bb_dashboard/settings.py.sample   | 149 +
 python/bb_dashboard/bb_dashboard/urls.py   |   9 ++
 python/bb_dashboard/bb_dashboard/wsgi.py   |  16 +++
 python/bb_dashboard/manage.py  |  22 +++
 python/bb_dashboard/projects/__init__.py   |   0
 python/bb_dashboard/projects/admin.py  |   3 +
 python/bb_dashboard/projects/apps.py   |   6 +
 .../bb_dashboard/projects/migrations/__init__.py   |   0
 python/bb_dashboard/projects/models.py |   3 +
 python/bb_dashboard/projects/tests.py  |   3 +
 python/bb_dashboard/projects/views.py  |   3 +
 python/bb_dashboard/repository/__init__.py |   0
 python/bb_dashboard/repository/admin.py|   3 +
 python/bb_dashboard/repository/apps.py |   6 +
 .../bb_dashboard/repository/migrations/__init__.py |   0
 python/bb_dashboard/repository/models.py   |  45 +++
 python/bb_dashboard/repository/tests.py|   3 +
 python/bb_dashboard/repository/views.py|   3 +
 python/bb_dashboard/static/screen.css  |   3 +
 .../templates/includes/container/end   |   0
 .../templates/includes/container/start |   3 +
 .../templates/includes/layout/footer.html  |  43 ++
 .../templates/includes/layout/head.html|  26 
 .../templates/includes/layout/header.html  |  89 
 .../templates/includes/navigation/primary  |   0
 .../templates/includes/navigation/secondary|   0
 python/bb_dashboard/templates/layout/base.html |  20 +++
 python/bb_dashboard/www/__init__.py|   0
 python/bb_dashboard/www/admin.py   |   7 +
 python/bb_dashboard/www/apps.py|   6 +
 python/bb_dashboard/www/migrations/0001_initial.py |  95 +
 python/bb_dashboard/www/migrations/__init__.py |   0
 python/bb_dashboard/www/models.py  |  74 ++
 python/bb_dashboard/www/router.py  |  31 +
 python/bb_dashboard/www/templates/www/index.html   |  42 ++
 .../www/templates/www/news.html}   |   9 +-
 python/bb_dashboard/www/tests.py   |   3 +
 python/bb_dashboard/www/urls.py|   7 +
 python/bb_dashboard/www/utils.py   |  55 
 python/bb_dashboard/www/views.py   |  16 +++
 python/templates/includes/container/start  |   3 -
 python/templates/includes/frontpage/new_build_req  |  15 ---
 python/templates/includes/frontpage/new_logs   |  27 
 python/templates/includes/frontpage/new_packages   |  10 --
 python/templates/includes/frontpage/new_repoman_qa |  18 ---
 .../includes/navigation/sitemap_secondary  |   5 -
 49 files changed, 823 insertions(+), 79 deletions(-)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000..ddf3b02
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+# Backup files
+*~
+__pycache__
+python/bb_dashboard/bb_dashboard/settings.py
+

diff --git a/python/bb_dashboard/bb_dashboard/__init__.py 
b/python/bb_dashboard/bb_dashboard/__init__.py
new file mode 100644
index 000..e69de29

diff --git a/python/bb_dashboard/bb_dashboard/asgi.py 
b/python/bb_dashboard/bb_dashboard/asgi.py
new file mode 100644
index 000..1e2115c
--- /dev/null
+++ b/python/bb_dashboard/bb_dashboard/asgi.py
@@ -0,0 +1,16 @@
+"""
+ASGI config for bb_dashboard project.
+
+It exposes the ASGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/3.2/howto/deployment/asgi/
+"""
+
+import os
+
+from django.core.asgi import get_asgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'bb_dashboard.settings')
+
+application = get_asgi_application()

diff --git a/python/bb_dashboard/bb_dashboard/settings.py.sample 
b/python/bb_dashboard/bb_dashboard/settings.py.sample
new file mode 100644
index 000..079368e
--- /dev/null
+++ b/python/bb_dashboard/bb_dashboard/settings.py.sample
@@ -0,0 +1,149 @@
+"""
+Django settings for bb_dashboard project.
+
+Generated by 'django-admin startproject' using Django 3.2.3.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/3.2/topics/settings/
+
+For the full list of settings and their values, see

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

2021-09-23 Thread Yixun Lan
commit: 7dd90ee56dbbf12d43eb5982feee8b5d85f4c677
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Sep 24 01:51:58 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Sep 24 01:51:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dd90ee5

sys-apps/tuned: version bump, 2.16.0

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 sys-apps/tuned/Manifest|  1 +
 sys-apps/tuned/tuned-2.16.0.ebuild | 63 ++
 2 files changed, 64 insertions(+)

diff --git a/sys-apps/tuned/Manifest b/sys-apps/tuned/Manifest
index 28fa06f019e..086fe3abac9 100644
--- a/sys-apps/tuned/Manifest
+++ b/sys-apps/tuned/Manifest
@@ -1 +1,2 @@
 DIST tuned-2.15.0.tar.gz 207775 BLAKE2B 
307b0598d9e99831526f2b26d5544df3832db7e17f28935c6f8d9293ec0d03729fb66906dca4739d48690e488f05383d448e7e714f6ae4824489564c295784c9
 SHA512 
67acdf10ecccd7910c4dcfd737610b4cb7651c7bf937bc0ed9c51869262d9f3a46f262d0b7636bc7a86a8abf579542a46f551e4f6c7561a061d8d58459be4589
+DIST tuned-2.16.0.tar.gz 213111 BLAKE2B 
865cfffc89459396aa50c7908c88de405dea365084cf1592134391da961e88cc5610b663d93d531febdf881182624a13771493c61915003c59ad24bc64dd8a5c
 SHA512 
35f04e1ee1ab3d8be711f0787db92c089cc210c75a3be0bc60389effaed8dc3fb502eff54ea0336154563f7b194f8ff286a2e408ab439a472b6d4922c64d5b03

diff --git a/sys-apps/tuned/tuned-2.16.0.ebuild 
b/sys-apps/tuned/tuned-2.16.0.ebuild
new file mode 100644
index 000..bb7ae49d1f9
--- /dev/null
+++ b/sys-apps/tuned/tuned-2.16.0.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8,9} )
+
+inherit python-single-r1 xdg-utils tmpfiles
+
+DESCRIPTION="Daemon for monitoring and adaptive tuning of system devices"
+HOMEPAGE="https://github.com/redhat-performance/tuned;
+SRC_URI="https://github.com/redhat-performance/tuned/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="
+   ${PYTHON_DEPS}
+   $(python_gen_cond_dep '
+   dev-python/configobj[${PYTHON_USEDEP}]
+   dev-python/decorator[${PYTHON_USEDEP}]
+   dev-python/pyudev[${PYTHON_USEDEP}]
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-linux-procfs[${PYTHON_USEDEP}]
+   ')"
+
+RDEPEND="
+   ${DEPEND}
+   sys-apps/dbus
+   sys-apps/ethtool
+   sys-power/powertop
+   dev-util/systemtap"
+
+RESTRICT="test"
+
+src_prepare() {
+   default
+
+   sed -i \
+   -e "/^PYTHON/s:/usr/bin/python3:${EPREFIX}/usr/bin/${EPYTHON}:" 
\
+   -e "/^export DOCDIR/s/$/&\-\$(VERSION)/g" \
+   -e "/\$(DESTDIR)\/run\/tuned/d" \
+   -e "/\$(DESTDIR)\/var\/lib\/tuned/d" \
+   -e "/\$(DESTDIR)\/var\/log\/tuned/d" \
+   Makefile || die
+}
+
+src_install() {
+   default
+
+   newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+   python_fix_shebang "${D}"
+   python_optimize
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   tmpfiles_process ${PN}.conf
+}



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

2021-09-23 Thread Yixun Lan
commit: 34da3eebf4d7139919e4e75da56753d7cf42db28
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Sep 23 05:56:08 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Sep 24 01:19:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34da3eeb

dev-libs/libpeas: keyword ~riscv

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

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

diff --git a/dev-libs/libpeas/libpeas-1.30.0.ebuild 
b/dev-libs/libpeas/libpeas-1.30.0.ebuild
index 3f2417f8d98..a267bee72c7 100644
--- a/dev-libs/libpeas/libpeas-1.30.0.ebuild
+++ b/dev-libs/libpeas/libpeas-1.30.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://developer.gnome.org/libpeas/stable/;
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux"
 
 IUSE="glade +gtk gtk-doc lua +python vala"
 REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )



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

2021-09-23 Thread Yixun Lan
commit: 6c2b4df98e386629253ebb1d14cd89ee86164cc6
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Sep 23 09:08:20 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Sep 24 01:20:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c2b4df9

sys-apps/sg3_utils: keyword ~riscv

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 sys-apps/sg3_utils/sg3_utils-1.46-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/sg3_utils/sg3_utils-1.46-r1.ebuild 
b/sys-apps/sg3_utils/sg3_utils-1.46-r1.ebuild
index 560605dffc0..35f989ec76f 100644
--- a/sys-apps/sg3_utils/sg3_utils-1.46-r1.ebuild
+++ b/sys-apps/sg3_utils/sg3_utils-1.46-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://sg.danny.cz/sg/p/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0/${PV}"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86"
 IUSE="static-libs"
 
 DEPEND="sys-devel/libtool"



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

2021-09-23 Thread Yixun Lan
commit: 8a78230382101b94a0e92324a0f46ce2aa6e9e50
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Sep 23 09:16:39 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Sep 24 01:20:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a782303

media-libs/libgpod: keyword ~riscv

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 media-libs/libgpod/libgpod-0.8.3-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libgpod/libgpod-0.8.3-r5.ebuild 
b/media-libs/libgpod/libgpod-0.8.3-r5.ebuild
index 3cef30ca197..f3b68368bf5 100644
--- a/media-libs/libgpod/libgpod-0.8.3-r5.ebuild
+++ b/media-libs/libgpod/libgpod-0.8.3-r5.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/gtkpod/${P}.tar.bz2"
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc x86"
+KEYWORDS="amd64 ppc ~riscv x86"
 IUSE="+gtk ios +udev"
 
 RDEPEND="



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

2021-09-23 Thread Yixun Lan
commit: 10b6accd97b5185d46499088e271413ef9368f63
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Sep 23 08:26:02 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Sep 24 01:20:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10b6accd

dev-libs/libisofs: keyword ~riscv

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

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

diff --git a/dev-libs/libisofs/libisofs-1.5.4.ebuild 
b/dev-libs/libisofs/libisofs-1.5.4.ebuild
index b493f09fd56..7a268c49b53 100644
--- a/dev-libs/libisofs/libisofs-1.5.4.ebuild
+++ b/dev-libs/libisofs/libisofs-1.5.4.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
 IUSE="acl debug static-libs verbose-debug xattr zlib"
 
 BDEPEND="



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

2021-09-23 Thread Yixun Lan
commit: 8f83ee07feb7e1942603fc0c21bed33ba561387e
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Sep 23 13:49:26 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Sep 24 01:20:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f83ee07

media-sound/rhythmbox: keyword ~riscv

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

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

diff --git a/media-sound/rhythmbox/rhythmbox-3.4.4.ebuild 
b/media-sound/rhythmbox/rhythmbox-3.4.4.ebuild
index 817f3a7425e..287b4eb8350 100644
--- a/media-sound/rhythmbox/rhythmbox-3.4.4.ebuild
+++ b/media-sound/rhythmbox/rhythmbox-3.4.4.ebuild
@@ -23,7 +23,7 @@ REQUIRED_USE="
python? ( ${PYTHON_REQUIRED_USE} )
 "
 
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
 
 COMMON_DEPEND="
>=dev-libs/glib-2.38:2



[gentoo-commits] repo/gentoo:master commit in: app-cdr/brasero/

2021-09-23 Thread Yixun Lan
commit: 5cfb218f707c0388ef70283d68f9e694802d13e5
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Sep 23 09:01:44 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Sep 24 01:20:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cfb218f

app-cdr/brasero: keyword ~riscv

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 app-cdr/brasero/brasero-3.12.2-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-cdr/brasero/brasero-3.12.2-r3.ebuild 
b/app-cdr/brasero/brasero-3.12.2-r3.ebuild
index a8a6915a00c..97fea35f2e1 100644
--- a/app-cdr/brasero/brasero-3.12.2-r3.ebuild
+++ b/app-cdr/brasero/brasero-3.12.2-r3.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-2+ CC-BY-SA-3.0"
 SLOT="0/3.1" # subslot is 3.suffix of libbrasero-burn3
 IUSE="+css +introspection +libburn mp3 nautilus playlist test tracker"
 RESTRICT="!test? ( test )"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
 
 DEPEND="
>=dev-libs/glib-2.29.14:2



[gentoo-commits] repo/gentoo:master commit in: app-cdr/dvd+rw-tools/

2021-09-23 Thread Yixun Lan
commit: 6d1a78025775f4bb4c8eae7a7571f639c8e89337
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Sep 23 08:52:46 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Sep 24 01:20:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d1a7802

app-cdr/dvd+rw-tools: keyword ~riscv

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 app-cdr/dvd+rw-tools/dvd+rw-tools-7.1-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-cdr/dvd+rw-tools/dvd+rw-tools-7.1-r4.ebuild 
b/app-cdr/dvd+rw-tools/dvd+rw-tools-7.1-r4.ebuild
index 90a625b3d8a..7da5c5623c0 100644
--- a/app-cdr/dvd+rw-tools/dvd+rw-tools-7.1-r4.ebuild
+++ b/app-cdr/dvd+rw-tools/dvd+rw-tools-7.1-r4.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://fy.chalmers.se/~appro/linux/DVD+RW/tools/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND="app-cdr/cdrtools"



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

2021-09-23 Thread Yixun Lan
commit: 0c9faaf6c413e0103778249ddd9daeef1eaf90ab
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Sep 23 08:06:58 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Sep 24 01:20:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c9faaf6

dev-libs/libburn: keyword ~riscv

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

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

diff --git a/dev-libs/libburn/libburn-1.5.4.ebuild 
b/dev-libs/libburn/libburn-1.5.4.ebuild
index 55825c6df1b..0d4edbf7a91 100644
--- a/dev-libs/libburn/libburn-1.5.4.ebuild
+++ b/dev-libs/libburn/libburn-1.5.4.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
 IUSE="debug static-libs"
 
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-cdr/cdrdao/

2021-09-23 Thread Yixun Lan
commit: 316b275b9eedb6b86152e44575696da10d4469b6
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Sep 23 08:36:40 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Sep 24 01:20:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=316b275b

app-cdr/cdrdao: keyword ~riscv

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 app-cdr/cdrdao/cdrdao-1.2.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-cdr/cdrdao/cdrdao-1.2.4.ebuild 
b/app-cdr/cdrdao/cdrdao-1.2.4.ebuild
index e083bfe8fa6..f2a3bb1783d 100644
--- a/app-cdr/cdrdao/cdrdao-1.2.4.ebuild
+++ b/app-cdr/cdrdao/cdrdao-1.2.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -16,7 +16,7 @@ fi
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
 IUSE="encode mad vorbis"
 
 COMMON_DEPEND="



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

2021-09-23 Thread Sam James
commit: d92534c71f93ba103aecee274942b7b2a82e5af7
Author: Christophe Lermytte  lermytte  be>
AuthorDate: Thu Sep 23 21:06:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 23:18:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d92534c7

media-gfx/prusaslicer: version bump to 2.3.3

Dropping the gcc-11 patch, which is no longer necessary

Signed-off-by: Christophe Lermytte  lermytte.be>
Closes: https://github.com/gentoo/gentoo/pull/22379
Signed-off-by: Sam James  gentoo.org>

 media-gfx/prusaslicer/Manifest |  1 +
 media-gfx/prusaslicer/prusaslicer-2.3.3.ebuild | 86 ++
 2 files changed, 87 insertions(+)

diff --git a/media-gfx/prusaslicer/Manifest b/media-gfx/prusaslicer/Manifest
index bf50378cef5..737da7c2593 100644
--- a/media-gfx/prusaslicer/Manifest
+++ b/media-gfx/prusaslicer/Manifest
@@ -1 +1,2 @@
 DIST prusaslicer-2.3.1.tar.gz 39583385 BLAKE2B 
0d0fa11d21ec3cc0decb2708a1b1866bbe0ec5719236433ef87807541ada8abc67091f219392a1ae21b4f35c3821dde94bfd6dac72ec6617c40b7fda05cfc082
 SHA512 
2722ee9d5331fe03423ce179cec68196320b48c65bd3c6795b93469268956fb309609462cc62bf3e2b4f30d2fe720d0a28a16c010993737c045d82956493a1e3
+DIST prusaslicer-2.3.3.tar.gz 40659538 BLAKE2B 
1e1a1f7aeb34934bab03410e004a91e5ed76aaf930ff59e5b373b2e229018b6703d8da8ee7ab9085be25c5b3ce4ef39aeb38204336400867fac4a55f52c76bd4
 SHA512 
1f6b97e135202ad9de8f0bb212239ce2497de4205ea32f860b483473fb1f1783451d539a67cd97ef31f512a797b29c1067a1eff4134ea4a29b6218e5757657e2

diff --git a/media-gfx/prusaslicer/prusaslicer-2.3.3.ebuild 
b/media-gfx/prusaslicer/prusaslicer-2.3.3.ebuild
new file mode 100644
index 000..dd741d4ed3c
--- /dev/null
+++ b/media-gfx/prusaslicer/prusaslicer-2.3.3.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+WX_GTK_VER="3.0-gtk3"
+
+inherit xdg cmake desktop wxwidgets
+
+MY_PN="PrusaSlicer"
+
+DESCRIPTION="A mesh slicer to generate G-code for fused-filament-fabrication 
(3D printers)"
+HOMEPAGE="https://www.prusa3d.com/prusaslicer/;
+SRC_URI="https://github.com/prusa3d/${MY_PN}/archive/version_${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="AGPL-3 Boost-1.0 GPL-2 LGPL-3 MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="gui test"
+
+# tests fail to link with USE=-gui, bug #760096
+REQUIRED_USE="test? ( gui )"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-cpp/eigen:3
+   dev-cpp/tbb
+   >=dev-libs/boost-1.73.0:=[nls,threads(+)]
+   dev-libs/cereal
+   dev-libs/expat
+   dev-libs/gmp:=
+   >=dev-libs/miniz-2.1.0-r2
+   dev-libs/mpfr:=
+   >=media-gfx/openvdb-5.0.0
+   media-libs/ilmbase:=
+   media-libs/libpng:0=
+   media-libs/qhull:=
+   sci-libs/libigl
+   sci-libs/nlopt
+   >=sci-mathematics/cgal-5.0:=
+   sys-apps/dbus
+   sys-libs/zlib:=
+   gui? (
+   dev-libs/glib:2
+   media-libs/glew:0=
+   net-misc/curl
+   virtual/glu
+   virtual/opengl
+   x11-libs/gtk+:3
+   x11-libs/wxGTK:${WX_GTK_VER}[X,opengl]
+   )
+"
+DEPEND="${RDEPEND}
+   media-libs/qhull[static-libs]
+"
+
+S="${WORKDIR}/${MY_PN}-version_${PV}"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-2.3.0-miniz-zip-header.patch"
+)
+
+src_configure() {
+   use gui && setup-wxwidgets
+
+   local mycmakeargs=(
+   -DSLIC3R_BUILD_TESTS=$(usex test)
+   -DSLIC3R_FHS=ON
+   -DSLIC3R_GTK=3
+   -DSLIC3R_GUI=$(usex gui)
+   -DSLIC3R_PCH=OFF
+   -DSLIC3R_WX_STABLE=ON
+   )
+
+   cmake_src_configure
+}
+
+src_install() {
+   cmake_src_install
+
+   if use gui; then
+   newicon -s 128 resources/icons/PrusaSlicer_128px.png 
PrusaSlicer.png
+   newicon -s 128 
resources/icons/PrusaSlicer-gcodeviewer_128px.png PrusaSlicer-gcodeviewer.png
+   domenu src/platform/unix/Prusa{Slicer,Gcodeviewer}.desktop
+   fi
+}



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

2021-09-23 Thread Sam James
commit: 22b1b30a0cf08f75915049a7306ffbebd661b1d1
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep 23 23:04:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 23:04:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22b1b30a

media-video/pipewire: add 0.3.37

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

 media-video/pipewire/Manifest   |   1 +
 media-video/pipewire/pipewire-0.3.37.ebuild | 285 
 2 files changed, 286 insertions(+)

diff --git a/media-video/pipewire/Manifest b/media-video/pipewire/Manifest
index 3fdd58008e1..3e2400ff6d7 100644
--- a/media-video/pipewire/Manifest
+++ b/media-video/pipewire/Manifest
@@ -4,3 +4,4 @@ DIST pipewire-0.3.33.tar.gz 1629559 BLAKE2B 
de48956ac87ed6d63a08dd354b1e4abf81b9
 DIST pipewire-0.3.34.tar.gz 1682396 BLAKE2B 
1a3524a833bde6facf637071f905bb0237f3fc53a86d6160083f36c7a42fb7c71c873a0dc9eea04cfb08cbec08807557c2b83efc1ac403adf6a9998d83441338
 SHA512 
cbf8eb410d2cd1923e67ac9ee9eca0e74567bb7e8ea407a536e64b3ec27b5bbb1e7fdd74a5a7cbffbac3f9996d8a08f8c723401fb44cb2920f044a3a2f3a6c18
 DIST pipewire-0.3.35.tar.gz 1704419 BLAKE2B 
5c0debd19b29a9488be26125794f04e57e8b3cd3842654cb935decae18ffefc4137927d969448f60f1c1c2985d54db139fc3dcf07e36e81014021d63490096d8
 SHA512 
08a2e305fe4e9d3c3f4533c163b725dd32d26513e51a9f476bd18d6157ebf67e97e48b8df9595d45c81599f416e6b3f76e90df575dd460a8d26fe951db30e0f6
 DIST pipewire-0.3.36.tar.gz 1708209 BLAKE2B 
20fce0d7f88347fe594491d4fae7b6a8edee67ff7749f1a40b807a5d5094d792e61e3efd05dca2221f781c263e34ff0a50ad3c162231911d4b1d87704df6c775
 SHA512 
f0fc68ea005018b420a4f65a24dc9c85eb6263c24e66852a7ce2b03f966990d62487b388c7d73ff5adfc10c80c439b1200ae876e41d78f91db190036a1799a14
+DIST pipewire-0.3.37.tar.gz 1716320 BLAKE2B 
ce98b28015de69a0c91953a4839d5f86a29cfa19e2058ba0a2476a75a03b782ae67239b418306e4ed7dab81fe7e77928a417b966ff3c72ac552006cea66e3218
 SHA512 
3f4cf1ac66117a56a7a264262e2e238a54060457da6a986bd9227f51cc7e8d1a8fd282aef8462c096819282c5baec22779d2025c2e1918bbfb3d6ff75829aea6

diff --git a/media-video/pipewire/pipewire-0.3.37.ebuild 
b/media-video/pipewire/pipewire-0.3.37.ebuild
new file mode 100644
index 000..7725dfa300f
--- /dev/null
+++ b/media-video/pipewire/pipewire-0.3.37.ebuild
@@ -0,0 +1,285 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit meson-multilib optfeature python-any-r1 systemd udev
+
+if [[ ${PV} ==  ]]; then
+   EGIT_REPO_URI="https://gitlab.freedesktop.org/${PN}/${PN}.git;
+   inherit git-r3
+else
+   
SRC_URI="https://gitlab.freedesktop.org/${PN}/${PN}/-/archive/${PV}/${P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+fi
+
+DESCRIPTION="Multimedia processing graphs"
+HOMEPAGE="https://pipewire.org/;
+
+LICENSE="MIT LGPL-2.1+ GPL-2"
+SLOT="0/0.3"
+IUSE="bluetooth doc echo-cancel extra gstreamer jack-client jack-sdk 
pipewire-alsa systemd test v4l"
+
+# Once replacing system JACK libraries is possible, it's likely that
+# jack-client IUSE will need blocking to avoid users accidentally
+# configuring their systems to send PW sink output to the emulated
+# JACK's sink - doing so is likely to yield no audio, cause a CPU
+# cycles consuming loop (and may even cause GUI crashes)!
+
+REQUIRED_USE="jack-sdk? ( !jack-client )"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   app-doc/xmltoman
+   >=dev-util/meson-0.59
+   virtual/pkgconfig
+   ${PYTHON_DEPS}
+   $(python_gen_any_dep 'dev-python/docutils[${PYTHON_USEDEP}]')
+   doc? (
+   app-doc/doxygen
+   media-gfx/graphviz
+   )
+"
+RDEPEND="
+   acct-group/audio
+   media-libs/alsa-lib
+   sys-apps/dbus[${MULTILIB_USEDEP}]
+   sys-libs/ncurses:=[unicode(+)]
+   virtual/libintl[${MULTILIB_USEDEP}]
+   virtual/libudev[${MULTILIB_USEDEP}]
+   bluetooth? (
+   media-libs/fdk-aac
+   media-libs/libldac
+   media-libs/libfreeaptx
+   media-libs/sbc
+   >=net-wireless/bluez-4.101:=
+   )
+   echo-cancel? ( media-libs/webrtc-audio-processing:0 )
+   extra? (
+   >=media-libs/libsndfile-1.0.20
+   )
+   gstreamer? (
+   >=dev-libs/glib-2.32.0:2
+   >=media-libs/gstreamer-1.10.0:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   jack-client? ( >=media-sound/jack2-1.9.10:2[dbus] )
+   jack-sdk? (
+   !media-sound/jack-audio-connection-kit
+   !media-sound/jack2
+   )
+   pipewire-alsa? (
+   >=media-libs/alsa-lib-1.1.7[${MULTILIB_USEDEP}]
+   !media-plugins/alsa-plugins[${MULTILIB_USEDEP},pulseaudio]
+   )
+   !pipewire-alsa? ( 
media-plugins/alsa-plugins[${MULTILIB_USEDEP},pulseaudio] )
+   systemd? ( sys-apps/systemd )
+   v4l? ( media-libs/libv4l )

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

2021-09-23 Thread Sam James
commit: ff521b5b8ddc11fe0fe516cf3764f1b93592ad2f
Author: Niklāvs Koļesņikovs <89q1r14hd  relay  firefox  com>
AuthorDate: Thu Sep 23 22:10:26 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 23:02:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff521b5b

media-video/pipewire: instruct users to disable oFono

Upstream has changed the logic to no longer automatically use oFono
if it's found running. This is because other Linux distributions had
it running by default but not properly configured, which would also
break PipeWire's Bluetooth support. Unfortunately, this means that now
a running oFono is at risk of conflicting with the native backend,
which is the new default behavior.

Since most use cases are expected to work with the native backend, the
easiest solution is to advise users to disable oFono service, and that
is what this PR does.

Thanks-to: Jannik Glückert  gmail.com> (systemd inst.)
Thanks-to: Sam James  gentoo.org> (OpenRC instructions)
Signed-off-by: Niklāvs Koļesņikovs <89q1r14hd  relay.firefox.com>
Closes: https://github.com/gentoo/gentoo/pull/22380
Signed-off-by: Sam James  gentoo.org>

 media-video/pipewire/pipewire-.ebuild | 14 +-
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/media-video/pipewire/pipewire-.ebuild 
b/media-video/pipewire/pipewire-.ebuild
index c601ceab253..7725dfa300f 100644
--- a/media-video/pipewire/pipewire-.ebuild
+++ b/media-video/pipewire/pipewire-.ebuild
@@ -5,7 +5,7 @@ EAPI="7"
 
 PYTHON_COMPAT=( python3_{8..10} )
 
-inherit meson-multilib optfeature python-any-r1 udev
+inherit meson-multilib optfeature python-any-r1 systemd udev
 
 if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://gitlab.freedesktop.org/${PN}/${PN}.git;
@@ -273,9 +273,13 @@ pkg_postinst() {
optfeature_header "The following can be installed for optional runtime 
features:"
optfeature "restricted realtime capabilities via D-Bus" sys-auth/rtkit
 
-   # Once hsphfpd lands in tree, both it and ofono will need to be checked 
for presence here!
-   if use bluetooth; then
-   optfeature "better BT headset support (daemon startup 
required)" net-misc/ofono
-   #optfeature "an oFono alternative (not packaged)" 
foo-bar/hsphfpd
+   if has_version 'net-misc/ofono' ; then
+   ewarn "Native backend has become default. Please disable oFono 
via:"
+   if systemd_is_booted ; then
+   ewarn "systemctl disable --now ofono"
+   else
+   ewarn "rc-update delete ofono"
+   fi
+   ewarn
fi
 }



[gentoo-commits] repo/gentoo:master commit in: app-portage/recover-broken-vdb/

2021-09-23 Thread Sam James
commit: cf39b457621c918c9d38108cbd5082c3744c01d9
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep 23 22:59:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 22:59:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf39b457

app-portage/recover-broken-vdb: keyword 0.0.3 for ~amd64

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

 app-portage/recover-broken-vdb/recover-broken-vdb-0.0.3.ebuild | 2 +-
 app-portage/recover-broken-vdb/recover-broken-vdb-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-portage/recover-broken-vdb/recover-broken-vdb-0.0.3.ebuild 
b/app-portage/recover-broken-vdb/recover-broken-vdb-0.0.3.ebuild
index b70e84d1270..75b07e4fa59 100644
--- a/app-portage/recover-broken-vdb/recover-broken-vdb-0.0.3.ebuild
+++ b/app-portage/recover-broken-vdb/recover-broken-vdb-0.0.3.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://github.com/thesamesam/recover-broken-vdb.git;
 else

SRC_URI="https://github.com/thesamesam/recover-broken-vdb/archive/refs/tags/${PV}.tar.gz
 -> ${P}.tar.gz"
-   #KEYWORDS="~amd64"
+   KEYWORDS="~amd64"
 fi
 
 LICENSE="GPL-2"

diff --git a/app-portage/recover-broken-vdb/recover-broken-vdb-.ebuild 
b/app-portage/recover-broken-vdb/recover-broken-vdb-.ebuild
index b70e84d1270..75b07e4fa59 100644
--- a/app-portage/recover-broken-vdb/recover-broken-vdb-.ebuild
+++ b/app-portage/recover-broken-vdb/recover-broken-vdb-.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://github.com/thesamesam/recover-broken-vdb.git;
 else

SRC_URI="https://github.com/thesamesam/recover-broken-vdb/archive/refs/tags/${PV}.tar.gz
 -> ${P}.tar.gz"
-   #KEYWORDS="~amd64"
+   KEYWORDS="~amd64"
 fi
 
 LICENSE="GPL-2"



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

2021-09-23 Thread Sam James
commit: c4030973840c854daaba025b3dc761b9768c9da2
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep 23 22:57:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 22:57:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4030973

www-client/chromium: Stabilize 94.0.4606.54 amd64, #814374

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

 www-client/chromium/chromium-94.0.4606.54.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/chromium/chromium-94.0.4606.54.ebuild 
b/www-client/chromium/chromium-94.0.4606.54.ebuild
index 522541bb46c..01f33c7c290 100644
--- a/www-client/chromium/chromium-94.0.4606.54.ebuild
+++ b/www-client/chromium/chromium-94.0.4606.54.ebuild
@@ -20,7 +20,7 @@ 
SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 IUSE="component-build cups cpu_flags_arm_neon debug +hangouts headless 
+js-type-check kerberos official pic +proprietary-codecs pulseaudio screencast 
selinux +suid +system-ffmpeg +system-harfbuzz +system-icu vaapi wayland 
widevine"
 REQUIRED_USE="
component-build? ( !suid )



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

2021-09-23 Thread Sam James
commit: 003b518b530389fc5e357d23579f1d473fd14de0
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep 23 22:54:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 22:54:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=003b518b

media-libs/harfbuzz: Stabilize 2.9.1 arm64, #814377

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

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

diff --git a/media-libs/harfbuzz/harfbuzz-2.9.1.ebuild 
b/media-libs/harfbuzz/harfbuzz-2.9.1.ebuild
index 5ee9c24489f..23282c99e52 100644
--- a/media-libs/harfbuzz/harfbuzz-2.9.1.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-2.9.1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} =  ]] ; then
inherit git-r3
 else
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="Old-MIT ISC icu"



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

2021-09-23 Thread Sam James
commit: 61915115d502f83f3079c92d24963d807316d10b
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep 23 22:46:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 22:47:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61915115

dev-db/postgresql: update Manifest for 14_rc1

Fixes: 0c589d89d5916b41f547eb8889935d4a448ff8fe
Signed-off-by: Sam James  gentoo.org>

 dev-db/postgresql/Manifest | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-db/postgresql/Manifest b/dev-db/postgresql/Manifest
index be738d14575..5106c438009 100644
--- a/dev-db/postgresql/Manifest
+++ b/dev-db/postgresql/Manifest
@@ -7,5 +7,6 @@ DIST postgresql-12.8.tar.bz2 20849478 BLAKE2B 
20ad970f03665b9c1f24c646096476398c
 DIST postgresql-13.3.tar.bz2 21119109 BLAKE2B 
395a3dc5cde8f579a3c35ea70346bdc630a8e8f2f86f310a5e4f4a1f6177dab7e78ba6e41c384ba650eb86813fcd428fea8aa22481f9a494cd80aa94bd7b52dd
 SHA512 
1560cc766982a9ea9d33c77835b20e33e11b03acb77fc75d905c565883935a7dbcd27b9b2ab6a0ecdb815261f7c259865cb3dac85c10a3181c3fcaeb4d28bf60
 DIST postgresql-13.4.tar.bz2 21157443 BLAKE2B 
e16684ef59f213d23366e8d18c4bf6f81d6e2eac8e940449fee1ef6b150e7ff7d3dce8831b318d1fd3f72d642110576ebc7bd981185a39f19fea6357c58be170
 SHA512 
f1faf676ffdcee3e7f2c3b78f4badf44770d6be58090036d119d8fb0688e2b9f9159dd44fe850c179b8e23f256942c05edb8fcc385f0e852d16b37eace785b5a
 DIST postgresql-14beta3.tar.bz2 22584314 BLAKE2B 
f89e5395a2a1f704baea1e864ee1576b6646dabf30d90e5da2c082f6a1d977c9dd7ac2683690e1071f84e062be19b4906895a165b0a4a6c57f57367a21821adb
 SHA512 
a84c81095945d71f9720a2d4e3f0a93887ef06b6d6b2b5bf5c90a4cee9df7990ed081cd90de22ea660bab2e79eb05dfe5da849d175b75037874f069dc28a9cfd
+DIST postgresql-14rc1.tar.bz2 21844937 BLAKE2B 
a819d1cd9abb698120d86a4a1e5c74fe3180ee453561ad2f8bd23602294f4ab040c63ca9716f53d82e7c7424aec4716b39abc44f67877c68ac684375dc504d95
 SHA512 
9a68fef03efdb0152adf9a0daf58a49f69b8373d0f3378a8ce2632743e4078da9816c039ed18cd102f2ac759bae381049d37aa70dbba7ab5790fbe5a9076a82f
 DIST postgresql-9.6.22.tar.bz2 19003741 BLAKE2B 
adff6e81ec4b289bd5c51fa44adb38d7cc3936e2e5545ff23fccb0f3f1fe1c881ed70f9a0a5d366319f876eb01a9f675b66c9374b8b41615220f45a70450ad6d
 SHA512 
371f85f2d02a8a3b888396440149e9b432f91e106a7feb8a163b275a0586843683124281a0965abf3c1215cb68e2002976913f88c75e35e52ac5f78d4145fd7b
 DIST postgresql-9.6.23.tar.bz2 19013235 BLAKE2B 
a7bd7a0678c2c58efd71f320f838ee66fa3d75fb37d95e1c070e59ece69d4b66850e676054807848dbccedca7e9a4cc0b244c3cf0f0ff039b88c4f9b221e8819
 SHA512 
205b47cf1c22519092f840a9b3bf6bdf95f455e5ba02a7e1bc1495f85bb25f8ccfe9f60c83dc2801f1366b88fc35e64c23eb9bdc89a4bb5d233243af4606d59c



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

2021-09-23 Thread Marek Szuba
commit: 15bbb20d50c88d3c3e3940c0fc35b5fd3e2fa30f
Author: Marek Szuba  gentoo  org>
AuthorDate: Thu Sep 23 22:40:39 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Thu Sep 23 22:47:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15bbb20d

app-arch/pigz: keyword 2.6 for ~riscv

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

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

diff --git a/app-arch/pigz/pigz-2.6.ebuild b/app-arch/pigz/pigz-2.6.ebuild
index f57fbf711a4..73d2eb703ca 100644
--- a/app-arch/pigz/pigz-2.6.ebuild
+++ b/app-arch/pigz/pigz-2.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.zlib.net/pigz/${P}.tar.gz;
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~ppc-macos ~sparc64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~ppc-macos ~sparc64-solaris"
 IUSE="static symlink test"
 RESTRICT="!test? ( test )"
 



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

2021-09-23 Thread Marek Szuba
commit: 01f711c1e4b831f059f30aea07bc75ae3b3fe94e
Author: Marek Szuba  gentoo  org>
AuthorDate: Thu Sep 23 22:38:19 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Thu Sep 23 22:47:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01f711c1

app-arch/ncompress: keyword 5.0 for ~riscv

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

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

diff --git a/app-arch/ncompress/ncompress-5.0.ebuild 
b/app-arch/ncompress/ncompress-5.0.ebuild
index 096db9bc9a6..88f47ec0935 100644
--- a/app-arch/ncompress/ncompress-5.0.ebuild
+++ b/app-arch/ncompress/ncompress-5.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vapier/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
 IUSE=""
 
 src_prepare() {



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

2021-09-23 Thread Marek Szuba
commit: 30fc9b8d57cf9207da2ec743f092fcd66827764b
Author: Marek Szuba  gentoo  org>
AuthorDate: Thu Sep 23 22:46:34 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Thu Sep 23 22:47:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30fc9b8d

app-arch/unshield: keyword 1.4.3 for ~riscv

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

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

diff --git a/app-arch/unshield/unshield-1.4.3.ebuild 
b/app-arch/unshield/unshield-1.4.3.ebuild
index 7cd9b3ff46e..ef6402a9381 100644
--- a/app-arch/unshield/unshield-1.4.3.ebuild
+++ b/app-arch/unshield/unshield-1.4.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/twogood/unshield/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~hppa ~ppc x86"
+KEYWORDS="amd64 ~arm64 ~hppa ~ppc ~riscv x86"
 
 # OpenSSL is detected at build time, and used to determine
 # whether or not a hand-rolled md5 implementation is used. The build



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

2021-09-23 Thread Marek Szuba
commit: 85ddb908a34697ba32554832eada272846ffda87
Author: Marek Szuba  gentoo  org>
AuthorDate: Thu Sep 23 22:44:06 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Thu Sep 23 22:47:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85ddb908

app-arch/unrar: keyword 6.0.7 for ~riscv

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

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

diff --git a/app-arch/unrar/unrar-6.0.7.ebuild 
b/app-arch/unrar/unrar-6.0.7.ebuild
index adc92be38a0..4aaef633085 100644
--- a/app-arch/unrar/unrar-6.0.7.ebuild
+++ b/app-arch/unrar/unrar-6.0.7.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://www.rarlab.com/rar/${MY_PN}-${PV}.tar.gz -> 
${P}.tar.gz"
 LICENSE="unRAR"
 # subslot = soname version
 SLOT="0/6"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x86-solaris"
 
 RDEPEND="!<=app-arch/unrar-gpl-0.0.1_p20080417"
 



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

2021-09-23 Thread Marek Szuba
commit: 9d2c1845904b345ac2b386cb37e6e06abfc8a818
Author: Marek Szuba  gentoo  org>
AuthorDate: Thu Sep 23 22:30:23 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Thu Sep 23 22:47:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d2c1845

app-admin/checksec: keyword 2.4.0 for ~riscv

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

 app-admin/checksec/checksec-2.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/checksec/checksec-2.4.0.ebuild 
b/app-admin/checksec/checksec-2.4.0.ebuild
index 353e4abb9e2..d0139d89d00 100644
--- a/app-admin/checksec/checksec-2.4.0.ebuild
+++ b/app-admin/checksec/checksec-2.4.0.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/slimm609/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86"
 IUSE=""
 
 S="${WORKDIR}"/${MY_PN}-${PV}



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

2021-09-23 Thread Marek Szuba
commit: d79ffcedaa6def6e1107707f520e308cbce0e3fc
Author: Marek Szuba  gentoo  org>
AuthorDate: Thu Sep 23 22:35:53 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Thu Sep 23 22:47:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d79ffced

app-arch/cpio: keyword 2.13 for ~riscv

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

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

diff --git a/app-arch/cpio/cpio-2.13.ebuild b/app-arch/cpio/cpio-2.13.ebuild
index 2e958085fd5..89a3336d5af 100644
--- a/app-arch/cpio/cpio-2.13.ebuild
+++ b/app-arch/cpio/cpio-2.13.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://gnu/cpio/${P}.tar.bz2"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls"
 
 PATCHES=(



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

2021-09-23 Thread Sam James
commit: 82a93b9dea951037fb1a86818c0a2524132791bd
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep 23 22:45:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 22:45:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82a93b9d

media-libs/libopenaptx: Stabilize 0.2.0 ppc64, #814521

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

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

diff --git a/media-libs/libopenaptx/libopenaptx-0.2.0.ebuild 
b/media-libs/libopenaptx/libopenaptx-0.2.0.ebuild
index 2a92d2f7186..4a08c59202c 100644
--- a/media-libs/libopenaptx/libopenaptx-0.2.0.ebuild
+++ b/media-libs/libopenaptx/libopenaptx-0.2.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="https://github.com/pali/${PN};
 else
SRC_URI="https://github.com/pali/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 arm arm64 ppc ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv x86"
 fi
 
 LICENSE="LGPL-2.1+"



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

2021-09-23 Thread Sam James
commit: a279d98f8fafa9cbc4770c234425905c82664aef
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep 23 22:45:02 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 22:45:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a279d98f

media-libs/libldac: Stabilize 2.0.2.3 ppc64, #814521

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

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

diff --git a/media-libs/libldac/libldac-2.0.2.3.ebuild 
b/media-libs/libldac/libldac-2.0.2.3.ebuild
index 77f62cf5a7c..611a50404c6 100644
--- a/media-libs/libldac/libldac-2.0.2.3.ebuild
+++ b/media-libs/libldac/libldac-2.0.2.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/EHfive/ldacBT/releases/download/v${PV}/ldacBT-${PV}.
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux"
 
 S="${WORKDIR}/ldacBT"
 



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

2021-09-23 Thread Sam James
commit: e8a2c2f0585373d68fc206b17e3632adf2a7c585
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep 23 22:45:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 22:45:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8a2c2f0

media-video/pipewire: Stabilize 0.3.30-r2 ppc64, #814521

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

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

diff --git a/media-video/pipewire/pipewire-0.3.30-r2.ebuild 
b/media-video/pipewire/pipewire-0.3.30-r2.ebuild
index 07b96608c2c..c27f6c9196f 100644
--- a/media-video/pipewire/pipewire-0.3.30-r2.ebuild
+++ b/media-video/pipewire/pipewire-0.3.30-r2.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
 else

SRC_URI="https://gitlab.freedesktop.org/${PN}/${PN}/-/archive/${PV}/${P}.tar.gz;
-   KEYWORDS="amd64 arm arm64 ppc ~ppc64 x86"
+   KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
 fi
 
 DESCRIPTION="Multimedia processing graphs"



[gentoo-commits] repo/gentoo:master commit in: profiles/arch/powerpc/ppc64/64le/, profiles/arch/powerpc/ppc64/

2021-09-23 Thread Sam James
commit: 90b5419279565a99edb8fd8746c761914aae5b95
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep 23 22:43:50 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 22:44:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90b54192

profiles/arch/powerpc/ppc64: mask media-video/pipewire[bluetooth] on BE

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

 profiles/arch/powerpc/ppc64/64le/package.use.mask | 4 
 profiles/arch/powerpc/ppc64/package.use.mask  | 4 
 2 files changed, 8 insertions(+)

diff --git a/profiles/arch/powerpc/ppc64/64le/package.use.mask 
b/profiles/arch/powerpc/ppc64/64le/package.use.mask
index 6d9835c56e9..eadb9e0c415 100644
--- a/profiles/arch/powerpc/ppc64/64le/package.use.mask
+++ b/profiles/arch/powerpc/ppc64/64le/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Sam James  (2021-09-23)
+# Needs media-libs/libldac which builds on ppc64le, but not be
+media-video/pipewire -bluetooth
+
 # Georgy Yakovlev  (2021-06-02)
 # altivec code is big-endian only, #773100
 media-libs/libdvbcsa cpu_flags_ppc_altivec

diff --git a/profiles/arch/powerpc/ppc64/package.use.mask 
b/profiles/arch/powerpc/ppc64/package.use.mask
index 934597f132d..8e183aa4544 100644
--- a/profiles/arch/powerpc/ppc64/package.use.mask
+++ b/profiles/arch/powerpc/ppc64/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Sam James  (2021-09-23)
+# Needs media-libs/libldac which builds on ppc64le, but not be
+media-video/pipewire -bluetooth
+
 # Marek Szuba  (2021-08-11)
 # dev-ruby/tty-editor not keyworded here yet (Bug #807685)
 app-text/htmltidy test



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

2021-09-23 Thread Jory Pratt
commit: 98ef5d1abd9ad842d686e976738f0957354b815a
Author: Jory Pratt  gentoo  org>
AuthorDate: Thu Sep 23 22:19:22 2021 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Thu Sep 23 22:19:22 2021 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=98ef5d1a

sys-devel/gcc: revbump for x86/ppc for stage regeneration

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

 sys-devel/gcc/gcc-10.3.0-r3.ebuild | 31 +++
 1 file changed, 31 insertions(+)

diff --git a/sys-devel/gcc/gcc-10.3.0-r3.ebuild 
b/sys-devel/gcc/gcc-10.3.0-r3.ebuild
new file mode 100644
index 000..60b7cbc
--- /dev/null
+++ b/sys-devel/gcc/gcc-10.3.0-r3.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PATCH_VER="3"
+
+inherit toolchain
+
+KEYWORDS="ppc x86"
+
+RDEPEND=""
+BDEPEND="${CATEGORY}/binutils"
+
+src_prepare() {
+   toolchain_src_prepare
+
+   if use elibc_musl || [[ ${CATEGORY} = cross-*-musl* ]]; then
+   eapply "${FILESDIR}"/10.1.0/cpu_indicator.patch
+   eapply "${FILESDIR}"/7.1.0/posix_memalign.patch
+   case $(tc-arch) in
+   amd64|arm64|ppc64) eapply 
"${FILESDIR}"/9.3.0/gcc-pure64.patch ;;
+   esac
+   fi
+
+   if [[ ${CATEGORY} != cross-* ]] ; then
+   eapply "${FILESDIR}"/gcc-6.1-musl-libssp.patch
+   fi
+
+   eapply_user
+}



[gentoo-commits] proj/gamerlay:master commit in: games-engines/openxcom/

2021-09-23 Thread Azamat H. Hackimov
commit: fef503515d33949c7b0ae6a63de8fba20eef86f0
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Thu Sep 23 22:18:15 2021 +
Commit: Azamat H. Hackimov  gentoo  ru>
CommitDate: Thu Sep 23 22:18:15 2021 +
URL:https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=fef50351

games-engines/openxcom: update version

Fixes running with newest dev-cpp/yaml-cpp

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Azamat H. Hackimov  gmail.com>

 ...{openxcom-1.0.0_p20210611.ebuild => openxcom-1.0.0_p20210920.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-engines/openxcom/openxcom-1.0.0_p20210611.ebuild 
b/games-engines/openxcom/openxcom-1.0.0_p20210920.ebuild
similarity index 97%
rename from games-engines/openxcom/openxcom-1.0.0_p20210611.ebuild
rename to games-engines/openxcom/openxcom-1.0.0_p20210920.ebuild
index b4d2856..d7740e1 100644
--- a/games-engines/openxcom/openxcom-1.0.0_p20210611.ebuild
+++ b/games-engines/openxcom/openxcom-1.0.0_p20210920.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://openxcom.org/;
 # For translation files
 
#SRC_URI="http://openxcom.org/git_builds/openxcom_git_master_2015_09_25_2120.zip;
 EGIT_REPO_URI="https://github.com/SupSuper/OpenXcom.git;
-EGIT_COMMIT=8d45159bf3e27d6aef62aff6035d9f6a59caf00b
+EGIT_COMMIT=6ef797008e50dc548bb5b0b33d0b858a12792bb5
 
 LICENSE="GPL-3"
 SLOT="0"



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

2021-09-23 Thread Sam James
commit: 81f1376af29e281a39be31492e51dc0289abac7c
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep 23 22:12:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 22:12:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81f1376a

sys-libs/binutils-libs: Stabilize 2.37_p1 arm, #813762

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

 sys-libs/binutils-libs/binutils-libs-2.37_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/binutils-libs/binutils-libs-2.37_p1.ebuild 
b/sys-libs/binutils-libs/binutils-libs-2.37_p1.ebuild
index fd1a00ddee5..e3c189da47c 100644
--- a/sys-libs/binutils-libs/binutils-libs-2.37_p1.ebuild
+++ b/sys-libs/binutils-libs/binutils-libs-2.37_p1.ebuild
@@ -22,7 +22,7 @@ SRC_URI="mirror://gnu/binutils/${MY_P}.tar.xz
 LICENSE="|| ( GPL-3 LGPL-3 )"
 SLOT="0/${PV%_p?}"
 IUSE="64-bit-bfd cet multitarget nls static-libs"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 
 BDEPEND="nls? ( sys-devel/gettext )"
 DEPEND="sys-libs/zlib[${MULTILIB_USEDEP}]"



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

2021-09-23 Thread Sam James
commit: 01c348c58e062cb89d455a97b519767fc779ef02
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep 23 22:11:52 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 22:11:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01c348c5

sys-devel/binutils: Stabilize 2.37_p1 arm, #813762

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

 sys-devel/binutils/binutils-2.37_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/binutils/binutils-2.37_p1.ebuild 
b/sys-devel/binutils/binutils-2.37_p1.ebuild
index 4e4c5550132..cf65e20b85b 100644
--- a/sys-devel/binutils/binutils-2.37_p1.ebuild
+++ b/sys-devel/binutils/binutils-2.37_p1.ebuild
@@ -33,7 +33,7 @@ else

https://dev.gentoo.org/~${PATCH_DEV}/distfiles/binutils-${PATCH_BINUTILS_VER}-patches-${PATCH_VER}.tar.xz;
SLOT=$(ver_cut 1-2)
# live ebuild
-   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
 
 #



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

2021-09-23 Thread James Le Cuirot
commit: c182995cadf60ef0a42c06f742480fe5270a0f6e
Author: James Le Cuirot  gentoo  org>
AuthorDate: Thu Sep 23 22:08:06 2021 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Thu Sep 23 22:08:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c182995c

media-libs/libsdl2: Drop old 2.0.14-r2

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

 media-libs/libsdl2/libsdl2-2.0.14-r2.ebuild | 211 
 1 file changed, 211 deletions(-)

diff --git a/media-libs/libsdl2/libsdl2-2.0.14-r2.ebuild 
b/media-libs/libsdl2/libsdl2-2.0.14-r2.ebuild
deleted file mode 100644
index ff5ea17121f..000
--- a/media-libs/libsdl2/libsdl2-2.0.14-r2.ebuild
+++ /dev/null
@@ -1,211 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools flag-o-matic toolchain-funcs multilib-minimal
-
-MY_P="SDL2-${PV}"
-DESCRIPTION="Simple Direct Media Layer"
-HOMEPAGE="https://www.libsdl.org/;
-SRC_URI="https://www.libsdl.org/release/${MY_P}.tar.gz;
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
-
-IUSE="alsa aqua cpu_flags_ppc_altivec cpu_flags_x86_3dnow cpu_flags_x86_mmx 
cpu_flags_x86_sse cpu_flags_x86_sse2 custom-cflags dbus fcitx4 gles1 gles2 
haptic ibus jack +joystick kms libsamplerate nas opengl oss pulseaudio sndio 
+sound static-libs +threads udev +video video_cards_vc4 vulkan wayland X 
xinerama xscreensaver"
-REQUIRED_USE="
-   alsa? ( sound )
-   fcitx4? ( dbus )
-   gles1? ( video )
-   gles2? ( video )
-   ibus? ( dbus )
-   jack? ( sound )
-   nas? ( sound )
-   opengl? ( video )
-   pulseaudio? ( sound )
-   sndio? ( sound )
-   vulkan? ( video )
-   wayland? ( gles2 )
-   xinerama? ( X )
-   xscreensaver? ( X )"
-
-CDEPEND="
-   alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )
-   dbus? ( >=sys-apps/dbus-1.6.18-r1[${MULTILIB_USEDEP}] )
-   fcitx4? ( app-i18n/fcitx:4 )
-   gles1? ( media-libs/mesa[${MULTILIB_USEDEP},gles1] )
-   gles2? ( >=media-libs/mesa-9.1.6[${MULTILIB_USEDEP},gles2] )
-   ibus? ( app-i18n/ibus )
-   jack? ( virtual/jack[${MULTILIB_USEDEP}] )
-   kms? (
-   >=x11-libs/libdrm-2.4.82[${MULTILIB_USEDEP}]
-   >=media-libs/mesa-9.0.0[${MULTILIB_USEDEP},gbm]
-   )
-   libsamplerate? ( media-libs/libsamplerate[${MULTILIB_USEDEP}] )
-   nas? (
-   >=media-libs/nas-1.9.4[${MULTILIB_USEDEP}]
-   >=x11-libs/libXt-1.1.4[${MULTILIB_USEDEP}]
-   )
-   opengl? (
-   >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]
-   >=virtual/glu-9.0-r1[${MULTILIB_USEDEP}]
-   )
-   pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] )
-   sndio? ( media-sound/sndio:=[${MULTILIB_USEDEP}] )
-   udev? ( >=virtual/libudev-208:=[${MULTILIB_USEDEP}] )
-   wayland? (
-   >=dev-libs/wayland-1.0.6[${MULTILIB_USEDEP}]
-   >=media-libs/mesa-9.1.6[${MULTILIB_USEDEP},egl,gles2,wayland]
-   >=x11-libs/libxkbcommon-0.2.0[${MULTILIB_USEDEP}]
-   )
-   X? (
-   >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
-   >=x11-libs/libXcursor-1.1.14[${MULTILIB_USEDEP}]
-   >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}]
-   >=x11-libs/libXi-1.7.2[${MULTILIB_USEDEP}]
-   >=x11-libs/libXrandr-1.4.2[${MULTILIB_USEDEP}]
-   >=x11-libs/libXxf86vm-1.1.3[${MULTILIB_USEDEP}]
-   xinerama? ( >=x11-libs/libXinerama-1.1.3[${MULTILIB_USEDEP}] )
-   xscreensaver? ( 
>=x11-libs/libXScrnSaver-1.2.2-r1[${MULTILIB_USEDEP}] )
-   )"
-RDEPEND="${CDEPEND}
-   vulkan? ( media-libs/vulkan-loader )"
-DEPEND="${CDEPEND}
-   ibus? ( dev-libs/glib:2[${MULTILIB_USEDEP}] )
-   vulkan? ( dev-util/vulkan-headers )
-   X? ( x11-base/xorg-proto )
-"
-BDEPEND="
-   virtual/pkgconfig
-"
-
-MULTILIB_WRAPPED_HEADERS=(
-   /usr/include/SDL2/SDL_config.h
-   /usr/include/SDL2/SDL_platform.h
-   /usr/include/SDL2/begin_code.h
-   /usr/include/SDL2/close_code.h
-)
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-2.0.14-static-libs.patch
-   "${FILESDIR}"/${PN}-2.0.14-vulkan.patch
-)
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   default
-
-   # Unbundle some headers.
-   rm -r src/video/khronos || die
-   ln -s "${ESYSROOT}/usr/include" src/video/khronos || die
-
-   # SDL seems to customize SDL_config.h.in to remove macros like
-   # PACKAGE_NAME. Add AT_NOEAUTOHEADER="yes" to prevent those macros from
-   # being reintroduced.
-   # https://bugs.gentoo.org/764959
-   AT_NOEAUTOHEADER="yes" AT_M4DIR="/usr/share/aclocal acinclude" \
-   eautoreconf
-}
-
-multilib_src_configure() {
-   use custom-cflags || strip-flags
-
-   if use ibus; then
- 

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

2021-09-23 Thread James Le Cuirot
commit: 3a46c7be2c13af94a54ec6018b5995732b0e779a
Author: James Le Cuirot  gentoo  org>
AuthorDate: Thu Sep 23 22:07:00 2021 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Thu Sep 23 22:07:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a46c7be

media-libs/libsdl2: Require USE=joystick when USE=haptic

Otherwise you get an undefined reference.

Bug: https://bugs.gentoo.org/814332
Signed-off-by: James Le Cuirot  gentoo.org>

 media-libs/libsdl2/libsdl2-2.0.16.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-libs/libsdl2/libsdl2-2.0.16.ebuild 
b/media-libs/libsdl2/libsdl2-2.0.16.ebuild
index 1b9c8bdf53b..22f5c70e7e0 100644
--- a/media-libs/libsdl2/libsdl2-2.0.16.ebuild
+++ b/media-libs/libsdl2/libsdl2-2.0.16.ebuild
@@ -20,6 +20,7 @@ REQUIRED_USE="
fcitx4? ( dbus )
gles1? ( video )
gles2? ( video )
+   haptic? ( joystick )
ibus? ( dbus )
jack? ( sound )
nas? ( sound )



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

2021-09-23 Thread William Hubbs
commit: 13e742b871c4a90a7545545cd0a04cc838b938ed
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Sep 23 21:09:39 2021 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Sep 23 21:10:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13e742b8

go-modules.eclass: allow the module cache to be read/write

This allows the modules to be cleaned up on prefix systems.

More information is available here:
https://github.com/golang/go/issues/27161

I would like to thank Raffaele Spinelli  gmail.com> for the
original patch this was based on.

Closes: https://bugs.gentoo.org/812977
Closes: https://github.com/gentoo/gentoo/pull/22365

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

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

diff --git a/eclass/go-module.eclass b/eclass/go-module.eclass
index d1e81babf1f..3ad8542a28a 100644
--- a/eclass/go-module.eclass
+++ b/eclass/go-module.eclass
@@ -75,7 +75,7 @@ export GOCACHE="${T}/go-build"
 # The following go flags should be used for all builds.
 # -v prints the names of packages as they are compiled
 # -x prints commands as they are executed
-export GOFLAGS="-v -x"
+export GOFLAGS="-v -x -modcacherw"
 
 # Do not complain about CFLAGS etc since go projects do not use them.
 QA_FLAGS_IGNORED='.*'



[gentoo-commits] repo/gentoo:master commit in: app-portage/recover-broken-vdb/

2021-09-23 Thread Sam James
commit: 2d588765c1bde2c31ab8c1de9a5e036101dcbce6
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep 23 20:56:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:56:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d588765

app-portage/recover-broken-vdb: add 0.0.3

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

 app-portage/recover-broken-vdb/Manifest|  1 +
 .../recover-broken-vdb-0.0.3.ebuild| 29 ++
 2 files changed, 30 insertions(+)

diff --git a/app-portage/recover-broken-vdb/Manifest 
b/app-portage/recover-broken-vdb/Manifest
index e20e23d579f..bbbf998ba70 100644
--- a/app-portage/recover-broken-vdb/Manifest
+++ b/app-portage/recover-broken-vdb/Manifest
@@ -1 +1,2 @@
 DIST recover-broken-vdb-0.0.2.tar.gz 12038 BLAKE2B 
ad1c780e6a9499d734839c099c123c525704b00f421d1470801aa791bc691b43b2119c4138bee85f579f3524cf4f8f4544651dab222b86116fb9f1a80c4f319d
 SHA512 
c9c404fbbf8ffa8993a9596a62bb35b88e0f814b5e82c0771c514dcb662a438a1282f23268e4cffd22863246f3a63f3d116630378c0ab10a19966ec0d7b6e8a6
+DIST recover-broken-vdb-0.0.3.tar.gz 12492 BLAKE2B 
aa3fb529cac6d61ed7f41364c784c3879fe1993ace84ad48e648db4bb970c348a55714091a0c467c75234f8e0eecf448fbd20e198c0998240e5f89d0a285dca1
 SHA512 
e102406b1921527e2564f28d3fcc28e7507f7148b849f35ba0157fc299135ecfc304a3c60ed06900daea95382645414268eb008dcc405112fdf8d74fc1a64d41

diff --git a/app-portage/recover-broken-vdb/recover-broken-vdb-0.0.3.ebuild 
b/app-portage/recover-broken-vdb/recover-broken-vdb-0.0.3.ebuild
new file mode 100644
index 000..b70e84d1270
--- /dev/null
+++ b/app-portage/recover-broken-vdb/recover-broken-vdb-0.0.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_SINGLE_IMPL=1
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Check Portage's VDB for internal inconsistency on ELF metadata"
+HOMEPAGE="https://github.com/thesamesam/recover-broken-vdb;
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/thesamesam/recover-broken-vdb.git;
+else
+   
SRC_URI="https://github.com/thesamesam/recover-broken-vdb/archive/refs/tags/${PV}.tar.gz
 -> ${P}.tar.gz"
+   #KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+# Require latest version of pax-utils to avoid users breaking their systems 
again
+# The tool itself works fine with older versions
+RDEPEND=">=app-misc/pax-utils-1.3.3
+   sys-apps/file
+   $(python_gen_cond_dep 'sys-apps/portage[${PYTHON_USEDEP}]')"



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

2021-09-23 Thread Aaron W. Swenson
commit: 0c589d89d5916b41f547eb8889935d4a448ff8fe
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Thu Sep 23 20:48:37 2021 +
Commit: Aaron W. Swenson  gentoo  org>
CommitDate: Thu Sep 23 20:48:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c589d89

dev-db/postgresql: Bump to 14_rc1

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

 .../files/postgresql-14_rc1-no-server.patch| 151 +++
 dev-db/postgresql/postgresql-14_rc1.ebuild | 467 +
 2 files changed, 618 insertions(+)

diff --git a/dev-db/postgresql/files/postgresql-14_rc1-no-server.patch 
b/dev-db/postgresql/files/postgresql-14_rc1-no-server.patch
new file mode 100644
index 000..4f2d388386a
--- /dev/null
+++ b/dev-db/postgresql/files/postgresql-14_rc1-no-server.patch
@@ -0,0 +1,151 @@
+diff -Naruw a/contrib/Makefile b/contrib/Makefile
+--- a/contrib/Makefile 2021-09-20 17:33:01.0 -0400
 b/contrib/Makefile 2021-09-23 16:28:52.919265033 -0400
+@@ -5,57 +5,9 @@
+ include $(top_builddir)/src/Makefile.global
+ 
+ SUBDIRS = \
+-  adminpack   \
+-  amcheck \
+-  auth_delay  \
+-  auto_explain\
+-  bloom   \
+-  btree_gin   \
+-  btree_gist  \
+-  citext  \
+-  cube\
+-  dblink  \
+-  dict_int\
+-  dict_xsyn   \
+-  earthdistance   \
+-  file_fdw\
+-  fuzzystrmatch   \
+-  hstore  \
+-  intagg  \
+-  intarray\
+-  isn \
+-  lo  \
+-  ltree   \
+   oid2name\
+-  old_snapshot\
+-  pageinspect \
+-  passwordcheck   \
+-  pg_buffercache  \
+-  pg_freespacemap \
+-  pg_prewarm  \
+-  pg_stat_statements \
+-  pg_surgery  \
+-  pg_trgm \
+-  pgcrypto\
+-  pgrowlocks  \
+-  pgstattuple \
+-  pg_visibility   \
+-  postgres_fdw\
+-  seg \
+-  spi \
+-  tablefunc   \
+-  tcn \
+-  test_decoding   \
+-  tsm_system_rows \
+-  tsm_system_time \
+-  unaccent\
+   vacuumlo
+ 
+-ifeq ($(with_ssl),openssl)
+-SUBDIRS += sslinfo
+-else
+-ALWAYS_SUBDIRS += sslinfo
+-endif
+ 
+ ifneq ($(with_uuid),no)
+ SUBDIRS += uuid-ossp
+diff -Naruw a/src/backend/Makefile b/src/backend/Makefile
+--- a/src/backend/Makefile 2021-09-20 17:33:01.0 -0400
 b/src/backend/Makefile 2021-09-23 16:30:03.015728022 -0400
+@@ -56,7 +56,7 @@
+ 
+ ##
+ 
+-all: submake-libpgport submake-catalog-headers submake-utils-headers postgres 
$(POSTGRES_IMP)
++all: generated-headers
+ 
+ ifneq ($(PORTNAME), cygwin)
+ ifneq ($(PORTNAME), win32)
+@@ -194,23 +194,7 @@
+ 
+ ##
+ 
+-install: all installdirs install-bin
+-ifeq ($(PORTNAME), cygwin)
+-ifeq ($(MAKE_DLL), true)
+-  $(INSTALL_DATA) libpostgres.a '$(DESTDIR)$(libdir)/libpostgres.a'
+-endif
+-endif
+-ifeq ($(PORTNAME), win32)
+-ifeq ($(MAKE_DLL), true)
+-  $(INSTALL_DATA) libpostgres.a '$(DESTDIR)$(libdir)/libpostgres.a'
+-endif
+-endif
+-  $(MAKE) -C catalog install-data
+-  $(MAKE) -C tsearch install-data
+-  $(MAKE) -C utils install-data
+-  $(INSTALL_DATA) $(srcdir)/libpq/pg_hba.conf.sample 
'$(DESTDIR)$(datadir)/pg_hba.conf.sample'
+-  $(INSTALL_DATA) $(srcdir)/libpq/pg_ident.conf.sample 
'$(DESTDIR)$(datadir)/pg_ident.conf.sample'
+-  $(INSTALL_DATA) $(srcdir)/utils/misc/postgresql.conf.sample 
'$(DESTDIR)$(datadir)/postgresql.conf.sample'
++install:
+ 
+ ifeq ($(with_llvm), yes)
+ install-bin: install-postgres-bitcode
+diff -Naruw a/src/bin/Makefile b/src/bin/Makefile
+--- a/src/bin/Makefile 2021-09-20 17:33:01.0 -0400
 b/src/bin/Makefile 2021-09-23 16:30:50.718922745 -0400
+@@ -14,23 +14,8 @@
+ include $(top_builddir)/src/Makefile.global
+ 
+ SUBDIRS = \
+-  initdb \
+-  pg_amcheck \
+-  pg_archivecleanup \
+-  pg_basebackup \
+-  pg_checksums \
+   pg_config \
+-  pg_controldata \
+-  pg_ctl \
+   pg_dump \
+-  pg_resetwal \
+-  pg_rewind \
+-  pg_test_fsync \
+-  pg_test_timing \
+-  pg_upgrade \
+-  pg_verifybackup \
+-  pg_waldump \
+-  pgbench \
+   psql \
+   scripts
+ 
+diff -Naruw a/src/Makefile b/src/Makefile
+--- a/src/Makefile 2021-09-20 17:33:01.0 -0400
 b/src/Makefile 

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

2021-09-23 Thread Sebastian Pipping
commit: e3b65f720aee947f022e7b9e98968907a4151454
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Thu Sep 23 20:35:23 2021 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Thu Sep 23 20:38:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3b65f72

app-portage/metagen: py3.10 + DISTUTILS_USE_SETUPTOOLS

Closes: https://bugs.gentoo.org/814233
Signed-off-by: Sebastian Pipping  gentoo.org>
Package-Manager: Portage-3.0.23, Repoman-3.0.3

 app-portage/metagen/metagen-0.7.2-r1.ebuild | 29 +
 1 file changed, 29 insertions(+)

diff --git a/app-portage/metagen/metagen-0.7.2-r1.ebuild 
b/app-portage/metagen/metagen-0.7.2-r1.ebuild
new file mode 100644
index 000..d1dd1c12313
--- /dev/null
+++ b/app-portage/metagen/metagen-0.7.2-r1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=( python3_{7..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="metadata.xml generator for ebuilds"
+HOMEPAGE="https://cgit.gentoo.org/proj/metagen.git;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux"
+
+IUSE=""
+DEPEND="dev-python/lxml[${PYTHON_USEDEP}]
+   sys-apps/portage[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}"
+
+python_install_all() {
+   distutils-r1_python_install_all
+   doman docs/metagen.1
+}
+
+python_test() {
+   "${PYTHON}" -c "from metagen import metagenerator; 
metagenerator.do_tests()" || die
+}



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

2021-09-23 Thread Sebastian Pipping
commit: f36ba797c525a195bf8aac0ab2ec2da4f56cbe47
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Thu Sep 23 20:38:12 2021 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Thu Sep 23 20:39:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f36ba797

app-portage/fetchcommandwrapper: py3.10 + DISTUTILS_USE_SETUPTOOLS

Closes: https://bugs.gentoo.org/814230
Signed-off-by: Sebastian Pipping  gentoo.org>
Package-Manager: Portage-3.0.23, Repoman-3.0.3

 .../fetchcommandwrapper-0.8.4-r2.ebuild| 25 ++
 1 file changed, 25 insertions(+)

diff --git 
a/app-portage/fetchcommandwrapper/fetchcommandwrapper-0.8.4-r2.ebuild 
b/app-portage/fetchcommandwrapper/fetchcommandwrapper-0.8.4-r2.ebuild
new file mode 100644
index 000..6da2655d1d5
--- /dev/null
+++ b/app-portage/fetchcommandwrapper/fetchcommandwrapper-0.8.4-r2.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=( python3_{7..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Wrapper integrating aria2 into portage's FETCHCOMMAND"
+HOMEPAGE="https://github.com/hartwork/fetchcommandwrapper;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND=">=net-misc/aria2-1.10.2[metalink,xmlrpc]"
+
+pkg_postinst() {
+   ewarn 'You need to append'
+   ewarn '   source /usr/share/fetchcommandwrapper/make.conf'
+   ewarn 'to /etc/portage/make.conf in order to integrate 
fetchcommandwrapper.'
+}



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

2021-09-23 Thread Sam James
commit: 146fff709a4168bd9011831dfb64ff3a021855e9
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep 23 20:36:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:36:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=146fff70

sys-cluster/mpich: workaround build failure with GCC 10 (stable)

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

 sys-cluster/mpich/mpich-3.0.4.ebuild | 14 ++
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/sys-cluster/mpich/mpich-3.0.4.ebuild 
b/sys-cluster/mpich/mpich-3.0.4.ebuild
index 15abf189bc8..828fec76358 100644
--- a/sys-cluster/mpich/mpich-3.0.4.ebuild
+++ b/sys-cluster/mpich/mpich-3.0.4.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
 FORTRAN_NEEDED=fortran
 
-inherit fortran-2
+inherit fortran-2 flag-o-matic
 
 MY_PV=${PV/_/}
 DESCRIPTION="A high performance and portable MPI implementation"
@@ -72,15 +72,21 @@ src_configure() {
c="${c} --sysconfdir=${EPREFIX}/etc/${PN}"
c="${c} --docdir=${EPREFIX}/usr/share/doc/${PF}"
 
+   # GCC 10 compatibility workaround
+   # bug #725842
+   append-fflags $(test-flags-FC -fallow-argument-mismatch)
+
export MPICHLIB_CFLAGS=${CFLAGS}
export MPICHLIB_CPPFLAGS=${CPPFLAGS}
export MPICHLIB_CXXFLAGS=${CXXFLAGS}
export MPICHLIB_FFLAGS=${FFLAGS}
export MPICHLIB_FCFLAGS=${FCFLAGS}
export MPICHLIB_LDFLAGS=${LDFLAGS}
-   unset CFLAGS CPPFLAGS CXXFLAGS FFLAGS FCFLAGS LDFLAGS
+   # dropped w/ bug #725842 fix
+   #unset CFLAGS CPPFLAGS CXXFLAGS FFLAGS FCFLAGS LDFLAGS
 
-   econf ${c} \
+   # Forcing Bash as there's quite a few bashisms in the build system
+   CONFIG_SHELL="${BROOT}/bin/bash" econf \
--with-pm=hydra \
--disable-mpe \
--disable-fast \



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

2021-09-23 Thread Mart Raudsepp
commit: 0f518a8d4db6cb7a371a7a485e8cfce3ae41e225
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Sep 23 20:20:38 2021 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Sep 23 20:32:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f518a8d

media-sound/pulseaudio: move manpage build deps to BDEPEND

In gnome@ we order BDEPEND as last usually, so missed the correct
place earlier.

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-sound/pulseaudio/pulseaudio-15.0-r1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-sound/pulseaudio/pulseaudio-15.0-r1.ebuild 
b/media-sound/pulseaudio/pulseaudio-15.0-r1.ebuild
index eef388fe63b..cc9151b23f5 100644
--- a/media-sound/pulseaudio/pulseaudio-15.0-r1.ebuild
+++ b/media-sound/pulseaudio/pulseaudio-15.0-r1.ebuild
@@ -74,6 +74,8 @@ REQUIRED_USE="
 "
 
 BDEPEND="
+   dev-lang/perl
+   dev-perl/XML-Parser
sys-devel/gettext
sys-devel/m4
virtual/libiconv
@@ -140,8 +142,6 @@ COMMON_DEPEND="
 # pulseaudio ships a bundle xmltoman, which uses XML::Parser
 DEPEND="
${COMMON_DEPEND}
-   dev-lang/perl
-   dev-perl/XML-Parser
dev-libs/libatomic_ops
dev-libs/libpcre:*
test? ( >=dev-libs/check-0.9.10 )
@@ -224,7 +224,7 @@ multilib_src_configure() {
$(meson_native_use_feature sox soxr)
-Dspeex=enabled
$(meson_native_use_feature systemd)
-   $(meson_native_use_feature tcpd tcpwrap)
+   $(meson_native_use_feature tcpd tcpwrap) # TODO: This should 
technically be enabled for 32bit too, but at runtime it probably is never used 
without daemon?
$(meson_native_use_feature udev)
-Dvalgrind=auto
$(meson_feature X x11)



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

2021-09-23 Thread Sam James
commit: 2b4da1ef9064c888f23e598ebef01c98e402bc2a
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep 23 20:31:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:31:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b4da1ef

sys-cluster/mpich2: fix DoubleEmptyLine

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

 sys-cluster/mpich2/mpich2-1.5.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sys-cluster/mpich2/mpich2-1.5.ebuild 
b/sys-cluster/mpich2/mpich2-1.5.ebuild
index 9a764592cba..05eb7a68a7d 100644
--- a/sys-cluster/mpich2/mpich2-1.5.ebuild
+++ b/sys-cluster/mpich2/mpich2-1.5.ebuild
@@ -72,7 +72,6 @@ src_configure() {
c="${c} --enable-threads=single"
fi
 
-
# GCC 10 compatibility workaround
# bug #725722
append-fflags $(test-flags-FC -fallow-argument-mismatch)



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

2021-09-23 Thread Sam James
commit: 14d08304513db0d19e6b4720d747fbce302074c3
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep 23 20:20:51 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:31:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14d08304

sys-cluster/mpich: workaround build failure with GCC 10

Closes: https://bugs.gentoo.org/725842
Signed-off-by: Sam James  gentoo.org>

 sys-cluster/mpich/mpich-3.3-r1.ebuild | 15 +++
 1 file changed, 11 insertions(+), 4 deletions(-)

diff --git a/sys-cluster/mpich/mpich-3.3-r1.ebuild 
b/sys-cluster/mpich/mpich-3.3-r1.ebuild
index 5aab7b8bb09..f3cd4b9f84d 100644
--- a/sys-cluster/mpich/mpich-3.3-r1.ebuild
+++ b/sys-cluster/mpich/mpich-3.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 FORTRAN_NEEDED=fortran
 FORTRAN_STANDARD="77 90"
 
-inherit fortran-2 multilib-minimal multilib autotools
+inherit fortran-2 multilib-minimal multilib flag-o-matic autotools
 
 MY_PV=${PV/_/}
 DESCRIPTION="A high performance and portable MPI implementation"
@@ -94,15 +94,22 @@ multilib_src_configure() {
 
c="${c} --sysconfdir=${EPREFIX}/etc/${PN}"
 
+   # GCC 10 compatibility workaround
+   # bug #725842
+   append-fflags $(test-flags-FC -fallow-argument-mismatch)
+
export MPICHLIB_CFLAGS="${CFLAGS}"
export MPICHLIB_CPPFLAGS="${CPPFLAGS}"
export MPICHLIB_CXXFLAGS="${CXXFLAGS}"
export MPICHLIB_FFLAGS="${FFLAGS}"
export MPICHLIB_FCFLAGS="${FCFLAGS}"
export MPICHLIB_LDFLAGS="${LDFLAGS}"
-   unset CFLAGS CPPFLAGS CXXFLAGS FFLAGS FCFLAGS LDFLAGS
 
-   ECONF_SOURCE=${S} econf \
+   # dropped w/ bug #725842 fix
+   #unset CFLAGS CPPFLAGS CXXFLAGS FFLAGS FCFLAGS LDFLAGS
+
+   # Forcing Bash as there's quite a few bashisms in the build system
+   CONFIG_SHELL="${BROOT}/bin/bash" ECONF_SOURCE=${S} econf \
--enable-shared \
--with-hwloc-prefix="${EPREFIX}/usr" \
--with-hwloc-libdir="$(get_libdir)" \



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

2021-09-23 Thread Sam James
commit: 4c2a5999e1c81c0fc121361463751f1e034edfdf
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep 23 20:23:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:31:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c2a5999

sys-cluster/mpich2: workaround build failures with GCC 10

Closes: https://bugs.gentoo.org/725722
Signed-off-by: Sam James  gentoo.org>

 sys-cluster/mpich2/mpich2-1.5.ebuild | 14 +++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/sys-cluster/mpich2/mpich2-1.5.ebuild 
b/sys-cluster/mpich2/mpich2-1.5.ebuild
index f73637a3bb1..9a764592cba 100644
--- a/sys-cluster/mpich2/mpich2-1.5.ebuild
+++ b/sys-cluster/mpich2/mpich2-1.5.ebuild
@@ -5,7 +5,7 @@ EAPI=5
 
 FORTRAN_NEEDED=fortran
 
-inherit epatch fortran-2
+inherit epatch fortran-2 flag-o-matic
 
 MY_PV=${PV/_/}
 DESCRIPTION="A high performance and portable MPI implementation"
@@ -72,17 +72,25 @@ src_configure() {
c="${c} --enable-threads=single"
fi
 
+
+   # GCC 10 compatibility workaround
+   # bug #725722
+   append-fflags $(test-flags-FC -fallow-argument-mismatch)
+
export MPICH2LIB_CFLAGS=${CFLAGS}
export MPICH2LIB_CPPFLAGS=${CPPFLAGS}
export MPICH2LIB_CXXFLAGS=${CXXFLAGS}
export MPICH2LIB_FFLAGS=${FFLAGS}
export MPICH2LIB_FCFLAGS=${FCFLAGS}
export MPICH2LIB_LDFLAGS=${LDFLAGS}
-   unset CFLAGS CPPFLAGS CXXFLAGS FFLAGS FCFLAGS LDFLAGS
+   # dropped w/ bug #725722 fix
+   #unset CFLAGS CPPFLAGS CXXFLAGS FFLAGS FCFLAGS LDFLAGS
 
c="${c} --sysconfdir=${EPREFIX}/etc/${PN}"
c="${c} --docdir=${EPREFIX}/usr/share/doc/${PF}"
-   econf ${c} \
+
+   # Forcing Bash as there's quite a few bashisms in the build system
+   CONFIG_SHELL="${BROOT}/bin/bash" econf \
--with-pm=hydra \
--disable-mpe \
--disable-fast \



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

2021-09-23 Thread Arthur Zamarin
commit: ea41b6add5a7dbc4e2c130840ef6b17d4aa99f6a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Sep 23 20:27:37 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Sep 23 20:27:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea41b6ad

dev-python/sphobjinv: add missing test dep on sphinx

Closes: https://bugs.gentoo.org/814515
Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/sphobjinv/sphobjinv-2.1-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/sphobjinv/sphobjinv-2.1-r1.ebuild 
b/dev-python/sphobjinv/sphobjinv-2.1-r1.ebuild
index 8ba9d8175c4..87b6f739a31 100644
--- a/dev-python/sphobjinv/sphobjinv-2.1-r1.ebuild
+++ b/dev-python/sphobjinv/sphobjinv-2.1-r1.ebuild
@@ -29,6 +29,7 @@ BDEPEND="
dev-python/pytest-ordering[${PYTHON_USEDEP}]
dev-python/pytest-timeout[${PYTHON_USEDEP}]
>=dev-python/stdio-mgr-1.0.1[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
dev-python/timeout-decorator[${PYTHON_USEDEP}]
)
 "



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Text-Glob/

2021-09-23 Thread Andreas K. Hüttel
commit: 147fa836c36d7496d6ef7ec955c17fee1386058d
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Sep 23 20:21:33 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Sep 23 20:22:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=147fa836

dev-perl/Text-Glob: EAPI=8 bump

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 .../{Text-Glob-0.110.0.ebuild => Text-Glob-0.110.0-r1.ebuild}  | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-perl/Text-Glob/Text-Glob-0.110.0.ebuild 
b/dev-perl/Text-Glob/Text-Glob-0.110.0-r1.ebuild
similarity index 83%
rename from dev-perl/Text-Glob/Text-Glob-0.110.0.ebuild
rename to dev-perl/Text-Glob/Text-Glob-0.110.0-r1.ebuild
index 7c7e54ad285..b7df03ce67c 100644
--- a/dev-perl/Text-Glob/Text-Glob-0.110.0.ebuild
+++ b/dev-perl/Text-Glob/Text-Glob-0.110.0-r1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DIST_AUTHOR=RCLAMP
 DIST_VERSION=0.11
@@ -11,11 +11,11 @@ DESCRIPTION="Match globbing patterns against text"
 
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
-RDEPEND="virtual/perl-Exporter"
-DEPEND="${RDEPEND}
+RDEPEND="
+   virtual/perl-Exporter
+"
+BDEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? ( virtual/perl-Test-Simple )
 "



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Text-German/

2021-09-23 Thread Andreas K. Hüttel
commit: 35efeb08c0cb423b5cf654b7659127b09f99b631
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Sep 23 20:20:05 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Sep 23 20:22:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35efeb08

dev-perl/Text-German: EAPI=8 bump

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 ...Text-German-0.60.0-r1.ebuild => Text-German-0.60.0-r2.ebuild} | 9 +++--
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/dev-perl/Text-German/Text-German-0.60.0-r1.ebuild 
b/dev-perl/Text-German/Text-German-0.60.0-r2.ebuild
similarity index 79%
rename from dev-perl/Text-German/Text-German-0.60.0-r1.ebuild
rename to dev-perl/Text-German/Text-German-0.60.0-r2.ebuild
index d565276f5fe..f913895cbfc 100644
--- a/dev-perl/Text-German/Text-German-0.60.0-r1.ebuild
+++ b/dev-perl/Text-German/Text-German-0.60.0-r2.ebuild
@@ -1,16 +1,13 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=8
 
-MODULE_AUTHOR=ULPFR
-MODULE_VERSION=0.06
+DIST_AUTHOR=ULPFR
+DIST_VERSION=0.06
 inherit perl-module
 
 DESCRIPTION="German grundform reduction"
 
 SLOT="0"
 KEYWORDS="amd64 ~ia64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos 
~sparc-solaris"
-IUSE=""
-
-SRC_TEST="do"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Text-CSV_XS/

2021-09-23 Thread Andreas K. Hüttel
commit: f836aa2a81d8bce4db63538c8a4f04c829e0efbe
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Sep 23 20:11:19 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Sep 23 20:21:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f836aa2a

dev-perl/Text-CSV_XS: Version bump 1.46

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/Text-CSV_XS/Manifest   |  1 +
 dev-perl/Text-CSV_XS/Text-CSV_XS-1.460.0.ebuild | 28 +
 2 files changed, 29 insertions(+)

diff --git a/dev-perl/Text-CSV_XS/Manifest b/dev-perl/Text-CSV_XS/Manifest
index 98aaee69deb..a9c82645f8b 100644
--- a/dev-perl/Text-CSV_XS/Manifest
+++ b/dev-perl/Text-CSV_XS/Manifest
@@ -1 +1,2 @@
 DIST Text-CSV_XS-1.34.tgz 173425 BLAKE2B 
45aff1d60521d2458687eb257ff5a90b9f9dad6595789945206402bffb8f61b17bb89ea18cf8308d01b057e162c239bda0aee014cb3054ee542bd6b250e8f0c1
 SHA512 
1a13dc0105f52997df87e9612d8696342e2823e4f871b4f5402ae6b48c1375c2eaf70f773bf32b2c176da1ba0deab34413c427013bcdf5e10322fc6901dd2b86
+DIST Text-CSV_XS-1.46.tgz 256628 BLAKE2B 
6a2afe8b36eeb758ae856fbf3939d4628dd2d22cc55689efdb467f9e94bbaaefd6d2ef00989f4e0ae8ba07ab469bc4cb6a9c1d78adfa497d4b062b5ce385a0e5
 SHA512 
f02b262c6f7ae8c67acd9ace057d049d25e017e2662819c060af511ff18bf729f7de767ece295f66d2944f9592d1cb8a6b4ef9c134a5b943880d76f74a5c86ce

diff --git a/dev-perl/Text-CSV_XS/Text-CSV_XS-1.460.0.ebuild 
b/dev-perl/Text-CSV_XS/Text-CSV_XS-1.460.0.ebuild
new file mode 100644
index 000..2d3b89a8c08
--- /dev/null
+++ b/dev-perl/Text-CSV_XS/Text-CSV_XS-1.460.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=HMBRAND
+DIST_A_EXT=tgz
+DIST_VERSION=1.46
+DIST_EXAMPLES=("examples/*")
+inherit perl-module
+
+DESCRIPTION="Comma-separated values manipulation routines"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+RDEPEND="
+   virtual/perl-IO
+   virtual/perl-XSLoader
+"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   virtual/perl-Test-Simple
+   )
+"
+
+PERL_RM_FILES=("t/00_pod.t" "t/01_pod.t")



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

2021-09-23 Thread Andreas K. Hüttel
commit: 95518483d1d8ae192f7cf3e71389b11b80cd
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Sep 23 20:18:40 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Sep 23 20:22:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95518483

dev-perl/Text-Format: Version bump 0.62

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/Text-Format/Manifest   |  1 +
 dev-perl/Text-Format/Text-Format-0.620.0.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-perl/Text-Format/Manifest b/dev-perl/Text-Format/Manifest
index e9169734b76..1e75234524b 100644
--- a/dev-perl/Text-Format/Manifest
+++ b/dev-perl/Text-Format/Manifest
@@ -1 +1,2 @@
 DIST Text-Format-0.60.tar.gz 25913 BLAKE2B 
27e885dacfd0a1019633cd2c805f7d26ffdd62da2e281366fa87e331e47e5ef3e12c2d6a20b47ecaf0ea1e591aedfb7d92829ad21a80a8a3481d8688fd2516a5
 SHA512 
04330567c62854d7d6758e15e0a4ef3799ed15a0e66782f1080d20e62df33eaf2b44c3c126e64a6855ff2cbe28d86cbbaee2a845a287b21da0b81869edd1219f
+DIST Text-Format-0.62.tar.gz 27841 BLAKE2B 
563919c37f6604b7eb127da4c97af7c2cbd8b15ecdbd7cbe8c58ee26177bfcf5adc4d60a6ad7b6bd7880a42dd9defcb53a0fb023ebf699c105c3a186b70e7ac3
 SHA512 
d59e2e981b2d53a62390b5e05a95fc611cada7b1bc056c0f3d53f91873e700371306fd12f3ee53e2f0e70d2015ce8bdc65d3f4c24742711e452e4956b6233689

diff --git a/dev-perl/Text-Format/Text-Format-0.620.0.ebuild 
b/dev-perl/Text-Format/Text-Format-0.620.0.ebuild
new file mode 100644
index 000..0c5060740b8
--- /dev/null
+++ b/dev-perl/Text-Format/Text-Format-0.620.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=SHLOMIF
+DIST_VERSION=0.62
+
+inherit perl-module
+
+DESCRIPTION="Various subroutines to format text"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   virtual/perl-Carp
+"
+BDEPEND="${RDEPEND}
+   >=dev-perl/Module-Build-0.280.0
+   test? ( >=virtual/perl-Test-Simple-0.880.0 )
+"
+
+PERL_RM_FILES=( "t/pod-coverage.t" "t/cpan-changes.t" "t/pod.t" 
"t/style-trailing-space.t" )



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Text-Glob/

2021-09-23 Thread Andreas K. Hüttel
commit: 8969b00b69ea51eee944a08166a04485526559e9
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Sep 23 20:20:42 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Sep 23 20:22:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8969b00b

dev-perl/Text-Glob: Remove old

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/Text-Glob/Manifest   |  1 -
 dev-perl/Text-Glob/Text-Glob-0.90.0-r1.ebuild | 20 
 2 files changed, 21 deletions(-)

diff --git a/dev-perl/Text-Glob/Manifest b/dev-perl/Text-Glob/Manifest
index 2887da84a44..b6c17a29d5d 100644
--- a/dev-perl/Text-Glob/Manifest
+++ b/dev-perl/Text-Glob/Manifest
@@ -1,2 +1 @@
-DIST Text-Glob-0.09.tar.gz 4171 BLAKE2B 
770e5f54fa7ce8ecbdf884e6823b2928b1826602657905be998dac9642e372dc809673a2fc5e4ab16ca08c9908f17ffca42fd44c71ec11de12ac157984986e44
 SHA512 
9b729e4ece88ad79e1b637c7f35e5e1ecae3fd7f62c408ed4f3fcac2e8e8afff32d7d805e1b0269800aada5ae609d03335d42ac54def2797d301e91fa488ae47
 DIST Text-Glob-0.11.tar.gz 4862 BLAKE2B 
d57c2f2cde24b8fedfe0e0bc17c4008c1107b07bb91fa62d95428100c80bc8dfebdcae2e16dd0768a88130d43a0461b6c5227bcd00607afcdb09606cdbb8db61
 SHA512 
20322fee3f56ee7e65f0f8e5371d9dbbe89895d8b9c9207486e7934e29bd883fb557c9765e406f85f56b67019293d82a0318ded83a9387b164cb5e8f58bef0cb

diff --git a/dev-perl/Text-Glob/Text-Glob-0.90.0-r1.ebuild 
b/dev-perl/Text-Glob/Text-Glob-0.90.0-r1.ebuild
deleted file mode 100644
index e014341e6e6..000
--- a/dev-perl/Text-Glob/Text-Glob-0.90.0-r1.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=RCLAMP
-MODULE_VERSION=0.09
-inherit perl-module
-
-DESCRIPTION="Match globbing patterns against text"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   >=dev-perl/Module-Build-0.28"
-
-SRC_TEST="do"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Text-Diff/

2021-09-23 Thread Andreas K. Hüttel
commit: c386874bf28c9623a2c74de46999856e19997e91
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Sep 23 20:15:28 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Sep 23 20:21:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c386874b

dev-perl/Text-Diff: EAPI=8 bump

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 .../{Text-Diff-1.450.0.ebuild => Text-Diff-1.450.0-r1.ebuild}   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-perl/Text-Diff/Text-Diff-1.450.0.ebuild 
b/dev-perl/Text-Diff/Text-Diff-1.450.0-r1.ebuild
similarity index 94%
rename from dev-perl/Text-Diff/Text-Diff-1.450.0.ebuild
rename to dev-perl/Text-Diff/Text-Diff-1.450.0-r1.ebuild
index 884ce5d9211..479ec54f47f 100644
--- a/dev-perl/Text-Diff/Text-Diff-1.450.0.ebuild
+++ b/dev-perl/Text-Diff/Text-Diff-1.450.0-r1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DIST_AUTHOR=NEILB
 DIST_VERSION=1.45
@@ -11,13 +11,13 @@ DESCRIPTION="Perform diffs on files and record sets"
 
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
 
 RDEPEND="
>=dev-perl/Algorithm-Diff-1.190.0
virtual/perl-Exporter
 "
-DEPEND="${RDEPEND}
+BDEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
 "
+
 PERL_RM_FILES=( "t/97_meta.t" "t/98_pod.t" "t/99_pmv.t" )



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Text-CSV/

2021-09-23 Thread Andreas K. Hüttel
commit: 6b3ed3a05e2c646f44baf4cd1dbd18c109a18ac4
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Sep 23 20:12:01 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Sep 23 20:21:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b3ed3a0

dev-perl/Text-CSV: Version bump 2.01

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/Text-CSV/Manifest   |  1 +
 dev-perl/Text-CSV/Text-CSV-2.10.0.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-perl/Text-CSV/Manifest b/dev-perl/Text-CSV/Manifest
index 96e3d037355..8984abf571e 100644
--- a/dev-perl/Text-CSV/Manifest
+++ b/dev-perl/Text-CSV/Manifest
@@ -1 +1,2 @@
 DIST Text-CSV-1.95.tar.gz 114054 BLAKE2B 
79a9e6dbd0f06a0116e6bf7c0100fa0da483c47b7117882f7d0a7554deea5b9c30245b03cf94a9f521d9d8bd652a92d4a11c0ff3e8c8cbfd188284fdb5930108
 SHA512 
447d38c9f6058251b9c3b1e42bffdec80ffe9ea7f232552921477d3c0dc1e913fe2a1cf1d4cec1410fab92a7e4e59601f429e11a005051710cd2b8d3b77201f9
+DIST Text-CSV-2.01.tar.gz 134279 BLAKE2B 
ee9bb832b000ca4d977869d360bf4e5367c54d248ce2eb169eb2a75df37c0ccf8042cc0114d360039282f3f3f9fcb97070046a91257486c12826a32b93bc3c7e
 SHA512 
45c215686437e111fcd8d6c0adc9c6e0bac9df37fcd47e7bd9fcf4872859e59a296caae3573b77955cdaf42284b4c88fcc6774bd6ac11d701ae54f6a3741991a

diff --git a/dev-perl/Text-CSV/Text-CSV-2.10.0.ebuild 
b/dev-perl/Text-CSV/Text-CSV-2.10.0.ebuild
new file mode 100644
index 000..95e3094d8c0
--- /dev/null
+++ b/dev-perl/Text-CSV/Text-CSV-2.10.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=ISHIGAKI
+DIST_VERSION=2.01
+inherit perl-module
+
+DESCRIPTION="Manipulate comma-separated value strings"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+IUSE="+xs"
+
+RDEPEND="
+   xs? ( >=dev-perl/Text-CSV_XS-1.460.0 )
+   virtual/perl-IO
+"
+BDEPEND="
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   virtual/perl-Test-Simple
+   )
+"
+
+src_test() {
+   perl_rm_files t/00_pod.t
+   perl-module_src_test
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Text-CharWidth/

2021-09-23 Thread Andreas K. Hüttel
commit: deaff7db463e864dc59bd732ec11d3edbcb4a4a6
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Sep 23 20:06:05 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Sep 23 20:21:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=deaff7db

dev-perl/Text-CharWidth: EAPI=8 bump

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 ...harWidth-0.40.0-r1.ebuild => Text-CharWidth-0.40.0-r2.ebuild} | 9 +++--
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/dev-perl/Text-CharWidth/Text-CharWidth-0.40.0-r1.ebuild 
b/dev-perl/Text-CharWidth/Text-CharWidth-0.40.0-r2.ebuild
similarity index 84%
rename from dev-perl/Text-CharWidth/Text-CharWidth-0.40.0-r1.ebuild
rename to dev-perl/Text-CharWidth/Text-CharWidth-0.40.0-r2.ebuild
index 8a7221d3eb7..33b967936ed 100644
--- a/dev-perl/Text-CharWidth/Text-CharWidth-0.40.0-r1.ebuild
+++ b/dev-perl/Text-CharWidth/Text-CharWidth-0.40.0-r2.ebuild
@@ -1,16 +1,13 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=8
 
-MODULE_AUTHOR=KUBOTA
-MODULE_VERSION=0.04
+DIST_AUTHOR=KUBOTA
+DIST_VERSION=0.04
 inherit perl-module
 
 DESCRIPTION="Get number of occupied columns of a string on terminal"
 
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-SRC_TEST="do"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Text-FindIndent/

2021-09-23 Thread Andreas K. Hüttel
commit: bfb2b0bf399204e367d2f1895474e63e5bf47ba0
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Sep 23 20:16:32 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Sep 23 20:22:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfb2b0bf

dev-perl/Text-FindIndent: EAPI=8 bump

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 ...indIndent-0.110.0.ebuild => Text-FindIndent-0.110.0-r1.ebuild} | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/dev-perl/Text-FindIndent/Text-FindIndent-0.110.0.ebuild 
b/dev-perl/Text-FindIndent/Text-FindIndent-0.110.0-r1.ebuild
similarity index 83%
rename from dev-perl/Text-FindIndent/Text-FindIndent-0.110.0.ebuild
rename to dev-perl/Text-FindIndent/Text-FindIndent-0.110.0-r1.ebuild
index 2d6faa8dd59..06e4ec66a01 100644
--- a/dev-perl/Text-FindIndent/Text-FindIndent-0.110.0.ebuild
+++ b/dev-perl/Text-FindIndent/Text-FindIndent-0.110.0-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DIST_AUTHOR=CHORNY
 DIST_VERSION=0.11
@@ -11,11 +11,9 @@ DESCRIPTION="Heuristically determine the indent style"
 
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND=""
-DEPEND="${RDEPEND}
+BDEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.360.0
test? ( >=virtual/perl-Test-Simple-0.800.0 )
 "



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Text-CSV-Simple/

2021-09-23 Thread Andreas K. Hüttel
commit: cbfaffb3121cfd4b853b92a68b54dd680c68fdcd
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Sep 23 20:14:23 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Sep 23 20:21:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbfaffb3

dev-perl/Text-CSV-Simple: EAPI=8 bump

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 ...0.0-r1.ebuild => Text-CSV-Simple-1.0.0-r2.ebuild} | 20 +---
 1 file changed, 9 insertions(+), 11 deletions(-)

diff --git a/dev-perl/Text-CSV-Simple/Text-CSV-Simple-1.0.0-r1.ebuild 
b/dev-perl/Text-CSV-Simple/Text-CSV-Simple-1.0.0-r2.ebuild
similarity index 63%
rename from dev-perl/Text-CSV-Simple/Text-CSV-Simple-1.0.0-r1.ebuild
rename to dev-perl/Text-CSV-Simple/Text-CSV-Simple-1.0.0-r2.ebuild
index 47ceaccb650..922e4e62020 100644
--- a/dev-perl/Text-CSV-Simple/Text-CSV-Simple-1.0.0-r1.ebuild
+++ b/dev-perl/Text-CSV-Simple/Text-CSV-Simple-1.0.0-r2.ebuild
@@ -1,27 +1,25 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=8
 
-MODULE_AUTHOR=TMTM
-MODULE_VERSION=1.00
+DIST_AUTHOR=TMTM
+DIST_VERSION=1.00
 inherit perl-module
 
 DESCRIPTION="Text::CSV::Simple - Simpler parsing of CSV files"
 
 SLOT="0"
-LICENSE="|| ( GPL-3 GPL-2 )" # GPL-2+
+LICENSE="GPL-2+"
 KEYWORDS="amd64 ~arm ~mips ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~sparc-solaris"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
-RDEPEND="dev-perl/Text-CSV_XS
+RDEPEND="
+   dev-perl/Text-CSV_XS
dev-perl/Class-Trigger
-   dev-perl/File-Slurp"
-DEPEND="${RDEPEND}
+   dev-perl/File-Slurp
+"
+BDEPEND="${RDEPEND}
test? (
dev-perl/Test-Pod
dev-perl/Test-Pod-Coverage
)"
-
-SRC_TEST="do"



[gentoo-commits] repo/gentoo:master commit in: x11-base/xorg-server/

2021-09-23 Thread Sam James
commit: 0deac120ab3e33a8f4363031783a6d098915cc0b
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:56:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0deac120

x11-base/xorg-server: stable 1.20.13-r1 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 x11-base/xorg-server/xorg-server-1.20.13-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-base/xorg-server/xorg-server-1.20.13-r1.ebuild 
b/x11-base/xorg-server/xorg-server-1.20.13-r1.ebuild
index 8ff81df617b..d6d1f45f1b2 100644
--- a/x11-base/xorg-server/xorg-server-1.20.13-r1.ebuild
+++ b/x11-base/xorg-server/xorg-server-1.20.13-r1.ebuild
@@ -11,7 +11,7 @@ 
EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/xserver.git;
 DESCRIPTION="X.Org X servers"
 SLOT="0/${PV}"
 if [[ ${PV} != * ]]; then
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
 fi
 
 IUSE_SERVERS="dmx kdrive xephyr xnest xorg xvfb"



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

2021-09-23 Thread Sam James
commit: 35abc127c6e6b761a9892a95b9eb82dada2d2ca8
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:55:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35abc127

media-libs/libglvnd: stable 1.3.3 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/media-libs/libglvnd/libglvnd-1.3.3.ebuild 
b/media-libs/libglvnd/libglvnd-1.3.3.ebuild
index d7d545a2ab8..8c83eaea578 100644
--- a/media-libs/libglvnd/libglvnd-1.3.3.ebuild
+++ b/media-libs/libglvnd/libglvnd-1.3.3.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://gitlab.freedesktop.org/glvnd/libglvnd;
 if [[ ${PV} = * ]]; then
SRC_URI=""
 else
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv 
sparc x86"

SRC_URI="https://gitlab.freedesktop.org/glvnd/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2
 -> ${P}.tar.bz2"
S=${WORKDIR}/${PN}-v${PV}
 fi



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

2021-09-23 Thread Sam James
commit: c2032410f30f3339ff301211cd4a3d0848c7f59a
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:44:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2032410

x11-apps/xauth: stable 1.1 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 x11-apps/xauth/xauth-1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-apps/xauth/xauth-1.1.ebuild b/x11-apps/xauth/xauth-1.1.ebuild
index fe2bc9e5bdc..b1326e24589 100644
--- a/x11-apps/xauth/xauth-1.1.ebuild
+++ b/x11-apps/xauth/xauth-1.1.ebuild
@@ -8,7 +8,7 @@ inherit xorg-3
 if [[ ${PV} == * ]]; then
SRC_URI=""
 else
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux"
 fi
 
 DESCRIPTION="X authority file utility"



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

2021-09-23 Thread Sam James
commit: 56583a2adbb598b575704bac59d09cc8a1b861bd
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:44:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56583a2a

x11-apps/xkbcomp: stable 1.4.5 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 x11-apps/xkbcomp/xkbcomp-1.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-apps/xkbcomp/xkbcomp-1.4.5.ebuild 
b/x11-apps/xkbcomp/xkbcomp-1.4.5.ebuild
index c8bac72168f..755113637ee 100644
--- a/x11-apps/xkbcomp/xkbcomp-1.4.5.ebuild
+++ b/x11-apps/xkbcomp/xkbcomp-1.4.5.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 inherit xorg-3
 
 DESCRIPTION="XKB keyboard description compiler"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
 IUSE=""
 DEPEND="
>=x11-libs/libX11-1.6.9



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

2021-09-23 Thread Sam James
commit: 19e3bc8552a43960ee28d7f41521b3fadde33509
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:45:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19e3bc85

x11-misc/util-macros: stable 1.19.3 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 x11-misc/util-macros/util-macros-1.19.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/util-macros/util-macros-1.19.3.ebuild 
b/x11-misc/util-macros/util-macros-1.19.3.ebuild
index b5f10bd1d18..d7faee095ba 100644
--- a/x11-misc/util-macros/util-macros-1.19.3.ebuild
+++ b/x11-misc/util-macros/util-macros-1.19.3.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://www.x.org/releases/individual/util/${P}.tar.bz2;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # there is nothing to compile for this package, all its contents are produced 
by
 # configure. the only make job that matters is make install



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

2021-09-23 Thread Sam James
commit: e81b388adb009444245c086f8993646b1827c888
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:47:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e81b388a

dev-python/olefile: stable 0.46-r1 for hppa, bug #813927

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/olefile/olefile-0.46-r1.ebuild 
b/dev-python/olefile/olefile-0.46-r1.ebuild
index b53151d214f..be4a231cb84 100644
--- a/dev-python/olefile/olefile-0.46-r1.ebuild
+++ b/dev-python/olefile/olefile-0.46-r1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/decalage2/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux"
 
 distutils_enable_sphinx doc \
dev-python/sphinx_rtd_theme



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

2021-09-23 Thread Sam James
commit: 8d0aa7f42d9d868a508ee16a2dc3cf67dc7229a7
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:46:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d0aa7f4

x11-apps/rgb: stable 1.0.6-r1 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/x11-apps/rgb/rgb-1.0.6-r1.ebuild b/x11-apps/rgb/rgb-1.0.6-r1.ebuild
index d868e0412fa..b9f67e3be19 100644
--- a/x11-apps/rgb/rgb-1.0.6-r1.ebuild
+++ b/x11-apps/rgb/rgb-1.0.6-r1.ebuild
@@ -7,7 +7,7 @@ inherit xorg-3
 
 DESCRIPTION="uncompile an rgb color-name database"
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 DEPEND="${RDEPEND}
x11-base/xorg-proto"
 BDEPEND="x11-misc/util-macros"



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

2021-09-23 Thread Sam James
commit: 105c43e58dac10f6bac3067de94dca77884a4146
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:48:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=105c43e5

media-gfx/libimagequant: stable 2.15.1 for hppa, bug #813927

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/media-gfx/libimagequant/libimagequant-2.15.1.ebuild 
b/media-gfx/libimagequant/libimagequant-2.15.1.ebuild
index 5acc0e108f8..b8c716a833c 100644
--- a/media-gfx/libimagequant/libimagequant-2.15.1.ebuild
+++ b/media-gfx/libimagequant/libimagequant-2.15.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/ImageOptim/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="GPL-3"
 SLOT="0/0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux"
 IUSE="cpu_flags_x86_sse2 openmp"
 
 PATCHES=(



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

2021-09-23 Thread Sam James
commit: 2adaa474a65d985ab9d9a719478e4fe201b64e38
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:45:08 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2adaa474

x11-apps/xinit: stable 1.4.1-r1 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/x11-apps/xinit/xinit-1.4.1-r1.ebuild 
b/x11-apps/xinit/xinit-1.4.1-r1.ebuild
index 350547d918c..51d8f710ae2 100644
--- a/x11-apps/xinit/xinit-1.4.1-r1.ebuild
+++ b/x11-apps/xinit/xinit-1.4.1-r1.ebuild
@@ -8,7 +8,7 @@ inherit xorg-3
 DESCRIPTION="X Window System initializer"
 
 LICENSE="${LICENSE} GPL-2"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~arm-linux ~x86-linux"
 IUSE="twm"
 
 RDEPEND="



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

2021-09-23 Thread Sam James
commit: bd5a38c2073879caa9c6038ccbdf703767f39d22
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:46:01 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd5a38c2

x11-libs/libpciaccess: stable 0.16 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/x11-libs/libpciaccess/libpciaccess-0.16.ebuild 
b/x11-libs/libpciaccess/libpciaccess-0.16.ebuild
index 784b93f6147..7355b217f89 100644
--- a/x11-libs/libpciaccess/libpciaccess-0.16.ebuild
+++ b/x11-libs/libpciaccess/libpciaccess-0.16.ebuild
@@ -8,7 +8,7 @@ XORG_EAUTORECONF=yes
 inherit xorg-3
 
 DESCRIPTION="Library providing generic access to the PCI bus and devices"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="zlib"
 
 DEPEND="



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

2021-09-23 Thread Sam James
commit: 19febe9dfbd586233b63c127287fb9a0d07e1a64
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:43:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19febe9d

x11-apps/xrdb: stable 1.2.0 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 x11-apps/xrdb/xrdb-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-apps/xrdb/xrdb-1.2.0.ebuild b/x11-apps/xrdb/xrdb-1.2.0.ebuild
index f6214f3a770..f5b175ce2b6 100644
--- a/x11-apps/xrdb/xrdb-1.2.0.ebuild
+++ b/x11-apps/xrdb/xrdb-1.2.0.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 inherit xorg-3
 
 DESCRIPTION="X server resource database utility"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="x11-libs/libXmu



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

2021-09-23 Thread Sam James
commit: 79840cd8b9721eedad2de22ab346e47647631fd7
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:43:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79840cd8

x11-libs/libxkbfile: stable 1.1.0 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/x11-libs/libxkbfile/libxkbfile-1.1.0.ebuild 
b/x11-libs/libxkbfile/libxkbfile-1.1.0.ebuild
index 15403f69d2f..3c81299b992 100644
--- a/x11-libs/libxkbfile/libxkbfile-1.1.0.ebuild
+++ b/x11-libs/libxkbfile/libxkbfile-1.1.0.ebuild
@@ -7,7 +7,7 @@ inherit xorg-3
 
 DESCRIPTION="X.Org xkbfile library"
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE=""
 
 RDEPEND="x11-libs/libX11[${MULTILIB_USEDEP}]"



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

2021-09-23 Thread Sam James
commit: dfe659eb75a9edaefe8082908c6e69799cf78951
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:39:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfe659eb

x11-libs/libxcb: stable 1.14 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/x11-libs/libxcb/libxcb-1.14.ebuild 
b/x11-libs/libxcb/libxcb-1.14.ebuild
index b20b8c3487c..8502d3c33d7 100644
--- a/x11-libs/libxcb/libxcb-1.14.ebuild
+++ b/x11-libs/libxcb/libxcb-1.14.ebuild
@@ -15,7 +15,7 @@ inherit python-any-r1 xorg-3
 DESCRIPTION="X C-language Bindings library"
 HOMEPAGE="https://xcb.freedesktop.org/ 
https://gitlab.freedesktop.org/xorg/lib/libxcb;
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc selinux test +xkb"
 RESTRICT="!test? ( test )"
 SLOT="0/1.12"



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

2021-09-23 Thread Sam James
commit: 0be5a5ca0ce943c9e4cb4252be905226f3e47350
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:42:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0be5a5ca

x11-libs/libXmu: stable 1.1.3 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/x11-libs/libXmu/libXmu-1.1.3.ebuild 
b/x11-libs/libXmu/libXmu-1.1.3.ebuild
index a6421846f98..99fd2100223 100644
--- a/x11-libs/libXmu/libXmu-1.1.3.ebuild
+++ b/x11-libs/libXmu/libXmu-1.1.3.ebuild
@@ -9,7 +9,7 @@ inherit xorg-3
 
 DESCRIPTION="X.Org Xmu library"
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="ipv6"
 
 RDEPEND="



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

2021-09-23 Thread Sam James
commit: 16897fd5d8b8cd8f8d90b28c7290db73a8a4c270
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:40:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16897fd5

x11-misc/compose-tables: stable 1.7.2 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 x11-misc/compose-tables/compose-tables-1.7.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/compose-tables/compose-tables-1.7.2.ebuild 
b/x11-misc/compose-tables/compose-tables-1.7.2.ebuild
index 4b1e8e42f32..e6d977c1355 100644
--- a/x11-misc/compose-tables/compose-tables-1.7.2.ebuild
+++ b/x11-misc/compose-tables/compose-tables-1.7.2.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="X.Org Compose Key tables from libX11"
 
SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/lib/libX11-${PV}.tar.${XORG_TARBALL_SUFFIX}"
 S="${WORKDIR}/libX11-${PV}/"
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 
 # Only needed by configure
 DEPEND="



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

2021-09-23 Thread Sam James
commit: 604d228e70d294537fc0c4ca01c3ba174e085db2
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:41:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=604d228e

x11-libs/libX11: stable 1.7.2 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/x11-libs/libX11/libX11-1.7.2.ebuild 
b/x11-libs/libX11/libX11-1.7.2.ebuild
index 1a618ccdebc..c50508e8170 100644
--- a/x11-libs/libX11/libX11-1.7.2.ebuild
+++ b/x11-libs/libX11/libX11-1.7.2.ebuild
@@ -10,7 +10,7 @@ inherit toolchain-funcs xorg-3
 # Note: please bump this with x11-misc/compose-tables
 DESCRIPTION="X.Org X11 library"
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 IUSE="ipv6 test"
 RESTRICT="!test? ( test )"
 



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

2021-09-23 Thread Sam James
commit: e221d3fc45b812f5e1eef8bcd7a2df39ca69fd6f
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:43:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e221d3fc

x11-apps/xhost: stable 1.0.8 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 x11-apps/xhost/xhost-1.0.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-apps/xhost/xhost-1.0.8.ebuild 
b/x11-apps/xhost/xhost-1.0.8.ebuild
index a2a75a11d67..51d7ec21d40 100644
--- a/x11-apps/xhost/xhost-1.0.8.ebuild
+++ b/x11-apps/xhost/xhost-1.0.8.ebuild
@@ -7,7 +7,7 @@ inherit xorg-3
 
 DESCRIPTION="Controls host and/or user access to a running X server"
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="ipv6"
 
 RDEPEND="x11-libs/libX11



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

2021-09-23 Thread Sam James
commit: acf45d5b6f6aa59f047bfaa1359e3bc14c9161ef
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:41:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acf45d5b

x11-libs/libXext: stable 1.3.4 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/x11-libs/libXext/libXext-1.3.4.ebuild 
b/x11-libs/libXext/libXext-1.3.4.ebuild
index d05404352ed..4ef042cb11c 100644
--- a/x11-libs/libXext/libXext-1.3.4.ebuild
+++ b/x11-libs/libXext/libXext-1.3.4.ebuild
@@ -9,7 +9,7 @@ inherit xorg-3
 
 DESCRIPTION="X.Org Xext library"
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 
 RDEPEND=">=x11-libs/libX11-1.6.2:=[${MULTILIB_USEDEP}]"
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: x11-base/xcb-proto/

2021-09-23 Thread Sam James
commit: 3604ea4918c7e54e248942e5b04ac8de8b23c24a
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:39:27 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3604ea49

x11-base/xcb-proto: stable 1.14.1 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 x11-base/xcb-proto/xcb-proto-1.14.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-base/xcb-proto/xcb-proto-1.14.1.ebuild 
b/x11-base/xcb-proto/xcb-proto-1.14.1.ebuild
index e7aaddbcc92..9353e9d8fb9 100644
--- a/x11-base/xcb-proto/xcb-proto-1.14.1.ebuild
+++ b/x11-base/xcb-proto/xcb-proto-1.14.1.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="X C-language Bindings protocol headers"
 HOMEPAGE="https://xcb.freedesktop.org/ 
https://gitlab.freedesktop.org/xorg/proto/xcbproto;
 EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/proto/xcbproto.git;
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 



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

2021-09-23 Thread Sam James
commit: 725625f60603bb5eb90b2198748360f1be30f5ca
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:42:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=725625f6

x11-libs/libXt: stable 1.2.1 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/x11-libs/libXt/libXt-1.2.1.ebuild 
b/x11-libs/libXt/libXt-1.2.1.ebuild
index b0e36cae59e..1fbf8a0dd20 100644
--- a/x11-libs/libXt/libXt-1.2.1.ebuild
+++ b/x11-libs/libXt/libXt-1.2.1.ebuild
@@ -9,7 +9,7 @@ inherit xorg-3
 
 DESCRIPTION="X.Org X Toolkit Intrinsics library"
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-09-23 Thread Sam James
commit: 6eb7428415e69e47a44af2bbf4b3077f58f5c488
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:39:02 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eb74284

x11-apps/iceauth: stable 1.0.8-r1 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/x11-apps/iceauth/iceauth-1.0.8-r1.ebuild 
b/x11-apps/iceauth/iceauth-1.0.8-r1.ebuild
index 725a27ddf3e..263b5f9de00 100644
--- a/x11-apps/iceauth/iceauth-1.0.8-r1.ebuild
+++ b/x11-apps/iceauth/iceauth-1.0.8-r1.ebuild
@@ -7,7 +7,7 @@ inherit xorg-3
 
 DESCRIPTION="ICE authority file utility"
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris 
~x86-winnt"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris ~x86-winnt"
 
 RDEPEND="x11-libs/libICE"
 DEPEND="${RDEPEND}



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

2021-09-23 Thread Sam James
commit: 59ab6be84380d0562e21d179245becde854dcfe9
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:40:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59ab6be8

x11-libs/libSM: stable 1.2.3-r1 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 x11-libs/libSM/libSM-1.2.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libSM/libSM-1.2.3-r1.ebuild 
b/x11-libs/libSM/libSM-1.2.3-r1.ebuild
index f53cb5e85b6..7feb0c6c5e4 100644
--- a/x11-libs/libSM/libSM-1.2.3-r1.ebuild
+++ b/x11-libs/libSM/libSM-1.2.3-r1.ebuild
@@ -9,7 +9,7 @@ inherit xorg-3
 
 DESCRIPTION="X.Org Session Management library"
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="ipv6 +uuid"
 
 RDEPEND="x11-base/xorg-proto



[gentoo-commits] repo/gentoo:master commit in: media-fonts/font-util/

2021-09-23 Thread Sam James
commit: c92161b3b57cdc4bba188842c1baba20d0e7709d
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:38:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c92161b3

media-fonts/font-util: stable 1.3.2-r1 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 media-fonts/font-util/font-util-1.3.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/font-util/font-util-1.3.2-r1.ebuild 
b/media-fonts/font-util/font-util-1.3.2-r1.ebuild
index 653878effa5..79fc6228e3f 100644
--- a/media-fonts/font-util/font-util-1.3.2-r1.ebuild
+++ b/media-fonts/font-util/font-util-1.3.2-r1.ebuild
@@ -9,7 +9,7 @@ 
EGIT_REPO_URI="https://anongit.freedesktop.org/git/xorg/font/util.git;
 DESCRIPTION="X.Org font utilities"
 HOMEPAGE="https://www.x.org/wiki/ 
https://gitlab.freedesktop.org/xorg/font/util;
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 XORG_CONFIGURE_OPTIONS=(
--with-fontrootdir="${EPREFIX}"/usr/share/fonts



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

2021-09-23 Thread Sam James
commit: fd87ef6b17d04785305322fd7e1013d0b7be9337
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Sep 23 19:37:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 23 20:12:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd87ef6b

x11-misc/xkeyboard-config: stable 2.33 for hppa, bug #813729

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 x11-misc/xkeyboard-config/xkeyboard-config-2.33.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xkeyboard-config/xkeyboard-config-2.33.ebuild 
b/x11-misc/xkeyboard-config/xkeyboard-config-2.33.ebuild
index 45904724f42..860b45b83ff 100644
--- a/x11-misc/xkeyboard-config/xkeyboard-config-2.33.ebuild
+++ b/x11-misc/xkeyboard-config/xkeyboard-config-2.33.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
 else
SRC_URI="https://www.x.org/releases/individual/data/${PN}/${P}.tar.bz2;
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
 fi
 
 LICENSE="MIT"



  1   2   3   >