[gentoo-commits] repo/proj/guru:master commit in: net-p2p/monero/

2021-01-10 Thread Andrew Ammerlaan
commit: 7840ff0da3502a04b1d10beacd3e28a70cf95c1f
Author: Theo Anderson  posteo  de>
AuthorDate: Fri Jan  8 21:14:33 2021 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Jan  8 21:14:33 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7840ff0d

net-p2p/monero: drop old (security)

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Theo Anderson  posteo.de>

 net-p2p/monero/Manifest   |   2 -
 net-p2p/monero/monero-0.17.1.7.ebuild | 117 --
 net-p2p/monero/monero-0.17.1.8.ebuild | 117 --
 3 files changed, 236 deletions(-)

diff --git a/net-p2p/monero/Manifest b/net-p2p/monero/Manifest
index 745879ca..841b64b9 100644
--- a/net-p2p/monero/Manifest
+++ b/net-p2p/monero/Manifest
@@ -1,3 +1 @@
-DIST monero-0.17.1.7.tar.gz 10598750 BLAKE2B 
03a80f3c38bc1b643d8d9ddba4ee1de59e0f4c6d66cfc5dcb700d19659a5cb66add4fcf1320c1ed2b7dfa15fdfe9548eb758e67661832f9da7bd0e173b5a0ae1
 SHA512 
b049a738eb5752a620fc19dfafd5e2996d3f33d89737774264a5ef69b7fcfcd9fe852b89e35187486f48fdc8bb73c2010a1917d1ed7fcb4f1f87b18a6bb4c2d5
-DIST monero-0.17.1.8.tar.gz 10603308 BLAKE2B 
f515c90fac83bcf866cc042b34be38d366c7e48a70db76b2a900e9922ca460db7604aa15f4f03b2e5301647a75f40ad0f04c2dadd416a079da2f77be46d584a2
 SHA512 
e9cde3c77d71dd468237e823f647551fb3fef89f7132ebe2be1ac10545dd926f2d2b07794af4664d82e4d19b8b3b8b69fa090ed64ccab7ca63ffae3c0559eec0
 DIST monero-0.17.1.9.tar.gz 10607015 BLAKE2B 
2746fa1d8feafead39f10d1c8800ecd82e4049930b7acae42e946474558114422703e8cb37f1bd3833e57ec9987ccdff2fd530a632693cab206420153f8e6ab4
 SHA512 
b529d1c691584a5bf1e1fa342909dbb296ef57b0b7d018d95dd40ee418257a15f8f94ec74f780762f28f57f5db4a953becce97558af407f89828d55da88e61d8

diff --git a/net-p2p/monero/monero-0.17.1.7.ebuild 
b/net-p2p/monero/monero-0.17.1.7.ebuild
deleted file mode 100644
index fb62cb79..
--- a/net-p2p/monero/monero-0.17.1.7.ebuild
+++ /dev/null
@@ -1,117 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake systemd
-
-DESCRIPTION="The secure, private, untraceable cryptocurrency"
-HOMEPAGE="https://github.com/monero-project/monero;
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/monero-project/monero.git;
-else
-   SRC_URI="https://github.com/monero-project/monero/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm64 ~x86"
-fi
-
-LICENSE="BSD MIT"
-SLOT="0"
-IUSE="+daemon libressl readline +tools +wallet-cli +wallet-rpc"
-REQUIRED_USE="|| ( daemon tools wallet-cli wallet-rpc )"
-RESTRICT="test"
-
-DEPEND="
-   acct-group/monero
-   acct-user/monero
-   dev-libs/boost:=[nls,threads]
-   dev-libs/libsodium:=
-   dev-libs/randomx
-   dev-libs/rapidjson
-   dev-libs/supercop
-   net-dns/unbound:=[threads]
-   net-libs/czmq:=
-   net-libs/miniupnpc
-   !libressl? ( dev-libs/openssl:= )
-   libressl? ( dev-libs/libressl:= )
-   readline? ( sys-libs/readline:0= )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-0.17.1.7-linkjobs.patch"
-   "${FILESDIR}/${PN}-0.17.1.7-unbundle-dependencies.patch"
-)
-
-src_configure() {
-   local mycmakeargs=(
-   # TODO: Update CMake to install built libraries (help wanted)
-   -DBUILD_SHARED_LIBS=OFF
-   -DMANUAL_SUBMODULES=ON
-   -DMONERO_PARALLEL_LINK_JOBS=1
-   -DUSE_DEVICE_TREZOR=OFF
-   )
-
-   cmake_src_configure
-}
-
-src_compile() {
-   local targets=()
-   use daemon && targets+=(daemon)
-   use tools && 
targets+=(blockchain_{ancestry,blackball,db,depth,export,import,prune,prune_known_spent_data,stats,usage})
-   use wallet-cli && targets+=(simplewallet)
-   use wallet-rpc && targets+=(wallet_rpc_server)
-   cmake_build ${targets[@]}
-}
-
-src_install() {
-   einstalldocs
-
-   # Install all binaries.
-   find "${BUILD_DIR}/bin/" -type f -executable -print0 |
-   while IFS= read -r -d '' line; do
-   dobin "$line"
-   done
-
-   if use daemon; then
-   dodoc utils/conf/monerod.conf
-
-   # data-dir
-   keepdir /var/lib/monero
-   fowners monero:monero /var/lib/monero
-   fperms 0755 /var/lib/monero
-
-   # log-file dir
-   keepdir /var/log/monero
-   fowners monero:monero /var/log/monero
-   fperms 0755 /var/log/monero
-
-   # /etc/monero/monerod.conf
-   insinto /etc/monero
-   doins "${FILESDIR}/monerod.conf"
-
-   # OpenRC
-   newconfd "${FILESDIR}/monerod.confd" monerod
-   newinitd "${FILESDIR}/monerod.initd" monerod
-
-   # systemd
-   systemd_dounit 

[gentoo-commits] repo/proj/guru:master commit in: profiles/default/linux/amd64/17.0/x32/, ...

2021-01-10 Thread Andrew Ammerlaan
commit: cf0db577362a4befb841b80d976a3b793f0c2a7e
Author: Theo Anderson  posteo  de>
AuthorDate: Fri Jan  8 20:40:15 2021 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Jan  8 20:40:15 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cf0db577

profiles/*: document feature masking

Closes: https://github.com/gentoo/guru/pull/31
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Theo Anderson  posteo.de>

 profiles/arch.list | 3 +++
 profiles/arches.desc   | 3 +++
 profiles/default/linux/amd64/17.0/x32/parent   | 7 +++
 profiles/default/linux/amd64/17.1/hardened/selinux/parent  | 7 +++
 .../default/linux/amd64/17.1/no-multilib/hardened/selinux/parent   | 7 +++
 profiles/default/linux/amd64/17.1/selinux/parent   | 7 +++
 profiles/default/linux/x86/17.0/hardened/selinux/parent| 7 +++
 profiles/default/linux/x86/17.0/selinux/parent | 7 +++
 profiles/profiles.desc | 5 +
 9 files changed, 53 insertions(+)

diff --git a/profiles/arch.list b/profiles/arch.list
index 136c05e0..5ed7343c 100644
--- a/profiles/arch.list
+++ b/profiles/arch.list
@@ -1 +1,4 @@
+# Theo Anderson  (2021-01-06)
+# New arch created for the purpose of hiding profiles.
+# Assuming no one sets KEYWORDS="~hidden"
 hidden

diff --git a/profiles/arches.desc b/profiles/arches.desc
index 08285f15..99924d62 100644
--- a/profiles/arches.desc
+++ b/profiles/arches.desc
@@ -1 +1,4 @@
+# Theo Anderson  (2021-01-06)
+# Masked the new hidden arch as testing to keep
+# in line with no stable packages in ::guru
 hidden  testing

diff --git a/profiles/default/linux/amd64/17.0/x32/parent 
b/profiles/default/linux/amd64/17.0/x32/parent
index 13db7fc1..9f3a62d8 100644
--- a/profiles/default/linux/amd64/17.0/x32/parent
+++ b/profiles/default/linux/amd64/17.0/x32/parent
@@ -1,2 +1,9 @@
+# Theo Anderson  (2021-01-06)
+# Paths relative to `profiles`. The first line denotes the
+# parent profile which should inherit any changes we make here.
+# The second line points to the location where the appropriate
+# masks or forces(?) are. It is important to keep the
+# changes separated per profile/feature in case a
+# parent profile picks up on changes intended for a different profile.
 gentoo:default/linux/amd64/17.0/x32
 :default/linux/amd64/17.0/x32

diff --git a/profiles/default/linux/amd64/17.1/hardened/selinux/parent 
b/profiles/default/linux/amd64/17.1/hardened/selinux/parent
index 285d54a1..1ea01a36 100644
--- a/profiles/default/linux/amd64/17.1/hardened/selinux/parent
+++ b/profiles/default/linux/amd64/17.1/hardened/selinux/parent
@@ -1,2 +1,9 @@
+# Theo Anderson  (2021-01-06)
+# Paths relative to `profiles`. The first line denotes the
+# parent profile which should inherit any changes we make here.
+# The second line points to the location where the appropriate
+# masks or forces(?) are. It is important to keep the
+# changes separated per profile/feature in case a
+# parent profile picks up on changes intended for a different profile.
 gentoo:default/linux/amd64/17.1/hardened/selinux
 :features/selinux

diff --git 
a/profiles/default/linux/amd64/17.1/no-multilib/hardened/selinux/parent 
b/profiles/default/linux/amd64/17.1/no-multilib/hardened/selinux/parent
index 71943202..d6737101 100644
--- a/profiles/default/linux/amd64/17.1/no-multilib/hardened/selinux/parent
+++ b/profiles/default/linux/amd64/17.1/no-multilib/hardened/selinux/parent
@@ -1,2 +1,9 @@
+# Theo Anderson  (2021-01-06)
+# Paths relative to `profiles`. The first line denotes the
+# parent profile which should inherit any changes we make here.
+# The second line points to the location where the appropriate
+# masks or forces(?) are. It is important to keep the
+# changes separated per profile/feature in case a
+# parent profile picks up on changes intended for a different profile.
 gentoo:default/linux/amd64/17.1/no-multilib/hardened/selinux
 :features/selinux

diff --git a/profiles/default/linux/amd64/17.1/selinux/parent 
b/profiles/default/linux/amd64/17.1/selinux/parent
index d81c16d4..667ba52c 100644
--- a/profiles/default/linux/amd64/17.1/selinux/parent
+++ b/profiles/default/linux/amd64/17.1/selinux/parent
@@ -1,2 +1,9 @@
+# Theo Anderson  (2021-01-06)
+# Paths relative to `profiles`. The first line denotes the
+# parent profile which should inherit any changes we make here.
+# The second line points to the location where the appropriate
+# masks or forces(?) are. It is important to keep the
+# changes separated per profile/feature in case a
+# parent profile picks up on changes intended for a different profile.
 gentoo:default/linux/amd64/17.1/selinux
 :features/selinux

diff --git a/profiles/default/linux/x86/17.0/hardened/selinux/parent 

[gentoo-commits] repo/proj/guru:master commit in: www-apps/jackett-bin/

2021-01-10 Thread Andrew Ammerlaan
commit: 502c61050b70615f0e6f6749a6fb2e4d8588dea9
Author: Aisha Tammy  aisha  cc>
AuthorDate: Fri Jan  8 13:03:47 2021 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Jan  8 13:04:20 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=502c6105

www-apps/jackett-bin: version bump to 0.17.207

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

 www-apps/jackett-bin/Manifest|  3 ++
 www-apps/jackett-bin/jackett-bin-0.17.207.ebuild | 36 
 2 files changed, 39 insertions(+)

diff --git a/www-apps/jackett-bin/Manifest b/www-apps/jackett-bin/Manifest
index c5eb242d..b3d320bf 100644
--- a/www-apps/jackett-bin/Manifest
+++ b/www-apps/jackett-bin/Manifest
@@ -1,3 +1,6 @@
 DIST jackett-bin-0.17.197-amd64.tar.gz 44622218 BLAKE2B 
3426ef363bdb89acccacbf1bfced32066eee80a2ad48cb9875d808735b5c1fa0bf80eb39993bc00190292c1b693a7e210c72d5766f5bc16474fddafa8b3eec5a
 SHA512 
18f585c5047a2c68a9e093f0180f485ed2e2e2a1345b7d503ad24dee369cacce3f8b4bed3bf887b12ad772558910ea5b40e3b46eb12cc30aa217ef2470204cd2
 DIST jackett-bin-0.17.197-arm.tar.gz 42499036 BLAKE2B 
8a9fac191bdd129003aaa4151f9eb5434567fee5a6dd761f2f993976d8791e9e001817e31053687ab4ae96423b56a702aa892b1fc958c6537f96487801c6e350
 SHA512 
5410c4a65009b863ba57a1183a2177c3c74d984dfc288691397c741e6b5338aa92582d00384b4b7c5e4fa559e283c3d5ceab695f345c57882d909b132c7b8972
 DIST jackett-bin-0.17.197-arm64.tar.gz 41865109 BLAKE2B 
11223b268144e082235bf1d88fdbeea74e34efddf187693d8e41c36b2c6b7139f96699683d29d27d19ca7390f018243370e0659288535f07f5a98a6101d90274
 SHA512 
3215199cce835997772b58a4f3dbde504c10d62f62603e188c5107ee0c9f3c263e7556863adc472f1c7b05c1b837a9328f96cad30c6857a1ef5ed107d2d5ca66
+DIST jackett-bin-0.17.207-amd64.tar.gz 44620838 BLAKE2B 
1f1220ee74f1e5a16e99480f619804d59f70fdb5a401716900c4dad27aee2b08d905c188adcb1e4d64fcd49b851adb97f777a973e05da9b75598335e49a51bd8
 SHA512 
59ff3efba54b310373c4468ec36e3bc722547a4d7b97b55cf7ea0d74edee2e868154b423a107eac6b02f5fbbfdedcde24749d93de9b03356ce385b3c09ba3b63
+DIST jackett-bin-0.17.207-arm.tar.gz 42497581 BLAKE2B 
051e9c9ab58771fca23d6352f3778b6da18001f8711db4722a0865e39b4eb741a52e88d482ad2df3ad5d723ee9e86e1022cddbbffad8863003c3511f11d10bac
 SHA512 
7de86ab29f77ccdcd65c6649a1d74cd0fd16eb97e791cc02c77df723263291dae2c4b2f9f29e7739d59c7a0358464c4b590ac3255bfad75d2afba8d6fab73027
+DIST jackett-bin-0.17.207-arm64.tar.gz 41864538 BLAKE2B 
1f5e1440478a7df51c4a25b77bf3d7d52021c8e506a5d5e91c7b5a15032a4b256e132f8cc6d101ae994ca5b3b8824cfa9fe23ebfcf1715cb26a2fec0be239f73
 SHA512 
9b3cb3901a4f2570550e4e08578ac6c763a4933dbeec6f125007c86f18664e8efa478df0b5e914a698decaf803b42b62a0b9cf162e1f1c04deb3684dbfd9edf4

diff --git a/www-apps/jackett-bin/jackett-bin-0.17.207.ebuild 
b/www-apps/jackett-bin/jackett-bin-0.17.207.ebuild
new file mode 100644
index ..b2966ed1
--- /dev/null
+++ b/www-apps/jackett-bin/jackett-bin-0.17.207.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd
+
+DESCRIPTION="API Support for your favorite torrent trackers"
+HOMEPAGE="https://github.com/Jackett/Jackett;
+SRC_URI="
+   amd64? ( 
https://github.com/Jackett/Jackett/releases/download/v${PV}/Jackett.Binaries.LinuxAMDx64.tar.gz
 -> ${P}-amd64.tar.gz )
+   arm? ( 
https://github.com/Jackett/Jackett/releases/download/v${PV}/Jackett.Binaries.LinuxARM32.tar.gz
 -> ${P}-arm.tar.gz )
+   arm64? ( 
https://github.com/Jackett/Jackett/releases/download/v${PV}/Jackett.Binaries.LinuxARM64.tar.gz
 -> ${P}-arm64.tar.gz )
+"
+
+KEYWORDS="~amd64 ~arm ~arm64"
+LICENSE="GPL-2"
+SLOT="0"
+RESTRICT="strip"
+
+RDEPEND="
+   app-crypt/mit-krb5
+   dev-libs/icu
+   dev-util/lttng-ust
+"
+
+QA_PREBUILT="*"
+S="${WORKDIR}"/Jackett
+
+src_install() {
+   dodir /opt/jackett
+   cp -a "${S}"/. "${ED}"/opt/jackett || die
+   newinitd "${FILESDIR}"/jackett.initd jackett
+   systemd_dounit "${FILESDIR}"/jackett.service
+   doenvd "${FILESDIR}"/99jackett
+}



[gentoo-commits] repo/proj/guru:master commit in: app-admin/gnome-passwordsafe/

2021-01-10 Thread Andrew Ammerlaan
commit: b8036859afaaf9154db7313c5ccadb737d27e435
Author: Theo Anderson  posteo  de>
AuthorDate: Fri Jan  8 10:39:09 2021 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Jan  8 10:39:09 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b8036859

app-admin/gnome-passwordsafe: drop old

Closes: https://bugs.gentoo.org/742482
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Theo Anderson  posteo.de>

 app-admin/gnome-passwordsafe/Manifest  |  1 -
 .../gnome-passwordsafe-3.99.2.ebuild   | 48 ---
 .../gnome-passwordsafe-4.0.ebuild  | 55 --
 3 files changed, 104 deletions(-)

diff --git a/app-admin/gnome-passwordsafe/Manifest 
b/app-admin/gnome-passwordsafe/Manifest
index 01e29c8a..632e9412 100644
--- a/app-admin/gnome-passwordsafe/Manifest
+++ b/app-admin/gnome-passwordsafe/Manifest
@@ -1,3 +1,2 @@
-DIST PasswordSafe-3.99.2.tar.bz2 530191 BLAKE2B 
06e46052c765dd4b2633cec02b6d6712d3d0b516965ea8100366b865bf50ee63e6c555d10a259afe2c88ec26781c062c34928b66efa77cb7d6737a30c47ab8da
 SHA512 
f3f45c68806481e863baaeac566321349374e0fed9b960e41791e858329e859c76209bcf3b1f0483cae4e932103caf5abf263b53966174e3ddafb083d8d424e7
 DIST PasswordSafe-4.0.tar.bz2 707474 BLAKE2B 
4b1eaa09aecfd40d49886d72dad0b9043074d58d7918593c25645d1c9cc081cd7ade42f8cb957b2eef33d188c882b5cd7c3e9e9b3109cf6f53500d66f981be74
 SHA512 
9c5deaac73193368dac419b3f74d7a1d3c48674a6360afd036bdc6164cfd0d439d0f2fbb955e30e00e7958add41bde905cc6a9bb12a80b400c3cbbf1e276b98e
 DIST PasswordSafe-4.1.tar.bz2 707696 BLAKE2B 
e185f44c505c54a59e611f990094cb43bd989f510218d4ea9050696af1620b92e72e5e0171c93f1e42f694a08fe8cca99ab48838f3b87471543597dafd413865
 SHA512 
69416d335de33d171df314e769c59aa08d7d445e3d822d1b0045cb28625dfc1e5e201a2975c28ad95703d1c4d84ca5ecde2e9901555f4d5ee947fe7b13b8875f

diff --git a/app-admin/gnome-passwordsafe/gnome-passwordsafe-3.99.2.ebuild 
b/app-admin/gnome-passwordsafe/gnome-passwordsafe-3.99.2.ebuild
deleted file mode 100644
index 74e37a19..
--- a/app-admin/gnome-passwordsafe/gnome-passwordsafe-3.99.2.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit gnome2-utils meson xdg
-
-DESCRIPTION="A password manager for GNOME"
-HOMEPAGE="https://gitlab.gnome.org/World/PasswordSafe;
-
-SRC_URI="https://gitlab.gnome.org/World/PasswordSafe/-/archive/${PV}/PasswordSafe-${PV}.tar.bz2;
-
-LICENSE="GPL-2+"
-IUSE="debug +introspection"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-
-S="${WORKDIR}/PasswordSafe-${PV}"
-
-RDEPEND="
-   >=dev-lang/python-3.6.5:*
-   >=dev-python/pykeepass-3.2.0
-   >=x11-libs/gtk+-3.24.1:3[introspection?]
-   >=gui-libs/libhandy-0.0.13:0.0/0
-   >=dev-libs/libpwquality-1.4.0[python]
-   introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
-"
-DEPEND="
-   ${RDEPEND}
-"
-
-src_configure() {
-   local emesonargs=(
-   -Dprofile=$(usex debug development default)
-   )
-   meson_src_configure
-}
-
-pkg_postinst() {
-   gnome2_gconf_install
-   gnome2_schemas_update
-   xdg_pkg_postinst
-}
-pkg_postrm() {
-   gnome2_gconf_uninstall
-   gnome2_schemas_update
-   xdg_pkg_postrm
-}

diff --git a/app-admin/gnome-passwordsafe/gnome-passwordsafe-4.0.ebuild 
b/app-admin/gnome-passwordsafe/gnome-passwordsafe-4.0.ebuild
deleted file mode 100644
index d4f4b72f..
--- a/app-admin/gnome-passwordsafe/gnome-passwordsafe-4.0.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit gnome2-utils meson xdg python-any-r1
-
-DESCRIPTION="A password manager for GNOME"
-HOMEPAGE="https://gitlab.gnome.org/World/PasswordSafe;
-SRC_URI="https://gitlab.gnome.org/World/PasswordSafe/-/archive/${PV}/PasswordSafe-${PV}.tar.bz2;
-
-LICENSE="GPL-2+"
-IUSE="debug +introspection"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-
-S="${WORKDIR}/PasswordSafe-${PV}"
-
-DEPEND="
-   $(python_gen_any_dep '
-   dev-python/pycryptodome[${PYTHON_USEDEP}]
-   >=dev-python/pykeepass-3.2.0[${PYTHON_USEDEP}]
-   ')
-   gui-libs/libhandy:1=[introspection?]
-   >=dev-libs/libpwquality-1.4.0[python]
-   >=x11-libs/gtk+-3.24.1:3[introspection?]
-   introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   local emesonargs=(
-   -Dprofile=$(usex debug development default)
-   )
-   meson_src_configure
-}
-
-src_install() {
-   meson_src_install
-   python_optimize
-}
-
-pkg_postinst() {
-   gnome2_gconf_install
-   gnome2_schemas_update
-   xdg_pkg_postinst
-}
-
-pkg_postrm() {
-   gnome2_gconf_uninstall
-   gnome2_schemas_update
-   xdg_pkg_postrm
-}



[gentoo-commits] repo/proj/guru:master commit in: app-admin/gnome-passwordsafe/

2021-01-10 Thread Andrew Ammerlaan
commit: 8494722b6cda4f4aa659ef069a78c464250d1725
Author: Theo Anderson  posteo  de>
AuthorDate: Fri Jan  8 10:38:26 2021 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Jan  8 10:38:26 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8494722b

app-admin/gnome-passwordsafe: bump to 4.1

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Theo Anderson  posteo.de>

 app-admin/gnome-passwordsafe/Manifest  |  1 +
 .../gnome-passwordsafe-4.1.ebuild  | 63 ++
 2 files changed, 64 insertions(+)

diff --git a/app-admin/gnome-passwordsafe/Manifest 
b/app-admin/gnome-passwordsafe/Manifest
index 48925ccc..01e29c8a 100644
--- a/app-admin/gnome-passwordsafe/Manifest
+++ b/app-admin/gnome-passwordsafe/Manifest
@@ -1,2 +1,3 @@
 DIST PasswordSafe-3.99.2.tar.bz2 530191 BLAKE2B 
06e46052c765dd4b2633cec02b6d6712d3d0b516965ea8100366b865bf50ee63e6c555d10a259afe2c88ec26781c062c34928b66efa77cb7d6737a30c47ab8da
 SHA512 
f3f45c68806481e863baaeac566321349374e0fed9b960e41791e858329e859c76209bcf3b1f0483cae4e932103caf5abf263b53966174e3ddafb083d8d424e7
 DIST PasswordSafe-4.0.tar.bz2 707474 BLAKE2B 
4b1eaa09aecfd40d49886d72dad0b9043074d58d7918593c25645d1c9cc081cd7ade42f8cb957b2eef33d188c882b5cd7c3e9e9b3109cf6f53500d66f981be74
 SHA512 
9c5deaac73193368dac419b3f74d7a1d3c48674a6360afd036bdc6164cfd0d439d0f2fbb955e30e00e7958add41bde905cc6a9bb12a80b400c3cbbf1e276b98e
+DIST PasswordSafe-4.1.tar.bz2 707696 BLAKE2B 
e185f44c505c54a59e611f990094cb43bd989f510218d4ea9050696af1620b92e72e5e0171c93f1e42f694a08fe8cca99ab48838f3b87471543597dafd413865
 SHA512 
69416d335de33d171df314e769c59aa08d7d445e3d822d1b0045cb28625dfc1e5e201a2975c28ad95703d1c4d84ca5ecde2e9901555f4d5ee947fe7b13b8875f

diff --git a/app-admin/gnome-passwordsafe/gnome-passwordsafe-4.1.ebuild 
b/app-admin/gnome-passwordsafe/gnome-passwordsafe-4.1.ebuild
new file mode 100644
index ..e42208d2
--- /dev/null
+++ b/app-admin/gnome-passwordsafe/gnome-passwordsafe-4.1.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_{7..9} )
+
+inherit gnome2-utils meson xdg python-any-r1
+
+DESCRIPTION="A password manager for GNOME"
+HOMEPAGE="https://gitlab.gnome.org/World/PasswordSafe;
+SRC_URI="https://gitlab.gnome.org/World/PasswordSafe/-/archive/${PV}/PasswordSafe-${PV}.tar.bz2;
+
+LICENSE="GPL-2+"
+IUSE="debug +introspection"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+
+S="${WORKDIR}/PasswordSafe-${PV}"
+
+DEPEND="
+   $(python_gen_any_dep '
+   dev-python/pycryptodome[${PYTHON_USEDEP}]
+   >=dev-python/pykeepass-3.2.0[${PYTHON_USEDEP}]
+   ')
+   gui-libs/libhandy:1=[introspection?]
+   >=dev-libs/libpwquality-1.4.0[python]
+   >=x11-libs/gtk+-3.24.1:3[introspection?]
+   introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   # Use python from PATH instead of binary found during install
+   sed -i "s:@PYTHON@:/usr/bin/env python:" passwordsafe.in || die
+   # pycryptodomex to pycryptodome conversion
+   sed -i 's/Cryptodome/Crypto/g' passwordsafe/keyfile_generator.py || die
+}
+
+src_configure() {
+   local emesonargs=(
+   -Dprofile=$(usex debug development default)
+   )
+   meson_src_configure
+}
+
+src_install() {
+   meson_src_install
+   python_optimize
+}
+
+pkg_postinst() {
+   gnome2_gconf_install
+   gnome2_schemas_update
+   xdg_pkg_postinst
+}
+
+pkg_postrm() {
+   gnome2_gconf_uninstall
+   gnome2_schemas_update
+   xdg_pkg_postrm
+}



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

2021-01-10 Thread Andrew Ammerlaan
commit: 2cba94dc93fde6d971c600c436fa742ee3f6ead8
Author: Theo Anderson  posteo  de>
AuthorDate: Fri Jan  8 20:39:30 2021 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Jan  8 20:39:30 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2cba94dc

profiles/profiles.desc: change to dev profiles

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Theo Anderson  posteo.de>

 profiles/profiles.desc | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/profiles/profiles.desc b/profiles/profiles.desc
index edde3e2e..ef44b2d6 100644
--- a/profiles/profiles.desc
+++ b/profiles/profiles.desc
@@ -1,6 +1,6 @@
-hidden  default/linux/amd64/17.1/selinuxstable
-hidden  default/linux/amd64/17.1/hardened/selinux   stable
-hidden  default/linux/amd64/17.1/no-multilib/hardened/selinux   stable
-hidden  default/linux/amd64/17.0/x32stable
-hidden  default/linux/x86/17.0/selinux  stable
-hidden  default/linux/x86/17.0/hardened/selinux stable
+hidden  default/linux/amd64/17.1/selinuxdev
+hidden  default/linux/amd64/17.1/hardened/selinux   dev
+hidden  default/linux/amd64/17.1/no-multilib/hardened/selinux   dev
+hidden  default/linux/amd64/17.0/x32dev
+hidden  default/linux/x86/17.0/selinux  dev
+hidden  default/linux/x86/17.0/hardened/selinux dev



[gentoo-commits] repo/proj/guru:master commit in: www-apps/gogs/, www-apps/gogs/files/

2021-01-10 Thread Andrew Ammerlaan
commit: ed515cf2a9eae78e2d1d6f8881e49a427b4d0942
Author: Theo Anderson  posteo  de>
AuthorDate: Fri Jan  8 11:17:28 2021 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Jan  8 11:17:28 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ed515cf2

www-apps/gogs: tidy ebuild

Closes: https://bugs.gentoo.org/741522
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Theo Anderson  posteo.de>

 www-apps/gogs/files/gogs-0.12.3.patch |  6 ++---
 www-apps/gogs/gogs-0.12.3.ebuild  | 45 +++
 2 files changed, 28 insertions(+), 23 deletions(-)

diff --git a/www-apps/gogs/files/gogs-0.12.3.patch 
b/www-apps/gogs/files/gogs-0.12.3.patch
index 2d99c012..f5c0eb0b 100644
--- a/www-apps/gogs/files/gogs-0.12.3.patch
+++ b/www-apps/gogs/files/gogs-0.12.3.patch
@@ -1,6 +1,6 @@
-diff --git a/custom/conf/app.ini b/custom/conf/app.ini
 a/custom/conf/app.ini
-+++ b/custom/conf/app.ini
+diff --git a/conf/app.ini b/conf/app.ini
+--- a/conf/app.ini
 b/conf/app.ini
 @@ -1,14 +1,12 @@
 -# !!! NEVER EVER MODIFY THIS FILE !!!
 -# !!! PLEASE MAKE CHANGES ON CORRESPONDING CUSTOM CONFIG FILE !!!

diff --git a/www-apps/gogs/gogs-0.12.3.ebuild b/www-apps/gogs/gogs-0.12.3.ebuild
index d8679f2a..05c81318 100644
--- a/www-apps/gogs/gogs-0.12.3.ebuild
+++ b/www-apps/gogs/gogs-0.12.3.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=7
@@ -6,7 +6,10 @@ EAPI=7
 inherit fcaps go-module systemd
 
 DESCRIPTION="Gogs is a self-hosted Git service written in Go"
-HOMEPAGE="https://gogs.io https://github.com/gogs/gogs;
+HOMEPAGE="
+   https://gogs.io
+   https://github.com/gogs/gogs
+"
 
 EGO_SUM=(
"cloud.google.com/go v0.26.0/go.mod"
@@ -439,26 +442,26 @@ EGO_SUM=(
"xorm.io/core v0.7.2/go.mod"
"xorm.io/xorm v0.8.0"
"xorm.io/xorm v0.8.0/go.mod"
-   )
+)
+
 go-module_set_globals
 
-SRC_URI="https://github.com/gogs/gogs/archive/v${PV}.tar.gz -> ${P}.tar.gz 
${EGO_SUM_SRC_URI}"
+SRC_URI="
+   https://github.com/gogs/gogs/archive/v${PV}.tar.gz -> ${P}.tar.gz
+   ${EGO_SUM_SRC_URI}
+"
 
 LICENSE="Apache-2.0 BSD MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-
 IUSE="cert mysql +pam postgres +sqlite"
 REQUIRED_USE="|| ( sqlite mysql postgres )"
-PATCHES=( "${FILESDIR}/${P}.patch" )
-
 RESTRICT="mirror"
 
 DEPEND="
acct-user/gogs
sqlite? ( dev-db/sqlite:3 )
 "
-
 RDEPEND="
${DEPEND}
app-shells/bash
@@ -469,24 +472,23 @@ RDEPEND="
postgres? ( dev-db/postgresql[pam?] )
 "
 
+PATCHES=( "${FILESDIR}/${P}.patch" )
 FILECAPS=(
cap_net_bind_service+ep usr/bin/gogs
 )
 
 src_prepare() {
-   mkdir -p "${S}/custom/conf/"
-   cp "${S}/conf/app.ini" "${S}/custom/conf/"
-
default
-
-   sed -i -e 's:data/gogs.db:database/gogs.db:' 
"${S}/templates/install.tmpl" || die
+   mkdir -p custom/conf/
+   cp conf/app.ini custom/conf/
+   sed -i 's:data/:database/:' templates/install.tmpl || die
 }
 
 src_compile() {
-   GOLANG_PKG_TAGS=""
-   use cert && GOLANG_PKG_TAGS+=" cert"
-   use pam && GOLANG_PKG_TAGS+=" pam"
-   go build -tags ${GOLANG_PKG_TAGS} -o gogs
+   local GOLANG_PKG_TAGS=()
+   use cert && GOLANG_PKG_TAGS+=( cert )
+   use pam && GOLANG_PKG_TAGS+=( pam )
+   go build -tags ${GOLANG_PKG_TAGS[@]} -o gogs || die
 }
 
 src_install() {
@@ -501,9 +503,7 @@ src_install() {
newinitd "${FILESDIR}/gogs-initd" gogs
 
# Install HTTPS certs
-   if use cert; then
-   keepdir /etc/${PN}/https
-   fi
+   use cert && keepdir /etc/${PN}/https
 
# Install configuration files
insinto /etc/${PN}/conf
@@ -530,3 +530,8 @@ src_install() {
keepdir /var/log/${PN}
fowners -R gogs:git /var/log/${PN}
 }
+
+pkg_postinst() {
+   ewarn "You will not be able to run gogs via the command line."
+   ewarn "Please use the installed service files."
+}



[gentoo-commits] repo/proj/guru:master commit in: profiles/default/linux/amd64/17.0/x32/, profiles/

2021-01-10 Thread Andrew Ammerlaan
commit: 11f7dc2b334641301e6f7d73940e979e4c6e3906
Author: Theo Anderson  posteo  de>
AuthorDate: Fri Jan  8 20:39:07 2021 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Jan  8 20:39:07 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=11f7dc2b

www-apps/code-server-bin: mask on x32 profiles

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Theo Anderson  posteo.de>

 profiles/default/linux/amd64/17.0/x32/package.mask | 9 +
 profiles/default/linux/amd64/17.0/x32/parent   | 2 ++
 profiles/profiles.desc | 1 +
 3 files changed, 12 insertions(+)

diff --git a/profiles/default/linux/amd64/17.0/x32/package.mask 
b/profiles/default/linux/amd64/17.0/x32/package.mask
new file mode 100644
index ..bb9c6ff6
--- /dev/null
+++ b/profiles/default/linux/amd64/17.0/x32/package.mask
@@ -0,0 +1,9 @@
+# Pawel Hajdan jr  (2012-10-07)
+# V8 upstream said they won't support x32, bug #423815
+# Masked packages containing V8.
+# Michał Górny  (2018-01-12)
+# ...and their reverse dependencies.
+# Theo Anderson  (2021-01-06)
+# Is this still relevant? Looks like support was comitted:
+# https://codereview.chromium.org/18014003
+www-apps/code-server-bin

diff --git a/profiles/default/linux/amd64/17.0/x32/parent 
b/profiles/default/linux/amd64/17.0/x32/parent
new file mode 100644
index ..13db7fc1
--- /dev/null
+++ b/profiles/default/linux/amd64/17.0/x32/parent
@@ -0,0 +1,2 @@
+gentoo:default/linux/amd64/17.0/x32
+:default/linux/amd64/17.0/x32

diff --git a/profiles/profiles.desc b/profiles/profiles.desc
index e1efe75e..edde3e2e 100644
--- a/profiles/profiles.desc
+++ b/profiles/profiles.desc
@@ -1,5 +1,6 @@
 hidden  default/linux/amd64/17.1/selinuxstable
 hidden  default/linux/amd64/17.1/hardened/selinux   stable
 hidden  default/linux/amd64/17.1/no-multilib/hardened/selinux   stable
+hidden  default/linux/amd64/17.0/x32stable
 hidden  default/linux/x86/17.0/selinux  stable
 hidden  default/linux/x86/17.0/hardened/selinux stable



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

2021-01-10 Thread Andreas Sturmlechner
commit: 2e723fd26ce09cf09af0eb57b91b7c899a889110
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan 10 11:02:59 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 10 11:02:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e723fd2

profiles: Add alternative to sys-power/pm-utils package.mask

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 profiles/package.mask | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 2ce4dacb8fc..57b8f297780 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -73,7 +73,8 @@ sys-libs/libnih
 
 # Andreas Sturmlechner  (2021-01-06)
 # Abandoned upstream, countless bugs. Replaced by builtin functionality in
-# elogind or systemd. Removal in 30 days. Bug #659616.
+# elogind or systemd. Alternative: sys-power/suspend.
+# Removal in 30 days. Bug #659616
 sys-power/pm-utils
 sys-power/pm-quirks
 



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

2021-01-10 Thread Michał Górny
commit: b3689b636f4282889c8163e2d0c289700fb76b36
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jan 10 10:58:01 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jan 10 10:58:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3689b63

sys-kernel/vanilla-kernel: Leave a note to bump config on bump

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

 sys-kernel/vanilla-kernel/vanilla-kernel-5.4.88.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.88.ebuild 
b/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.88.ebuild
index 70f1e31be56..af6cbd04ffc 100644
--- a/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.88.ebuild
+++ b/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.88.ebuild
@@ -59,6 +59,7 @@ pkg_pretend() {
 }
 
 src_unpack() {
+   [[ ${PV} == 5.4.88 ]] || die "Bump GENTOO_CONFIG_VER!"
if use verify-sig; then
einfo "Unpacking linux-${PV}.tar.xz ..."
verify-sig_verify_detached - "${DISTDIR}"/linux-${PV}.tar.sign \



[gentoo-commits] repo/proj/prefix:master commit in: scripts/auto-bootstraps/

2021-01-10 Thread Fabian Groffen
commit: 213dd7e3231033ad02a7c831df210acec32cf282
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Jan 10 10:52:46 2021 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Jan 10 10:53:53 2021 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=213dd7e3

scripts/auto-bootstraps/analyse_result: add links for stage2/3 fails

much like emerge -e system, stage 2 and 3 use portage, thus individual
buildlogs exist, which are much less in size than the entire stagelogs.

Signed-off-by: Fabian Groffen  gentoo.org>

 scripts/auto-bootstraps/analyse_result.py | 20 
 1 file changed, 16 insertions(+), 4 deletions(-)

diff --git a/scripts/auto-bootstraps/analyse_result.py 
b/scripts/auto-bootstraps/analyse_result.py
index 880fd64343..459341c8c7 100755
--- a/scripts/auto-bootstraps/analyse_result.py
+++ b/scripts/auto-bootstraps/analyse_result.py
@@ -67,15 +67,27 @@ def get_err_reason(arch, dte, err):
 with open(stagelog, 'rb') as f:
 errexp = re.compile(r'^( \* (ERROR:|Fetch failed for)|emerge: 
there are no) ')
 for line in f:
-res = errexp.match(line.decode('utf-8', 'ignore'))
+line = line.decode('utf-8', 'ignore')
+res = errexp.match(line)
 if res:
 break
 if not line:
 return 'stage %d failed' % \
 (os.path.join(arch, '%d' % dte), err, err)
-return 'stage %d failed%s' % \
-(os.path.join(arch, '%d' % dte), err, err, \
- html.escape(line.decode('utf-8', 'ignore')))
+m = re.fullmatch(
+r'(\* ERROR: )([a-z-]+/[a-zA-Z0-9._-]+)(::gentoo.* 
failed.*)',
+line.strip())
+if m:
+return 'stage %d failed' % \
+(os.path.join(arch, '%d' % dte), err, err) + \
+'%s%s%s' % \
+(html.escape(m.group(1)), \
+os.path.join(arch, '%d' % dte, "portage", m.group(2)), 
\
+html.escape(m.group(2)), html.escape(m.group(3)))
+else:
+return 'stage %d failed%s' 
% \
+(os.path.join(arch, '%d' % dte), err, err, \
+ html.escape(line))
 else:
 return 'stage %d did not start' % err
 if err == 4:



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

2021-01-10 Thread Andreas Sturmlechner
commit: 693556a6a9305af3e171c1f4a3bc15d813943e40
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Jan  9 17:08:21 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 10 10:19:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=693556a6

dev-python/sshtunnel: python3_9

NixOS does it, Fedora is even using 0.1.5 with py39.

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

 dev-python/sshtunnel/sshtunnel-0.3.1.ebuild | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/dev-python/sshtunnel/sshtunnel-0.3.1.ebuild 
b/dev-python/sshtunnel/sshtunnel-0.3.1.ebuild
index d1494d45701..3cf4e053612 100644
--- a/dev-python/sshtunnel/sshtunnel-0.3.1.ebuild
+++ b/dev-python/sshtunnel/sshtunnel-0.3.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 DISTUTILS_USE_SETUPTOOLS=rdepend
 inherit distutils-r1
 
@@ -11,13 +11,12 @@ DESCRIPTION="Pure Python SSH tunnels"
 HOMEPAGE="https://pypi.org/project/sshtunnel/;
 SRC_URI="mirror://pypi/s/sshtunnel/${P}.tar.gz"
 
-KEYWORDS="amd64 ~arm x86"
 LICENSE="MIT"
 SLOT="0"
-
+KEYWORDS="amd64 ~arm x86"
 IUSE=""
 
+RESTRICT="test"
+
 RDEPEND="dev-python/paramiko[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}"
-
-RESTRICT="test"



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

2021-01-10 Thread Andreas Sturmlechner
commit: 49c734895f6f5558e34adc97bf23f7fce97870c7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan 10 10:15:11 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 10 10:19:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49c73489

dev-python/flask-paranoid: Modernise using distutils_enable_tests

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

 dev-python/flask-paranoid/flask-paranoid-0.2.0-r1.ebuild | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dev-python/flask-paranoid/flask-paranoid-0.2.0-r1.ebuild 
b/dev-python/flask-paranoid/flask-paranoid-0.2.0-r1.ebuild
index 61e2d392220..3980274a698 100644
--- a/dev-python/flask-paranoid/flask-paranoid-0.2.0-r1.ebuild
+++ b/dev-python/flask-paranoid/flask-paranoid-0.2.0-r1.ebuild
@@ -21,10 +21,7 @@ IUSE="test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="dev-python/flask[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"
 
 S="${WORKDIR}/${PN}-${MY_PV}"
 
-python_test() {
-   esetup.py test
-}
+distutils_enable_tests setup.py



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

2021-01-10 Thread Andreas Sturmlechner
commit: c487d5acd4f2f61f2dc9386f226d2a73ba4eb0c3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Jan  9 17:20:07 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 10 10:19:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c487d5ac

dev-db/pgadmin4: python3_9

Seems to work with >=4.27 already for Arch.

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

 dev-db/pgadmin4/pgadmin4-4.29.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-db/pgadmin4/pgadmin4-4.29.ebuild 
b/dev-db/pgadmin4/pgadmin4-4.29.ebuild
index f795a75bfb2..407c7e2e6dc 100644
--- a/dev-db/pgadmin4/pgadmin4-4.29.ebuild
+++ b/dev-db/pgadmin4/pgadmin4-4.29.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 PYTHON_REQ_USE="sqlite"
 inherit desktop python-single-r1 qmake-utils xdg
 



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

2021-01-10 Thread Andreas Sturmlechner
commit: c66c391ffd75f61d249cd31efee34b0e69d65278
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan 10 10:13:25 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 10 10:19:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c66c391f

dev-python/flask-migrate: Modernise using distutils_enable_tests

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

 dev-python/flask-migrate/flask-migrate-2.5.3.ebuild | 9 +++--
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/dev-python/flask-migrate/flask-migrate-2.5.3.ebuild 
b/dev-python/flask-migrate/flask-migrate-2.5.3.ebuild
index d684926f496..d121364929a 100644
--- a/dev-python/flask-migrate/flask-migrate-2.5.3.ebuild
+++ b/dev-python/flask-migrate/flask-migrate-2.5.3.ebuild
@@ -19,18 +19,15 @@ KEYWORDS="~amd64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 
+distutils_enable_tests setup.py
+
 RDEPEND="
>=dev-python/alembic-0.7[${PYTHON_USEDEP}]
>=dev-python/flask-0.9[${PYTHON_USEDEP}]
>=dev-python/flask-sqlalchemy-1.0[${PYTHON_USEDEP}]
 "
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
+BDEPEND="
test? ( >=dev-python/flask-script-0.6[${PYTHON_USEDEP}] )
 "
 
 S="${WORKDIR}/${MY_P}"
-
-python_test() {
-   esetup.py test || die "Testing failed with ${EPYTHON}"
-}



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

2021-01-10 Thread Miroslav Šulc
commit: 70f9a91afcff4f8d5aa14368774de21c58076cb4
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Jan 10 10:19:01 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Jan 10 10:19:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70f9a91a

www-apps/postfixadmin: bump to 3.3.0

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Miroslav Šulc  gentoo.org>

 www-apps/postfixadmin/Manifest  |   1 +
 www-apps/postfixadmin/postfixadmin-3.3.0.ebuild | 107 
 2 files changed, 108 insertions(+)

diff --git a/www-apps/postfixadmin/Manifest b/www-apps/postfixadmin/Manifest
index 56aef54dbbf..cd477300fbd 100644
--- a/www-apps/postfixadmin/Manifest
+++ b/www-apps/postfixadmin/Manifest
@@ -1,2 +1,3 @@
 DIST postfixadmin-3.2.3.tar.gz 1330423 BLAKE2B 
95aeb1a5f3b1dca2ce60e3e6a974f59b8c0e649c185149adb5d1259477cfe113b59c06f825cc9e1a38741260f111eaa3eef5a26ca44260aea2277b16f1f54543
 SHA512 
d44addb9a3ca830caf55b603363054df561d659957f21cab7523465ebf02ca18abe7fcf298fe718d957d0b7bf5613e2dde69c78c26e0f7f6f595d79b28fe08ab
 DIST postfixadmin-3.2.4.tar.gz 1331185 BLAKE2B 
a16df15f6376f9024114c5870174168e5f3d4b0f52d8759db0d83cb4c05fbbe2949056de0ca5ce097652588b777d59f08bcc277c95fbd7f2ebc5dd7f357f
 SHA512 
2bd7ae05addbaf3c6c7eebea16ec1e21b2c67c8e6161446ed82a9553c26c04e19c1ec9ce248a9b9df504df56d309590259e6f04907b04b593548028b40e40d47
+DIST postfixadmin-3.3.0.tar.gz 1850601 BLAKE2B 
126a9ad89338372ff28f7d4400456678d6599f453457e180b31e34dd3239023c0c77f3d195ff25dbebfbe3fd65186934ac876d92b438c885340c34eba28cf93f
 SHA512 
941c1b51d353253039fd8af48428b981e5f79f463ed09e5bb3417a22cbd114e025f86245e74c92ff5e375ab944ed7d9ff57f51d145838eede77ab3f7e54d5eb6

diff --git a/www-apps/postfixadmin/postfixadmin-3.3.0.ebuild 
b/www-apps/postfixadmin/postfixadmin-3.3.0.ebuild
new file mode 100644
index 000..0df1b6d2667
--- /dev/null
+++ b/www-apps/postfixadmin/postfixadmin-3.3.0.ebuild
@@ -0,0 +1,107 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit user webapp
+
+DESCRIPTION="Web Based Management tool for Postfix style virtual domains and 
users"
+HOMEPAGE="http://postfixadmin.sourceforge.net;
+SRC_URI="https://github.com/postfixadmin/postfixadmin/archive/${P}.tar.gz;
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="+mysql postgres +vacation"
+REQUIRED_USE="|| ( mysql postgres )"
+
+DEPEND="
+   dev-lang/php:*[unicode,imap,postgres?]
+   vacation? (
+   dev-perl/DBI
+   dev-perl/Email-Sender
+   dev-perl/Email-Valid
+   dev-perl/Log-Dispatch
+   dev-perl/Log-Log4perl
+   dev-perl/MIME-Charset
+   dev-perl/MIME-EncWords
+   mysql? ( dev-perl/DBD-mysql )
+   postgres? ( dev-perl/DBD-Pg )
+   )
+"
+RDEPEND="${DEPEND}
+   virtual/httpd-php
+   mysql? ( || ( dev-lang/php[mysqli] dev-lang/php[mysql] ) )"
+
+S="${WORKDIR}/${PN}-${P}"
+
+need_httpd_cgi
+
+pkg_setup() {
+   webapp_pkg_setup
+
+   if use vacation; then
+   enewgroup vacation
+   enewuser vacation -1 -1 -1 vacation
+   fi
+}
+
+src_install() {
+   webapp_src_preinst
+
+   if use vacation; then
+   insinto /var/spool/vacation
+   newins VIRTUAL_VACATION/vacation.pl vacation.pl-${SLOT}
+   fowners vacation:vacation 
/var/spool/vacation/vacation.pl-${SLOT}
+   fperms 770 /var/spool/vacation/vacation.pl-${SLOT}
+   dodoc VIRTUAL_VACATION/FILTER_README
+   newdoc VIRTUAL_VACATION/INSTALL.md VIRTUAL_VACATION_INSTALL.md
+   rm -r 
VIRTUAL_VACATION/{vacation.pl,INSTALL.md,tests,FILTER_README} || die
+   fi
+
+   docinto /usr/share/doc/${PF}/
+   dodoc -r ADDITIONS
+
+   local docs="DOCUMENTS/*.txt INSTALL.TXT CHANGELOG.TXT"
+   dodoc ${docs}
+
+   rm -rf ${docs} DOCUMENTS/ GPL-LICENSE.TXT LICENSE.TXT debian/ tests/ 
ADDITIONS/
+
+   insinto "${MY_HTDOCSDIR}"
+   doins -r .
+
+   webapp_configfile "${MY_HTDOCSDIR}"/config.inc.php
+
+   webapp_postinst_txt en "${FILESDIR}"/postinstall-en-2.3.txt
+   webapp_src_install
+}
+
+pkg_postinst() {
+   webapp_pkg_postinst
+
+   einfo "Please note that if upgrading from version prior to 3.3.0,"
+   einfo "existing setup_password will no longer work and you will"
+   einfo "need to generate new one. See instructions in setup.php."
+
+   if use vacation; then
+   # portage does not update owners of directories (feature :)
+   chown vacation:vacation "${ROOT}"/var/spool/vacation/
+   einfo
+   einfo "/var/spool/vacation/vacation.pl symlink was updated to:"
+   einfo "/var/spool/vacation/vacation.pl-${SLOT}"
+   ln -sf "${ROOT}"/var/spool/vacation/vacation.pl{-${SLOT},} || 
die
+   fi

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

2021-01-10 Thread Fabian Groffen
commit: bb90346ed5980f47ee7998ef7e4af8f496b00df9
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Jan 10 10:04:28 2021 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Jan 10 10:04:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb90346e

sys-devel/binutils-apple-8.2.1-r100: drop non-TAPI version

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Fabian Groffen  gentoo.org>

 sys-devel/binutils-apple/Manifest  |   1 -
 .../binutils-apple-8.2.1-r100.ebuild   | 100 -
 2 files changed, 101 deletions(-)

diff --git a/sys-devel/binutils-apple/Manifest 
b/sys-devel/binutils-apple/Manifest
index f84592c72d4..a6468db7cc6 100644
--- a/sys-devel/binutils-apple/Manifest
+++ b/sys-devel/binutils-apple/Manifest
@@ -7,7 +7,6 @@ DIST binutils-apple-patches-8.2-r1.tar.bz2 10830 BLAKE2B 
345db8619873e9e91b79c3f
 DIST cctools-795.tar.gz 1993795 BLAKE2B 
dc0915f8647eecba5352e34dfc5752b679df39ead9a4734c49955a824d2cc127308eed46a614665dfe08a9d3036eb37f587e1b765a7df727facc42a33befacb0
 SHA512 
5a34a73dc71d3574a357f6b0f26a48a99dd0995d62695b309cdfe85c4960934b410455b1ba6bdbc9a4e32106bb45b3604975d2a80ad1be21f5d4eac69254
 DIST cctools-895.tar.gz 1716126 BLAKE2B 
9706a6b243518693888e5e21dfe8d83b217380b47db621a7f1b35105eb72fb8997353ff85133224b0856f6b6ec710f54a4fe79076d9e228f89c98b6f517de309
 SHA512 
4ef9db870385cc2c4263bcbe42ff0de80386771f5acbc7082a1818ecd6b8d7bb1bfa02a7fcfecd3e7281481aeaaac4c331359aca3564bfe7a4c7dea1e0d06126
 DIST cctools-949.0.1.tar.gz 1968671 BLAKE2B 
b38fbae5d2ec011a94c2e4ec299c1ecd173f2c2516664cf925b06aaa078e234b59068158ea29dfcbf763ca98c73bc1806a507fbbe49a8d4d0a2fd4e602f401ce
 SHA512 
13c493a48852c980d2829d28616c18640ad5ebfe6acd55143c4c948665e0b65377a459560667074fdac5e69bb6360fea13d988303c49fd3dd4a58e9b5c54ebcb
-DIST darwin-xtools-8.2.1-r100.tar.gz 2934997 BLAKE2B 
d0324d47d3aa0afd0007fbbd16c74e046c643c645744cc7ef0535eeed275c2d61763a1c6708b3a0a796f0fc83e62b5e5fe907c62553b439bea750353cfac2f73
 SHA512 
7000bca61b1dc63d1d08a9bcf104dace4376c2656af0faddc28a7d6c3718dbe54713da96136091a2024a644eaf90758714d1e4eb3cfeec2df0e412d847f59c30
 DIST darwin-xtools-8.2.1-r101.tar.gz 3105898 BLAKE2B 
3516cd252d4880b1e80c76365efef6f96830578bb5512befe33f86decdeb026fbad17fd3b27e9c3cf20d100897002e86ec08822041baa0291bb53e0b0ecf4d10
 SHA512 
f84cbde0853c14f03af40a124133d71d3e1710da021a593336eb4351c60edbca5753af0780f269ed4716cd194973f5437d428c5ff9615d9ce025dba3b7daef77
 DIST dyld-132.13.tar.gz 342690 BLAKE2B 
011418ba5b91a28bb7c5f8188af2fac5478bad53581396b7c1c4623a854a8f0d5ecb92d023246157830ed2db83bbf28e23225a255188e2d07eeb6c933814bda6
 SHA512 
2c9d50fc32868b696d88730eb6ea6afa9bb9f56883cc2ea4f1d41f370f311b7487a29ce0eff6761e1eeb086a18e2513953989d8d5d3ef1043bb662e86baadd3f
 DIST dyld-421.2.tar.gz 625173 BLAKE2B 
8f8325314861ae2ea10fbe78c74c7199b547973ac61a8e9cb76fb874a0e53395ea31c04e489f85ac7cfdb5715ae5051679453de75eb195e313113e7bbbc70340
 SHA512 
75f2fb840da980d44649aa3e045f50c4e37d4403fbdb1e2e5f1a85bf6d8859e1130053c3806f7ef992fdfc6573f7f18146263c690144bdd3df31452c6bdd8bd8

diff --git a/sys-devel/binutils-apple/binutils-apple-8.2.1-r100.ebuild 
b/sys-devel/binutils-apple/binutils-apple-8.2.1-r100.ebuild
deleted file mode 100644
index 97ee1d43e54..000
--- a/sys-devel/binutils-apple/binutils-apple-8.2.1-r100.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_MAKEFILE_GENERATOR=emake  # keep dependencies down
-
-inherit cmake toolchain-funcs
-
-DESCRIPTION="Darwin Xtools matching Xcode Tools ${PN}"
-HOMEPAGE="https://github.com/iains/darwin-xtools;
-SRC_URI="https://github.com/grobian/darwin-xtools/archive/gentoo-${PVR}.tar.gz 
-> darwin-xtools-${PVR}.tar.gz"
-
-LICENSE="APSL-2"
-SLOT="8"
-KEYWORDS="~ppc-macos ~x64-macos"
-IUSE="tapi"
-
-DEPEND="sys-devel/binutils-config
-   app-arch/xar
-   tapi? ( sys-libs/tapi )"
-RDEPEND="${DEPEND}"
-BDEPEND=""
-
-S="${WORKDIR}/darwin-xtools-gentoo-${PVR}"
-
-src_prepare() {
-   cmake_src_prepare
-
-   # make prunetrie a static archive, because the dynamic libs aren't
-   # installed, for there really are no consumers
-   # fixed for next release
-   sed -i -e '/add_library/s/prunetrie/& STATIC/' \
-   ld64/src/CMakeLists.txt || die
-}
-
-src_configure() {
-   CTARGET=${CTARGET:-${CHOST}}
-   if [[ ${CTARGET} == ${CHOST} ]] ; then
-   if [[ ${CATEGORY} == cross-* ]] ; then
-   export CTARGET=${CATEGORY#cross-}
-   fi
-   fi
-
-   LIBPATH=/usr/$(get_libdir)/binutils/${CTARGET}/xtools-${PV}
-   DATAPATH=/usr/share/binutils-data/${CTARGET}/xtools-${PV}
-   if [[ ${CHOST} != ${CTARGET} ]] ; then
-   BINPATH=/usr/${CHOST}/${CTARGET}/binutils-bin/xtools-${PV}
-   else
-   BINPATH=/usr/${CTARGET}/binutils-bin/xtools-${PV}
-   fi
-
-   

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

2021-01-10 Thread Fabian Groffen
commit: b66acbda345c55bcb41d5b4907568f034ab5a6e9
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Jan 10 10:00:44 2021 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Jan 10 10:00:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b66acbda

profiles/prefix/darwin/macos/package.mask: mask wget-1.21.1

Fails to compile with a bunch of problems, fall back to older version,
a next release likely fixes these problems.

Signed-off-by: Fabian Groffen  gentoo.org>

 profiles/prefix/darwin/macos/package.mask | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/profiles/prefix/darwin/macos/package.mask 
b/profiles/prefix/darwin/macos/package.mask
index 4f8cc88126e..5152d3cb244 100644
--- a/profiles/prefix/darwin/macos/package.mask
+++ b/profiles/prefix/darwin/macos/package.mask
@@ -1,6 +1,10 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Fabian Groffen  (2021-01-10)
+# fails to compile on regex and nonull definitions
+=net-misc/wget-1.21.1
+
 # Fabian Groffen  (2020-12-20)
 # we need to establish this darwin-xcode version can really be our
 # linker once we figure out TAPI support



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

2021-01-10 Thread Fabian Groffen
commit: 3098d42a00733effaba3d5e58eeab51f3afc669c
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Jan 10 10:03:02 2021 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Jan 10 10:03:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3098d42a

profiles/prefix/darwin/macos/package.mask: drop obsolete binutils-apple mask

Signed-off-by: Fabian Groffen  gentoo.org>

 profiles/prefix/darwin/macos/package.mask | 5 -
 1 file changed, 5 deletions(-)

diff --git a/profiles/prefix/darwin/macos/package.mask 
b/profiles/prefix/darwin/macos/package.mask
index 5152d3cb244..eeb8a38ff60 100644
--- a/profiles/prefix/darwin/macos/package.mask
+++ b/profiles/prefix/darwin/macos/package.mask
@@ -5,11 +5,6 @@
 # fails to compile on regex and nonull definitions
 =net-misc/wget-1.21.1
 
-# Fabian Groffen  (2020-12-20)
-# we need to establish this darwin-xcode version can really be our
-# linker once we figure out TAPI support
-=sys-devel/binutils-apple-8.2.1-r100
-
 # Fabian Groffen  (2020-11-23)
 # no symbols from libopenbsd-compat
 =net-misc/openssh-8.3_p1-r5



[gentoo-commits] repo/proj/guru:dev commit in: media-plugins/qt-avif-image-plugin/

2021-01-10 Thread Daniel Novomesky
commit: 31fa63133e449db8e506ee0a11624d7ae522ff61
Author: Daniel Novomesky  gmail  com>
AuthorDate: Sun Jan 10 09:47:17 2021 +
Commit: Daniel Novomesky  gmail  com>
CommitDate: Sun Jan 10 09:47:17 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=31fa6313

media-plugins/qt-avif-image-plugin: moved to kde-frameworks/kimageformats-5.78.0

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Daniel Novomesky  gmail.com>

 media-plugins/qt-avif-image-plugin/Manifest|  1 -
 media-plugins/qt-avif-image-plugin/metadata.xml| 21 ---
 .../qt-avif-image-plugin-0.4.1.ebuild  | 30 --
 .../qt-avif-image-plugin-.ebuild   | 30 --
 4 files changed, 82 deletions(-)

diff --git a/media-plugins/qt-avif-image-plugin/Manifest 
b/media-plugins/qt-avif-image-plugin/Manifest
deleted file mode 100644
index 31a8ddb7..
--- a/media-plugins/qt-avif-image-plugin/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST qt-avif-image-plugin-0.4.1.tar.gz 14326950 BLAKE2B 
b0c8b006404d73095b724e18f0dacda090c0fbf2a3005e236020afbe56486ac42b09ac2d91989410ec5e7513cba16f6251a95895a97e86cbb3a44cbd4ba643b9
 SHA512 
a717eed81f192674f7cfab2438b18bed4704b668b66fb882f1323e9f117f8d739cbcce4d5806ffdd09fd253e097a70a061c3a18137abb69a8dfa71d49a3dea55

diff --git a/media-plugins/qt-avif-image-plugin/metadata.xml 
b/media-plugins/qt-avif-image-plugin/metadata.xml
deleted file mode 100644
index 98dd207e..
--- a/media-plugins/qt-avif-image-plugin/metadata.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd'>
-
-   
-   dnovome...@gmail.com
-   Daniel Novomesky
-   
-   
-   Qt imageformat plugin which enables Qt and KDE applications
-   to open and save AVIF images.
-   Plug-in used libavif.
-   When installed, following applications are known to open AVIF images:
-   gwenview
-   KolourPaint
-   nomacs
-   KPhotoAlbum
-   digiKam
-   qView
-   LXImage-Qt
-   
-

diff --git 
a/media-plugins/qt-avif-image-plugin/qt-avif-image-plugin-0.4.1.ebuild 
b/media-plugins/qt-avif-image-plugin/qt-avif-image-plugin-0.4.1.ebuild
deleted file mode 100644
index 36e65e84..
--- a/media-plugins/qt-avif-image-plugin/qt-avif-image-plugin-0.4.1.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"
-
-inherit cmake
-
-DESCRIPTION="Qt plug-in to allow Qt and KDE based applications to read/write 
AVIF images."
-HOMEPAGE="https://github.com/novomesk/qt-avif-image-plugin;
-
-if [[ "${PV}" == ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/novomesk/qt-avif-image-plugin.git;
-else
-   
SRC_URI="https://github.com/novomesk/qt-avif-image-plugin/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64"
-fi
-
-LICENSE="BSD-2"
-SLOT="0"
-IUSE=""
-
-DEPEND=">=dev-qt/qtgui-5.12.3:5
-   >=media-libs/libavif-0.8.2
-   >=x11-misc/shared-mime-info-2.0-r1
-"
-
-BDEPEND=">=kde-frameworks/extra-cmake-modules-5.70:5"
-
-RDEPEND="${DEPEND}"

diff --git 
a/media-plugins/qt-avif-image-plugin/qt-avif-image-plugin-.ebuild 
b/media-plugins/qt-avif-image-plugin/qt-avif-image-plugin-.ebuild
deleted file mode 100644
index 6d0fae2c..
--- a/media-plugins/qt-avif-image-plugin/qt-avif-image-plugin-.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit cmake
-
-DESCRIPTION="Qt plug-in to allow Qt and KDE based applications to read/write 
AVIF images."
-HOMEPAGE="https://github.com/novomesk/qt-avif-image-plugin;
-
-if [[ "${PV}" == ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/novomesk/qt-avif-image-plugin.git;
-else
-   
SRC_URI="https://github.com/novomesk/qt-avif-image-plugin/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64"
-fi
-
-LICENSE="BSD-2"
-SLOT="0"
-IUSE=""
-
-DEPEND=">=dev-qt/qtgui-5.12.3:5
-   >=media-libs/libavif-0.8.2
-   >=x11-misc/shared-mime-info-2.0-r1
-"
-
-BDEPEND=">=kde-frameworks/extra-cmake-modules-5.70:5"
-
-RDEPEND="${DEPEND}"



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

2021-01-10 Thread Sam James
commit: 8b85395bf5fa3faff64377b326b707da83d01654
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:43:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:43:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b85395b

sys-apps/busybox: forward stable keywords to 1.32.1

1.32.1 fixes some hangs.

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

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

diff --git a/sys-apps/busybox/busybox-1.32.1.ebuild 
b/sys-apps/busybox/busybox-1.32.1.ebuild
index 7dd2ce8e748..a0431ffc93b 100644
--- a/sys-apps/busybox/busybox-1.32.1.ebuild
+++ b/sys-apps/busybox/busybox-1.32.1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == "" ]] ; then
 else
MY_P=${PN}-${PV/_/-}
SRC_URI="https://www.busybox.net/downloads/${MY_P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv s390 sparc x86 ~amd64-linux ~x86-linux"
 fi
 
 LICENSE="GPL-2" # GPL-2 only



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

2021-01-10 Thread Michał Górny
commit: 4bb24105eb9ab5074c2ccabed1d0768600b59c3e
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jan 10 09:39:26 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jan 10 09:39:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bb24105

dev-python/parameterized: Bump to 0.8.1

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

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

diff --git a/dev-python/parameterized/Manifest 
b/dev-python/parameterized/Manifest
index 9dabbd69dfc..d51c9de032f 100644
--- a/dev-python/parameterized/Manifest
+++ b/dev-python/parameterized/Manifest
@@ -1,2 +1,3 @@
 DIST parameterized-0.7.4.tar.gz 23389 BLAKE2B 
cc1ac334c0209a7471799587e1d35f6d8db84df91f559514bf3067ec8b2110948a6148613efd1d0111a65d43c52f7be16ab56cb69dca339fe7049f64484b7889
 SHA512 
71c51ad57900f5b1b6f4866c60ba4d23649df7740e7f7e735a2e0faf4810bc8dc552a1647da8c174f8a0b80db7de5727ce24dabc9fee6b4cfe12ee98c18945d7
 DIST parameterized-0.7.5.tar.gz 21830 BLAKE2B 
9ec717797f0aed058200ec3359a20d83f3c21f36b112c9395a6d7d20e5a28eb00c683e7829ab3e8ac161cf80d31b820d14edd0567fa569f29aafaabcef008dc0
 SHA512 
d7d3665f0ffe5449eacce2b0dbb01a0b8a83c0afea8a62320d49e3ed71996d5cb3a8ce51de58c17d41edace18c3491587d012c65d1d8990edf3b6e2553afd3c0
+DIST parameterized-0.8.1.tar.gz 23936 BLAKE2B 
3d36b049071907f66ef17dcae0ef9480210344f2466744b2bee8e964f46e2553411a07b233fab032d1acbc2523dc32890bc5e6e4ffc5b37d1fee3f0db3a70cbb
 SHA512 
ad6e31b2bb27623bf070ee5c30686a5bd6a531bc71602f77ca6aa01a77fc246caaacca121098dcbe13b1a174cdcfafa6545bf6e62f6a5337a647821c02fac64a

diff --git a/dev-python/parameterized/parameterized-0.8.1.ebuild 
b/dev-python/parameterized/parameterized-0.8.1.ebuild
new file mode 100644
index 000..e94e2362c7b
--- /dev/null
+++ b/dev-python/parameterized/parameterized-0.8.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Parameterized testing with any Python test framework"
+HOMEPAGE="https://github.com/wolever/parameterized;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests nose



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

2021-01-10 Thread Michał Górny
commit: da9d3601569cc86dd7d2b011b0bdca09089034bf
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jan 10 09:40:51 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jan 10 09:40:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da9d3601

dev-python/pytools: Bump to 2021.1

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

 dev-python/pytools/Manifest  |  1 +
 dev-python/pytools/pytools-2021.1.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/dev-python/pytools/Manifest b/dev-python/pytools/Manifest
index 3a48efaff2f..d89ed32963d 100644
--- a/dev-python/pytools/Manifest
+++ b/dev-python/pytools/Manifest
@@ -1,3 +1,4 @@
 DIST pytools-2020.4.3.tar.gz 62980 BLAKE2B 
692d3aec649c89e473754ceeb13d141df6709f287ae45ae793d84de4321ba13a7fca766456a99f2134e81be4e3a084169f0e1f8f8b9595182efbaab89aefb616
 SHA512 
4f162114fee298812c0f63b0af1c4113fa1636b6dd4bb750b18decb60d7ad89adc2e460b9861c46ee1c8e11ca3ec437836ff173abe4436ba7784f18b1d6455a6
 DIST pytools-2020.4.4.tar.gz 61208 BLAKE2B 
e124ae0f2c6be9c760ac178f2043e2d63af7e1eaa79e343b52dc183724bac7e869185d14d43a79efb91cfc55f39c81747581c61badbcb8cbd3d02d6e9a9a79a0
 SHA512 
32dc47a5a6c39c806c0bc4ffc34a41a1bb51ada537dbba36cfefad7f4370793879b3cb143b37d6fd3542aad0d64ac663cca4c8f7a05db36a9522e9919a1ef3d1
 DIST pytools-2020.4.tar.gz 67157 BLAKE2B 
57fd583a7d5cc1337e20fedb5bc1c53c4025a01e7d4e3a5b05a0770a86e2bcabdde31dd535321215cf1bf2c7f3ed0b54e2407583bea63b63ca5b829f590a00be
 SHA512 
66dea0d67c99c152edd7cd44e1262b6d163f065f5a4b697a5997f7453145af8fb0539d8eafa606fa18128908ce933c724b51bd1a76a6f7ab02e27db24496dc4c
+DIST pytools-2021.1.tar.gz 62003 BLAKE2B 
2938359365082d9475cfb51586c78d3dce264cf0e8b1cf3fea0c7c688570c6e25c9a558b78977c35331ee89afd23ab7eb44a8702b3908eea160b07747646cc53
 SHA512 
c365cbb65b756869407f7f053112cb9732aeb138493172f2b90563a4f45e6d993557e54de2165a463931b8e2bd29c3ccd32c059702f21fb59e3dee74c19efd8f

diff --git a/dev-python/pytools/pytools-2021.1.ebuild 
b/dev-python/pytools/pytools-2021.1.ebuild
new file mode 100644
index 000..21d7abc4ad9
--- /dev/null
+++ b/dev-python/pytools/pytools-2021.1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_REQ_USE='sqlite'
+DISTUTILS_USE_SETUPTOOLS=bdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Collection of tools missing from the Python standard library"
+HOMEPAGE="https://mathema.tician.de/software/pytools/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   >=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}]
+   >=dev-python/decorator-3.2.0[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.6.0[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



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

2021-01-10 Thread Michał Górny
commit: b89cfd674dcd289d75c240abaa0917bef0a32797
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jan 10 09:34:54 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jan 10 09:38:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b89cfd67

dev-python/tqdm: Bump to 4.55.2

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

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

diff --git a/dev-python/tqdm/Manifest b/dev-python/tqdm/Manifest
index 72190e51156..29aa441f011 100644
--- a/dev-python/tqdm/Manifest
+++ b/dev-python/tqdm/Manifest
@@ -1,3 +1,4 @@
 DIST tqdm-4.54.0.tar.gz 178664 BLAKE2B 
68d0f054b2c95079e13ad9df3e9467f48925311151e5eed94795d3fab232301da99c2704daafd80f748037a467d25416913f0921d6b7c44d725c5ed6861fe347
 SHA512 
dbb2a61df848ebd84ab805134b7e7297e1cf7626abaa830a08159ce7b1852eba40a6a7f2cc7c8445294a184bbfbd69bf08430371f3e2d71f6a622a271ba49e95
 DIST tqdm-4.55.0.tar.gz 161594 BLAKE2B 
890bbb47db356678be2c3edd893d70b085f5bc8fefbf87f12ba8c69fe14ac523a1eed6e335fb84f2ff43b2b0fea901411f8a72b24212cb2ad5ef4955ec8f2df5
 SHA512 
84062f7d2a109e4067e0868990b6e53578c7c2ec2b81a0cbdc980c91d2d82a8bda37e0c9688777fcf14cc80b7ddf7b28b7a5acfe37608e37903fe45908103913
 DIST tqdm-4.55.1.tar.gz 161638 BLAKE2B 
0149269f1ea854589647deb4ddd7415748924942ecc03d5fd6231470e5df959c1b8034d4d8416d83aa0a43ad1fafed15789f7ebaac12e5d525a7fe0bee88752a
 SHA512 
82a6d3d8e10d4c46e40e03e557febe9f7cac3cc01c01c9e29b20cf8f2adcc7370829fe5d4497ff0edb506bf38b9ec14de86377d1bbd9b8b9e57687d951ae683f
+DIST tqdm-4.55.2.tar.gz 162632 BLAKE2B 
02e49f442c8d5ad3799de143dd8a188796293253e836c24d04e75aa45f7cbeecb967f1503467ca7486dfd412538da6f7a3aa4c674e16f0da3954f44347c5a498
 SHA512 
f61f28f2b8f7c4d848e31a3d791822a0433573b36aa900d055e1919b555b84ee36d988c6f51d6951355e70821f4d24bee72bdd4472262ea55ea012ff0556b0df

diff --git a/dev-python/tqdm/tqdm-4.55.2.ebuild 
b/dev-python/tqdm/tqdm-4.55.2.ebuild
new file mode 100644
index 000..81b4fb49848
--- /dev/null
+++ b/dev-python/tqdm/tqdm-4.55.2.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( pypy3 python3_{7..9} )
+
+inherit distutils-r1
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/tqdm/tqdm;
+else
+   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x64-macos"
+fi
+
+DESCRIPTION="Add a progress meter to your loops in a second"
+HOMEPAGE="https://github.com/tqdm/tqdm;
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="examples"
+
+BDEPEND="
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   dev-python/toml[${PYTHON_USEDEP}]
+   test? (
+   dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests pytest
+
+python_test() {
+   # Skip unpredictable performance tests
+   pytest -vv --ignore 'tests/tests_perf.py' ||
+   die "Tests failed with ${EPYTHON}"
+}
+
+python_install() {
+   doman "${BUILD_DIR}"/lib/tqdm/tqdm.1
+   rm "${BUILD_DIR}"/lib/tqdm/tqdm.1 || die
+   distutils-r1_python_install
+}
+
+python_install_all() {
+   if use examples; then
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+   distutils-r1_python_install_all
+}



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

2021-01-10 Thread Michał Górny
commit: 8f807ad9a949099a6f93d9070d97ee8349e76b92
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jan 10 09:36:23 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jan 10 09:38:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f807ad9

dev-python/backrefs: Bump to 4.6

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

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

diff --git a/dev-python/backrefs/Manifest b/dev-python/backrefs/Manifest
index fadf7bacd69..5de33284ed2 100644
--- a/dev-python/backrefs/Manifest
+++ b/dev-python/backrefs/Manifest
@@ -1 +1,2 @@
 DIST backrefs-4.5.0.tar.gz 5995247 BLAKE2B 
ce3d33b91ab307811e555689a2ece0ba47e53d8245fd4fa367156a76893c5ca342cb47d014a3c94c6f30ebb32487fb36975a2fa6c7acf0a626305d05e0d80048
 SHA512 
c1e30a78c2e7a86efce167612b6450b6cae78f8c799cec6832aa88e4145fee6ffc3e1b8c54b55091f7c21ea4b09c1ee36af852bb51973434b593273e04a8
+DIST backrefs-4.6.tar.gz 5995313 BLAKE2B 
5bc6c6b496dc74f1a73a155b7825a134ef84458c0396bc2e678e93432c37b1355f782331fce978dee1c9968cc683c3821ae8975bbd20d4e19896277a6bf5b0c8
 SHA512 
96aeba6aab34ea14a48c430b00e242b3468054cfccfdab00a66071434e65df4378caffc32f47eded48b5054f7bfcd0caaa04bf103b9fa282ddb5c6119c46f88f

diff --git a/dev-python/backrefs/backrefs-4.6.ebuild 
b/dev-python/backrefs/backrefs-4.6.ebuild
new file mode 100644
index 000..72b44d4b44c
--- /dev/null
+++ b/dev-python/backrefs/backrefs-4.6.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+
+DOCS_BUILDER="mkdocs"
+DOCS_DEPEND="
+   dev-python/mkdocs-git-revision-date-localized-plugin
+   ~dev-python/mkdocs_pymdownx_material_extras-1.0.7
+   dev-python/mkdocs-minify-plugin
+   dev-python/mkdocs-material
+   dev-python/pyspelling
+"
+
+inherit distutils-r1 docs
+
+DESCRIPTION="Wrapper around re or regex that adds additional back references"
+HOMEPAGE="
+   https://github.com/facelessuser/backrefs/
+   https://pypi.org/project/backrefs/
+"
+SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/regex[${PYTHON_USEDEP}]
+   dev-vcs/git
+   )"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # mkdocs-git-revision-date-localized-plugin needs git repo
+   if use doc; then
+   git init || die
+   git config --global user.email "y...@example.com" || die
+   git config --global user.name "Your Name" || die
+   git add . || die
+   git commit -m 'init' || die
+   fi
+
+   distutils-r1_python_prepare_all
+}



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

2021-01-10 Thread Michał Górny
commit: b02eae0feeef1c295066b747fb7ff129061caca1
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jan 10 09:32:39 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jan 10 09:38:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b02eae0f

dev-python/importlib_resources: Bump to 5.0.0

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

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

diff --git a/dev-python/importlib_resources/Manifest 
b/dev-python/importlib_resources/Manifest
index 51577395538..af54641eefe 100644
--- a/dev-python/importlib_resources/Manifest
+++ b/dev-python/importlib_resources/Manifest
@@ -1,2 +1,3 @@
 DIST importlib_resources-3.3.0.tar.gz 29000 BLAKE2B 
5fb87c6e15f01733567fef060607da0625d32e415e294cfd5db94fb26e13d257763f2d3795c19ee7d10fc1fdc579fc0c34a484d28aff32c20553d18fafc7b850
 SHA512 
1fc03c9d141a094ca6ae0acb9ff0668a3f3aa76b47ce2149691b1d85d37a3ba9d329dbafd8b94961c537a4982cea1bd3ee34bac069819c51d725208f45b24172
 DIST importlib_resources-4.1.1.tar.gz 30821 BLAKE2B 
440adde5ce8604c3dddc6c59f730890b4832076f3f7d5c1f9b46ed4d4fe1d80d714a2f393ae1a1b386ef20812090c7370858ca9d3920bc115a6cedb0d2000c8f
 SHA512 
e277d375f800e8d1be317f90344c10b2848a0f7e0b3b6f28014b71d4b92b496137aa84b8ad865a3b93c983d20d827f18c6baf0d6c540882622b0903bebaae303
+DIST importlib_resources-5.0.0.tar.gz 30603 BLAKE2B 
66a22891e28e282919ed3847e69d36655ab8052f4f6c743ceb43456bc5447348302b61e5e3d3553d006fbab45c706882680265613497eedcc97c732a1776183a
 SHA512 
eff23d8d365f105069910efe6e95f63a7e6c2cea7ca707cf4085c6d9f9c4f28065a1ad937d06ab3549a0ac25da5fa950af7b56a52d892125265252e0b79bf7f9

diff --git a/dev-python/importlib_resources/importlib_resources-5.0.0.ebuild 
b/dev-python/importlib_resources/importlib_resources-5.0.0.ebuild
new file mode 100644
index 000..e1158587790
--- /dev/null
+++ b/dev-python/importlib_resources/importlib_resources-5.0.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# This is a backport of Python 3.9's importlib.resources
+PYTHON_COMPAT=( pypy3 python3_{6,7,8} )
+
+inherit distutils-r1
+
+DESCRIPTION="Read resources from Python packages"
+HOMEPAGE="https://github.com/python/importlib_resources;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-macos"
+
+RDEPEND="
+   $(python_gen_cond_dep '
+   dev-python/zipp[${PYTHON_USEDEP}]
+   ' pypy3 python3_{6,7})
+"
+BDEPEND="
+   dev-python/toml[${PYTHON_USEDEP}]
+   >=dev-python/setuptools_scm-3.4.1[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests unittest
+distutils_enable_sphinx docs dev-python/rst-linker dev-python/jaraco-packaging



[gentoo-commits] repo/gentoo:master commit in: app-shells/dash/

2021-01-10 Thread Sam James
commit: d865c5cf1b249a3e5f649c7117e07b10996b
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:34:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:34:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d865c5cf

app-shells/dash: Stabilize 0.5.11.3-r1 sparc, #754267

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

 app-shells/dash/dash-0.5.11.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/dash/dash-0.5.11.3-r1.ebuild 
b/app-shells/dash/dash-0.5.11.3-r1.ebuild
index f56b5355582..17cb7d12ddd 100644
--- a/app-shells/dash/dash-0.5.11.3-r1.ebuild
+++ b/app-shells/dash/dash-0.5.11.3-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="libedit static"
 
 BDEPEND="virtual/pkgconfig"



[gentoo-commits] repo/gentoo:master commit in: app-shells/bash/

2021-01-10 Thread Sam James
commit: b946c555a056b63c698e552015784a9d7eb04c66
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:34:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:34:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b946c555

app-shells/bash: Stabilize 5.0_p11-r1 sparc, #702488

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

 app-shells/bash/bash-5.0_p11-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/bash/bash-5.0_p11-r1.ebuild 
b/app-shells/bash/bash-5.0_p11-r1.ebuild
index a2adb6b0292..166972b40ad 100644
--- a/app-shells/bash/bash-5.0_p11-r1.ebuild
+++ b/app-shells/bash/bash-5.0_p11-r1.ebuild
@@ -46,7 +46,7 @@ fi
 
 LICENSE="GPL-3"
 SLOT="0"
-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"
+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="afs bashlogger examples mem-scramble +net nls plugins +readline"
 
 DEPEND="



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

2021-01-10 Thread Sam James
commit: 80ac549d788cdd5fa7ef2fbc7b3c8831eaf86eef
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:35:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:35:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80ac549d

media-libs/openjpeg: Stabilize 2.4.0 sparc, #718918

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

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

diff --git a/media-libs/openjpeg/openjpeg-2.4.0.ebuild 
b/media-libs/openjpeg/openjpeg-2.4.0.ebuild
index 5aaab89871b..d8c01ec6cc6 100644
--- a/media-libs/openjpeg/openjpeg-2.4.0.ebuild
+++ b/media-libs/openjpeg/openjpeg-2.4.0.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/uclouvain/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="2/7" # based on SONAME
-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"
+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"
 IUSE="doc static-libs test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: app-shells/dash/

2021-01-10 Thread Sam James
commit: fc78185175aa27ec15fb5e7dfc6b5d69a5a10bd0
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:28:26 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:28:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc781851

app-shells/dash: Stabilize 0.5.11.3-r1 x86, #754267

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

 app-shells/dash/dash-0.5.11.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/dash/dash-0.5.11.3-r1.ebuild 
b/app-shells/dash/dash-0.5.11.3-r1.ebuild
index 1c194ba1661..f56b5355582 100644
--- a/app-shells/dash/dash-0.5.11.3-r1.ebuild
+++ b/app-shells/dash/dash-0.5.11.3-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="libedit static"
 
 BDEPEND="virtual/pkgconfig"



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

2021-01-10 Thread Sam James
commit: c05bc58f70f68e4447bdb25fff7a5d73eac38e6d
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:10:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:10:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c05bc58f

dev-libs/icu: Stabilize 68.2 sparc, #755704

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

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

diff --git a/dev-libs/icu/icu-68.2.ebuild b/dev-libs/icu/icu-68.2.ebuild
index 33c3621d967..5df871cf5b5 100644
--- a/dev-libs/icu/icu-68.2.ebuild
+++ b/dev-libs/icu/icu-68.2.ebuild
@@ -14,7 +14,7 @@ LICENSE="BSD"
 
 SLOT="0/${PV}"
 
-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 ~x86-winnt"
+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 ~x86-winnt"
 IUSE="debug doc examples static-libs"
 
 BDEPEND="${PYTHON_DEPS}



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

2021-01-10 Thread Mats Lidell
commit: d5ddc6f5045c2446fcde073140ec85ab63fe9eef
Author: Mats Lidell  gentoo  org>
AuthorDate: Sat Jan  9 12:36:27 2021 +
Commit: Mats Lidell  gentoo  org>
CommitDate: Sun Jan 10 09:08:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5ddc6f5

app-editors/xemacs: Remove xemacs-21.5.34-r4.ebuild

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Mats Lidell  gentoo.org>

 app-editors/xemacs/xemacs-21.5.34-r4.ebuild | 256 
 1 file changed, 256 deletions(-)

diff --git a/app-editors/xemacs/xemacs-21.5.34-r4.ebuild 
b/app-editors/xemacs/xemacs-21.5.34-r4.ebuild
deleted file mode 100644
index 8cf979775cf..000
--- a/app-editors/xemacs/xemacs-21.5.34-r4.ebuild
+++ /dev/null
@@ -1,256 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# Note: xemacs currently does not work with position independent code
-# so the build forces the use of the -no-pie option
-
-EAPI=5
-
-inherit eutils flag-o-matic multilib xdg-utils
-
-DESCRIPTION="highly customizable open source text editor and application 
development system"
-HOMEPAGE="http://www.xemacs.org/;
-SRC_URI="http://ftp.xemacs.org/xemacs-21.5/${P}.tar.gz
-   http://www.malfunction.de/afterstep/files/NeXT_XEmacs.tar.gz;
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE="alsa debug eolconv gif gpm pop postgres ldap libressl xface nas dnd X 
jpeg tiff png mule motif freewnn canna xft xim athena neXt Xaw3d gdbm berkdb"
-
-X_DEPEND="x11-libs/libXt x11-libs/libXmu x11-libs/libXext x11-misc/xbitmaps"
-
-RDEPEND="
-   berkdb? ( >=sys-libs/db-4:= !!=sys-libs/gdbm-1.8.3[berkdb(+)] )
-   >=sys-libs/zlib-1.1.4
-   !libressl? ( >=dev-libs/openssl-0.9.6:0 )
-   libressl? ( dev-libs/libressl )
-   >=media-libs/audiofile-0.2.3
-   gpm? ( >=sys-libs/gpm-1.19.6 )
-   postgres? ( dev-db/postgresql:= )
-   ldap? ( net-nds/openldap )
-   alsa? ( media-libs/alsa-lib )
-   nas? ( media-libs/nas )
-   X? ( $X_DEPEND !Xaw3d? ( !neXt? ( x11-libs/libXaw ) ) )
-   dnd? ( x11-libs/dnd )
-   motif? ( >=x11-libs/motif-2.3:0[xft=] )
-   athena? ( x11-libs/libXaw )
-   Xaw3d? ( x11-libs/libXaw3d )
-   xft? ( media-libs/freetype:2 x11-libs/libXft x11-libs/libXrender 
>=media-libs/fontconfig-2.5.0 )
-   neXt? ( x11-libs/neXtaw )
-   xface? ( media-libs/compface )
-   tiff? ( media-libs/tiff:0 )
-   png? ( >=media-libs/libpng-1.2:0 )
-   jpeg? ( virtual/jpeg:0 )
-   canna? ( app-i18n/canna )
-   freewnn? ( app-i18n/freewnn )
-   >=sys-libs/ncurses-5.2:=
-   >=app-eselect/eselect-emacs-1.15"
-
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-PDEPEND="app-xemacs/xemacs-base
-   mule? ( app-xemacs/mule-base )"
-
-src_unpack() {
-   default_src_unpack
-
-   use neXt && unpack NeXT_XEmacs.tar.gz
-}
-
-src_prepare() {
-   use neXt && cp "${WORKDIR}"/NeXT.XEmacs/xemacs-icons/* 
"${S}"/etc/toolbar/
-   find "${S}"/lisp -name '*.elc' -exec rm {} \; || die
-   epatch "${FILESDIR}/${P}-ncurses-tinfo.patch"
-   epatch "${FILESDIR}/${P}-gcc5.patch"
-   epatch "${FILESDIR}/${P}-glibc-macro.patch"
-   epatch "${FILESDIR}/${P}-as-needed.patch"
-
-   # Some binaries and man pages are installed under suffixed names
-   # to avoid collions with their GNU Emacs counterparts (see below).
-   # Fix internal filename references.
-   sed -i -e 's/exec gnuclient/&-xemacs/' lib-src/gnudoit || die
-   sed -i -e '/^\.so/s/etags/&-xemacs/' etc/ctags.1 || die
-   sed -i -e '/^\.so/s/gnuserv/&-xemacs/' etc/gnu{client,doit,attach}.1 || 
die
-}
-
-src_configure() {
-   local myconf=""
-
-   # bug #639642
-   test-flags -no-pie >/dev/null && append-flags -no-pie
-   filter-flags -pie
-
-   if use X; then
-
-   myconf="${myconf} --with-widgets=athena"
-   myconf="${myconf} --with-dialogs=athena"
-   myconf="${myconf} --with-menubars=lucid"
-   myconf="${myconf} --with-scrollbars=lucid"
-   if use motif ; then
-   myconf="--with-widgets=motif"
-   myconf="${myconf} --with-dialogs=motif"
-   myconf="${myconf} --with-scrollbars=motif"
-   myconf="${myconf} --with-menubars=lucid"
-   fi
-   if use athena or use Xaw3d ; then
-   myconf="--with-scrollbars=athena"
-   fi
-
-   if use Xaw3d; then
-   myconf="${myconf} --with-athena=3d"
-   elif use neXt; then
-   myconf="${myconf} --with-athena=next"
-   else
-   myconf="${myconf} --with-athena=xaw"
-   fi
-
-   use dnd && myconf="${myconf} --with-dragndrop --with-offix"
-
-   

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

2021-01-10 Thread Sam James
commit: d50d358ea9c85c51a0b9471270aacf198c5b11e1
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d50d358e

kde-frameworks/purpose: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/purpose/purpose-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/purpose/purpose-5.77.0.ebuild 
b/kde-frameworks/purpose/purpose-5.77.0.ebuild
index 6e6ea9578b6..6a12dfe774f 100644
--- a/kde-frameworks/purpose/purpose-5.77.0.ebuild
+++ b/kde-frameworks/purpose/purpose-5.77.0.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=7
@@ -11,7 +11,7 @@ inherit ecm kde.org optfeature xdg-utils
 
 DESCRIPTION="Library for providing abstractions to get the developer's 
purposes fulfilled"
 LICENSE="LGPL-2.1+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE="bluetooth +dolphin +kaccounts"
 
 DEPEND="



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

2021-01-10 Thread Sam James
commit: b31f8cf7623d9af1451f7551b7a787c5d90bef7b
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b31f8cf7

kde-frameworks/kdelibs4support: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/kdelibs4support/kdelibs4support-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kdelibs4support/kdelibs4support-5.77.0.ebuild 
b/kde-frameworks/kdelibs4support/kdelibs4support-5.77.0.ebuild
index ace1a258917..366a7d994d5 100644
--- a/kde-frameworks/kdelibs4support/kdelibs4support-5.77.0.ebuild
+++ b/kde-frameworks/kdelibs4support/kdelibs4support-5.77.0.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=7
@@ -12,7 +12,7 @@ inherit ecm kde.org
 
 DESCRIPTION="Framework easing the development transition from KDELibs 4 to KF 
5"
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE="libressl X"
 
 BDEPEND="



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

2021-01-10 Thread Sam James
commit: a3bf2645be96082e2800f0bdb4e9fd121180c06c
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3bf2645

kde-frameworks/kjs: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/kjs/kjs-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kjs/kjs-5.77.0.ebuild 
b/kde-frameworks/kjs/kjs-5.77.0.ebuild
index 19f013d4549..17303716065 100644
--- a/kde-frameworks/kjs/kjs-5.77.0.ebuild
+++ b/kde-frameworks/kjs/kjs-5.77.0.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=7
@@ -9,7 +9,7 @@ inherit ecm kde.org
 
 DESCRIPTION="ECMAScipt compatible parser and engine"
 LICENSE="BSD-2 LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE=""
 
 BDEPEND="



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

2021-01-10 Thread Sam James
commit: 3012d0fef659d8f13c12f9695d036bb32c4e7de3
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3012d0fe

kde-frameworks/kross: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/kross/kross-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kross/kross-5.77.0.ebuild 
b/kde-frameworks/kross/kross-5.77.0.ebuild
index 36bf6f6b090..9d33cf2d25b 100644
--- a/kde-frameworks/kross/kross-5.77.0.ebuild
+++ b/kde-frameworks/kross/kross-5.77.0.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=7
@@ -12,7 +12,7 @@ inherit ecm kde.org
 
 DESCRIPTION="Framework for embedding scripting into applications"
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE=""
 
 RDEPEND="



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

2021-01-10 Thread Sam James
commit: 7a317581caf0a6efffe69bb3a92ca30ba2542851
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a317581

kde-frameworks/kxmlgui: Stabilize 5.77.0-r1 x86, #759625

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

 kde-frameworks/kxmlgui/kxmlgui-5.77.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kxmlgui/kxmlgui-5.77.0-r1.ebuild 
b/kde-frameworks/kxmlgui/kxmlgui-5.77.0-r1.ebuild
index 5a6e29e0ebb..f3e44876488 100644
--- a/kde-frameworks/kxmlgui/kxmlgui-5.77.0-r1.ebuild
+++ b/kde-frameworks/kxmlgui/kxmlgui-5.77.0-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=7
@@ -10,7 +10,7 @@ VIRTUALX_REQUIRED="test"
 inherit ecm kde.org
 
 DESCRIPTION="Framework for managing menu and toolbar actions in an abstract 
way"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 LICENSE="LGPL-2+"
 IUSE=""
 



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

2021-01-10 Thread Sam James
commit: 68db2eea8b82b5d3725fed0a001a0b0ef880f488
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68db2eea

kde-frameworks/khtml: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/khtml/khtml-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/khtml/khtml-5.77.0.ebuild 
b/kde-frameworks/khtml/khtml-5.77.0.ebuild
index 3d223cd9778..8528bd33f61 100644
--- a/kde-frameworks/khtml/khtml-5.77.0.ebuild
+++ b/kde-frameworks/khtml/khtml-5.77.0.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=7
@@ -11,7 +11,7 @@ inherit ecm kde.org
 
 DESCRIPTION="KHTML web rendering engine"
 LICENSE="LGPL-2"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE="libressl X"
 
 BDEPEND="



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

2021-01-10 Thread Sam James
commit: a491d4d9b88c3ed3ff636bea980e01785b49e372
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a491d4d9

kde-frameworks/kwallet: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/kwallet/kwallet-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kwallet/kwallet-5.77.0.ebuild 
b/kde-frameworks/kwallet/kwallet-5.77.0.ebuild
index 1541181cc97..ec2d7d0c7ef 100644
--- a/kde-frameworks/kwallet/kwallet-5.77.0.ebuild
+++ b/kde-frameworks/kwallet/kwallet-5.77.0.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=7
@@ -10,7 +10,7 @@ inherit ecm kde.org optfeature
 DESCRIPTION="Framework providing desktop-wide storage for passwords"
 
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE="gpg +man"
 
 BDEPEND="



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

2021-01-10 Thread Sam James
commit: b28ed938c9dfb0bb76adc8914db5121fd115326b
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b28ed938

kde-frameworks/krunner: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/krunner/krunner-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/krunner/krunner-5.77.0.ebuild 
b/kde-frameworks/krunner/krunner-5.77.0.ebuild
index 6ea17684fee..9ba5d67ef1e 100644
--- a/kde-frameworks/krunner/krunner-5.77.0.ebuild
+++ b/kde-frameworks/krunner/krunner-5.77.0.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=7
@@ -10,7 +10,7 @@ inherit ecm kde.org
 
 DESCRIPTION="Framework for providing different actions given a string query"
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



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

2021-01-10 Thread Sam James
commit: c536148fbeb9ef0946a6ef9c1192daf74ea14c3a
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c536148f

kde-frameworks/ktextwidgets: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/ktextwidgets/ktextwidgets-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/ktextwidgets/ktextwidgets-5.77.0.ebuild 
b/kde-frameworks/ktextwidgets/ktextwidgets-5.77.0.ebuild
index 5d3fee2dbb9..ec66ba40cec 100644
--- a/kde-frameworks/ktextwidgets/ktextwidgets-5.77.0.ebuild
+++ b/kde-frameworks/ktextwidgets/ktextwidgets-5.77.0.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=7
@@ -11,7 +11,7 @@ inherit ecm kde.org
 
 DESCRIPTION="Framework providing an assortment of widgets for displaying and 
editing text"
 LICENSE="LGPL-2+ LGPL-2.1+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE="speech"
 
 DEPEND="



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

2021-01-10 Thread Sam James
commit: 3c46d94f2e470edf9de8fff30390593202cb9f77
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c46d94f

kde-frameworks/kservice: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/kservice/kservice-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kservice/kservice-5.77.0.ebuild 
b/kde-frameworks/kservice/kservice-5.77.0.ebuild
index ac64e7b5b16..095ce79dfa2 100644
--- a/kde-frameworks/kservice/kservice-5.77.0.ebuild
+++ b/kde-frameworks/kservice/kservice-5.77.0.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=7
@@ -10,7 +10,7 @@ inherit ecm kde.org
 DESCRIPTION="Advanced plugin and service introspection"
 
 LICENSE="LGPL-2 LGPL-2.1+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE="+man"
 
 BDEPEND="



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

2021-01-10 Thread Sam James
commit: be15199bb8213a5b1f96dbc692d1f83640f3c464
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be15199b

kde-frameworks/ktexteditor: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/ktexteditor/ktexteditor-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/ktexteditor/ktexteditor-5.77.0.ebuild 
b/kde-frameworks/ktexteditor/ktexteditor-5.77.0.ebuild
index fe79e0f1043..025a34c23e0 100644
--- a/kde-frameworks/ktexteditor/ktexteditor-5.77.0.ebuild
+++ b/kde-frameworks/ktexteditor/ktexteditor-5.77.0.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=7
@@ -11,7 +11,7 @@ inherit ecm kde.org
 DESCRIPTION="Framework providing a full text editor component"
 
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE="+editorconfig git"
 
 BDEPEND="



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

2021-01-10 Thread Sam James
commit: 5a72c2aaf223374f697d1ae3f5b42caa7354c1d1
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a72c2aa

kde-frameworks/plasma: Stabilize 5.77.0-r1 x86, #759625

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

 kde-frameworks/plasma/plasma-5.77.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/plasma/plasma-5.77.0-r1.ebuild 
b/kde-frameworks/plasma/plasma-5.77.0-r1.ebuild
index 298dcdf5434..8c2a6816ac9 100644
--- a/kde-frameworks/plasma/plasma-5.77.0-r1.ebuild
+++ b/kde-frameworks/plasma/plasma-5.77.0-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=7
@@ -13,7 +13,7 @@ DESCRIPTION="Plasma framework"
 SRC_URI+=" 
https://dev.gentoo.org/~asturm/distfiles/${P}-fix-broken-background.patch.xz;
 
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE="gles2-only wayland X"
 
 BDEPEND="



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

2021-01-10 Thread Sam James
commit: 3a86122b7a9689796fbf3cdcc9b9816cded92da1
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a86122b

kde-frameworks/knewstuff: Stabilize 5.77.0-r1 x86, #759625

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

 kde-frameworks/knewstuff/knewstuff-5.77.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/knewstuff/knewstuff-5.77.0-r1.ebuild 
b/kde-frameworks/knewstuff/knewstuff-5.77.0-r1.ebuild
index 59ba609ab98..fa79f63284f 100644
--- a/kde-frameworks/knewstuff/knewstuff-5.77.0-r1.ebuild
+++ b/kde-frameworks/knewstuff/knewstuff-5.77.0-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=7
@@ -11,7 +11,7 @@ inherit ecm kde.org
 DESCRIPTION="Framework for downloading and sharing additional application data"
 
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



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

2021-01-10 Thread Sam James
commit: 2760cc87b08461ee0ded0a2674d7caec9a508885
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2760cc87

kde-frameworks/knotifyconfig: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/knotifyconfig/knotifyconfig-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/knotifyconfig/knotifyconfig-5.77.0.ebuild 
b/kde-frameworks/knotifyconfig/knotifyconfig-5.77.0.ebuild
index 16f33b960e2..1239e4a6a3e 100644
--- a/kde-frameworks/knotifyconfig/knotifyconfig-5.77.0.ebuild
+++ b/kde-frameworks/knotifyconfig/knotifyconfig-5.77.0.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=7
@@ -10,7 +10,7 @@ inherit ecm kde.org
 
 DESCRIPTION="Framework for configuring desktop notifications"
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE="phonon"
 
 DEPEND="



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

2021-01-10 Thread Sam James
commit: f3b6c4bb06789952172e4fc9215cb091baba927e
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3b6c4bb

kde-frameworks/kglobalaccel: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/kglobalaccel/kglobalaccel-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kglobalaccel/kglobalaccel-5.77.0.ebuild 
b/kde-frameworks/kglobalaccel/kglobalaccel-5.77.0.ebuild
index a1348ab3ed0..0bc23970745 100644
--- a/kde-frameworks/kglobalaccel/kglobalaccel-5.77.0.ebuild
+++ b/kde-frameworks/kglobalaccel/kglobalaccel-5.77.0.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=7
@@ -9,7 +9,7 @@ VIRTUALX_REQUIRED="test"
 inherit ecm kde.org
 
 DESCRIPTION="Framework to handle global shortcuts"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 LICENSE="LGPL-2+"
 IUSE="nls"
 



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

2021-01-10 Thread Sam James
commit: 657dd05a357a96a8810d40efe14b0ed6e497fe2b
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=657dd05a

kde-frameworks/kiconthemes: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/kiconthemes/kiconthemes-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kiconthemes/kiconthemes-5.77.0.ebuild 
b/kde-frameworks/kiconthemes/kiconthemes-5.77.0.ebuild
index 63fbc686c64..ffa22781c46 100644
--- a/kde-frameworks/kiconthemes/kiconthemes-5.77.0.ebuild
+++ b/kde-frameworks/kiconthemes/kiconthemes-5.77.0.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=7
@@ -11,7 +11,7 @@ inherit ecm kde.org
 
 DESCRIPTION="Framework for icon theming and configuration"
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



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

2021-01-10 Thread Sam James
commit: 23cb3ab4819fd38039bc1b5aeeed3a72c680d70e
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23cb3ab4

kde-frameworks/kparts: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/kparts/kparts-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kparts/kparts-5.77.0.ebuild 
b/kde-frameworks/kparts/kparts-5.77.0.ebuild
index 9622cfea1f5..5f19bfb9ad8 100644
--- a/kde-frameworks/kparts/kparts-5.77.0.ebuild
+++ b/kde-frameworks/kparts/kparts-5.77.0.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=7
@@ -11,7 +11,7 @@ inherit ecm kde.org
 DESCRIPTION="Framework providing elaborate user-interface components"
 
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE=""
 
 RDEPEND="



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

2021-01-10 Thread Sam James
commit: 981b37b30dc5ec6e62673e7725d1468a5bada33e
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=981b37b3

kde-frameworks/kinit: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/kinit/kinit-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kinit/kinit-5.77.0.ebuild 
b/kde-frameworks/kinit/kinit-5.77.0.ebuild
index 46fecb5d5af..3a2898440ab 100644
--- a/kde-frameworks/kinit/kinit-5.77.0.ebuild
+++ b/kde-frameworks/kinit/kinit-5.77.0.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=7
@@ -12,7 +12,7 @@ inherit ecm kde.org
 DESCRIPTION="Helper library to speed up start of applications on KDE work 
spaces"
 
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE="+caps +man X"
 
 BDEPEND="



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

2021-01-10 Thread Sam James
commit: 32e4658fce8fe9835461d6db3fe9f5ad5dc11423
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32e4658f

kde-frameworks/kio: Stabilize 5.77.0-r1 x86, #759625

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

 kde-frameworks/kio/kio-5.77.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kio/kio-5.77.0-r1.ebuild 
b/kde-frameworks/kio/kio-5.77.0-r1.ebuild
index 5089ee6dac2..4e549e3bf6f 100644
--- a/kde-frameworks/kio/kio-5.77.0-r1.ebuild
+++ b/kde-frameworks/kio/kio-5.77.0-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=7
@@ -13,7 +13,7 @@ inherit ecm kde.org xdg-utils
 DESCRIPTION="Framework providing transparent file and data management"
 
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE="acl +handbook kerberos +kwallet X"
 
 RDEPEND="



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

2021-01-10 Thread Sam James
commit: ac0f99e8d5ab49983761a5bd4c941652be17fd5b
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac0f99e8

kde-frameworks/kemoticons: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/kemoticons/kemoticons-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kemoticons/kemoticons-5.77.0.ebuild 
b/kde-frameworks/kemoticons/kemoticons-5.77.0.ebuild
index 8434befb757..9f5e169d07a 100644
--- a/kde-frameworks/kemoticons/kemoticons-5.77.0.ebuild
+++ b/kde-frameworks/kemoticons/kemoticons-5.77.0.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=7
@@ -10,7 +10,7 @@ inherit ecm kde.org
 
 DESCRIPTION="Framework for converting text emoticons to graphical 
representations"
 LICENSE="LGPL-2.1+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



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

2021-01-10 Thread Sam James
commit: ec62a197937e7c9c38cb99ca1c483c9b4b266b8d
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec62a197

kde-frameworks/kdesu: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/kdesu/kdesu-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kdesu/kdesu-5.77.0.ebuild 
b/kde-frameworks/kdesu/kdesu-5.77.0.ebuild
index fc8d98e4b31..08740247a3d 100644
--- a/kde-frameworks/kdesu/kdesu-5.77.0.ebuild
+++ b/kde-frameworks/kdesu/kdesu-5.77.0.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=7
@@ -9,7 +9,7 @@ inherit ecm kde.org
 
 DESCRIPTION="Framework to handle super user actions"
 LICENSE="LGPL-2"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE="X"
 
 RDEPEND="



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

2021-01-10 Thread Sam James
commit: 64411bda19e971a52807db7d4ffc5aacf19112c0
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64411bda

kde-frameworks/kconfigwidgets: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/kconfigwidgets/kconfigwidgets-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kconfigwidgets/kconfigwidgets-5.77.0.ebuild 
b/kde-frameworks/kconfigwidgets/kconfigwidgets-5.77.0.ebuild
index 1119cf7224b..d53e18dfae2 100644
--- a/kde-frameworks/kconfigwidgets/kconfigwidgets-5.77.0.ebuild
+++ b/kde-frameworks/kconfigwidgets/kconfigwidgets-5.77.0.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=7
@@ -11,7 +11,7 @@ inherit ecm kde.org
 
 DESCRIPTION="Framework providing an assortment of configuration-related 
widgets"
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE="+man"
 
 BDEPEND="



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

2021-01-10 Thread Sam James
commit: 667017d7a5cd6bed1ad6567895c616682ae37940
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=667017d7

kde-frameworks/kded: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/kded/kded-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kded/kded-5.77.0.ebuild 
b/kde-frameworks/kded/kded-5.77.0.ebuild
index e902cd503eb..cf86769fec8 100644
--- a/kde-frameworks/kded/kded-5.77.0.ebuild
+++ b/kde-frameworks/kded/kded-5.77.0.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=7
@@ -11,7 +11,7 @@ inherit ecm kde.org
 
 DESCRIPTION="Central daemon of KDE workspaces"
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE="+man"
 
 BDEPEND="



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

2021-01-10 Thread Sam James
commit: c17030831390419beaf235bc242217612fd92a4a
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1703083

kde-frameworks/kdav: Stabilize 5.77.0-r1 x86, #759625

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

 kde-frameworks/kdav/kdav-5.77.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kdav/kdav-5.77.0-r1.ebuild 
b/kde-frameworks/kdav/kdav-5.77.0-r1.ebuild
index 6225b873879..59151f9cf32 100644
--- a/kde-frameworks/kdav/kdav-5.77.0-r1.ebuild
+++ b/kde-frameworks/kdav/kdav-5.77.0-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=7
@@ -12,7 +12,7 @@ inherit ecm kde.org
 DESCRIPTION="DAV protocol implemention with KJobs"
 
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



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

2021-01-10 Thread Sam James
commit: c65d32e96b202190da69318cb9376cf623582eb9
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:07:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:07:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c65d32e9

kde-frameworks/kdeclarative: Stabilize 5.77.0 x86, #759625

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

 kde-frameworks/kdeclarative/kdeclarative-5.77.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kdeclarative/kdeclarative-5.77.0.ebuild 
b/kde-frameworks/kdeclarative/kdeclarative-5.77.0.ebuild
index dc9a811e54f..70e8757069f 100644
--- a/kde-frameworks/kdeclarative/kdeclarative-5.77.0.ebuild
+++ b/kde-frameworks/kdeclarative/kdeclarative-5.77.0.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=7
@@ -11,7 +11,7 @@ inherit ecm kde.org
 DESCRIPTION="Framework providing integration of QML and KDE work spaces"
 
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



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

2021-01-10 Thread Sam James
commit: 4ced9e1281319dc829e68e5b13c11e19a0bfd65a
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ced9e12

dev-qt/qtxml: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtxml/qtxml-5.15.2.ebuild b/dev-qt/qtxml/qtxml-5.15.2.ebuild
index 52022bad44a..57acaeaa59a 100644
--- a/dev-qt/qtxml/qtxml-5.15.2.ebuild
+++ b/dev-qt/qtxml/qtxml-5.15.2.ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Implementation of SAX and DOM for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
 fi
 
 IUSE=""



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

2021-01-10 Thread Sam James
commit: 3aba9cf9beb302e02a9e4f340e163c8d0c93d678
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3aba9cf9

dev-qt/qtwebsockets: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtwebsockets/qtwebsockets-5.15.2.ebuild 
b/dev-qt/qtwebsockets/qtwebsockets-5.15.2.ebuild
index f4bed68446d..7cc76b13124 100644
--- a/dev-qt/qtwebsockets/qtwebsockets-5.15.2.ebuild
+++ b/dev-qt/qtwebsockets/qtwebsockets-5.15.2.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Implementation of the WebSocket protocol for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm arm64 ~hppa ~ppc ppc64 ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~sparc x86"
 fi
 
 IUSE="qml +ssl"



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice-bin-debug/

2021-01-10 Thread Sam James
commit: 93b49ecf7785e41a06e16764205c605a6bb3a19d
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:06:07 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:06:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93b49ecf

app-office/libreoffice-bin-debug: Stabilize 6.4.7.2_p2 amd64, #755704

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

 .../libreoffice-bin-debug/libreoffice-bin-debug-6.4.7.2_p2.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/app-office/libreoffice-bin-debug/libreoffice-bin-debug-6.4.7.2_p2.ebuild 
b/app-office/libreoffice-bin-debug/libreoffice-bin-debug-6.4.7.2_p2.ebuild
index a7c6fd0b42c..d6399f5bdff 100644
--- a/app-office/libreoffice-bin-debug/libreoffice-bin-debug-6.4.7.2_p2.ebuild
+++ b/app-office/libreoffice-bin-debug/libreoffice-bin-debug-6.4.7.2_p2.ebuild
@@ -46,7 +46,7 @@ SRC_URI="
 IUSE="gnome java kde"
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="-* ~amd64 x86"
+KEYWORDS="-* amd64 x86"
 
 RDEPEND="~app-office/${PN/-debug}-${PV}[gnome=,java=,kde=]"
 



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

2021-01-10 Thread Sam James
commit: 6e10f0deaad9eba7eaec4b65f00fb87315a1e25d
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:06:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:06:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e10f0de

app-office/libreoffice-bin: Stabilize 6.4.7.2_p2 amd64, #755704

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

 app-office/libreoffice-bin/libreoffice-bin-6.4.7.2_p2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/libreoffice-bin/libreoffice-bin-6.4.7.2_p2.ebuild 
b/app-office/libreoffice-bin/libreoffice-bin-6.4.7.2_p2.ebuild
index 479b98fe6ec..567c8a454e8 100644
--- a/app-office/libreoffice-bin/libreoffice-bin-6.4.7.2_p2.ebuild
+++ b/app-office/libreoffice-bin/libreoffice-bin-6.4.7.2_p2.ebuild
@@ -51,7 +51,7 @@ SRC_URI="
 IUSE="gnome java kde"
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="-* ~amd64 x86"
+KEYWORDS="-* amd64 x86"
 
 BIN_COMMON_DEPEND="
app-text/hunspell:0/1.7



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

2021-01-10 Thread Sam James
commit: f2cbadc95350b827ef9bdbdf998961718c55ddb3
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2cbadc9

dev-qt/qtwebengine: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtwebengine/qtwebengine-5.15.2.ebuild 
b/dev-qt/qtwebengine/qtwebengine-5.15.2.ebuild
index 836b2159693..22dc29bb00a 100644
--- a/dev-qt/qtwebengine/qtwebengine-5.15.2.ebuild
+++ b/dev-qt/qtwebengine/qtwebengine-5.15.2.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Library for rendering dynamic web content in Qt5 
C++ and QML applic
 SRC_URI+=" ppc64? ( 
https://dev.gentoo.org/~gyakovlev/distfiles/${PN}-5.15.2-ppc64.tar.xz )"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm arm64 ~ppc64 x86"
+   KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
 fi
 
 IUSE="alsa bindist designer geolocation kerberos pulseaudio +system-ffmpeg 
+system-icu widgets"



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

2021-01-10 Thread Sam James
commit: dc29476036593fa944abe463eee1482ec1ed6927
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc294760

www-client/chromium: Stabilize 87.0.4280.141 amd64, #764251

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

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

diff --git a/www-client/chromium/chromium-87.0.4280.141.ebuild 
b/www-client/chromium/chromium-87.0.4280.141.ebuild
index ea1e662b3fc..fdf6560c939 100644
--- a/www-client/chromium/chromium-87.0.4280.141.ebuild
+++ b/www-client/chromium/chromium-87.0.4280.141.ebuild
@@ -21,7 +21,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 +hangouts headless 
+js-type-check kerberos official pic +proprietary-codecs pulseaudio selinux 
+suid +system-ffmpeg +system-icu +tcmalloc vaapi wayland widevine"
 REQUIRED_USE="
component-build? ( !suid )



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

2021-01-10 Thread Sam James
commit: 6ae736507d2791fdf028517b65587f56ccd0b8d3
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:06:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:06:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ae73650

dev-libs/icu: Stabilize 68.2 amd64, #755704

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

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

diff --git a/dev-libs/icu/icu-68.2.ebuild b/dev-libs/icu/icu-68.2.ebuild
index 993b943192f..33c3621d967 100644
--- a/dev-libs/icu/icu-68.2.ebuild
+++ b/dev-libs/icu/icu-68.2.ebuild
@@ -14,7 +14,7 @@ LICENSE="BSD"
 
 SLOT="0/${PV}"
 
-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 ~x86-winnt"
+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 ~x86-winnt"
 IUSE="debug doc examples static-libs"
 
 BDEPEND="${PYTHON_DEPS}



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

2021-01-10 Thread Sam James
commit: fed9ccab86965981dec2594b9cc5155706b2b3bc
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fed9ccab

dev-qt/qttranslations: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qttranslations/qttranslations-5.15.2.ebuild 
b/dev-qt/qttranslations/qttranslations-5.15.2.ebuild
index 76188f9da2a..8cf169f1535 100644
--- a/dev-qt/qttranslations/qttranslations-5.15.2.ebuild
+++ b/dev-qt/qttranslations/qttranslations-5.15.2.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Translation files for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
 fi
 
 IUSE=""



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

2021-01-10 Thread Sam James
commit: 785b14070c48a4ab44117565e49ed7087182ddbf
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=785b1407

dev-qt/qtx11extras: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtx11extras/qtx11extras-5.15.2.ebuild 
b/dev-qt/qtx11extras/qtx11extras-5.15.2.ebuild
index 18f51044ed6..935e0351352 100644
--- a/dev-qt/qtx11extras/qtx11extras-5.15.2.ebuild
+++ b/dev-qt/qtx11extras/qtx11extras-5.15.2.ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Linux/X11-specific support library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
 fi
 
 IUSE=""



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

2021-01-10 Thread Sam James
commit: ab79aab1d4e06a68e6488ab657ea75ce32e4b2ed
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab79aab1

dev-qt/qtxmlpatterns: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtxmlpatterns/qtxmlpatterns-5.15.2.ebuild 
b/dev-qt/qtxmlpatterns/qtxmlpatterns-5.15.2.ebuild
index 669ccf06c85..bb2ce6bf12a 100644
--- a/dev-qt/qtxmlpatterns/qtxmlpatterns-5.15.2.ebuild
+++ b/dev-qt/qtxmlpatterns/qtxmlpatterns-5.15.2.ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="XPath, XQuery, XSLT, and XML Schema validation library for the 
Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
 fi
 
 IUSE="qml"



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

2021-01-10 Thread Sam James
commit: 25b8ee7a772eaef28673f4a3389ee94e3157a9d7
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25b8ee7a

dev-qt/qtwidgets: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtwidgets/qtwidgets-5.15.2.ebuild 
b/dev-qt/qtwidgets/qtwidgets-5.15.2.ebuild
index 758b48e0fb3..e0ac54d4840 100644
--- a/dev-qt/qtwidgets/qtwidgets-5.15.2.ebuild
+++ b/dev-qt/qtwidgets/qtwidgets-5.15.2.ebuild
@@ -9,7 +9,7 @@ inherit qt5-build
 DESCRIPTION="Set of components for creating classic desktop-style UIs for the 
Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
 fi
 
 # keep IUSE defaults in sync with qtgui



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

2021-01-10 Thread Sam James
commit: 411c442c5e5db12aa7ba0f39fcbc165ae99c805f
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=411c442c

dev-qt/qtvirtualkeyboard: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-5.15.2.ebuild 
b/dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-5.15.2.ebuild
index ec9982edd3b..db9bfdfb2ad 100644
--- a/dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-5.15.2.ebuild
+++ b/dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-5.15.2.ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Customizable input framework and virtual keyboard for Qt"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm arm64 ~ppc64 x86"
+   KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
 fi
 
 # TODO: unbudle libraries for more layouts



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

2021-01-10 Thread Sam James
commit: 5b0a0f24878cfb3109db68a252f19c66560bede7
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b0a0f24

dev-qt/qtwebchannel: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtwebchannel/qtwebchannel-5.15.2.ebuild 
b/dev-qt/qtwebchannel/qtwebchannel-5.15.2.ebuild
index cd9716c2b0a..6654efdc2ee 100644
--- a/dev-qt/qtwebchannel/qtwebchannel-5.15.2.ebuild
+++ b/dev-qt/qtwebchannel/qtwebchannel-5.15.2.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Qt5 module for integrating C++ and QML applications with 
HTML/JavaScript clients"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm arm64 ~ppc ppc64 x86"
+   KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86"
 fi
 
 IUSE="qml"



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

2021-01-10 Thread Sam James
commit: a59b6f17629018e19a36a2b58f8d55e83d3ff61e
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a59b6f17

dev-qt/qtserialport: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtserialport/qtserialport-5.15.2.ebuild 
b/dev-qt/qtserialport/qtserialport-5.15.2.ebuild
index 673afff75cd..aef90f2f562 100644
--- a/dev-qt/qtserialport/qtserialport-5.15.2.ebuild
+++ b/dev-qt/qtserialport/qtserialport-5.15.2.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Serial port abstraction library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
 fi
 
 IUSE=""



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

2021-01-10 Thread Sam James
commit: 7c5d2f0686387a8e7795d39ee71b514893ad0d97
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c5d2f06

dev-qt/qtspeech: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtspeech/qtspeech-5.15.2.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.2.ebuild
index 348931041cc..369a7b3c9e1 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.2.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.2.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Text-to-speech library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm arm64 ~ppc64 x86"
+   KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
 fi
 
 # TODO: flite plugin - needs 2.0.0 (not yet in tree)



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

2021-01-10 Thread Sam James
commit: 4de3e34407c212457c923ae8a61cba1ef6f38525
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4de3e344

dev-qt/qtwayland: Stabilize 5.15.2-r1 amd64, #754852

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

 dev-qt/qtwayland/qtwayland-5.15.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtwayland/qtwayland-5.15.2-r1.ebuild 
b/dev-qt/qtwayland/qtwayland-5.15.2-r1.ebuild
index 36131fee312..bde01037e8d 100644
--- a/dev-qt/qtwayland/qtwayland-5.15.2-r1.ebuild
+++ b/dev-qt/qtwayland/qtwayland-5.15.2-r1.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Wayland platform plugin for Qt"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
 fi
 
 IUSE="vulkan X"



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

2021-01-10 Thread Sam James
commit: b1d9afd3be24c4c0d1300d6ff1e26a276138b34c
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1d9afd3

dev-qt/qtsensors: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtsensors/qtsensors-5.15.2.ebuild 
b/dev-qt/qtsensors/qtsensors-5.15.2.ebuild
index 6d3e0150111..51bc755decb 100644
--- a/dev-qt/qtsensors/qtsensors-5.15.2.ebuild
+++ b/dev-qt/qtsensors/qtsensors-5.15.2.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Hardware sensor access library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm arm64 ~hppa ~ppc ppc64 ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~sparc x86"
 fi
 
 # TODO: simulator



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

2021-01-10 Thread Sam James
commit: 7eae534f59f82b775735371eec97b95ac80aa932
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7eae534f

dev-qt/qtsvg: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtsvg/qtsvg-5.15.2.ebuild b/dev-qt/qtsvg/qtsvg-5.15.2.ebuild
index 151f2158e99..bb533001e15 100644
--- a/dev-qt/qtsvg/qtsvg-5.15.2.ebuild
+++ b/dev-qt/qtsvg/qtsvg-5.15.2.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="SVG rendering library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
 fi
 
 IUSE=""



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

2021-01-10 Thread Sam James
commit: 01543471757da0c63a153425727f119c75078a58
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01543471

dev-qt/qtsql: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtsql/qtsql-5.15.2.ebuild b/dev-qt/qtsql/qtsql-5.15.2.ebuild
index 9a2b532ca2b..97938c24fdb 100644
--- a/dev-qt/qtsql/qtsql-5.15.2.ebuild
+++ b/dev-qt/qtsql/qtsql-5.15.2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="SQL abstraction library for the Qt5 framework"
 SLOT=5/$(ver_cut 1-3) # bug 639140
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
 fi
 
 IUSE="freetds mysql oci8 odbc postgres +sqlite"



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

2021-01-10 Thread Sam James
commit: 04760a691d9a5218c5c4623c9394f46ef79969e2
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04760a69

dev-qt/qttest: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qttest/qttest-5.15.2.ebuild 
b/dev-qt/qttest/qttest-5.15.2.ebuild
index 8704565276d..be418ca46bc 100644
--- a/dev-qt/qttest/qttest-5.15.2.ebuild
+++ b/dev-qt/qttest/qttest-5.15.2.ebuild
@@ -9,7 +9,7 @@ inherit qt5-build
 DESCRIPTION="Unit testing library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
 fi
 
 IUSE=""



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

2021-01-10 Thread Sam James
commit: 7fcc540368da362ba3a5a2af28ad638ec7b5ba69
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fcc5403

dev-qt/qtquickcontrols: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtquickcontrols/qtquickcontrols-5.15.2.ebuild 
b/dev-qt/qtquickcontrols/qtquickcontrols-5.15.2.ebuild
index be2ac7e8bc9..e41e30c1626 100644
--- a/dev-qt/qtquickcontrols/qtquickcontrols-5.15.2.ebuild
+++ b/dev-qt/qtquickcontrols/qtquickcontrols-5.15.2.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Set of Qt Quick controls to create complete user interfaces 
(deprecated)"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm arm64 ~hppa ppc ppc64 x86"
+   KEYWORDS="amd64 ~arm arm64 ~hppa ppc ppc64 x86"
 fi
 
 IUSE="+widgets"



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

2021-01-10 Thread Sam James
commit: be44acb0aab2afc3089a03b2fe201b4fff9a4d4d
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be44acb0

dev-qt/qtscxml: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtscxml/qtscxml-5.15.2.ebuild 
b/dev-qt/qtscxml/qtscxml-5.15.2.ebuild
index ac175848d07..8a38c015dba 100644
--- a/dev-qt/qtscxml/qtscxml-5.15.2.ebuild
+++ b/dev-qt/qtscxml/qtscxml-5.15.2.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="State Chart XML (SCXML) support library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm64 x86"
+   KEYWORDS="amd64 arm64 x86"
 fi
 
 IUSE=""



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

2021-01-10 Thread Sam James
commit: d98e599937ea3ee940a16a7402b5f90ead241d70
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d98e5999

dev-qt/qtquickcontrols2: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtquickcontrols2/qtquickcontrols2-5.15.2.ebuild 
b/dev-qt/qtquickcontrols2/qtquickcontrols2-5.15.2.ebuild
index 0b5c704f413..9d3ff8f2159 100644
--- a/dev-qt/qtquickcontrols2/qtquickcontrols2-5.15.2.ebuild
+++ b/dev-qt/qtquickcontrols2/qtquickcontrols2-5.15.2.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Set of next generation Qt Quick controls for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm arm64 ~ppc64 x86"
+   KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
 fi
 
 IUSE="widgets"



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

2021-01-10 Thread Sam James
commit: 3630899b8b9252884a21d334379ac918f1c0d057
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3630899b

dev-qt/qtscript: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtscript/qtscript-5.15.2.ebuild 
b/dev-qt/qtscript/qtscript-5.15.2.ebuild
index 5be172c7067..6b4ca85b727 100644
--- a/dev-qt/qtscript/qtscript-5.15.2.ebuild
+++ b/dev-qt/qtscript/qtscript-5.15.2.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Application scripting library for the Qt5 framework (deprecated)"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm arm64 ~hppa ppc ppc64 ~sparc x86"
+   KEYWORDS="amd64 ~arm arm64 ~hppa ppc ppc64 ~sparc x86"
 fi
 
 IUSE="+jit scripttools"



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

2021-01-10 Thread Sam James
commit: 72879b80b3ac721221124f03a87d3d7e7a13c632
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 09:05:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 09:05:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72879b80

dev-qt/qtprintsupport: Stabilize 5.15.2 amd64, #754852

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

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

diff --git a/dev-qt/qtprintsupport/qtprintsupport-5.15.2.ebuild 
b/dev-qt/qtprintsupport/qtprintsupport-5.15.2.ebuild
index 69d4bd9d59c..66b3dcfe614 100644
--- a/dev-qt/qtprintsupport/qtprintsupport-5.15.2.ebuild
+++ b/dev-qt/qtprintsupport/qtprintsupport-5.15.2.ebuild
@@ -9,7 +9,7 @@ inherit qt5-build
 DESCRIPTION="Printing support library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86"
 fi
 
 IUSE="cups gles2-only"



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

2021-01-10 Thread Keri Harris
commit: f76d8f67f3f361ccfc05c4d9000981c230dfe7ad
Author: Keri Harris  gentoo  org>
AuthorDate: Sun Jan 10 09:03:20 2021 +
Commit: Keri Harris  gentoo  org>
CommitDate: Sun Jan 10 09:03:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f76d8f67

dev-lang/swi-prolog: bump development version

Package-Manager: Portage-3.0.4, Repoman-2.3.22
Signed-off-by: Keri Harris  gentoo.org>

 dev-lang/swi-prolog/Manifest |   1 +
 dev-lang/swi-prolog/swi-prolog-8.3.16.ebuild | 104 +++
 2 files changed, 105 insertions(+)

diff --git a/dev-lang/swi-prolog/Manifest b/dev-lang/swi-prolog/Manifest
index e4d32ffa8a6..9f98f04baee 100644
--- a/dev-lang/swi-prolog/Manifest
+++ b/dev-lang/swi-prolog/Manifest
@@ -5,3 +5,4 @@ DIST swipl-8.2.2.tar.gz 11002077 BLAKE2B 
581c3ea83d2440cbe2454ba12ea2752bec9fda9
 DIST swipl-8.2.3.tar.gz 10999577 BLAKE2B 
57cfa9f6fb97f0136a35da1850c7ae8da123d1c18fe6e18597d1b2131b7304a638d42d673efad2a01eaf3f9dad7b4754e6feb64917423abda002323bfc8dec8c
 SHA512 
cd9ffc8a963682c0d02cec4b76338352459e004e07f3e5c0f02b3c2f9b19f23fe9639e037cf52531491a41c201113138f0b6a039d401e891ad5774383b0d852f
 DIST swipl-8.3.14.tar.gz 11107292 BLAKE2B 
b97797ed36ec80336c43b35bfee02dd144e195d03b76781c5c4dc6f8ea69b28d0876c62a38c7c66eaae2ae4cfefba409bafd3d9b93cd1d306875eb5e32d657d3
 SHA512 
931bb8f76836a1e4acb89070e9a8e17332ae4ed21da12a557329fc90adac052d9c5b48f553589ae9e3aa2ff5ec710ffa69e83ccbb492cf7adfb83e7cc97c61b8
 DIST swipl-8.3.15.tar.gz 7063 BLAKE2B 
17a083e76b850cb94b5a482011256c4812c4fc1d86642cd1a0f70704d5ffc9fef5cfd63bddfab2330b26d67dc6ca640012cfdd0b82c2cc90aff04b82c644f7d4
 SHA512 
4c2daf9c635cee30d62006b299d9f373fdd1be044fda5363995fd7343ae18ec1173d268cbd8ece52dd275ab1ca75168b386ba247f77707248c24e3ab7bcc7563
+DIST swipl-8.3.16.tar.gz 11123493 BLAKE2B 
6d9566762b5d96a20a27dece39d895e2b29d3555dffe1d0495d8f8f579443ae2c37df2b0fe89c3fa6cc95743f55efdc6a4d6653e6cd1ba5ff8489181f8c7fc5a
 SHA512 
ceaef49d29eac3a100e6d51e1bcc4e7925ce682ffda8bd2a668463b870a25e163c6d9e538c0cd46ffdc9a709c720ba9b31137a7c24a8087ea3bc0a1616304b00

diff --git a/dev-lang/swi-prolog/swi-prolog-8.3.16.ebuild 
b/dev-lang/swi-prolog/swi-prolog-8.3.16.ebuild
new file mode 100644
index 000..c9064992abb
--- /dev/null
+++ b/dev-lang/swi-prolog/swi-prolog-8.3.16.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils eutils flag-o-matic multilib
+
+PATCHSET_VER="0"
+
+DESCRIPTION="versatile implementation of the Prolog programming language"
+HOMEPAGE="http://www.swi-prolog.org/;
+SRC_URI="http://www.swi-prolog.org/download/devel/src/swipl-${PV}.tar.gz;
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+IUSE="archive berkdb debug doc +gmp java +libedit libressl minimal odbc pcre 
qt5 readline ssl test uuid X yaml"
+RESTRICT="!test? ( test )"
+
+RDEPEND="sys-libs/ncurses:=
+   sys-libs/zlib
+   archive? ( app-arch/libarchive )
+   berkdb? ( >=sys-libs/db-4:= )
+   odbc? ( dev-db/unixODBC )
+   pcre? ( dev-libs/libpcre )
+   readline? ( sys-libs/readline:= )
+   libedit? ( dev-libs/libedit )
+   gmp? ( dev-libs/gmp:0 )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0 )
+   libressl? ( dev-libs/libressl )
+   )
+   java? ( >=virtual/jdk-1.7:= )
+   uuid? ( dev-libs/ossp-uuid )
+   qt5? (
+   dev-qt/qtwidgets:5
+   dev-qt/qtgui:5
+   )
+   X? (
+   virtual/jpeg:0
+   x11-libs/libX11
+   x11-libs/libXft
+   x11-libs/libXinerama
+   x11-libs/libXpm
+   x11-libs/libXt
+   x11-libs/libICE
+   x11-libs/libSM )
+   yaml? ( dev-libs/libyaml )"
+
+DEPEND="${RDEPEND}
+   X? ( x11-base/xorg-proto )
+   java? ( test? ( =dev-java/junit-3.8* ) )"
+
+S="${WORKDIR}/swipl-${PV}"
+BUILD_DIR="${S}/build"
+CMAKE_USE_DIR="${S}"
+
+src_prepare() {
+   if [[ -d "${WORKDIR}"/${PV} ]] ; then
+   eapply "${WORKDIR}"/${PV}
+   fi
+   eapply_user
+
+   sed -i -e "s|\(SWIPL_INSTALL_PREFIX\)   lib/.*)|\1   
$(get_libdir)/swipl)|" CMakeLists.txt || die
+   sed -i -e "s|\(SWIPL_INSTALL_CMAKE_CONFIG_DIR\) lib/|\1   
$(get_libdir)/|" CMakeLists.txt || die
+
+   cmake-utils_src_prepare
+}
+
+src_configure() {
+   append-flags -fno-strict-aliasing
+   use debug && append-flags -DO_DEBUG
+
+   mycmakeargs=(
+   -DSWIPL_INSTALL_PREFIX=$(get_libdir)/swipl
+   -DUSE_GMP=$(usex gmp)
+   -DINSTALL_DOCUMENTATION=$(use doc && usex archive)
+   -DSWIPL_PACKAGES_BASIC=$(usex !minimal)
+   -DSWIPL_PACKAGES_ARCHIVE=$(usex archive)
+   -DSWIPL_PACKAGES_ODBC=$(usex odbc)
+   -DSWIPL_PACKAGES_BDB=$(usex berkdb)
+   

[gentoo-commits] repo/gentoo:master commit in: profiles/arch/alpha/, profiles/base/

2021-01-10 Thread Joonas Niilola
commit: 76dddf8c9fa54b7118b62aeab0d3f66428401ee8
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Jan 10 08:57:25 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Jan 10 08:57:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76dddf8c

profiles/base: package.use.mask enchant[test]

 - test-dep not keyworded on multiple listed arches.

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

 profiles/arch/alpha/package.use.mask | 7 ++-
 profiles/base/package.use.mask   | 5 +
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/profiles/arch/alpha/package.use.mask 
b/profiles/arch/alpha/package.use.mask
index aeb88d765b9..d9c450b4a4d 100644
--- a/profiles/arch/alpha/package.use.mask
+++ b/profiles/arch/alpha/package.use.mask
@@ -1,6 +1,11 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Joonas Niilola  (2021-01-10)
+# Test-dep not keyworded on alpha, resolve tree breakage by 
+# b5248bbb1b5557aea56b4e1ee3d0d122e03e97d1
+app-text/enchant test
+
 # Michał Górny  (2020-11-30)
 # Qt5 is not keyworded here.
 x11-misc/synergy gui

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 31123461d8e..074e2e106f4 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -6,6 +6,11 @@
 # This file is only for generic masks. For arch-specific masks (i.e.
 # mask everywhere, unmask on arch/*) use arch/base.
 
+# Joonas Niilola  (2021-01-10)
+# Test-dep needs keywording on multiple arches, best to just mask it
+# globally for now. Resolves issue by b5248bbb1b5
+app-text/enchant test
+
 # Brian Evans  (2021-01-07)
 # Block test deps on packages until they can be updated
 # Old phpunit does not work with new PHP and last is vulnerable



[gentoo-commits] proj/kde:master commit in: Documentation/package.accept_keywords/.kde-release-service-live.base/, ...

2021-01-10 Thread Andreas Sturmlechner
commit: 65f97ac8cfcc9a59adb3f795edcfba12b46036f2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Jan  9 22:32:20 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Jan  9 22:32:20 2021 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=65f97ac8

Documentation: Update KDE Release Service deps

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../package.accept_keywords/.kde-release-service-live.base/more-deps   | 3 ++-
 .../package.accept_keywords/.kde-release-service-live/more-deps| 3 ++-
 .../package.accept_keywords/kde-release-service-live.keywords  | 3 ++-
 3 files changed, 6 insertions(+), 3 deletions(-)

diff --git 
a/Documentation/package.accept_keywords/.kde-release-service-live.base/more-deps
 
b/Documentation/package.accept_keywords/.kde-release-service-live.base/more-deps
index 70faba650c..ec8ec39444 100644
--- 
a/Documentation/package.accept_keywords/.kde-release-service-live.base/more-deps
+++ 
b/Documentation/package.accept_keywords/.kde-release-service-live.base/more-deps
@@ -1 +1,2 @@
-~media-libs/zxing-cpp-1.1.1
+~media-libs/kcolorpicker-0.1.4
+~media-libs/kimageannotator-0.4.0

diff --git 
a/Documentation/package.accept_keywords/.kde-release-service-live/more-deps 
b/Documentation/package.accept_keywords/.kde-release-service-live/more-deps
index 70faba650c..ec8ec39444 100644
--- a/Documentation/package.accept_keywords/.kde-release-service-live/more-deps
+++ b/Documentation/package.accept_keywords/.kde-release-service-live/more-deps
@@ -1 +1,2 @@
-~media-libs/zxing-cpp-1.1.1
+~media-libs/kcolorpicker-0.1.4
+~media-libs/kimageannotator-0.4.0

diff --git 
a/Documentation/package.accept_keywords/kde-release-service-live.keywords 
b/Documentation/package.accept_keywords/kde-release-service-live.keywords
index 5092bfd32b..c4c4279eb1 100644
--- a/Documentation/package.accept_keywords/kde-release-service-live.keywords
+++ b/Documentation/package.accept_keywords/kde-release-service-live.keywords
@@ -240,4 +240,5 @@
 ~kde-misc/markdownpart- **
 ~sys-block/partitionmanager- **
 ~sys-libs/kpmcore- **
-~media-libs/zxing-cpp-1.1.1
+~media-libs/kcolorpicker-0.1.4
+~media-libs/kimageannotator-0.4.0



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

2021-01-10 Thread Andreas Sturmlechner
commit: afdf7b8c97f36632fcfbbc768e1841a2b159dff0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Jan  9 22:33:22 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Jan  9 22:35:53 2021 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=afdf7b8c

sets: Drop kde-frameworks/kdesignerplugin from portingAids

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sets/kde-frameworks-portingaids  | 2 +-
 sets/kde-frameworks-portingaids-5.74 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sets/kde-frameworks-portingaids b/sets/kde-frameworks-portingaids
index 54499bc366..9a7fd639b2 100644
--- a/sets/kde-frameworks-portingaids
+++ b/sets/kde-frameworks-portingaids
@@ -5,7 +5,7 @@ kde-frameworks/khtml:5
 kde-frameworks/kjs:5
 kde-frameworks/kross:5
 # TODO: PMASK after KDE Frameworks 5.74 cleanup
-kde-frameworks/kdesignerplugin:5
+# kde-frameworks/kdesignerplugin:5
 # PMASKED
 # kde-frameworks/kdewebkit:5
 # kde-frameworks/kjsembed:5

diff --git a/sets/kde-frameworks-portingaids-5.74 
b/sets/kde-frameworks-portingaids-5.74
index 77ca38f3aa..2b6f757534 100644
--- a/sets/kde-frameworks-portingaids-5.74
+++ b/sets/kde-frameworks-portingaids-5.74
@@ -4,7 +4,7 @@
 

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

2021-01-10 Thread Hans de Graaff
commit: 911e739c910eee70d32ab6e8850c35b67fd89f7c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Jan 10 08:33:53 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Jan 10 08:33:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=911e739c

dev-ruby/nokogiri: remove broken versions

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

 dev-ruby/nokogiri/Manifest   |  1 -
 dev-ruby/nokogiri/nokogiri-1.11.0.ebuild | 98 
 dev-ruby/nokogiri/nokogiri-1.11.1.ebuild | 98 
 3 files changed, 197 deletions(-)

diff --git a/dev-ruby/nokogiri/Manifest b/dev-ruby/nokogiri/Manifest
index 52e5b88fbc9..ff1a39bf3ab 100644
--- a/dev-ruby/nokogiri/Manifest
+++ b/dev-ruby/nokogiri/Manifest
@@ -1,3 +1,2 @@
 DIST nokogiri-1.10.10-git.tgz 5793723 BLAKE2B 
13829f6cc31c2b81462fdf306222ff27830d80aeea922ce4c3adceee4ce7486c0571ab76b3f07b14f1767af7b433af9e0eb83d02f8bcea989fa7e96c9cc743f3
 SHA512 
2d0bf09af417f0f5e7b07b9f2c555ce04e22d69ce73b484906d8a35745f90d6467824d0d56d8dadc53f020c56a7806e7152cd6347e47596e79ddaaadea1ff65a
-DIST nokogiri-1.11.0-git.tgz 5834946 BLAKE2B 
3d54b8a998d56c66d97b7376031aebb0951df7f99c684e67537107a5e7fd0cb76b40c5351b8c46831eaf1427724e302d29a0a9b24bf806f64c541f2c30d54f66
 SHA512 
2cc5642d28e5a83023d0d3e031875dfbcde176995ed458be13bbe560f01552fee0424093bd7bd881c08a698f545874389d92581e987466bbf57f13deefe1e8a4
 DIST nokogiri-1.11.1-git.tgz 5835648 BLAKE2B 
e8c84fe72063ac3d764ea71fe469a8f7d0499487e523563e0ab737e69e06279b112c666aa254e0075740b27690ba96162a5c6e39f125b58360fbb5720104935d
 SHA512 
47974f05b6788f2e04ef9ed7d0fc33790cdadbd258408e0242a14521cc996b6d42878b5bba3334b4bde2970dbadda0cde93a00e30fcddd100401186a90617502

diff --git a/dev-ruby/nokogiri/nokogiri-1.11.0.ebuild 
b/dev-ruby/nokogiri/nokogiri-1.11.0.ebuild
deleted file mode 100644
index f0d3e1a26ed..000
--- a/dev-ruby/nokogiri/nokogiri-1.11.0.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby25 ruby26 ruby27"
-
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md ROADMAP.md STANDARD_RESPONSES.md"
-
-RUBY_FAKEGEM_EXTRAINSTALL="ext"
-
-RUBY_FAKEGEM_GEMSPEC="nokogiri.gemspec"
-
-inherit ruby-fakegem multilib
-
-DESCRIPTION="Nokogiri is an HTML, XML, SAX, and Reader parser"
-HOMEPAGE="https://www.nokogiri.org/;
-LICENSE="MIT"
-SRC_URI="https://github.com/sparklemotion/nokogiri/archive/v${PV}.tar.gz -> 
${P}-git.tgz"
-
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
-SLOT="0"
-IUSE=""
-
-RDEPEND="${RDEPEND}
-   >=dev-libs/libxml2-2.9.10:=
-   >=dev-libs/libxslt-1.1.34
-   virtual/libiconv"
-DEPEND="${DEPEND}
-   >=dev-libs/libxml2-2.9.10
-   >=dev-libs/libxslt-1.1.34
-   virtual/libiconv"
-
-ruby_add_rdepend ">=dev-ruby/racc-1.4:0"
-
-ruby_add_bdepend "
-   >=dev-ruby/pkg-config-1.1.7
-   >=dev-ruby/rexical-1.0.7
-   dev-ruby/rdoc
-   test? ( dev-ruby/minitest )"
-
-all_ruby_prepare() {
-   sed -i \
-   -e '/tasks\/cross_compile/s:^:#:' \
-   -e '/:test.*prerequisites/s:^:#:' \
-   -e '/license/ s:^:#:' \
-   Rakefile || die
-   # Remove the cross compilation options since they interfere with
-   # native building.
-   sed -i -e 's/cross_compile  = true/cross_compile = false/' Rakefile || 
die
-   sed -i -e '/cross_config_options/d' Rakefile || die
-
-   sed -e '/simplecov/,/^end/ s:^:#:' \
-   -e '/reporters/I s:^:#:' \
-   -i test/helper.rb || die
-}
-
-each_ruby_configure() {
-   NOKOGIRI_USE_SYSTEM_LIBRARIES=true \
-   ${RUBY} -Cext/${PN} extconf.rb \
-   --with-zlib-include="${EPREFIX}"/usr/include \
-   --with-zlib-lib="${EPREFIX}"/$(get_libdir) \
-   --with-iconv-include="${EPREFIX}"/usr/include \
-   --with-iconv-lib="${EPREFIX}"/$(get_libdir) \
-   --with-xml2-include="${EPREFIX}"/usr/include/libxml2 \
-   --with-xml2-lib="${EPREFIX}"/usr/$(get_libdir) \
-   --with-xslt-dir="${EPREFIX}"/usr \
-   --with-iconvlib=iconv \
-   || die "extconf.rb failed"
-}
-
-each_ruby_compile() {
-   if ! [[ -f lib/nokogiri/css/tokenizer.rb ]]; then
-   ${RUBY} -S rake lib/nokogiri/css/tokenizer.rb || die "rexical 
failed"
-   fi
-
-   if ! [[ -f lib/nokogiri/css/parser.rb ]]; then
-   ${RUBY} -S rake lib/nokogiri/css/parser.rb || die "racc failed"
-   fi
-
-   emake -Cext/${PN} \
-   V=1 \
-   CFLAGS="${CFLAGS} -fPIC" \
-   archflag="${LDFLAGS}" || die "make extension failed"
-   cp -l ext/${PN}/${PN}$(get_modname) 

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

2021-01-10 Thread Hans de Graaff
commit: 09f029c2e076de0c3605aca25ca79da38ae7efa7
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Jan 10 08:33:15 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Jan 10 08:33:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09f029c2

dev-ruby/nokogiri: fix broken gemspec

The gemspec refered to mini_portile2 which we do not need for building
and don't have packaged as a dependency.

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

 dev-ruby/nokogiri/nokogiri-1.11.1-r1.ebuild | 100 
 1 file changed, 100 insertions(+)

diff --git a/dev-ruby/nokogiri/nokogiri-1.11.1-r1.ebuild 
b/dev-ruby/nokogiri/nokogiri-1.11.1-r1.ebuild
new file mode 100644
index 000..25405d872c2
--- /dev/null
+++ b/dev-ruby/nokogiri/nokogiri-1.11.1-r1.ebuild
@@ -0,0 +1,100 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md ROADMAP.md STANDARD_RESPONSES.md"
+
+RUBY_FAKEGEM_EXTRAINSTALL="ext"
+
+RUBY_FAKEGEM_GEMSPEC="nokogiri.gemspec"
+
+inherit ruby-fakegem multilib
+
+DESCRIPTION="Nokogiri is an HTML, XML, SAX, and Reader parser"
+HOMEPAGE="https://www.nokogiri.org/;
+LICENSE="MIT"
+SRC_URI="https://github.com/sparklemotion/nokogiri/archive/v${PV}.tar.gz -> 
${P}-git.tgz"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+SLOT="0"
+IUSE=""
+
+RDEPEND="${RDEPEND}
+   >=dev-libs/libxml2-2.9.10:=
+   >=dev-libs/libxslt-1.1.34
+   virtual/libiconv"
+DEPEND="${DEPEND}
+   >=dev-libs/libxml2-2.9.10
+   >=dev-libs/libxslt-1.1.34
+   virtual/libiconv"
+
+ruby_add_rdepend ">=dev-ruby/racc-1.4:0"
+
+ruby_add_bdepend "
+   >=dev-ruby/pkg-config-1.1.7
+   >=dev-ruby/rexical-1.0.7
+   dev-ruby/rdoc
+   test? ( dev-ruby/minitest )"
+
+all_ruby_prepare() {
+   sed -i \
+   -e '/tasks\/cross_compile/s:^:#:' \
+   -e '/:test.*prerequisites/s:^:#:' \
+   -e '/license/ s:^:#:' \
+   Rakefile || die
+   # Remove the cross compilation options since they interfere with
+   # native building.
+   sed -i -e 's/cross_compile  = true/cross_compile = false/' Rakefile || 
die
+   sed -i -e '/cross_config_options/d' Rakefile || die
+
+   sed -e '/simplecov/,/^end/ s:^:#:' \
+   -e '/reporters/I s:^:#:' \
+   -i test/helper.rb || die
+
+   sed -i -e '/mini_portile2/ s:^:#:' ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+each_ruby_configure() {
+   NOKOGIRI_USE_SYSTEM_LIBRARIES=true \
+   ${RUBY} -Cext/${PN} extconf.rb \
+   --with-zlib-include="${EPREFIX}"/usr/include \
+   --with-zlib-lib="${EPREFIX}"/$(get_libdir) \
+   --with-iconv-include="${EPREFIX}"/usr/include \
+   --with-iconv-lib="${EPREFIX}"/$(get_libdir) \
+   --with-xml2-include="${EPREFIX}"/usr/include/libxml2 \
+   --with-xml2-lib="${EPREFIX}"/usr/$(get_libdir) \
+   --with-xslt-dir="${EPREFIX}"/usr \
+   --with-iconvlib=iconv \
+   || die "extconf.rb failed"
+}
+
+each_ruby_compile() {
+   if ! [[ -f lib/nokogiri/css/tokenizer.rb ]]; then
+   ${RUBY} -S rake lib/nokogiri/css/tokenizer.rb || die "rexical 
failed"
+   fi
+
+   if ! [[ -f lib/nokogiri/css/parser.rb ]]; then
+   ${RUBY} -S rake lib/nokogiri/css/parser.rb || die "racc failed"
+   fi
+
+   emake -Cext/${PN} \
+   V=1 \
+   CFLAGS="${CFLAGS} -fPIC" \
+   archflag="${LDFLAGS}" || die "make extension failed"
+   cp -l ext/${PN}/${PN}$(get_modname) lib/${PN}/ || die
+}
+
+each_ruby_test() {
+   ${RUBY} -Ilib:.:test -e 'Dir["test/**/test_*.rb"].each {|f| require f}' 
|| die
+}
+
+each_ruby_install() {
+   # Clean up "ext" directory before installing it. nokogumbo expects
+   # the header files and shared object to be in ext.
+   rm -rf ext/java ext/nokogiri/*.o ext/nokogiri/{mkmf.log,Makefile} || die
+
+   each_fakegem_install
+}



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

2021-01-10 Thread Hans de Graaff
commit: 01df953bffa5d4b40ed18d497351ee0bd081dde1
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Jan 10 08:08:36 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Jan 10 08:08:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01df953b

dev-ruby/http-parser: don't hardcode build platform

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

 dev-ruby/http-parser/http-parser-1.2.2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/http-parser/http-parser-1.2.2.ebuild 
b/dev-ruby/http-parser/http-parser-1.2.2.ebuild
index 796554e1831..e3227ecbebf 100644
--- a/dev-ruby/http-parser/http-parser-1.2.2.ebuild
+++ b/dev-ruby/http-parser/http-parser-1.2.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-USE_RUBY="ruby24 ruby25 ruby26 ruby27"
+USE_RUBY="ruby25 ruby26 ruby27"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 
@@ -25,5 +25,5 @@ ruby_add_bdepend "dev-ruby/ffi-compiler"
 
 each_ruby_compile() {
${RUBY} -C ext -S rake || die
-   mv ext/x86_64-linux/libhttp-parser-ext.so lib/http-parser/ || die
+   mv ext/*/libhttp-parser-ext.so lib/http-parser/ || die
 }



<    1   2   3   4