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

2021-10-16 Thread Sam James
commit: 890ad6929d2c1bbaa5494b768250b237d174feb5
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 05:49:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 05:49:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=890ad692

dev-util/valgrind: switch to HTTPS

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

 dev-util/valgrind/valgrind-3.16.1.ebuild | 2 +-
 dev-util/valgrind/valgrind-3.17.0.ebuild | 2 +-
 dev-util/valgrind/valgrind-.ebuild   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-util/valgrind/valgrind-3.16.1.ebuild 
b/dev-util/valgrind/valgrind-3.16.1.ebuild
index 890f4104452..7594d5e1682 100644
--- a/dev-util/valgrind/valgrind-3.16.1.ebuild
+++ b/dev-util/valgrind/valgrind-3.16.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
EGIT_REPO_URI="https://sourceware.org/git/${PN}.git;
inherit git-r3
 else
-   SRC_URI="ftp://sourceware.org/pub/valgrind/${P}.tar.bz2;
+   SRC_URI="https://sourceware.org/pub/valgrind/${P}.tar.bz2;
KEYWORDS="-* amd64 arm arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux 
~x64-macos ~x64-solaris"
 fi
 

diff --git a/dev-util/valgrind/valgrind-3.17.0.ebuild 
b/dev-util/valgrind/valgrind-3.17.0.ebuild
index 148f504a570..589e08e8b7d 100644
--- a/dev-util/valgrind/valgrind-3.17.0.ebuild
+++ b/dev-util/valgrind/valgrind-3.17.0.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
EGIT_REPO_URI="https://sourceware.org/git/${PN}.git;
inherit git-r3
 else
-   SRC_URI="ftp://sourceware.org/pub/valgrind/${P}.tar.bz2;
+   SRC_URI="https://sourceware.org/pub/valgrind/${P}.tar.bz2;
KEYWORDS="-* amd64 arm arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux 
~x64-macos ~x64-solaris"
 fi
 

diff --git a/dev-util/valgrind/valgrind-.ebuild 
b/dev-util/valgrind/valgrind-.ebuild
index 10a17a63d2e..ff86af7c1d9 100644
--- a/dev-util/valgrind/valgrind-.ebuild
+++ b/dev-util/valgrind/valgrind-.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
EGIT_REPO_URI="https://sourceware.org/git/${PN}.git;
inherit git-r3
 else
-   SRC_URI="ftp://sourceware.org/pub/valgrind/${P}.tar.bz2;
+   SRC_URI="https://sourceware.org/pub/valgrind/${P}.tar.bz2;
KEYWORDS="-* ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux ~x64-macos ~x64-solaris"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: dev-lang/ocaml/, dev-lang/ocaml/files/

2021-10-16 Thread Sam James
commit: c309652d566cedeb0c93c8b1a08569f54545d354
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 05:16:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 05:24:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c309652d

dev-lang/ocaml: fix build with glibc-2.34 in 4.11.2

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

 dev-lang/ocaml/files/ocaml-4.11.2-glibc-2.34.patch | 91 ++
 dev-lang/ocaml/ocaml-4.11.2-r2.ebuild  |  4 +
 2 files changed, 95 insertions(+)

diff --git a/dev-lang/ocaml/files/ocaml-4.11.2-glibc-2.34.patch 
b/dev-lang/ocaml/files/ocaml-4.11.2-glibc-2.34.patch
new file mode 100644
index 000..22cbb806e6e
--- /dev/null
+++ b/dev-lang/ocaml/files/ocaml-4.11.2-glibc-2.34.patch
@@ -0,0 +1,91 @@
+https://gitlab.com/redhat/centos-stream/rpms/ocaml/-/raw/c9s/0006-Dynamically-allocate-the-alternate-signal-stack-1026.patch
+https://bugs.gentoo.org/804498
+
+From 24a9db7784ddfcf0af2d2be2f51616ed960ae7e8 Mon Sep 17 00:00:00 2001
+From: Xavier Leroy 
+Date: Fri, 5 Mar 2021 19:14:07 +0100
+Subject: [PATCH 6/6] Dynamically allocate the alternate signal stack (#10266)
+
+In Glibc 2.34 and later, SIGSTKSZ may not be a compile-time constant.
+It is no longer possible to statically allocate the alternate signal
+stack for the main thread, as we've been doing for the last 25 years.
+
+This commit implements dynamic allocation of the alternate signal stack
+even for the main thread.  It reuses the code already in place to allocate
+the alternate signal stack for other threads.
+
+Fixes: #10250.
+(cherry picked from commit fc9534746bf5d08a4c109f22e344cf49d5d46d54)
+--- a/runtime/caml/signals.h
 b/runtime/caml/signals.h
+@@ -82,7 +82,7 @@ void caml_set_action_pending (void);
+ value caml_do_pending_actions_exn (void);
+ value caml_process_pending_actions_with_root (value extra_root); // raises
+ int caml_set_signal_action(int signo, int action);
+-void caml_setup_stack_overflow_detection(void);
++CAMLextern int caml_setup_stack_overflow_detection(void);
+ 
+ CAMLextern void (*caml_enter_blocking_section_hook)(void);
+ CAMLextern void (*caml_leave_blocking_section_hook)(void);
+--- a/runtime/signals_byt.c
 b/runtime/signals_byt.c
+@@ -86,4 +86,4 @@ int caml_set_signal_action(int signo, int action)
+ return 0;
+ }
+ 
+-void caml_setup_stack_overflow_detection(void) {}
++CAMLexport int caml_setup_stack_overflow_detection(void) { return 0; }
+--- a/runtime/signals_nat.c
 b/runtime/signals_nat.c
+@@ -195,8 +195,6 @@ DECLARE_SIGNAL_HANDLER(trap_handler)
+ #error "CONTEXT_SP is required if HAS_STACK_OVERFLOW_DETECTION is defined"
+ #endif
+ 
+-static char sig_alt_stack[SIGSTKSZ];
+-
+ /* Code compiled with ocamlopt never accesses more than
+EXTRA_STACK bytes below the stack pointer. */
+ #define EXTRA_STACK 256
+@@ -282,28 +280,33 @@ void caml_init_signals(void)
+ #endif
+ 
+ #ifdef HAS_STACK_OVERFLOW_DETECTION
+-  {
+-stack_t stk;
++  if (caml_setup_stack_overflow_detection() != -1) {
+ struct sigaction act;
+-stk.ss_sp = sig_alt_stack;
+-stk.ss_size = SIGSTKSZ;
+-stk.ss_flags = 0;
+ SET_SIGACT(act, segv_handler);
+ act.sa_flags |= SA_ONSTACK | SA_NODEFER;
+ sigemptyset(_mask);
+-if (sigaltstack(, NULL) == 0) { sigaction(SIGSEGV, , NULL); }
++sigaction(SIGSEGV, , NULL);
+   }
+ #endif
+ }
+ 
+-void caml_setup_stack_overflow_detection(void)
++/* Allocate and select an alternate stack for handling signals,
++   especially SIGSEGV signals.
++   Each thread needs its own alternate stack.
++   The alternate stack used to be statically-allocated for the main thread,
++   but this is incompatible with Glibc 2.34 and newer, where SIGSTKSZ
++   may not be a compile-time constant (issue #10250). */
++
++CAMLexport int caml_setup_stack_overflow_detection(void)
+ {
+ #ifdef HAS_STACK_OVERFLOW_DETECTION
+   stack_t stk;
+   stk.ss_sp = malloc(SIGSTKSZ);
++  if (stk.ss_sp == NULL) return -1;
+   stk.ss_size = SIGSTKSZ;
+   stk.ss_flags = 0;
+-  if (stk.ss_sp)
+-sigaltstack(, NULL);
++  return sigaltstack(, NULL);
++#else
++  return 0;
+ #endif
+ }

diff --git a/dev-lang/ocaml/ocaml-4.11.2-r2.ebuild 
b/dev-lang/ocaml/ocaml-4.11.2-r2.ebuild
index 2d52afb654e..51cc9f56afa 100644
--- a/dev-lang/ocaml/ocaml-4.11.2-r2.ebuild
+++ b/dev-lang/ocaml/ocaml-4.11.2-r2.ebuild
@@ -21,6 +21,10 @@ BDEPEND="${RDEPEND}
 PDEPEND="emacs? ( app-emacs/ocaml-mode )
xemacs? ( app-xemacs/ocaml )"
 
+PATCHES=(
+   "${FILESDIR}"/${PN}-4.11.2-glibc-2.34.patch
+)
+
 src_prepare() {
default
 



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

2021-10-16 Thread Sam James
commit: 24aba1ede9881d38fdd96846109e3f827f69a037
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 05:22:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 05:24:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24aba1ed

profiles: last-rite dev-cpp/rttr

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index e2d492e9a30..037eb2060ab 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Sam James  (2021-10-17)
+# Fails to build with glibc 2.34 and no reverse dependencies.
+# bug #806508
+# Removal on 2021-11-17.
+dev-cpp/rttr
+
 # Andreas K. Hüttel  (2021-10-16)
 # Binary-only package, cannot be distributed, download
 # is an unversioned URL which changes content. In brief,



[gentoo-commits] repo/gentoo:master commit in: net-fs/autofs/, net-fs/autofs/files/

2021-10-16 Thread Sam James
commit: 64bb0e2110fec0fb3e83fcc85a0802c5a3fdd59b
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 05:10:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 05:24:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64bb0e21

net-fs/autofs: add glibc-2.34 patch

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

 net-fs/autofs/autofs-5.1.7-r1.ebuild  |   4 +-
 net-fs/autofs/files/autofs-5.1.7-glibc-2.34.patch | 107 ++
 2 files changed, 110 insertions(+), 1 deletion(-)

diff --git a/net-fs/autofs/autofs-5.1.7-r1.ebuild 
b/net-fs/autofs/autofs-5.1.7-r1.ebuild
index cb4a9016866..dc05275932e 100644
--- a/net-fs/autofs/autofs-5.1.7-r1.ebuild
+++ b/net-fs/autofs/autofs-5.1.7-r1.ebuild
@@ -43,6 +43,7 @@ PATCHES=(
"${FILESDIR}/${P}-glibc.patch"
"${FILESDIR}/${PN}-5.1.6-musl.patch"
"${FILESDIR}/${PN}-5.1.6-pid.patch"
+   "${FILESDIR}/${PN}-5.1.7-glibc-2.34.patch"
 )
 
 pkg_setup() {
@@ -90,7 +91,8 @@ src_configure() {
--enable-ignore-busy
RANLIB="$(type -P $(tc-getRANLIB))" # bug #483716
)
-   econf "${myeconfargs[@]}"
+
+   CONFIG_SHELL="${BROOT}/bin/bash" econf "${myeconfargs[@]}"
 }
 
 src_compile() {

diff --git a/net-fs/autofs/files/autofs-5.1.7-glibc-2.34.patch 
b/net-fs/autofs/files/autofs-5.1.7-glibc-2.34.patch
new file mode 100644
index 000..8b0ddd75eb2
--- /dev/null
+++ b/net-fs/autofs/files/autofs-5.1.7-glibc-2.34.patch
@@ -0,0 +1,107 @@
+https://src.fedoraproject.org/rpms/autofs/raw/rawhide/f/autofs-5.1.7-use-default-stack-size-for-threads.patch
+https://bugzilla.redhat.com/show_bug.cgi?id=1984813
+https://bugs.gentoo.org/803938
+
+autofs-5.1.7 - use default stack size for threads
+
+From: Ian Kent 
+
+autofs uses PTHREAD_STACK_MIN to set the stack size for threads it
+creates.
+
+In two cases it is used to reduce the stack size for long running
+service threads while it's used to allocate a larger stack for worker
+threads that can have larger memory requirements.
+
+In recent glibc releases PTHREAD_STACK_MIN is no longer a constant
+which can lead to unexpectedly different stack sizes on different
+architectures and the autofs assumption it's a constant causes a
+compile failure.
+
+The need to alter the stack size was due to observed stack overflow
+which was thought to be due the thread stack being too small for autofs
+and glibc alloca(3) usage.
+
+Quite a bit of that alloca(3) usage has been eliminated from autofs now,
+particularly those that might be allocating largish amounts of storage,
+and there has been a lot of change in glibc too so using the thread
+default stack should be ok.
+
+Signed-off-by: Ian Kent 
+--- a/daemon/automount.c
 b/daemon/automount.c
+@@ -84,7 +84,6 @@ static size_t kpkt_len;
+ /* Attributes for creating detached and joinable threads */
+ pthread_attr_t th_attr;
+ pthread_attr_t th_attr_detached;
+-size_t detached_thread_stack_size = PTHREAD_STACK_MIN * 144;
+ 
+ struct master_readmap_cond mrc = {
+   PTHREAD_MUTEX_INITIALIZER, PTHREAD_COND_INITIALIZER, 0, NULL, 0, 0, 0, 
0};
+@@ -2620,34 +2619,6 @@ int main(int argc, char *argv[])
+   exit(1);
+   }
+ 
+-#ifdef _POSIX_THREAD_ATTR_STACKSIZE
+-  if (pthread_attr_setstacksize(
+-  _attr_detached, detached_thread_stack_size)) {
+-  logerr("%s: failed to set stack size thread attribute!",
+- program);
+-  if (start_pipefd[1] != -1) {
+-  res = write(start_pipefd[1], pst_stat, 
sizeof(*pst_stat));
+-  close(start_pipefd[1]);
+-  }
+-  release_flag_file();
+-  macro_free_global_table();
+-  exit(1);
+-  }
+-#endif
+-
+-  if (pthread_attr_getstacksize(
+-  _attr_detached, _thread_stack_size)) {
+-  logerr("%s: failed to get detached thread stack size!",
+- program);
+-  if (start_pipefd[1] != -1) {
+-  res = write(start_pipefd[1], pst_stat, 
sizeof(*pst_stat));
+-  close(start_pipefd[1]);
+-  }
+-  release_flag_file();
+-  macro_free_global_table();
+-  exit(1);
+-  }
+-
+   info(logging, "Starting automounter version %s, master map %s",
+   version, master_list->name);
+   info(logging, "using kernel protocol version %d.%02d",
+--- a/daemon/state.c
 b/daemon/state.c
+@@ -1177,12 +1177,8 @@ int st_start_handler(void)
+   status = pthread_attr_init(pattrs);
+   if (status)
+   pattrs = NULL;
+-  else {
++  else
+   pthread_attr_setdetachstate(pattrs, PTHREAD_CREATE_DETACHED);
+-#ifdef _POSIX_THREAD_ATTR_STACKSIZE
+-  pthread_attr_setstacksize(pattrs, PTHREAD_STACK_MIN*4);
+-#endif
+-  }
+ 
+   status = 

[gentoo-commits] proj/pax-utils:master commit in: /

2021-10-16 Thread Mike Frysinger
commit: acc9835d8c96451f88b65822f1f6b5b4f27594e0
Author: Mike Frysinger  gentoo  org>
AuthorDate: Sun Oct 17 02:45:44 2021 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Sun Oct 17 02:45:44 2021 +
URL:https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=acc9835d

seccomp: mark arrays const+static

This generates better code, although it doesn't super matter since
this is only used at build time.

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

 seccomp-bpf.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/seccomp-bpf.c b/seccomp-bpf.c
index 5279d20..6a095a4 100644
--- a/seccomp-bpf.c
+++ b/seccomp-bpf.c
@@ -49,7 +49,7 @@ static const struct {
 };
 
 /* Simple helper to add all of the syscalls in an array. */
-static int gen_seccomp_rules_add(scmp_filter_ctx ctx, int syscalls[], size_t 
num)
+static int gen_seccomp_rules_add(scmp_filter_ctx ctx, const int syscalls[], 
size_t num)
 {
static uint8_t prio;
size_t i;
@@ -102,7 +102,7 @@ static void gen_seccomp_program(const char *name)
 int main(void)
 {
/* Order determines priority (first == lowest prio).  */
-   int base_syscalls[] = {
+   static const int base_syscalls[] = {
/* We write the most w/scanelf.  */
SCMP_SYS(write),
SCMP_SYS(writev),
@@ -194,7 +194,7 @@ int main(void)
/* glibc-2.34+ uses it as part of mem alloc functions. */
SCMP_SYS(getrandom),
};
-   int fork_syscalls[] = {
+   static const int fork_syscalls[] = {
SCMP_SYS(clone),
SCMP_SYS(execve),
SCMP_SYS(fork),



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

2021-10-16 Thread Zac Medico
commit: e50727ab0a7bfb5b98045a2837a427881a3bc4f1
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Oct 17 04:30:55 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Oct 17 04:31:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e50727ab

sys-apps/yarn: Bump to version 1.22.17

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

 sys-apps/yarn/Manifest| 2 +-
 sys-apps/yarn/{yarn-1.22.5.ebuild => yarn-1.22.17.ebuild} | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-apps/yarn/Manifest b/sys-apps/yarn/Manifest
index a431fea5a5a..994e3a60ddd 100644
--- a/sys-apps/yarn/Manifest
+++ b/sys-apps/yarn/Manifest
@@ -1,3 +1,3 @@
 DIST yarn-v1.22.10.tar.gz 1244965 BLAKE2B 
6a9471a6905d89481665c099f00a985daacc8c7953327ee12b3d70f3f42dc304ceca01446281964d1af7a005ecae4a12ca55df637732e52821b4ecb9cdce6418
 SHA512 
d75dccd318f280abcbfd8d78b63546e11e7a8459c5dd737d0c8da2742cd5d7e3d7a5e668ce680234b0c09e71d12878061d24c6e3ae4b6626086461e3ce25
+DIST yarn-v1.22.17.tar.gz 1246198 BLAKE2B 
ae0b86cdb248a0f81d1a4a23d15ef9aab185fcda7ef7f8873959c3e54dfc305219afb2416264911098c4e3a6a65a33d248ff97c8e0ca043b118de64e003c3d9b
 SHA512 
1f4a76e35057687d1437d21e1fffd14fcdad9793df36b695a52a44a16f844fb966a29342eb5799f80f880ef53c14ce86a39bf1d7ad929dc0cbf09d598d106b89
 DIST yarn-v1.22.4.tar.gz 1244785 BLAKE2B 
1f1eeb829096eaf19a8fdb48b46fa736769d9d3c247759e434413665186e4cccb750024afa836dae8a0130fc472df3c01805d263d81346e1dd7509e1b106e88a
 SHA512 
a1833b862fe52169bd6c2a033045a07df5bc6a23595c259e675fed1b2d035ab37abe6ce309720abb6636d68f03615054b6292dc0a70da31c8697fda228b50d18
-DIST yarn-v1.22.5.tar.gz 1244837 BLAKE2B 
cf5054893c8937ceb6788c27f23005386449664b36dc31c6c0c3548438f1fdc5c5ec4b1b1642786c4d8732faf46ab58d2784d3768e12233f241b9b1c6f173734
 SHA512 
c33c040ed57eb05c04905b8996db31a34099f0c18dbf1818959c5592514abc99f1180592561ec5d3e760c084dbcf2dcdf3ebb4fe8918f082b6aa089cf10921bb

diff --git a/sys-apps/yarn/yarn-1.22.5.ebuild 
b/sys-apps/yarn/yarn-1.22.17.ebuild
similarity index 93%
rename from sys-apps/yarn/yarn-1.22.5.ebuild
rename to sys-apps/yarn/yarn-1.22.17.ebuild
index 706453936e7..1c2aa5d2cfd 100644
--- a/sys-apps/yarn/yarn-1.22.5.ebuild
+++ b/sys-apps/yarn/yarn-1.22.17.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 @@ 
SRC_URI="https://github.com/yarnpkg/yarn/releases/download/v${PV}/${MY_P}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 IUSE=""
 
 RDEPEND="!dev-util/cmdtest



[gentoo-commits] repo/proj/guru:dev commit in: sys-apps/fselect/

2021-10-16 Thread Rabindra Dhakal
commit: 9dfaf2d4470674c714d5502987b958fa8b631aa2
Author: Rabindra Dhakal  gmail  com>
AuthorDate: Sun Oct 17 04:28:09 2021 +
Commit: Rabindra Dhakal  gmail  com>
CommitDate: Sun Oct 17 04:28:09 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9dfaf2d4

sys-apps/fselect: Bump to version 0.7.7

Signed-off-by: Rabindra Dhakal  gmail.com>

 sys-apps/fselect/Manifest  | 71 +++---
 .../{fselect-0.7.6.ebuild => fselect-0.7.7.ebuild} | 71 +++---
 2 files changed, 74 insertions(+), 68 deletions(-)

diff --git a/sys-apps/fselect/Manifest b/sys-apps/fselect/Manifest
index 708d5ca90..5880941da 100644
--- a/sys-apps/fselect/Manifest
+++ b/sys-apps/fselect/Manifest
@@ -7,27 +7,27 @@ DIST autocfg-1.0.1.crate 12908 BLAKE2B 
40c53cab298e4f26634c3acff3ece6a3371188d91
 DIST base64-0.13.0.crate 62070 BLAKE2B 
b957f65cdb1e28baeca0cefc92fa98be797409b7dabd15e0e88db6cdfb89779b662cba9f2270fbf3b7b66948fdc46c118b8040a78ab72049c48a928fa802bee0
 SHA512 
991a72999839daa232f508c5b24e7d3225e8a26db8d1d0e747881b115af9e408b92374e163b31e0b0d324c1c2e57e8e38d66861b61eb0a1dba87bb5871940151
 DIST bitflags-1.2.1.crate 16745 BLAKE2B 
0fa6d3ce44aad7616d5cd02aad8c1d0b0fed4022650eb43067c4a72e6fc88da05442674fa51826e4858a47c9de233e1ba2229820af094197cd11bb416ceffb2b
 SHA512 
ad89b3798845e23737a620bba581c2ff1ff3e15bac12555c765e201d2c0b90ecea0cdbc5b5b1a3fa9858c385e8e041f8226f5acfae5bbbe9925643fff2bf3f0b
 DIST bitreader-0.3.4.crate 11239 BLAKE2B 
75be0ccd0bb0da6f217d1db8fc050f4dc2bef67b323d8b5dbbcc2970d5acdc8ef70966fff94d4f09a6ab31332441afdb580ae729e8362d1c38a04949745c9b81
 SHA512 
22c0d03067d46464b1ca69e95be83893d1992ef54bc0ea1167a3972ba8abdc57f489386ca4bfbc5671b0e4fc181dec61c2595443323b8ad5ff4334128622245c
-DIST bitstream-io-1.1.0.crate 27078 BLAKE2B 
e3b6b1de535fa82f863b7cb2b0ac0055473797018f570ef88ce6a0e86412c943bf5ccf5aad90ddfe8e244f748c77645a1970daee3082a272d07af3944b1e6959
 SHA512 
22b604d97b8e2f795a4c652e21ac5e542e01c944cb6d0db5d7b7e9aebe47e744c26d7fd4931e7c59d51db6100519349e3c090009cb1472fdc8411171ad1b6b2b
+DIST bitstream-io-1.2.0.crate 27108 BLAKE2B 
1e22302fa66f9afb8f45abbc319af67fdafdd33b6072b92bf7cf35b3e96750c515285f4d364d5f5160913aca3685d9f48d1a25180f56c9098d935672614ac2b5
 SHA512 
04c44cde341aadc2acbc38533797039c94b7c46d2c762b7824f4d1ac46518a3812ac8fe6c2853d4b5af163aba61e54b7434212d9444a46936383e72f98e32072
 DIST block-buffer-0.9.0.crate 7108 BLAKE2B 
42e99ec46c6e43d5f85e8d6d0a8fcef7175c97828758c93e55505c0e18e2646ae77bf264076041bf682532e28268a4978dd9c822c0475347ee3d29c5df2601fb
 SHA512 
2d0f8908f59d4b1cccd1fbca0c1fa3cc4b224f09549669b28a16af5acfd4369b66851e9be8d65e1df71be998fbc42fc130ad32b71e035d6055724e8fa31fbf98
 DIST block-padding-0.2.1.crate 7672 BLAKE2B 
26f682717c908886fc54606950697a01e999c8d725e39cd5ca9148b089d5b32981daf717db21128b551287d5e818363db4c34123a8d8dfa3405f940eb284c01a
 SHA512 
d0bad6ca76cd491446f17c00986aa8caab36a78b4ee4f881a14b316074a96940566ed90460aade765f2e7ce04b359cfe21f6c323200637f50e8b5adf567017af
-DIST bstr-0.2.16.crate 330346 BLAKE2B 
75a345f3a5d428ec7278cd10fa676f5bb72685c65c4fe68163943cf3142b43ac45d458bce9323447b201ffcc91aa82cd8c762cb1954c055e34b1a5cebc686ee8
 SHA512 
33e82e5637efdc2f404ab9405331ae135df12586785491c3e61e70ea8406c67e2109e550cc70a4ab8e95d054e8519c48257fd3b55ef0b67b2530914a9a0b0fac
+DIST bstr-0.2.17.crate 330350 BLAKE2B 
90c3a48d78b73d7e36a3da9fda0beae6e91ce534d17198ea8ceee0b613d03297f9dd8bca30e1ec5da01d1da359a1da72b2c2771b77c82bebab5006cafd665192
 SHA512 
883eac8210d14f89517b4dd5e25d02c97cf31602ec74498b5e186112ba0f154d47de8d1c41a8f4e5503f3b53c064e2c976b60bbfd63fc28b186bc006e00f20c2
 DIST bytecount-0.6.2.crate 12347 BLAKE2B 
1ed4fa4a515567d8eabc2af03f0e1a3c89a24aa6cd77696a57bb94c25650f02b2f0e1e476fe9cb024a17d910442b940ea21bac3a99588146b8d89ab4adab0eca
 SHA512 
990460eedfd41b6b52278c9dfcac81872e755d40cb839d162bddf44a30eec3a9fd76369847f10edf6c2b2d95cbec562e9a2a6c6dce37f2ee59ca9edfe972a279
 DIST byteorder-1.4.3.crate 22512 BLAKE2B 
d39c546ba7346df315297fc53da4bfc77ecb1f38567ddb788549ee31cae2719a8bc0b7d1f1705abb3cff033aa57af004987d90748f5a31765273b3223a011c0d
 SHA512 
8c8000eb8ecf40351c9ce36a3a8acd7a02f81786d1b11aab85adfeffa0f2267ed74df29b2ca5d1d38128484d1d3cad2b673aa0d0441dcd0620dfd3934bb888fa
 DIST bzip2-0.4.3.crate 34195 BLAKE2B 
946ff5824531de8b82241fa042638cd33e708c4b517fa40c99e49f77ac7fd7aabe614e4b560ed8f5484ef8fd06bf19041cb20b7a622f4f1dea9ba26c5b821c5e
 SHA512 
2d4622c336f204ab28970ccb369ba55829bfea426bfe96f15da376f2375c441a9bfb03c46f5da210990f23115740250cc15e9036309034b39a1c960dca542da2
 DIST bzip2-sys-0.1.11+1.0.8.crate 633444 BLAKE2B 
01578c512443134fc786669bea4f2ec4b9c457b9936c907315299d8b67ed78045d458c83ccc119f0fad511529fb5af5feff5fa2d983fdae832d2fcc1b343e102
 SHA512 
d0a86b9f03acb1e4e309d5739dc2e88cab582757d467a433afe0017017f0e5d2c0282529e3a117160958ed170d8d695ecae739805888305df0e35e4dc440582b
-DIST cc-1.0.68.crate 55936 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/foxtrotgps/, sci-geosciences/foxtrotgps/files/

2021-10-16 Thread Sam James
commit: e93640d6db2ef27849988cd5258eb4f3b1e8a67e
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 04:25:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 04:25:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e93640d6

sci-geosciences/foxtrotgps: fix patch for newer gpsd (again)

I don't think the API define got bumped in 3.23.1?

Closes: https://bugs.gentoo.org/818268
Closes: https://bugs.gentoo.org/739568
Closes: https://bugs.gentoo.org/806986
Closes: https://bugs.gentoo.org/808883
Signed-off-by: Sam James  gentoo.org>

 .../foxtrotgps/files/foxtrotgps-1.2.2-fix-some-receivers.patch  | 2 +-
 sci-geosciences/foxtrotgps/foxtrotgps-1.2.2-r1.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/sci-geosciences/foxtrotgps/files/foxtrotgps-1.2.2-fix-some-receivers.patch 
b/sci-geosciences/foxtrotgps/files/foxtrotgps-1.2.2-fix-some-receivers.patch
index 84dffb11efc..76d0c2d04a6 100644
--- a/sci-geosciences/foxtrotgps/files/foxtrotgps-1.2.2-fix-some-receivers.patch
+++ b/sci-geosciences/foxtrotgps/files/foxtrotgps-1.2.2-fix-some-receivers.patch
@@ -29,7 +29,7 @@ index 602b06e..0baea81 100644
}
 -#if GPSD_API_MAJOR_VERSION >= 9
 -  gpsdata->valid = (libgps_gpsdata.fix.status != STATUS_NO_FIX);
-+#if GPSD_API_MAJOR_VERSION >= 12
++#if GPSD_API_MAJOR_VERSION >= 12 && defined(STATUS_UNK)
 +  gpsdata->valid = (libgps_gpsdata.fix.status != STATUS_UNK || 
libgps_gpsdata.fix.mode >= MODE_2D);
 +#elif GPSD_API_MAJOR_VERSION >= 10
 +  gpsdata->valid = (libgps_gpsdata.fix.status != STATUS_NO_FIX || 
libgps_gpsdata.fix.mode >= MODE_2D);

diff --git a/sci-geosciences/foxtrotgps/foxtrotgps-1.2.2-r1.ebuild 
b/sci-geosciences/foxtrotgps/foxtrotgps-1.2.2-r1.ebuild
index 9810966d440..cc36b1da8d8 100644
--- a/sci-geosciences/foxtrotgps/foxtrotgps-1.2.2-r1.ebuild
+++ b/sci-geosciences/foxtrotgps/foxtrotgps-1.2.2-r1.ebuild
@@ -30,5 +30,5 @@ BDEPEND="
 PATCHES=(
"${FILESDIR}/${P}-gpsd-api9.patch"
"${FILESDIR}/${P}-gcc10.patch"
-   #"${FILESDIR}/${P}-fix-some-receivers.patch"
+   "${FILESDIR}/${P}-fix-some-receivers.patch"
 )



[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/foxtrotgps/files/

2021-10-16 Thread Sam James
commit: 16e7064333caaf69e9d8bbcd98e34417fad1192e
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 04:00:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 04:00:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16e70643

sci-geosciences/foxtrotgps: add another bug reference to patch

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

 .../foxtrotgps/files/foxtrotgps-1.2.2-fix-some-receivers.patch   | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/sci-geosciences/foxtrotgps/files/foxtrotgps-1.2.2-fix-some-receivers.patch 
b/sci-geosciences/foxtrotgps/files/foxtrotgps-1.2.2-fix-some-receivers.patch
index c84ea65b77e..84dffb11efc 100644
--- a/sci-geosciences/foxtrotgps/files/foxtrotgps-1.2.2-fix-some-receivers.patch
+++ b/sci-geosciences/foxtrotgps/files/foxtrotgps-1.2.2-fix-some-receivers.patch
@@ -1,6 +1,7 @@
 https://bugs.gentoo.org/739568
 https://bugs.gentoo.org/806986
 https://bugs.gentoo.org/808883
+https://bugs.gentoo.org/818268
 
 From 86989085a3010cb83a094a788cd83a4654c9eb3c Mon Sep 17 00:00:00 2001
 From: Sam James 



[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/foxtrotgps/, sci-geosciences/foxtrotgps/files/

2021-10-16 Thread Sam James
commit: 1caddd2c85b8c9d6c90d414170dec987000e34a7
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 03:59:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 03:59:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1caddd2c

sci-geosciences/foxtrotgps: fix build with newer gpsd

Closes: https://bugs.gentoo.org/739568
Closes: https://bugs.gentoo.org/806986
Closes: https://bugs.gentoo.org/808883
Signed-off-by: Sam James  gentoo.org>

 .../foxtrotgps-1.2.2-fix-some-receivers.patch  | 29 ++
 .../foxtrotgps/foxtrotgps-1.2.2-r1.ebuild  |  2 +-
 2 files changed, 19 insertions(+), 12 deletions(-)

diff --git 
a/sci-geosciences/foxtrotgps/files/foxtrotgps-1.2.2-fix-some-receivers.patch 
b/sci-geosciences/foxtrotgps/files/foxtrotgps-1.2.2-fix-some-receivers.patch
index 23930212f31..c84ea65b77e 100644
--- a/sci-geosciences/foxtrotgps/files/foxtrotgps-1.2.2-fix-some-receivers.patch
+++ b/sci-geosciences/foxtrotgps/files/foxtrotgps-1.2.2-fix-some-receivers.patch
@@ -1,33 +1,40 @@
-From ea27c684924b8d8a560ca6fe1f25443624d54a93 Mon Sep 17 00:00:00 2001
+https://bugs.gentoo.org/739568
+https://bugs.gentoo.org/806986
+https://bugs.gentoo.org/808883
+
+From 86989085a3010cb83a094a788cd83a4654c9eb3c Mon Sep 17 00:00:00 2001
 From: Sam James 
 Date: Wed, 18 Aug 2021 20:18:03 +0100
-Subject: [PATCH] Fix some GPS receivers
+Subject: [PATCH] Fix some GPS receivers (and fix build with newer gpsd API 12)
 
 Rebased version of upstream patch:
 https://bazaar.launchpad.net/~foxtrotgps-team/foxtrotgps/trunk/revision/329
 
-Conservatively added an extra API version check for gpsd.
+See 
https://github.com/ntpsec/gpsd/commit/d4a4d8d3606fd50f10bcd20096a8a0cdb8b2d427
+re API change.
 
 Bug: https://bugs.gentoo.org/808883
 ---
- src/gps_functions.c | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
+ src/gps_functions.c | 6 --
+ 1 file changed, 4 insertions(+), 2 deletions(-)
 
 diff --git a/src/gps_functions.c b/src/gps_functions.c
-index 602b06e..4f30cbb 100644
+index 602b06e..0baea81 100644
 --- a/src/gps_functions.c
 +++ b/src/gps_functions.c
-@@ -762,7 +762,9 @@ cb_gpsd_data(GIOChannel *src, GIOCondition condition, 
gpointer data)
+@@ -762,8 +762,10 @@ cb_gpsd_data(GIOChannel *src, GIOCondition condition, 
gpointer data)
{
gpsdata->fix.time = (time_t) 0;
}
 -#if GPSD_API_MAJOR_VERSION >= 9
-+#if GPSD_API_MAJOR_VERSION >= 10
+-  gpsdata->valid = (libgps_gpsdata.fix.status != STATUS_NO_FIX);
++#if GPSD_API_MAJOR_VERSION >= 12
++  gpsdata->valid = (libgps_gpsdata.fix.status != STATUS_UNK || 
libgps_gpsdata.fix.mode >= MODE_2D);
++#elif GPSD_API_MAJOR_VERSION >= 10
 +  gpsdata->valid = (libgps_gpsdata.fix.status != STATUS_NO_FIX || 
libgps_gpsdata.fix.mode >= MODE_2D);
-+#elif GPSD_API_MAJOR_VERSION >= 9
-   gpsdata->valid = (libgps_gpsdata.fix.status != STATUS_NO_FIX);
  #else
gpsdata->valid = (libgps_gpsdata.status != STATUS_NO_FIX);
+ #endif
 -- 
-2.33.0
+2.33.1
 

diff --git a/sci-geosciences/foxtrotgps/foxtrotgps-1.2.2-r1.ebuild 
b/sci-geosciences/foxtrotgps/foxtrotgps-1.2.2-r1.ebuild
index cc36b1da8d8..9810966d440 100644
--- a/sci-geosciences/foxtrotgps/foxtrotgps-1.2.2-r1.ebuild
+++ b/sci-geosciences/foxtrotgps/foxtrotgps-1.2.2-r1.ebuild
@@ -30,5 +30,5 @@ BDEPEND="
 PATCHES=(
"${FILESDIR}/${P}-gpsd-api9.patch"
"${FILESDIR}/${P}-gcc10.patch"
-   "${FILESDIR}/${P}-fix-some-receivers.patch"
+   #"${FILESDIR}/${P}-fix-some-receivers.patch"
 )



[gentoo-commits] repo/gentoo:master commit in: dev-ml/csexp/

2021-10-16 Thread Sam James
commit: d32ac4ae067b1613c767bc723b62ca52d75f6445
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 03:21:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 03:21:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d32ac4ae

dev-ml/csexp: Stabilize 1.5.1 ppc64, #817692

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

 dev-ml/csexp/csexp-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/csexp/csexp-1.5.1.ebuild b/dev-ml/csexp/csexp-1.5.1.ebuild
index ccf9e398945..978ba4d7e15 100644
--- a/dev-ml/csexp/csexp-1.5.1.ebuild
+++ b/dev-ml/csexp/csexp-1.5.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/ocaml-dune/csexp/releases/download/${PV}/${P}.tbz;
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm arm64 ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ppc ppc64 x86"
 IUSE="+ocamlopt test"
 RESTRICT="!test? ( test )"
 



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

2021-10-16 Thread Sam James
commit: b60ed0dc25d6676309f3767fecc5eba4de2b07eb
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 03:21:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 03:21:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b60ed0dc

dev-lang/go: Stabilize 1.17.2 ppc64, #817902

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

 dev-lang/go/go-1.17.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/go/go-1.17.2.ebuild b/dev-lang/go/go-1.17.2.ebuild
index 13c2c95e867..4b20d98f17e 100644
--- a/dev-lang/go/go-1.17.2.ebuild
+++ b/dev-lang/go/go-1.17.2.ebuild
@@ -21,7 +21,7 @@ case ${PV}  in
case ${PV} in
*_beta*|*_rc*) ;;
*)
-   KEYWORDS="-* amd64 arm arm64 ~ppc64 ~riscv ~s390 x86 
~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
+   KEYWORDS="-* amd64 arm arm64 ppc64 ~riscv ~s390 x86 
~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
;;
esac
 esac



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

2021-10-16 Thread Sam James
commit: 02e1f8853326bfb1f9eb28b206e2b759a45c5a9c
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 03:21:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 03:21:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02e1f885

sys-apps/busybox: Stabilize 1.33.1-r2 ppc64, #813195

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

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

diff --git a/sys-apps/busybox/busybox-1.33.1-r2.ebuild 
b/sys-apps/busybox/busybox-1.33.1-r2.ebuild
index 54d52c7e6a7..e66cc1864b4 100644
--- a/sys-apps/busybox/busybox-1.33.1-r2.ebuild
+++ b/sys-apps/busybox/busybox-1.33.1-r2.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: media-libs/opencolorio/

2021-10-16 Thread Sam James
commit: 85129b66727984513503dfa6beba62b31a8ef674
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 03:03:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 03:03:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85129b66

media-libs/opencolorio: set OCIO_PYTHON_VERSION

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

 media-libs/opencolorio/opencolorio-2.0.2.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-libs/opencolorio/opencolorio-2.0.2.ebuild 
b/media-libs/opencolorio/opencolorio-2.0.2.ebuild
index 1367951a8fd..7bef3bb4a1b 100644
--- a/media-libs/opencolorio/opencolorio-2.0.2.ebuild
+++ b/media-libs/opencolorio/opencolorio-2.0.2.ebuild
@@ -77,6 +77,7 @@ src_configure() {
-DOCIO_BUILD_DOCS=$(usex doc)
-DOCIO_BUILD_APPS=$(usex opengl)
-DOCIO_BUILD_PYTHON=$(usex python)
+   -DOCIO_PYTHON_VERSION="${EPYTHON}"
-DOCIO_BUILD_JAVA=OFF
-DOCIO_USE_SSE=$(usex cpu_flags_x86_sse2)
-DOCIO_BUILD_TESTS=$(usex test)



[gentoo-commits] repo/proj/guru:dev commit in: games-emulation/mupen64plus-qt/

2021-10-16 Thread Samuel Bauer
commit: 8d9a5a7b5b2197d470b8e6c0c5ceb1a8b29f74d4
Author: Samuel Bauer  yahoo  fr>
AuthorDate: Sat Oct 16 23:00:43 2021 +
Commit: Samuel Bauer  yahoo  fr>
CommitDate: Sat Oct 16 23:00:43 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8d9a5a7b

games-emulation/mupen64plus-qt-: remove local fix, done upstream

Signed-off-by: Samuel Bauer  yahoo.fr>

 games-emulation/mupen64plus-qt/mupen64plus-qt-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/games-emulation/mupen64plus-qt/mupen64plus-qt-.ebuild 
b/games-emulation/mupen64plus-qt/mupen64plus-qt-.ebuild
index 93dd2d71b..778646412 100644
--- a/games-emulation/mupen64plus-qt/mupen64plus-qt-.ebuild
+++ b/games-emulation/mupen64plus-qt/mupen64plus-qt-.ebuild
@@ -25,7 +25,6 @@ DEPEND=">=games-emulation/mupen64plus-core-2.5
${RDEPEND}"
 
 src_prepare() {
-   sed -i -e '/MatchWildcard/{s/Wildcard/RegExp/; s/"\*"/".*"/}' 
src/dialogs/settingsdialog.cpp || die
sed -i -e '/include.*quazip5/s/quazip5/QuaZip-Qt5-1.1\/quazip/' \
src/emulation/emulatorhandler.cpp src/common.cpp || die
sed -i -e 's/lquazip5/lquazip1-qt5/' mupen64plus-qt.pro || die



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

2021-10-16 Thread Sam James
commit: cb92c3517ba8f6192669b7b3583c80810d48c455
Author: Bernd Waibel  posteo  net>
AuthorDate: Mon Oct 11 05:34:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 02:21:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb92c351

dev-libs/imath: bump to 3.1.3

New cmake option to build docs using doxygen / sphinx

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Bernd Waibel  posteo.net>
Signed-off-by: Sam James  gentoo.org>

 dev-libs/imath/Manifest   |  1 +
 dev-libs/imath/imath-3.1.3.ebuild | 76 +++
 2 files changed, 77 insertions(+)

diff --git a/dev-libs/imath/Manifest b/dev-libs/imath/Manifest
index 5190cfb234c..84c2392f3c3 100644
--- a/dev-libs/imath/Manifest
+++ b/dev-libs/imath/Manifest
@@ -1,2 +1,3 @@
 DIST imath-3.0.5.tar.gz 528503 BLAKE2B 
c1fcb199a81aff25f1ad26ccfcef2802861401f3fee5dc24035216aa16fd9a5344ec6c37139a0850f1a4bc580dc1fdd068eca9473a19e4aaf329cfc5f53a4cd6
 SHA512 
df206315d822266cf32a5a4399abff7ad1dd0bd1f0372d61f61516e2acdefd13e3cfd9cf54373a3fb49bb28c9f80915ca5ecaec2a068a1d6ea231d71a5316da2
 DIST imath-3.1.1.tar.gz 568231 BLAKE2B 
a1210b5f6ff4723a133d317c2b40338e387973a1409868a218192a53778b86a0912c77911bdf76286a6ed6931175aec38bf24ddc0c76eed3375b7a2945dba124
 SHA512 
b2f4cc21e44094ef139a1f04bb997c7e41770ff886457fff00d65ca477ba579c86fd5fbd465998c4519855fcb34328ac834d84d0d011f758f56a20ef79e9ca3d
+DIST imath-3.1.3.tar.gz 570840 BLAKE2B 
b037c9bdee87f58c7a2be9dbda52c89c26eba25fe07342710578f9eef4b90a49b9d5dc5451702c960ae94427d7f748b79b81b7fc9ad350d2252e9e4bf6a1d6cc
 SHA512 
a11f5e736bc49098d735c7903f186c15b03efbec082a8cf2e6635546368035cec0d36c7ae64bfd01bd8eeffb2dd247b8dab19e440a3e1fe33008edacc1268f75

diff --git a/dev-libs/imath/imath-3.1.3.ebuild 
b/dev-libs/imath/imath-3.1.3.ebuild
new file mode 100644
index 000..8ce94a93b3b
--- /dev/null
+++ b/dev-libs/imath/imath-3.1.3.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit cmake python-single-r1
+
+MY_PN="${PN^}"
+
+DESCRIPTION="Imath basic math package"
+HOMEPAGE="https://imath.readthedocs.io;
+SRC_URI="https://github.com/AcademySoftwareFoundation/${MY_PN}/archive/refs/tags/v${PV}.tar.gz
 -> ${P}.tar.gz"
+# re-keywording needed for (according to ilmbase keywords): ~x64-macos 
~x86-solaris
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="BSD"
+SLOT="3/29"
+IUSE="doc large-stack python static-libs test"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+RESTRICT="!test? ( test )"
+
+# blocker due to file collision #803347
+RDEPEND="
+   !dev-libs/imath:0
+   sys-libs/zlib
+   python? (
+   ${PYTHON_DEPS}
+   $(python_gen_cond_dep '
+   dev-libs/boost:=[python,${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   ')
+   )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+   doc? ( $(python_gen_cond_dep 'dev-python/breathe[${PYTHON_USEDEP}]') )
+   python? ( ${PYTHON_DEPS} )
+"
+
+PATCHES=( 
"${FILESDIR}"/${PN}-3.1.1-0001-changes-needed-for-proper-slotting.patch )
+DOCS=( CHANGES.md CONTRIBUTORS.md README.md SECURITY.md 
docs/PortingGuide2-3.md )
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+}
+
+src_configure() {
+   local majorver=$(ver_cut 1)
+
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=$(usex !static-libs)
+   -DDOCS=$(usex doc)
+   -DIMATH_ENABLE_LARGE_STACK=$(usex large-stack)
+   -DIMATH_HALF_USE_LOOKUP_TABLE=ON
+   -DIMATH_INSTALL_PKG_CONFIG=ON
+   -DIMATH_OUTPUT_SUBDIR="${MY_PN}-${majorver}"
+   -DIMATH_USE_CLANG_TIDY=OFF
+   -DIMATH_USE_NOEXCEPT=ON
+   )
+   if use python; then
+   mycmakeargs+=(
+   # temp. disable for finding libboost_python310, #803032
+#  -DBoost_NO_BOOST_CMAKE=OFF
+   -DPYTHON=ON
+   -DPython3_EXECUTABLE="${PYTHON}"
+   -DPython3_INCLUDE_DIR=$(python_get_includedir)
+   -DPython3_LIBRARY=$(python_get_library_path)
+   )
+   fi
+
+   cmake_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/openexr/, media-libs/openexr/files/

2021-10-16 Thread Sam James
commit: 9af6007e2580aaabd795a2ec271492baca24bf4f
Author: Bernd Waibel  posteo  net>
AuthorDate: Mon Oct 11 19:25:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 02:22:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9af6007e

media-libs/openexr: drop 3.0.5

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Bernd Waibel  posteo.net>
Signed-off-by: Sam James  gentoo.org>

 media-libs/openexr/Manifest|   1 -
 ...5-0001-changes-needed-for-proper-slotting.patch | 119 ---
 ...0002-add-version-to-binaries-for-slotting.patch | 229 -
 media-libs/openexr/openexr-3.0.5.ebuild|  78 ---
 4 files changed, 427 deletions(-)

diff --git a/media-libs/openexr/Manifest b/media-libs/openexr/Manifest
index ec127757ba7..242cfc52c43 100644
--- a/media-libs/openexr/Manifest
+++ b/media-libs/openexr/Manifest
@@ -1,5 +1,4 @@
 DIST openexr-2.5.6.tar.gz 27540385 BLAKE2B 
eea64c6ae4500de31673f3127da6ac98272e85a2c93e2aed96494cc24c397edbce508f0721387be5bbabc4dde596dccf61212709173b7cebd4212dbfbd1e4b65
 SHA512 
8d4582a5f2adcd5eb1486cabe033f9ecaa0292000bf7fa484a94e1d9ec908678a5a903fc6a1beba22bcd9c7f06ac51236834f448ea8aaf4462a338de886f0412
 DIST openexr-2.5.7.tar.gz 27539574 BLAKE2B 
58fd81be52e13d2815b6aa8cea6793359379f5ebf866fd45b31ce30cf5f72aa4699625e7cec51189d62fe76f53418c3e0938f9b827d54ad18342e7aa67c8a3d2
 SHA512 
e44edfa2dcfff2fe372ed2ba07b39a472e549025978de178eff26be641767d22d1a3b543fb7672d9b7b2e9f4c308667f785829ed6d9032a2b42f2ffa0163de40
-DIST openexr-3.0.5.tar.gz 25060148 BLAKE2B 
24b5601e27342eeff831219f75416797c30afb1ca28ae0a0692d97169297584da503d016c6dda80f63bd5bb9c9a31dc7f91d7713e6fc217a2760af2c662406f0
 SHA512 
7a0f83320ad5e1d8f8414b5175a64eef3c6b06a7ccd7d66d0aa21472ea22146e2617ff10c20e04203fc2a3326d8bac2d95023bec315badb03e6a006596b64595
 DIST openexr-3.1.1.tar.gz 25588029 BLAKE2B 
c2ce9622ad7b8a328ce556b6120a868cddb86e908917e001f543e70501b6d31ce549fc10d65806dd9d63e63872b273ad3a1d4f6813b5d23ea238c238f5815304
 SHA512 
430becbb214cedec5a57e9ff2363badd8a2d94e8a00edffbc75fbcf30d26d887a6eb3f4ff96e371cb26f9d44e63bf0fe2dc511493a0951171ddc64bba7aed735
 DIST openexr-3.1.2.tar.gz 20315253 BLAKE2B 
d11f26d3e2bb098c4c009271b40da1eca97b120e5683137a0b38f64e2862c226aebff7c17e79344da4a1be5a1967fb8ab0493ff919a7fb5bec16b34e494e49e2
 SHA512 
34fb28f149e49bb23b2dc230dd5277229f2c780de66aff0acc819601e6802a1dbf83110b5df455dffd63be6eaa286d4aedb4b0af559b8b034d98c3208ee9d969

diff --git 
a/media-libs/openexr/files/openexr-3.0.5-0001-changes-needed-for-proper-slotting.patch
 
b/media-libs/openexr/files/openexr-3.0.5-0001-changes-needed-for-proper-slotting.patch
deleted file mode 100644
index 30991f423b0..000
--- 
a/media-libs/openexr/files/openexr-3.0.5-0001-changes-needed-for-proper-slotting.patch
+++ /dev/null
@@ -1,119 +0,0 @@
-From: Bernd Waibel 
-Date: Fri, 2 Jul 2021 17:46:33 +0200
-Subject: [PATCH] changes needed for proper slotting
-
-Signed-off-by: Bernd Waibel 

- cmake/CMakeLists.txt | 8 
- cmake/LibraryDefine.cmake| 8 
- cmake/OpenEXR.pc.in  | 4 ++--
- cmake/OpenEXRLibraryDefine.cmake | 8 
- 4 files changed, 14 insertions(+), 14 deletions(-)
-
-diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
-index 2014d27..7dfb2f2 100644
 a/cmake/CMakeLists.txt
-+++ b/cmake/CMakeLists.txt
-@@ -200,7 +200,7 @@ if(OPENEXR_INSTALL_PKG_CONFIG)
- DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig
- )
-   endfunction()
--  openexr_pkg_config_help(OpenEXR.pc.in)
-+  openexr_pkg_config_help(OpenEXR-${OpenEXR_VERSION_MAJOR}.pc.in)
- else()
-   message(STATUS "-- pkg-config generation disabled")
- endif()
-@@ -220,7 +220,7 @@ include(CMakePackageConfigHelpers)
- if(OPENEXR_INSTALL)
- configure_package_config_file(${PROJECT_NAME}Config.cmake.in
-   ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake
--  INSTALL_DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}
-+  INSTALL_DESTINATION 
${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}-${OpenEXR_VERSION_MAJOR}
- )
- write_basic_package_version_file("${PROJECT_NAME}ConfigVersion.cmake"
-   VERSION ${PROJECT_VERSION}
-@@ -229,11 +229,11 @@ 
write_basic_package_version_file("${PROJECT_NAME}ConfigVersion.cmake"
- 
- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake
-   ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake
--  DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}
-+  DESTINATION 
${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}-${OpenEXR_VERSION_MAJOR}
- )
- 
- install(EXPORT ${PROJECT_NAME}
--  DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}
-+  DESTINATION 
${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}-${OpenEXR_VERSION_MAJOR}
-   FILE ${PROJECT_NAME}Targets.cmake
-   NAMESPACE ${PROJECT_NAME}::
-   EXPORT_LINK_INTERFACE_LIBRARIES
-diff --git a/cmake/LibraryDefine.cmake b/cmake/LibraryDefine.cmake
-index aa5bb46..2767420 

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

2021-10-16 Thread Sam James
commit: 92c6ab78a3ccf8f543cbc0e530c7414865750a2f
Author: Bernd Waibel  posteo  net>
AuthorDate: Mon Oct 11 19:27:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 02:22:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92c6ab78

dev-libs/imath: drop 3.0.5

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Bernd Waibel  posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/22559
Signed-off-by: Sam James  gentoo.org>

 dev-libs/imath/Manifest|   1 -
 ...5-0001-changes-needed-for-proper-slotting.patch | 161 -
 dev-libs/imath/imath-3.0.5-r1.ebuild   |  94 
 3 files changed, 256 deletions(-)

diff --git a/dev-libs/imath/Manifest b/dev-libs/imath/Manifest
index 84c2392f3c3..02adfd733ca 100644
--- a/dev-libs/imath/Manifest
+++ b/dev-libs/imath/Manifest
@@ -1,3 +1,2 @@
-DIST imath-3.0.5.tar.gz 528503 BLAKE2B 
c1fcb199a81aff25f1ad26ccfcef2802861401f3fee5dc24035216aa16fd9a5344ec6c37139a0850f1a4bc580dc1fdd068eca9473a19e4aaf329cfc5f53a4cd6
 SHA512 
df206315d822266cf32a5a4399abff7ad1dd0bd1f0372d61f61516e2acdefd13e3cfd9cf54373a3fb49bb28c9f80915ca5ecaec2a068a1d6ea231d71a5316da2
 DIST imath-3.1.1.tar.gz 568231 BLAKE2B 
a1210b5f6ff4723a133d317c2b40338e387973a1409868a218192a53778b86a0912c77911bdf76286a6ed6931175aec38bf24ddc0c76eed3375b7a2945dba124
 SHA512 
b2f4cc21e44094ef139a1f04bb997c7e41770ff886457fff00d65ca477ba579c86fd5fbd465998c4519855fcb34328ac834d84d0d011f758f56a20ef79e9ca3d
 DIST imath-3.1.3.tar.gz 570840 BLAKE2B 
b037c9bdee87f58c7a2be9dbda52c89c26eba25fe07342710578f9eef4b90a49b9d5dc5451702c960ae94427d7f748b79b81b7fc9ad350d2252e9e4bf6a1d6cc
 SHA512 
a11f5e736bc49098d735c7903f186c15b03efbec082a8cf2e6635546368035cec0d36c7ae64bfd01bd8eeffb2dd247b8dab19e440a3e1fe33008edacc1268f75

diff --git 
a/dev-libs/imath/files/imath-3.0.5-0001-changes-needed-for-proper-slotting.patch
 
b/dev-libs/imath/files/imath-3.0.5-0001-changes-needed-for-proper-slotting.patch
deleted file mode 100644
index 74d0f2dff7d..000
--- 
a/dev-libs/imath/files/imath-3.0.5-0001-changes-needed-for-proper-slotting.patch
+++ /dev/null
@@ -1,161 +0,0 @@
-From: Bernd Waibel 
-Date: Tue, 20 Jul 2021 19:18:20 +0200
-Subject: [PATCH] changes needed for proper slotting
-
-Signed-off-by: Bernd Waibel 

- config/CMakeLists.txt  | 6 +++---
- config/Imath.pc.in | 4 ++--
- config/LibraryDefine.cmake | 8 
- src/python/PyImath.pc.in   | 4 ++--
- src/python/PyImathNumpy/CMakeLists.txt | 2 +-
- src/python/config/CMakeLists.txt   | 4 ++--
- src/python/config/ModuleDefine.cmake   | 6 +++---
- 7 files changed, 17 insertions(+), 17 deletions(-)
-
-diff --git a/config/CMakeLists.txt b/config/CMakeLists.txt
-index d51c25b..63cc98d 100644
 a/config/CMakeLists.txt
-+++ b/config/CMakeLists.txt
-@@ -60,7 +60,7 @@ include(CMakePackageConfigHelpers)
- 
- configure_package_config_file(ImathConfig.cmake.in
-   ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake
--  INSTALL_DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}
-+  INSTALL_DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/${IMATH_OUTPUT_SUBDIR}
- )
- 
- write_basic_package_version_file("${PROJECT_NAME}ConfigVersion.cmake"
-@@ -70,11 +70,11 @@ 
write_basic_package_version_file("${PROJECT_NAME}ConfigVersion.cmake"
- 
- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake
-   ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake
--  DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}
-+  DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/${IMATH_OUTPUT_SUBDIR}
- )
- 
- install(EXPORT ${PROJECT_NAME}
--  DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}
-+  DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/${IMATH_OUTPUT_SUBDIR}
-   FILE ${PROJECT_NAME}Targets.cmake
-   NAMESPACE ${PROJECT_NAME}::
-   EXPORT_LINK_INTERFACE_LIBRARIES
-diff --git a/config/Imath.pc.in b/config/Imath.pc.in
-index df11cfd..6eb4f40 100644
 a/config/Imath.pc.in
-+++ b/config/Imath.pc.in
-@@ -5,7 +5,7 @@
- 
- prefix=@prefix@
- exec_prefix=@exec_prefix@
--libdir=@libdir@
-+libdir=@libdir@/@IMATH_OUTPUT_SUBDIR@
- includedir=@includedir@
- libsuffix=@LIB_SUFFIX_DASH@
- Name: Imath
-@@ -14,4 +14,4 @@ Version: @IMATH_VERSION@
- Requires:
- Conflicts:
- Libs: -L${libdir} -lImath${libsuffix}
--Cflags: -I${includedir} -I${includedir}/Imath
-+Cflags: -I${includedir} -I${includedir}/@IMATH_OUTPUT_SUBDIR@
-diff --git a/config/LibraryDefine.cmake b/config/LibraryDefine.cmake
-index e9ff904..00e5176 100644
 a/config/LibraryDefine.cmake
-+++ b/config/LibraryDefine.cmake
-@@ -74,8 +74,8 @@ function(IMATH_DEFINE_LIBRARY libname)
-   install(TARGETS ${libname}
- EXPORT ${PROJECT_NAME}
- RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
--LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
--ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
-+LIBRARY DESTINATION 

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

2021-10-16 Thread Sam James
commit: c3d9d27ae6bcab1323ec53edeea148e974a26f7a
Author: Bernd Waibel  posteo  net>
AuthorDate: Mon Oct 11 19:19:07 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 02:22:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3d9d27a

media-libs/openexr: bump to 3.1.2

Version contains security fixes.
Docs are now build with doxygen, pre-generated pdf docs are no longer shipped.

Bug: https://bugs.gentoo.org/817431
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Bernd Waibel  posteo.net>
Signed-off-by: Sam James  gentoo.org>

 media-libs/openexr/Manifest |  1 +
 media-libs/openexr/openexr-3.1.2.ebuild | 77 +
 2 files changed, 78 insertions(+)

diff --git a/media-libs/openexr/Manifest b/media-libs/openexr/Manifest
index 741a982337e..ec127757ba7 100644
--- a/media-libs/openexr/Manifest
+++ b/media-libs/openexr/Manifest
@@ -2,3 +2,4 @@ DIST openexr-2.5.6.tar.gz 27540385 BLAKE2B 
eea64c6ae4500de31673f3127da6ac98272e8
 DIST openexr-2.5.7.tar.gz 27539574 BLAKE2B 
58fd81be52e13d2815b6aa8cea6793359379f5ebf866fd45b31ce30cf5f72aa4699625e7cec51189d62fe76f53418c3e0938f9b827d54ad18342e7aa67c8a3d2
 SHA512 
e44edfa2dcfff2fe372ed2ba07b39a472e549025978de178eff26be641767d22d1a3b543fb7672d9b7b2e9f4c308667f785829ed6d9032a2b42f2ffa0163de40
 DIST openexr-3.0.5.tar.gz 25060148 BLAKE2B 
24b5601e27342eeff831219f75416797c30afb1ca28ae0a0692d97169297584da503d016c6dda80f63bd5bb9c9a31dc7f91d7713e6fc217a2760af2c662406f0
 SHA512 
7a0f83320ad5e1d8f8414b5175a64eef3c6b06a7ccd7d66d0aa21472ea22146e2617ff10c20e04203fc2a3326d8bac2d95023bec315badb03e6a006596b64595
 DIST openexr-3.1.1.tar.gz 25588029 BLAKE2B 
c2ce9622ad7b8a328ce556b6120a868cddb86e908917e001f543e70501b6d31ce549fc10d65806dd9d63e63872b273ad3a1d4f6813b5d23ea238c238f5815304
 SHA512 
430becbb214cedec5a57e9ff2363badd8a2d94e8a00edffbc75fbcf30d26d887a6eb3f4ff96e371cb26f9d44e63bf0fe2dc511493a0951171ddc64bba7aed735
+DIST openexr-3.1.2.tar.gz 20315253 BLAKE2B 
d11f26d3e2bb098c4c009271b40da1eca97b120e5683137a0b38f64e2862c226aebff7c17e79344da4a1be5a1967fb8ab0493ff919a7fb5bec16b34e494e49e2
 SHA512 
34fb28f149e49bb23b2dc230dd5277229f2c780de66aff0acc819601e6802a1dbf83110b5df455dffd63be6eaa286d4aedb4b0af559b8b034d98c3208ee9d969

diff --git a/media-libs/openexr/openexr-3.1.2.ebuild 
b/media-libs/openexr/openexr-3.1.2.ebuild
new file mode 100644
index 000..7b41f0eca9d
--- /dev/null
+++ b/media-libs/openexr/openexr-3.1.2.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+MY_PN=OpenEXR
+MY_PV=$(ver_cut 1)
+MY_P=${MY_PN}-${MY_PV}
+
+DESCRIPTION="ILM's OpenEXR high dynamic-range image file format libraries"
+HOMEPAGE="https://www.openexr.com/;
+SRC_URI="https://github.com/AcademySoftwareFoundation/openexr/archive/refs/tags/v${PV}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="3/30" # based on SONAME
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~x64-macos ~x86-solaris"
+IUSE="cpu_flags_x86_avx doc examples large-stack static-libs utils test 
threads"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-libs/imath-3.1.0:=
+   sys-libs/zlib
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   doc? ( dev-python/breathe )
+   virtual/pkgconfig
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-3.1.1-0001-changes-needed-for-proper-slotting.patch
+   
"${FILESDIR}"/${PN}-3.1.1-0002-add-version-to-binaries-for-slotting.patch
+   "${FILESDIR}"/${PN}-3.1.1-0003-disable-failing-test.patch
+)
+
+DOCS=( CHANGES.md GOVERNANCE.md PATENTS README.md SECURITY.md 
docs/SymbolVisibility.md )
+
+src_prepare() {
+   # Fix path for testsuite
+   sed -e "s:/var/tmp/:${T}:" \
+   -i "${S}"/src/test/${MY_PN}{,Fuzz,Util}Test/tmpDir.h || die 
"failed to set temp path for tests"
+
+   cmake_src_prepare
+
+   mv "${S}"/cmake/${MY_PN}.pc.in "${S}"/cmake/${MY_P}.pc.in || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=$(usex !static-libs)
+   -DBUILD_TESTING=$(usex test)
+   -DDOCS=$(usex doc)
+   -DOPENEXR_BUILD_TOOLS=$(usex utils)
+   -DOPENEXR_ENABLE_LARGE_STACK=$(usex large-stack)
+   -DOPENEXR_ENABLE_THREADING=$(usex threads)
+   -DOPENEXR_INSTALL_EXAMPLES=$(usex examples)
+   -DOPENEXR_INSTALL_PKG_CONFIG=ON
+   -DOPENEXR_INSTALL_TOOLS=$(usex utils)
+   -DOPENEXR_OUTPUT_SUBDIR="${MY_P}"
+   -DOPENEXR_USE_CLANG_TIDY=OFF# don't look for 
clang-tidy
+   )
+
+   use test && mycmakeargs+=( -DOPENEXR_RUN_FUZZ_TESTS=ON )
+
+   cmake_src_configure
+}
+
+src_install() {
+   use examples && docompress -x /usr/share/doc/${PF}/examples
+   cmake_src_install
+
+   newenvd - 99${PN}3 <<-EOF
+   LDPATH=/usr/$(get_libdir)/${MY_P}
+   EOF

[gentoo-commits] repo/gentoo:master commit in: app-antivirus/clamav/

2021-10-16 Thread Sam James
commit: 5c69250ed4df9fbd1f093813d117b7bf415019c7
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 02:14:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 02:14:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c69250e

app-antivirus/clamav: json-c is always required

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

 .../clamav/{clamav-0.104.0.ebuild => clamav-0.104.0-r1.ebuild} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-antivirus/clamav/clamav-0.104.0.ebuild 
b/app-antivirus/clamav/clamav-0.104.0-r1.ebuild
similarity index 98%
rename from app-antivirus/clamav/clamav-0.104.0.ebuild
rename to app-antivirus/clamav/clamav-0.104.0-r1.ebuild
index 4a04200334b..280f6e75cc7 100644
--- a/app-antivirus/clamav/clamav-0.104.0.ebuild
+++ b/app-antivirus/clamav/clamav-0.104.0-r1.ebuild
@@ -28,10 +28,11 @@ CDEPEND="acct-group/clamav
acct-user/clamav
dev-libs/libltdl
dev-libs/libmspack
+   dev-libs/json-c:=
dev-libs/libpcre2
>=sys-libs/zlib-1.2.2:=
app-arch/bzip2
-   clamapp? ( sys-libs/ncurses:0 net-misc/curl dev-libs/json-c:= )
+   clamapp? ( sys-libs/ncurses:0 net-misc/curl )
elibc_musl? ( sys-libs/fts-standalone )
virtual/libiconv
!libclamav-only? ( net-misc/curl )



[gentoo-commits] repo/gentoo:master commit in: app-antivirus/clamav/

2021-10-16 Thread Sam James
commit: 23881b502a91c543e9fdb50668bbd519851e
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 02:14:42 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 02:14:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23881b50

app-antivirus/clamav: use subslot operator on ncurses

We want to rebuilt when it changes ABI.

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

 app-antivirus/clamav/clamav-0.104.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-antivirus/clamav/clamav-0.104.0-r1.ebuild 
b/app-antivirus/clamav/clamav-0.104.0-r1.ebuild
index 280f6e75cc7..04e7fc44c16 100644
--- a/app-antivirus/clamav/clamav-0.104.0-r1.ebuild
+++ b/app-antivirus/clamav/clamav-0.104.0-r1.ebuild
@@ -32,11 +32,11 @@ CDEPEND="acct-group/clamav
dev-libs/libpcre2
>=sys-libs/zlib-1.2.2:=
app-arch/bzip2
-   clamapp? ( sys-libs/ncurses:0 net-misc/curl )
+   clamapp? ( sys-libs/ncurses:= net-misc/curl )
elibc_musl? ( sys-libs/fts-standalone )
virtual/libiconv
!libclamav-only? ( net-misc/curl )
-   dev-libs/openssl:0=
+   dev-libs/openssl:=
milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) )
dev-libs/libxml2
rar? ( app-arch/unrar )



[gentoo-commits] repo/gentoo:master commit in: app-antivirus/clamav/

2021-10-16 Thread Sam James
commit: 573cd262c53ceb0f00ba8c04d3dfd0c5d981eb83
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 02:12:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 02:12:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=573cd262

app-antivirus/clamav: reindent metadata.xml

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

 app-antivirus/clamav/metadata.xml | 48 +++
 1 file changed, 23 insertions(+), 25 deletions(-)

diff --git a/app-antivirus/clamav/metadata.xml 
b/app-antivirus/clamav/metadata.xml
index b7ec36aac1c..955b022bfd3 100644
--- a/app-antivirus/clamav/metadata.xml
+++ b/app-antivirus/clamav/metadata.xml
@@ -1,29 +1,27 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-antivi...@gentoo.org
-Gentoo Antivirus Project
-  
-
-  
-
-m...@gentoo.org
-  
-
-  
-
-   Build applications (clamscan, clamd, clamdscan, clamonacc (also has its 
own USE flag), sigtool, clambc, clamav-milter (also requires milter USE flag), 
clamdtop, clamsubmit, clamconf).
-
-Build the clamonacc on-access scanner
-A Top like tool which shows what clamd is currently 
scanning amongst other things
-A tool to submit false positives / negatives
-Bypass building of libfreshclam and the ClamAV 
CLI applications.
-Enables collection of file property 
metadata using ClamAV API for analysis by ClamAV bytecode programs.
-DMG and XAR support
-RAR support
-  
-  
-clamav
-  
+   
+   antivi...@gentoo.org
+   Gentoo Antivirus Project
+   
+   
+   
+   m...@gentoo.org
+   
+   
+   
+   Build applications (clamscan, clamd, clamdscan, 
clamonacc (also has its own USE flag), sigtool, clambc, clamav-milter (also 
requires milter USE flag), clamdtop, clamsubmit, clamconf).
+   
+   Build the clamonacc on-access 
scanner
+   A Top like tool which shows what clamd is 
currently scanning amongst other things
+   A tool to submit false positives / 
negatives
+   Bypass building of libfreshclam and 
the ClamAV CLI applications.
+   Enables collection of file 
property metadata using ClamAV API for analysis by ClamAV bytecode 
programs.
+   DMG and XAR support
+   RAR support
+   
+   
+   clamav
+   
 



[gentoo-commits] repo/gentoo:master commit in: app-antivirus/clamav/

2021-10-16 Thread Sam James
commit: 51e1085b4e7aabda7dfe098e4b7bb25108c81033
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 02:10:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 02:11:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51e1085b

app-antivirus/clamav: fix installation based on USE=clamapp

Some files only exist with USE=clamapp. We also
enable clamapp by default as it aligns with
expectations.

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

 app-antivirus/clamav/clamav-0.104.0.ebuild | 88 +++---
 app-antivirus/clamav/metadata.xml  |  4 +-
 2 files changed, 48 insertions(+), 44 deletions(-)

diff --git a/app-antivirus/clamav/clamav-0.104.0.ebuild 
b/app-antivirus/clamav/clamav-0.104.0.ebuild
index 96c6d859164..61677d2089f 100644
--- a/app-antivirus/clamav/clamav-0.104.0.ebuild
+++ b/app-antivirus/clamav/clamav-0.104.0.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://www.clamav.net/downloads/production/${P}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
-IUSE="doc clamonacc clamapp libclamav-only milter rar selinux systemd test 
uclibc"
+IUSE="doc clamonacc +clamapp libclamav-only milter rar selinux systemd test 
uclibc"
 
 REQUIRED_USE="libclamav-only? ( !clamonacc !clamapp !milter )
  clamonacc? ( clamapp )
@@ -113,54 +113,56 @@ src_install() {
"freshclamd.service"
fi
 
-   # Modify /etc/{clamd,freshclam}.conf to be usable out of the box
-   sed -e "s:^\(Example\):\# \1:" \
-   -e "s/^#\(PidFile .*\)/\1/" \
-   -e "s/^#\(LocalSocket .*\)/\1/" \
-   -e "s/^#\(User .*\)/\1/" \
-   -e "s:^\#\(LogFile\) .*:\1 
${EPREFIX}/var/log/clamav/clamd.log:" \
-   -e "s:^\#\(LogTime\).*:\1 yes:" \
-   -e "s/^#\(DatabaseDirectory .*\)/\1/" \
-   "${ED}"/etc/clamav/clamd.conf.sample > \
-   "${ED}"/etc/clamav/clamd.conf || die
-
-   sed -e "s:^\(Example\):\# \1:" \
-   -e "s/^#\(PidFile .*\)/\1/" \
-   -e "s/^#\(DatabaseOwner .*\)/\1/" \
-   -e "s:^\#\(UpdateLogFile\) .*:\1 
${EPREFIX}/var/log/clamav/freshclam.log:" \
-   -e "s:^\#\(NotifyClamd\).*:\1 
${EPREFIX}/etc/clamd.conf:" \
-   -e "s:^\#\(ScriptedUpdates\).*:\1 yes:" \
-   -e "s/^#\(DatabaseDirectory .*\)/\1/" \
-   "${ED}"/etc/clamav/freshclam.conf.sample > \
-   "${ED}"/etc/clamav/freshclam.conf || die
-
-   if use milter ; then
-   # Note: only keep the "unix" ClamdSocket and 
MilterSocket!
+   if use clamapp; then
+   # Modify /etc/{clamd,freshclam}.conf to be usable out 
of the box
sed -e "s:^\(Example\):\# \1:" \
-e "s/^#\(PidFile .*\)/\1/" \
-   -e "s/^#\(ClamdSocket unix:.*\)/\1/" \
+   -e "s/^#\(LocalSocket .*\)/\1/" \
-e "s/^#\(User .*\)/\1/" \
-   -e "s/^#\(MilterSocket unix:.*\)/\1/" \
-   -e "s:^\#\(LogFile\) .*:\1 
${EPREFIX}/var/log/clamav/clamav-milter.log:" \
-   "${ED}"/etc/clamav/clamav-milter.conf.sample > \
-   "${ED}"/etc/clamav/clamav-milter.conf || die
+   -e "s:^\#\(LogFile\) .*:\1 
${EPREFIX}/var/log/clamav/clamd.log:" \
+   -e "s:^\#\(LogTime\).*:\1 yes:" \
+   -e "s/^#\(DatabaseDirectory .*\)/\1/" \
+   "${ED}"/etc/clamav/clamd.conf.sample > \
+   "${ED}"/etc/clamav/clamd.conf || die
 
-   systemd_newunit 
"${FILESDIR}/clamav-milter.service-0.104.0" clamav-milter.service
-   fi
-
-   local i
-   for i in clamd freshclam clamav-milter
-   do
-   if [[ -f "${ED}"/etc/"${i}".conf.sample ]]; then
-   mv "${ED}"/etc/"${i}".conf{.sample,} || die
+   sed -e "s:^\(Example\):\# \1:" \
+   -e "s/^#\(PidFile .*\)/\1/" \
+   -e "s/^#\(DatabaseOwner .*\)/\1/" \
+   -e "s:^\#\(UpdateLogFile\) .*:\1 
${EPREFIX}/var/log/clamav/freshclam.log:" \
+   -e "s:^\#\(NotifyClamd\).*:\1 
${EPREFIX}/etc/clamd.conf:" \
+   -e "s:^\#\(ScriptedUpdates\).*:\1 

[gentoo-commits] repo/gentoo:master commit in: app-antivirus/clamav/

2021-10-16 Thread Sam James
commit: eaeda4e1fa944d25410fa231399d48d570b4d373
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 02:11:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 02:11:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eaeda4e1

app-antivirus/clamav: drop unnecessary deps

- CMake lower bound is set by cmake.class
- No need to depend again on json-c in just DEPEND

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

 app-antivirus/clamav/clamav-0.104.0.ebuild | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/app-antivirus/clamav/clamav-0.104.0.ebuild 
b/app-antivirus/clamav/clamav-0.104.0.ebuild
index 61677d2089f..4a04200334b 100644
--- a/app-antivirus/clamav/clamav-0.104.0.ebuild
+++ b/app-antivirus/clamav/clamav-0.104.0.ebuild
@@ -42,12 +42,8 @@ CDEPEND="acct-group/clamav
test? ( dev-python/pytest )"
 # TODO: there is no way to use this with the new build system instead of the 
bundled one
 #  dev-libs/tomsfastmath
-
-BDEPEND=">=dev-util/cmake-3.14
-   virtual/pkgconfig"
-
+BDEPEND="virtual/pkgconfig"
 DEPEND="${CDEPEND}
-   clamapp? ( dev-libs/json-c:* )
test? ( dev-libs/check )"
 RDEPEND="${CDEPEND}
selinux? ( sec-policy/selinux-clamav )"



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

2021-10-16 Thread Ionen Wolkens
commit: bce8a31616a83baafcef776bf3d8fc4cf15028db
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sun Oct 17 01:20:15 2021 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sun Oct 17 02:04:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bce8a316

net-misc/yt-dlp: EAPI8 and small adjustments

* remove unused readme.gentoo-r1
* public-domain -> Unlicense
* nose -> pytest, lets the eclass handle that dependency
* use upstream markers to skip download tests rather than names
 (no major change, but lets 3 additional tests run)
* remove mkdir workaround, was fixed upstream in 2021.09.01
* install Changelog.md and supportedsites.md, and remove duplicate
  README.txt in favor of README.md (same contents)
* replace some unnecessary new* commands by do*

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

 net-misc/yt-dlp/yt-dlp-2021.10.10.ebuild | 41 +---
 1 file changed, 17 insertions(+), 24 deletions(-)

diff --git a/net-misc/yt-dlp/yt-dlp-2021.10.10.ebuild 
b/net-misc/yt-dlp/yt-dlp-2021.10.10.ebuild
index e8f9a33a5fe..ed4cc85dbe9 100644
--- a/net-misc/yt-dlp/yt-dlp-2021.10.10.ebuild
+++ b/net-misc/yt-dlp/yt-dlp-2021.10.10.ebuild
@@ -1,50 +1,43 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 PYTHON_COMPAT=( python3_{8..10} )
-inherit bash-completion-r1 distutils-r1 readme.gentoo-r1
+inherit bash-completion-r1 distutils-r1
 
-DESCRIPTION="A youtube-dl fork with additional features and fixes"
+DESCRIPTION="youtube-dl fork with additional features and fixes"
 HOMEPAGE="https://github.com/yt-dlp/yt-dlp;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64 ~riscv ~x86"
-LICENSE="public-domain"
-SLOT="0"
+SRC_URI="mirror://pypi/${P::1}/${PN}/${P}.tar.gz"
 
-DEPEND="
-   test? ( dev-python/pytest )
-"
+LICENSE="Unlicense"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv ~x86"
 
 RDEPEND="
+   dev-python/keyring[${PYTHON_USEDEP}]
dev-python/pycryptodome[${PYTHON_USEDEP}]
-   media-libs/mutagen[${PYTHON_USEDEP}]
dev-python/websockets[${PYTHON_USEDEP}]
-   dev-python/keyring[${PYTHON_USEDEP}]
-   media-video/ffmpeg
-"
+   media-libs/mutagen[${PYTHON_USEDEP}]
+   media-video/ffmpeg"
 
-distutils_enable_tests nose
+distutils_enable_tests pytest
 
 python_test() {
-   # make_lazy_extractors.py tries to rename it out, so fails if it does 
not exists.
-   mkdir ytdlp_plugins
-   epytest -k 'not download'
+   epytest -m 'not download'
 }
 
 python_install_all() {
+   dodoc README.md Changelog.md supportedsites.md
doman yt-dlp.1
 
-   newbashcomp completions/bash/yt-dlp yt-dlp
-
-   insinto /usr/share/zsh/site-functions
-   newins completions/zsh/_yt-dlp _yt-dlp
+   dobashcomp completions/bash/yt-dlp
 
insinto /usr/share/fish/vendor_completions.d
doins completions/fish/yt-dlp.fish
 
-   distutils-r1_python_install_all
+   insinto /usr/share/zsh/site-functions
+   doins completions/zsh/_yt-dlp
 
-   rm -rf "${ED}"/usr/share/doc/yt_dlp || die
+   rm -r "${ED}"/usr/share/doc/yt_dlp || die
 }



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

2021-10-16 Thread Sam James
commit: 5c5c9371fd3b9766e4d28aca96dbdbfe4256625e
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 02:03:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 02:03:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c5c9371

dev-util/ctags: rename tarball to be less generic

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

 dev-util/ctags/Manifest   | 4 ++--
 dev-util/ctags/ctags-20210321.0-r1.ebuild | 2 +-
 dev-util/ctags/ctags-20211017.0.ebuild| 2 +-
 dev-util/ctags/ctags-.ebuild  | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-util/ctags/Manifest b/dev-util/ctags/Manifest
index 039733f63de..c971dd44d5c 100644
--- a/dev-util/ctags/Manifest
+++ b/dev-util/ctags/Manifest
@@ -1,3 +1,3 @@
 DIST ctags-20190331.tar.gz 1537104 BLAKE2B 
354ddf48cdc9421e70d9d37ec7251e51f7f78564dc4f6236d12e2e18519369c39c22585830fd301b7eff4898d550b824776541198b8c4a31425711776b14fde4
 SHA512 
414faef7628ecaa66fcd5f172781a32194e1d58637dded1f7e55c138239ad96bb1510bd447af3ad8243b7178e6f4859139305b0c0efe298182408f34524c
-DIST p5.9.20210321.0.tar.gz 2096441 BLAKE2B 
44fcbde5953ac192f8ccb43cbb598b63a99d421feda8fe019bd2ac915fe235a769250bbb2f0f00eb353ce883a7f3556af4dbfc9871fe7fd5fa8edce5f8441af8
 SHA512 
62d9744bac089106cfa2a477f113ca7924831f768ee0de01577cd11d14f1cd926a246d08a53e7537d1d39c9e8aa06a58b7a10f79d8532326bf0e4af74d70c4ae
-DIST p5.9.20211017.0.tar.gz 2542128 BLAKE2B 
cade7149cb2fd0645f9b7ecd37c8b9acdeae7037fde2bb74aa94d67f04963327429b83dcf5cd658f082bd8ce4c407f69f4924da5f768bec029b4075997bbd882
 SHA512 
85bfb4d40c1d9045b4ba4dc280ee7108ee2fd4572c92794d5bdc854f3511dad1ecf282428e61161773f7bfaca725d774593a0e83fc767a1bb2e12b229a19bec0
+DIST ctags-20210321.0.tar.gz 2096441 BLAKE2B 
44fcbde5953ac192f8ccb43cbb598b63a99d421feda8fe019bd2ac915fe235a769250bbb2f0f00eb353ce883a7f3556af4dbfc9871fe7fd5fa8edce5f8441af8
 SHA512 
62d9744bac089106cfa2a477f113ca7924831f768ee0de01577cd11d14f1cd926a246d08a53e7537d1d39c9e8aa06a58b7a10f79d8532326bf0e4af74d70c4ae
+DIST ctags-20211017.0.tar.gz 2542128 BLAKE2B 
cade7149cb2fd0645f9b7ecd37c8b9acdeae7037fde2bb74aa94d67f04963327429b83dcf5cd658f082bd8ce4c407f69f4924da5f768bec029b4075997bbd882
 SHA512 
85bfb4d40c1d9045b4ba4dc280ee7108ee2fd4572c92794d5bdc854f3511dad1ecf282428e61161773f7bfaca725d774593a0e83fc767a1bb2e12b229a19bec0

diff --git a/dev-util/ctags/ctags-20210321.0-r1.ebuild 
b/dev-util/ctags/ctags-20210321.0-r1.ebuild
index 471c4110d1b..c63787072af 100644
--- a/dev-util/ctags/ctags-20210321.0-r1.ebuild
+++ b/dev-util/ctags/ctags-20210321.0-r1.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == ** ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/universal-ctags/ctags;
 else
-   
SRC_URI="https://github.com/universal-ctags/ctags/archive/refs/tags/p5.9.${PV}.tar.gz;
+   
SRC_URI="https://github.com/universal-ctags/ctags/archive/refs/tags/p5.9.${PV}.tar.gz
 -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-p5.9.${PV}"
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"
 fi

diff --git a/dev-util/ctags/ctags-20211017.0.ebuild 
b/dev-util/ctags/ctags-20211017.0.ebuild
index 0f5347ea642..3b394878707 100644
--- a/dev-util/ctags/ctags-20211017.0.ebuild
+++ b/dev-util/ctags/ctags-20211017.0.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == ** ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/universal-ctags/ctags;
 else
-   
SRC_URI="https://github.com/universal-ctags/ctags/archive/refs/tags/p5.9.${PV}.tar.gz;
+   
SRC_URI="https://github.com/universal-ctags/ctags/archive/refs/tags/p5.9.${PV}.tar.gz
 -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-p5.9.${PV}"
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"
 fi

diff --git a/dev-util/ctags/ctags-.ebuild 
b/dev-util/ctags/ctags-.ebuild
index 0f5347ea642..3b394878707 100644
--- a/dev-util/ctags/ctags-.ebuild
+++ b/dev-util/ctags/ctags-.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == ** ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/universal-ctags/ctags;
 else
-   
SRC_URI="https://github.com/universal-ctags/ctags/archive/refs/tags/p5.9.${PV}.tar.gz;
+   
SRC_URI="https://github.com/universal-ctags/ctags/archive/refs/tags/p5.9.${PV}.tar.gz
 -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-p5.9.${PV}"
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"
 fi



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

2021-10-16 Thread Sam James
commit: e4cdbe08d8edf110d96fa11bd7a04e59273ee491
Author: James Beddek  posteo  de>
AuthorDate: Sun Oct 17 01:56:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 02:02:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4cdbe08

dev-util/ctags: add 20211017.0

Signed-off-by: James Beddek  posteo.de>
Closes: https://github.com/gentoo/gentoo/pull/22609
Signed-off-by: Sam James  gentoo.org>

 dev-util/ctags/Manifest   | 1 +
 dev-util/ctags/{ctags-.ebuild => ctags-20211017.0.ebuild} | 7 +--
 dev-util/ctags/ctags-.ebuild  | 7 +--
 3 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/dev-util/ctags/Manifest b/dev-util/ctags/Manifest
index 068dac20500..039733f63de 100644
--- a/dev-util/ctags/Manifest
+++ b/dev-util/ctags/Manifest
@@ -1,2 +1,3 @@
 DIST ctags-20190331.tar.gz 1537104 BLAKE2B 
354ddf48cdc9421e70d9d37ec7251e51f7f78564dc4f6236d12e2e18519369c39c22585830fd301b7eff4898d550b824776541198b8c4a31425711776b14fde4
 SHA512 
414faef7628ecaa66fcd5f172781a32194e1d58637dded1f7e55c138239ad96bb1510bd447af3ad8243b7178e6f4859139305b0c0efe298182408f34524c
 DIST p5.9.20210321.0.tar.gz 2096441 BLAKE2B 
44fcbde5953ac192f8ccb43cbb598b63a99d421feda8fe019bd2ac915fe235a769250bbb2f0f00eb353ce883a7f3556af4dbfc9871fe7fd5fa8edce5f8441af8
 SHA512 
62d9744bac089106cfa2a477f113ca7924831f768ee0de01577cd11d14f1cd926a246d08a53e7537d1d39c9e8aa06a58b7a10f79d8532326bf0e4af74d70c4ae
+DIST p5.9.20211017.0.tar.gz 2542128 BLAKE2B 
cade7149cb2fd0645f9b7ecd37c8b9acdeae7037fde2bb74aa94d67f04963327429b83dcf5cd658f082bd8ce4c407f69f4924da5f768bec029b4075997bbd882
 SHA512 
85bfb4d40c1d9045b4ba4dc280ee7108ee2fd4572c92794d5bdc854f3511dad1ecf282428e61161773f7bfaca725d774593a0e83fc767a1bb2e12b229a19bec0

diff --git a/dev-util/ctags/ctags-.ebuild 
b/dev-util/ctags/ctags-20211017.0.ebuild
similarity index 85%
copy from dev-util/ctags/ctags-.ebuild
copy to dev-util/ctags/ctags-20211017.0.ebuild
index 1d3b06d128c..0f5347ea642 100644
--- a/dev-util/ctags/ctags-.ebuild
+++ b/dev-util/ctags/ctags-20211017.0.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit autotools
 
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]] ; then
 else

SRC_URI="https://github.com/universal-ctags/ctags/archive/refs/tags/p5.9.${PV}.tar.gz;
S="${WORKDIR}/${PN}-p5.9.${PV}"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2+"
@@ -35,6 +35,9 @@ BDEPEND="
 "
 
 src_prepare() {
+   # Ignore check-genfile test (calls git which errors out)
+   sed -i 's/man-test check-genfile/man-test/' makefiles/testing.mak || die
+
default
 
#./misc/dist-test-cases > makefiles/test-cases.mak || die

diff --git a/dev-util/ctags/ctags-.ebuild 
b/dev-util/ctags/ctags-.ebuild
index 1d3b06d128c..0f5347ea642 100644
--- a/dev-util/ctags/ctags-.ebuild
+++ b/dev-util/ctags/ctags-.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit autotools
 
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]] ; then
 else

SRC_URI="https://github.com/universal-ctags/ctags/archive/refs/tags/p5.9.${PV}.tar.gz;
S="${WORKDIR}/${PN}-p5.9.${PV}"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2+"
@@ -35,6 +35,9 @@ BDEPEND="
 "
 
 src_prepare() {
+   # Ignore check-genfile test (calls git which errors out)
+   sed -i 's/man-test check-genfile/man-test/' makefiles/testing.mak || die
+
default
 
#./misc/dist-test-cases > makefiles/test-cases.mak || die



[gentoo-commits] repo/gentoo:master commit in: sci-libs/gdal/, profiles/arch/powerpc/ppc32/, profiles/arch/ia64/

2021-10-16 Thread Sam James
commit: e5c3015103d03d843ae488d7fdaea4a4a5757374
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 01:16:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 01:18:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5c30151

sci-libs/gdal: fix automagic libheif

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

 profiles/arch/ia64/package.use.mask   | 4 
 profiles/arch/powerpc/ppc32/package.use.mask  | 4 
 sci-libs/gdal/{gdal-3.3.2.ebuild => gdal-3.3.2-r1.ebuild} | 4 +++-
 sci-libs/gdal/metadata.xml| 1 +
 4 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/profiles/arch/ia64/package.use.mask 
b/profiles/arch/ia64/package.use.mask
index 1905e7a6b62..639176a9f26 100644
--- a/profiles/arch/ia64/package.use.mask
+++ b/profiles/arch/ia64/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Sam James  (2021-10-17)
+# media-libs/libheif not keyworded here
+sci-libs/gdal heif
+
 # Sam James  (2021-09-14)
 # JACK2 isn't keyworded here
 # bug #807616

diff --git a/profiles/arch/powerpc/ppc32/package.use.mask 
b/profiles/arch/powerpc/ppc32/package.use.mask
index 0abe138ca7a..637b5a7129a 100644
--- a/profiles/arch/powerpc/ppc32/package.use.mask
+++ b/profiles/arch/powerpc/ppc32/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Sam James  (2021-10-17)
+# media-libs/libheif not keyworded here
+sci-libs/gdal heif
+
 # Marek Szuba  (2021-08-11)
 # dev-ruby/tty-editor not keyworded here yet (Bug #807685)
 app-text/htmltidy test

diff --git a/sci-libs/gdal/gdal-3.3.2.ebuild 
b/sci-libs/gdal/gdal-3.3.2-r1.ebuild
similarity index 96%
rename from sci-libs/gdal/gdal-3.3.2.ebuild
rename to sci-libs/gdal/gdal-3.3.2-r1.ebuild
index 216917c266d..79fe99d64ed 100644
--- a/sci-libs/gdal/gdal-3.3.2.ebuild
+++ b/sci-libs/gdal/gdal-3.3.2-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://download.osgeo.org/${PN}/${PV}/${P}.tar.gz;
 SLOT="0/3.3"
 LICENSE="BSD Info-ZIP MIT"
 KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
-IUSE="armadillo +aux-xml curl cpu_flags_x86_avx cpu_flags_x86_sse 
cpu_flags_x86_ssse3 debug doc fits geos gif gml hdf5 java jpeg jpeg2k lzma mdb 
mysql netcdf odbc ogdi opencl oracle pdf perl png postgres python spatialite 
sqlite threads webp xls zstd"
+IUSE="armadillo +aux-xml curl cpu_flags_x86_avx cpu_flags_x86_sse 
cpu_flags_x86_ssse3 debug doc fits geos gif gml hdf5 heif java jpeg jpeg2k lzma 
mdb mysql netcdf odbc ogdi opencl oracle pdf perl png postgres python 
spatialite sqlite threads webp xls zstd"
 
 REQUIRED_USE="
mdb? ( java )
@@ -53,6 +53,7 @@ DEPEND="
geos? ( >=sci-libs/geos-3.8.0 )
gif? ( media-libs/giflib:= )
gml? ( >=dev-libs/xerces-c-3.1 )
+   heif? ( media-libs/libheif:= )
hdf5? ( >=sci-libs/hdf5-1.6.4:=[szip] )
jpeg? ( virtual/jpeg:0= )
jpeg2k? ( media-libs/openjpeg:2= )
@@ -190,6 +191,7 @@ src_configure() {
$(use_with geos)
$(use_with gif)
$(use_with gml xerces)
+   $(use_with heif)
$(use_with hdf5)
$(use_with jpeg pcidsk) # pcidsk is internal, because there is 
no such library released developer by gdal
$(use_with jpeg)

diff --git a/sci-libs/gdal/metadata.xml b/sci-libs/gdal/metadata.xml
index f505485ec71..ba24c3b77d3 100644
--- a/sci-libs/gdal/metadata.xml
+++ b/sci-libs/gdal/metadata.xml
@@ -19,6 +19,7 @@
Enable support for NASA's 
sci-libs/cfitsio library
Add support for geometry engine 
(sci-libs/geos)
Enable support for 
dev-libs/xerces-c C++ API
+   Enable support for ISO/IEC 23008-12:2017 
HEIF/HEIC image format using media-libs/libheif
Enable support for Microsoft Access 
database
Enable support for the open geographic 
datastore interface (sci-libs/ogdi)
Enable OpenCL support



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

2021-10-16 Thread Sam James
commit: 974a887b1c22104da459eefeef15d73799df65af
Author: Norayr Chilingarian  arnet  am>
AuthorDate: Sun Oct 17 01:03:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 01:03:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=974a887b

dev-lang/fpc: add (~)arm64 support to 3.2.2

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

 dev-lang/fpc/Manifest |  1 +
 dev-lang/fpc/fpc-3.2.2.ebuild | 13 +++--
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/dev-lang/fpc/Manifest b/dev-lang/fpc/Manifest
index 3a24f3672fa..b1bfc408d58 100644
--- a/dev-lang/fpc/Manifest
+++ b/dev-lang/fpc/Manifest
@@ -3,6 +3,7 @@ DIST fpc-3.0.4.i386-linux.tar 54691840 BLAKE2B 
c0951c85a3916c29e8e7391408da09abd
 DIST fpc-3.0.4.source.tar.gz 40347617 BLAKE2B 
0764c92cc379d6e70a3f33368d96244ea0203b3395a5dbcadebe6ef51b508cbc7c112f9bc7bce69ae6dae1fde03bc9e45a1a8ad70ca154cc4dd51bc93cab82f9
 SHA512 
fc64fd94c39f220bd7531126d6281fa2141aed61c218595a7906a025660b46629a305ff7eb023f5e1359eafdec2dba69aa5405f1bbc3c1182414968689cbb52e
 DIST fpc-3.0.4.x86_64-linux.tar 56842240 BLAKE2B 
fda488466f409d4f50501ad17edcce2740f0a7e60ac86bbfec235ccc27c619d62d2aab01aa7878ba3e174c35fd46aab98e43eda4528e98fdf3e098330eea9b26
 SHA512 
085110d0fade11c4e6e79c002522080eb070cebb8ebbed48ca35e3a2dc025df678516e36c7cba5f951e20c0da57dd261d673dda6839ecdf5d88aa8dfe15a56e5
 DIST fpc-3.2.2-doc-html.tar.gz 5810672 BLAKE2B 
5d2c0ce35024f58d35e59034d4c071ec58214874f31ef44b8f4ea8cb68636080b61dea9a5d0ccc8062814c0b2fe3bc5269e6584ae30fedb29dbb0709ce1b3103
 SHA512 
0bdefd25b9f46bb6684bb4dd8f60de796cbbf81049a7e8bac4cc4bc87dd6100a42ea05601cf1bb0254e8b73ddaf5d1bf186dbf1909f1ed7db7bdf97f50df7cdc
+DIST fpc-3.2.2.aarch64-linux.tar 137943040 BLAKE2B 
1f2b3ff35d33419bd60a65bee8e20264a7970e515e0d8239dc51bd415b9a4fc580b7d3bd7fcd2a6964f78669e9dda13d1349281116004d582236a4f314dc6935
 SHA512 
8a52c53cd167af3996db7c91aadf0b5d845272833a961c5db0c7d2d4cb5e61f41f71e0989c193dc2923770440b19d7d3d71de65291d0a3e0a15edc793316
 DIST fpc-3.2.2.i386-linux.tar 85043200 BLAKE2B 
9e2fae2d272c79cc7fcf4d062589bd888c342ccfb01e3f14e412bc58ff6b04928c6a7a0a4b3392b30f0864f16029d063632bd72bd9cac55e0a40a00fb726ef93
 SHA512 
b4f1a94d1a05901f4ffc2e07519e9b03666850211e571cbce33f0ba16d8a1d88de256c8e111579f46d56f157630dfc722a8ae9ce2b200fc784c588ea4e6bd5df
 DIST fpc-3.2.2.source.tar.gz 52240052 BLAKE2B 
e30cf1b10c4cafd0ae2a25673678213669c29dec0549f4d7b357011e84a0a2c8ecf343cb6443798e6c36c02ae97a0c7cae7ca24829510c552968d4a58426576f
 SHA512 
6d320b4e0805d63c40d3037f9d2078068c2c9fcdeb6ac073a6fcc19249bd6325dc542fcc7fc6dbb7e69507dcd84cf9e720e7d73925afe955e2a24e8c7d92606a
 DIST fpc-3.2.2.x86_64-linux.tar 86978560 BLAKE2B 
29cac8c0da4ba65cee6a0e0cd3c111202c8943ca61a02c5dfeaeb174c353db6fc07e291794ef7433f9fdf88ed694260e734bc715567c6a12292b0c8524d17f4e
 SHA512 
534df830a951824525044479ded23ef1e61b104c0dd65c837ad0d8d9ced9eb7349925a3f759756aa95ae17e567d8b1cd5c7e2092d3c665eaac578845b48aa467

diff --git a/dev-lang/fpc/fpc-3.2.2.ebuild b/dev-lang/fpc/fpc-3.2.2.ebuild
index 877875a0a48..ce1852bf58e 100644
--- a/dev-lang/fpc/fpc-3.2.2.ebuild
+++ b/dev-lang/fpc/fpc-3.2.2.ebuild
@@ -10,13 +10,14 @@ DESCRIPTION="Free Pascal Compiler"
 SRC_URI="mirror://sourceforge/freepascal/fpcbuild-${PV}.tar.gz
mirror://sourceforge/freepascal/fpc-${PV}.source.tar.gz
amd64? ( mirror://sourceforge/freepascal/${P}.x86_64-linux.tar )
+   arm64? ( mirror://sourceforge/freepascal/${P}.aarch64-linux.tar )
x86? ( mirror://sourceforge/freepascal/${P}.i386-linux.tar )
doc? ( 
mirror://sourceforge/freepascal/Documentation/${PV}/doc-html.tar.gz -> 
${P}-doc-html.tar.gz )"
 S="${WORKDIR}/fpcbuild-${PV}/fpcsrc"
 
 LICENSE="GPL-2 LGPL-2.1-with-linking-exception"
 SLOT="0"
-KEYWORDS="-* amd64 x86"
+KEYWORDS="-* amd64 ~arm64 x86"
 IUSE="doc source"
 RESTRICT="strip" #269221
 
@@ -43,6 +44,10 @@ src_unpack() {
FPC_ARCH="x86_64"
PV_BIN="${PV}"
;;
+   arm64)
+   FPC_ARCH="aarch64"
+   PV_BIN="${PV}"
+   ;;
x86)
FPC_ARCH="i386"
PV_BIN="${PV}"
@@ -75,6 +80,10 @@ set_pp() {
FPC_ARCH="x64"
FPC_PARCH="x86_64"
;;
+   arm64)
+   FPC_ARCH="a64"
+   FPC_PARCH="aarch64"
+   ;;
x86)
FPC_ARCH="386"
FPC_PARCH="i386"
@@ -163,7 +172,7 @@ src_install() {
rm -r "${ED}"/usr/lib/fpc/lexyacc || die
 
case ${ARCH} in
-   amd64)
+   amd64|arm64)
mkdir -p "${ED}"/usr/$(get_libdir) || die
mv "${ED}"/usr/lib/*.so "${ED}/usr/$(get_libdir)/" || 
die
  

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

2021-10-16 Thread Sam James
commit: 067138a06b77db8c783eb2b1f457c311b2aa55dd
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:58:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:58:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=067138a0

media-sound/linuxsampler: apply -j1 again

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

 media-sound/linuxsampler/linuxsampler-2.2.0.ebuild | 3 ++-
 media-sound/linuxsampler/linuxsampler-.ebuild  | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/media-sound/linuxsampler/linuxsampler-2.2.0.ebuild 
b/media-sound/linuxsampler/linuxsampler-2.2.0.ebuild
index b8df140e629..f09562220ec 100644
--- a/media-sound/linuxsampler/linuxsampler-2.2.0.ebuild
+++ b/media-sound/linuxsampler/linuxsampler-2.2.0.ebuild
@@ -62,7 +62,8 @@ src_configure() {
 }
 
 src_compile() {
-   emake
+   # bug #666738
+   emake -j1
use doc && emake docs
 }
 

diff --git a/media-sound/linuxsampler/linuxsampler-.ebuild 
b/media-sound/linuxsampler/linuxsampler-.ebuild
index d33e3b81f2f..e4663f701cf 100644
--- a/media-sound/linuxsampler/linuxsampler-.ebuild
+++ b/media-sound/linuxsampler/linuxsampler-.ebuild
@@ -61,7 +61,8 @@ src_configure() {
 }
 
 src_compile() {
-   emake
+   # bug #666738
+   emake -j1
use doc && emake docs
 }
 



[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/mapserver/

2021-10-16 Thread Sam James
commit: b6211cb23ff9e4f365f3a1403a318da6f90ceae4
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:57:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:57:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6211cb2

sci-geosciences/mapserver: don't double apply patch with USE=php

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

 sci-geosciences/mapserver/mapserver-7.6.2-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sci-geosciences/mapserver/mapserver-7.6.2-r1.ebuild 
b/sci-geosciences/mapserver/mapserver-7.6.2-r1.ebuild
index b6827ae663d..090466afc3c 100644
--- a/sci-geosciences/mapserver/mapserver-7.6.2-r1.ebuild
+++ b/sci-geosciences/mapserver/mapserver-7.6.2-r1.ebuild
@@ -7,6 +7,7 @@ EAPI=7
 PHP_EXT_OPTIONAL_USE="php"
 PHP_EXT_NAME="php_mapscriptng"
 PHP_EXT_SKIP_PHPIZE="yes"
+PHP_EXT_SKIP_PATCHES="yes"
 
 USE_PHP="php7-3 php7-4"
 PYTHON_COMPAT=( python3_{7,8,9} )



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

2021-10-16 Thread Andreas Sturmlechner
commit: 5bc3a4ba239ae6c812a78707e1d00e9cca058a69
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Aug 19 18:47:58 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct 17 00:40:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bc3a4ba

qt5-build.eclass: Drop EAPI-7 support and obsolete quirks

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

 eclass/qt5-build.eclass | 20 
 1 file changed, 8 insertions(+), 12 deletions(-)

diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index a0895e27abd..8756d6e5849 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -6,7 +6,7 @@
 # q...@gentoo.org
 # @AUTHOR:
 # Davide Pesavento 
-# @SUPPORTED_EAPIS: 7 8
+# @SUPPORTED_EAPIS: 8
 # @BLURB: Eclass for Qt5 split ebuilds.
 # @DESCRIPTION:
 # This eclass contains various functions that are used when building Qt5.
@@ -16,7 +16,7 @@ if [[ ${CATEGORY} != dev-qt ]]; then
 fi
 
 case ${EAPI} in
-   7|8) ;;
+   8) ;;
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
 esac
 
@@ -105,9 +105,9 @@ SLOT=5/$(ver_cut 1-2)
 IUSE="debug test"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   RESTRICT+=" test" # bug 457182
+   RESTRICT="test" # bug 457182
 else
-   RESTRICT+=" !test? ( test )"
+   RESTRICT="!test? ( test )"
 fi
 
 BDEPEND="
@@ -175,9 +175,7 @@ qt5-build_src_configure() {
qt5_base_configure
fi
if [[ ${QT5_MODULE} == qttools ]]; then
-   if [[ ${EAPI} != 7 || -z ${QT5_TARGET_SUBDIRS[@]} ]]; then
-   qt5_tools_configure
-   fi
+   qt5_tools_configure
fi
 
qt5_foreach_target_subdir qt5_qmake
@@ -684,11 +682,9 @@ qt5_tools_configure() {
# allow the ebuild to override what we set here
myqmakeargs=( "${qmakeargs[@]}" "${myqmakeargs[@]}" )
 
-   if [[ ${EAPI} != 7 ]]; then
-   mkdir -p "${QT5_BUILD_DIR}" || die
-   qt5_qmake "${QT5_BUILD_DIR}"
-   cp qttools-config.pri "${QT5_BUILD_DIR}" || die
-   fi
+   mkdir -p "${QT5_BUILD_DIR}" || die
+   qt5_qmake "${QT5_BUILD_DIR}"
+   cp qttools-config.pri "${QT5_BUILD_DIR}" || die
 }
 
 # @FUNCTION: qt5_qmake_args



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtdbus/, dev-qt/qtwidgets/, dev-qt/linguist/, dev-qt/qtcore/, ...

2021-10-16 Thread Andreas Sturmlechner
commit: 0d7d27c3c9303f3794dd78532da28d59f8e93962
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Aug 26 17:56:13 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct 17 00:40:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d7d27c3

dev-qt: Drop old

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

 dev-qt/assistant/Manifest  |   1 -
 dev-qt/assistant/assistant-5.15.2.ebuild   |  55 ---
 dev-qt/designer/Manifest   |   1 -
 dev-qt/designer/designer-5.15.2.ebuild |  55 ---
 dev-qt/linguist-tools/Manifest |   1 -
 dev-qt/linguist-tools/linguist-tools-5.15.2.ebuild |  48 -
 dev-qt/linguist/Manifest   |   1 -
 dev-qt/linguist/linguist-5.15.2.ebuild |  49 -
 dev-qt/pixeltool/Manifest  |   1 -
 dev-qt/pixeltool/pixeltool-5.15.2.ebuild   |  24 -
 dev-qt/qdbus/Manifest  |   1 -
 dev-qt/qdbus/qdbus-5.15.2.ebuild   |  26 -
 dev-qt/qdbusviewer/Manifest|   1 -
 dev-qt/qdbusviewer/qdbusviewer-5.15.2.ebuild   |  46 -
 dev-qt/qtchooser/qtchooser-66.ebuild   |  51 --
 dev-qt/qtconcurrent/Manifest   |   2 -
 .../files/qtconcurrent-5.15.2-gcc11.patch  |  45 -
 dev-qt/qtconcurrent/qtconcurrent-5.15.2-r1.ebuild  |  30 --
 dev-qt/qtconcurrent/qtconcurrent-5.15.2.ebuild |  27 -
 dev-qt/qtcore/Manifest |   2 -
 .../files/qtcore-5.15.2-fix-UB-in-QDateTime.patch  |  88 -
 ...qtcore-5.15.2-fix-alloc-mem-of-QByteArray.patch |  54 --
 dev-qt/qtcore/files/qtcore-5.15.2-gcc11.patch  |  38 ---
 dev-qt/qtcore/qtcore-5.15.2-r3.ebuild  | 110 -
 dev-qt/qtdbus/Manifest |   2 -
 dev-qt/qtdbus/qtdbus-5.15.2-r1.ebuild  |  49 -
 dev-qt/qtdeclarative/Manifest  |   1 -
 .../files/qtdeclarative-5.15.2-gcc11.patch |  31 --
 .../qtdeclarative/qtdeclarative-5.15.2-r1.ebuild   |  60 ---
 dev-qt/qthelp/Manifest |   1 -
 dev-qt/qthelp/qthelp-5.15.2.ebuild |  32 --
 dev-qt/qtimageformats/Manifest |   1 -
 dev-qt/qtimageformats/qtimageformats-5.15.2.ebuild |  30 --
 dev-qt/qtmultimedia/qtmultimedia-5.15.2-r1.ebuild  |  69 -
 dev-qt/qtnetwork/Manifest  |   2 -
 ...work-5.15.2-QNetworkAccessManager-memleak.patch |  41 
 dev-qt/qtnetwork/qtnetwork-5.15.2-r2.ebuild|  80 ---
 dev-qt/qtopengl/Manifest   |   2 -
 dev-qt/qtopengl/qtopengl-5.15.2-r1.ebuild  |  38 ---
 dev-qt/qtpaths/Manifest|   1 -
 dev-qt/qtpaths/qtpaths-5.15.2.ebuild   |  21 
 dev-qt/qtprintsupport/Manifest |   2 -
 .../qtprintsupport/qtprintsupport-5.15.2-r1.ebuild |  46 -
 dev-qt/qtsql/Manifest  |   2 -
 dev-qt/qtsql/qtsql-5.15.2-r1.ebuild|  60 ---
 dev-qt/qtsvg/Manifest  |   1 -
 dev-qt/qtsvg/qtsvg-5.15.2.ebuild   |  23 -
 dev-qt/qttest/Manifest |   2 -
 dev-qt/qttest/qttest-5.15.2-r1.ebuild  |  37 ---
 dev-qt/qttranslations/Manifest |   1 -
 dev-qt/qttranslations/qttranslations-5.15.2.ebuild |  19 
 dev-qt/qtwayland/Manifest  |   1 -
 ...-qtwaylandscanner-avoid-dangling-pointers.patch |  35 ---
 dev-qt/qtwayland/qtwayland-5.15.2-r1.ebuild|  41 
 dev-qt/qtwebsockets/Manifest   |   1 -
 dev-qt/qtwebsockets/qtwebsockets-5.15.2.ebuild |  27 -
 dev-qt/qtwidgets/Manifest  |   2 -
 dev-qt/qtwidgets/qtwidgets-5.15.2-r1.ebuild|  62 
 dev-qt/qtxml/Manifest  |   2 -
 dev-qt/qtxml/qtxml-5.15.2-r1.ebuild|  33 ---
 60 files changed, 1615 deletions(-)

diff --git a/dev-qt/assistant/Manifest b/dev-qt/assistant/Manifest
index 2ad3df5c2a7..96e0c95cdef 100644
--- a/dev-qt/assistant/Manifest
+++ b/dev-qt/assistant/Manifest
@@ -1,2 +1 @@
 DIST qttools-5.15.2-33693a92.tar.gz 12266718 BLAKE2B 
c519abdcca9df3b191297b859b2dce417ee9a79f9e3bcb3f2aa0017266b8edc855645108f5f7e6853d28f4c7507c92646ce8130731a345c6ffdfcd37fb1f4789
 SHA512 
9a62f1849c8eb65384d19de61cb6a08d1f467877181fd752e58b2b4e7d566c5d868c7ebab2d01591c6f540c01c705b7f8e0fe76c26cb0ee78f590ddae57048d2
-DIST qttools-everywhere-src-5.15.2.tar.xz 8894728 BLAKE2B 

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

2021-10-16 Thread Andreas Sturmlechner
commit: b8fe578396ad2fa99ec407cc27cada67d85217b9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Oct 17 00:37:32 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct 17 00:40:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8fe5783

dev-qt/qtgui: Drop vulnerable 5.15.2-r2

Bug: https://bugs.gentoo.org/808531
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtgui/Manifest  |   2 -
 .../files/qtgui-5.15.2-bogus-xcb-util-dep.patch|  72 
 dev-qt/qtgui/qtgui-5.15.2-r2.ebuild| 190 -
 3 files changed, 264 deletions(-)

diff --git a/dev-qt/qtgui/Manifest b/dev-qt/qtgui/Manifest
index c69b3ee123f..4b8920365b9 100644
--- a/dev-qt/qtgui/Manifest
+++ b/dev-qt/qtgui/Manifest
@@ -1,3 +1 @@
 DIST qtbase-5.15.2-a4f9e569.tar.gz 67964648 BLAKE2B 
2be7351221c46846ef37308a0238aa4a39369da63fe5c3be5e142ff700c80e125821c06b43c9e4e949bd9f285222a60888303aef956c9b427a9a6c8ee3bc6b1a
 SHA512 
b4be8132a1d7119fd9728f7bf2d72cdd27d2092e7f178a1f15707204f5ffade7ce505c897fd658bb19274bdd6238b2eb16f7fcfedff2567877dc3458b4091388
-DIST qtbase-5.15.2-gcc11.patch.xz 1208 BLAKE2B 
a2e5764b723adda991eca5b84cf8e15437a4832febd12e3c93cdc394931af666e17c01e229e9be7e0efc446a955cc26388c0f93cadfcabd93cc6b6f03bb41eb0
 SHA512 
da3a41ea5d9573a029946d26b26d51d6dce9c8b91db6d78ca71d8343d3ceb5010d21750dcb45abb663e227b5f068985ff4ed51da07efd17c64cc8dd5aef8f3e4
-DIST qtbase-everywhere-src-5.15.2.tar.xz 50179672 BLAKE2B 
0e4bdaab43cf59664bde89f87ea260c39acc2ef866d8629d41d9c326cab0ab68bcd943c86a472ae74bc9fb0b7ad50795ccb66275bb6b77d1fcf0a38b5662cb42
 SHA512 
a549bfaf867d746ff744ab224eb65ac1bdcdac7e8457dfa379941b2b225a90442fcfc1e1175b9afb1f169468f8130b7ab917c67be67156520a4bfb5c92d304f9

diff --git a/dev-qt/qtgui/files/qtgui-5.15.2-bogus-xcb-util-dep.patch 
b/dev-qt/qtgui/files/qtgui-5.15.2-bogus-xcb-util-dep.patch
deleted file mode 100644
index b7f65483fb1..000
--- a/dev-qt/qtgui/files/qtgui-5.15.2-bogus-xcb-util-dep.patch
+++ /dev/null
@@ -1,72 +0,0 @@
-From 61b07d75f96d4dfb07b485b2a9bd7aed099df987 Mon Sep 17 00:00:00 2001
-From: Liang Qi 
-Date: Tue, 1 Dec 2020 08:43:28 +0100
-Subject: [PATCH] Revert "xcb: add xcb-util dependency for xcb-image"
-MIME-Version: 1.0
-Content-Type: text/plain; charset=utf8
-Content-Transfer-Encoding: 8bit
-
-This reverts commit adc42bebcac764ca8de78578e3a4ac39b621bd09.
-
-adc42beb is wrong, the bug is for static build of qt with static
-xcb. It adds the explicit dependency of xcb-util 0.3.9, which is
-not available on Debian yet.
-
-Task-number: QTBUG-86287
-Fixes: QTBUG-88688
-Change-Id: Iffc821f49bdfcad3f2556951d3677c35a7682266
-Reviewed-by: Thiago Macieira 
-Reviewed-by: Tor Arne Vestbø 
-(adapted from commit 92a57e0b016f811876ec1d62328ca8edfe452a3a)

- src/gui/configure.json | 14 ++
- 1 file changed, 2 insertions(+), 12 deletions(-)
-
-diff --git a/src/gui/configure.json b/src/gui/configure.json
-index c8c4864eca6..1f08795c57b 100644
 a/src/gui/configure.json
-+++ b/src/gui/configure.json
-@@ -601,15 +601,6 @@
- ],
- "use": "xcb"
- },
--"xcb_util": {
--"label": "XCB Util >= 0.3.9",
--"headers": "xcb/xcb_util.h",
--"sources": [
--{ "type": "pkgConfig", "args": "xcb-util >= 0.3.9" },
--"-lxcb-util"
--],
--"use": "xcb"
--},
- "xcb_image": {
- "label": "XCB Image >= 0.3.9",
- "headers": "xcb/xcb_image.h",
-@@ -617,7 +608,7 @@
- { "type": "pkgConfig", "args": "xcb-image >= 0.3.9" },
- "-lxcb-image"
- ],
--"use": "xcb_shm xcb_util xcb"
-+"use": "xcb_shm xcb"
- },
- "xcb_keysyms": {
- "label": "XCB Keysyms >= 0.3.9",
-@@ -1065,7 +1056,6 @@
- "tail": "#undef explicit",
- "include": [
- "xcb/xcb.h",
--"xcb/xcb_util.h",
- "xcb/xcb_image.h",
- "xcb/xcb_keysyms.h",
- "xcb/randr.h",
-@@ -1097,7 +1087,7 @@
- 
"xcb_xkb_get_kbd_by_name_replies_key_names_value_list_sizeof(nullptr, 0, 0, 0, 
0, 0, 0, 0, 0);"
- ]
- },
--"use": "xcb_icccm xcb_util xcb_image xcb_keysyms xcb_randr 
xcb_render xcb_renderutil xcb_shape xcb_shm xcb_sync xcb_xfixes xcb_xinerama 
xcb_xkb xcb"
-+"use": "xcb_icccm xcb_image xcb_keysyms xcb_randr xcb_render 
xcb_renderutil xcb_shape xcb_shm xcb_sync xcb_xfixes xcb_xinerama xcb_xkb xcb"
- },
- "x11prefix": {
- "label": "X11 prefix",
--- 
-2.16.3

diff --git a/dev-qt/qtgui/qtgui-5.15.2-r2.ebuild 
b/dev-qt/qtgui/qtgui-5.15.2-r2.ebuild
deleted file mode 100644
index 34d58b305ba..000
--- 

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

2021-10-16 Thread Andreas Sturmlechner
commit: 6490cf17ae287afa91d83615bb00beb755fe1f75
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Oct 16 12:24:18 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct 17 00:40:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6490cf17

media-gfx/kgeotag: 1.1.0 version bump

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

 media-gfx/kgeotag/Manifest |  1 +
 media-gfx/kgeotag/kgeotag-1.1.0.ebuild | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/media-gfx/kgeotag/Manifest b/media-gfx/kgeotag/Manifest
index 85264efd66e..7316a6f0967 100644
--- a/media-gfx/kgeotag/Manifest
+++ b/media-gfx/kgeotag/Manifest
@@ -1 +1,2 @@
 DIST kgeotag-1.0.0.tar.xz 266488 BLAKE2B 
ff69ad02fc72766c4c8aa08dedba681cc6d73bfb9004ae8f12282b3cd09bb074acba2231f41ce4693929c3506a89ff90666c01e0c333450fd827eeb787d48c46
 SHA512 
8696ffe67abbfa2cefdc78c0bfed6894b3e376323a291b64e0aaf6d11eb8f5f2fc5bf1335ebdebc0f5e9d1c99f1c45972c193f7b91e71c14b1da63d5d845811e
+DIST kgeotag-1.1.0.tar.xz 282436 BLAKE2B 
8d59665bc56147f1b1177c15ee5e67823cbff1ede19abcfa2c9c6d8f514a72c5d92a8216920fdfdc58a0880d093b570d61f3ec273868059a1182b9f444affa4c
 SHA512 
b849cd43118f05253352a5059f0c29a9e3db59602455f3413ec5bcbe9c4b72c1e695f077089a2fe048443c04ec31be07540d42ab1f055bb32b3b459da7f7911a

diff --git a/media-gfx/kgeotag/kgeotag-1.1.0.ebuild 
b/media-gfx/kgeotag/kgeotag-1.1.0.ebuild
new file mode 100644
index 000..2e4f29ade5e
--- /dev/null
+++ b/media-gfx/kgeotag/kgeotag-1.1.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+KFMIN=5.82.0
+QTMIN=5.15.2
+inherit ecm kde.org
+
+DESCRIPTION="Photo geotagging program"
+HOMEPAGE="https://kgeotag.kde.org/ https://apps.kde.org/kgeotag/;
+
+if [[ ${KDE_BUILD_TYPE} != live ]]; then
+   SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
+   KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3+"
+SLOT="5"
+
+DEPEND="
+   >=dev-qt/qtgui-${QTMIN}:5
+   >=dev-qt/qtnetwork-${QTMIN}:5
+   >=dev-qt/qtwidgets-${QTMIN}:5
+   kde-apps/libkexiv2:5
+   kde-apps/marble:5
+   >=kde-frameworks/kconfig-${KFMIN}:5
+   >=kde-frameworks/kconfigwidgets-${KFMIN}:5
+   >=kde-frameworks/kcoreaddons-${KFMIN}:5
+   >=kde-frameworks/kcrash-${KFMIN}:5
+   >=kde-frameworks/ki18n-${KFMIN}:5
+   >=kde-frameworks/kxmlgui-${KFMIN}:5
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( ChangeLog.rst README.md )



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

2021-10-16 Thread Sam James
commit: f0eb25b45f41f9dc685d214c46b6e460b37e1c45
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:37:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:37:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0eb25b4

www-client/links: Stabilize 2.24 x86, #818466

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

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

diff --git a/www-client/links/links-2.24.ebuild 
b/www-client/links/links-2.24.ebuild
index 634482494b3..8a38e3dc4b3 100644
--- a/www-client/links/links-2.24.ebuild
+++ b/www-client/links/links-2.24.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://${PN}.twibright.com/download/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="brotli bzip2 fbcon freetype gpm ipv6 jpeg libevent livecd lzip lzma ssl 
suid svga tiff unicode X zlib zstd"
 
 GRAPHICS_DEPEND="media-libs/libpng:0="



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

2021-10-16 Thread Sam James
commit: f66d3080dc00caac6ef6f39f03cc8487b8ddbf68
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:36:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:36:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f66d3080

dev-libs/libuv: Stabilize 1.42.0 arm, #812752

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

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

diff --git a/dev-libs/libuv/libuv-1.42.0.ebuild 
b/dev-libs/libuv/libuv-1.42.0.ebuild
index b12f873bf1a..082ca534234 100644
--- a/dev-libs/libuv/libuv-1.42.0.ebuild
+++ b/dev-libs/libuv/libuv-1.42.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} = * ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/libuv/libuv/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="BSD BSD-2 ISC MIT"



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

2021-10-16 Thread Sam James
commit: 5a98fdf334fbaf0eb2500f4c05d3c81449672b8b
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:35:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:35:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a98fdf3

dev-python/matplotlib: add missing imagemagick-tools dependency

Needed for tests too.

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

 .../matplotlib/{matplotlib-3.4.3.ebuild => matplotlib-3.4.3-r1.ebuild}   | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/matplotlib/matplotlib-3.4.3.ebuild 
b/dev-python/matplotlib/matplotlib-3.4.3-r1.ebuild
similarity index 99%
rename from dev-python/matplotlib/matplotlib-3.4.3.ebuild
rename to dev-python/matplotlib/matplotlib-3.4.3-r1.ebuild
index b7d33af1b52..42d3fd85300 100644
--- a/dev-python/matplotlib/matplotlib-3.4.3.ebuild
+++ b/dev-python/matplotlib/matplotlib-3.4.3-r1.ebuild
@@ -43,6 +43,7 @@ RDEPEND="
media-libs/freetype:2
media-libs/libpng:0
>=media-libs/qhull-2013:=
+   virtual/imagemagick-tools[jpeg,tiff]
cairo? (
dev-python/cairocffi[${PYTHON_USEDEP}]
)



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

2021-10-16 Thread Sam James
commit: d855449a9a9e6bfe5c8602fc02465b43dc0ceceb
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:32:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:32:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d855449a

dev-python/matplotlib: add missing TeX (test) dependencies

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

 dev-python/matplotlib/matplotlib-3.4.2.ebuild | 4 
 dev-python/matplotlib/matplotlib-3.4.3.ebuild | 4 
 2 files changed, 8 insertions(+)

diff --git a/dev-python/matplotlib/matplotlib-3.4.2.ebuild 
b/dev-python/matplotlib/matplotlib-3.4.2.ebuild
index fa2b2aa00c9..e3fa994405b 100644
--- a/dev-python/matplotlib/matplotlib-3.4.2.ebuild
+++ b/dev-python/matplotlib/matplotlib-3.4.2.ebuild
@@ -60,6 +60,7 @@ RDEPEND="
app-text/poppler[utils]
dev-texlive/texlive-fontsrecommended
dev-texlive/texlive-latexextra
+   dev-texlive/texlive-luatex
dev-texlive/texlive-xetex
)
qt5? (
@@ -87,9 +88,12 @@ BDEPEND="
>=dev-python/sphinx-1.3.1[${PYTHON_USEDEP}]
>=dev-python/sphinx-gallery-0.3.1-r1[${PYTHON_USEDEP}]
>=dev-python/xlwt-1.3.0-r1[${PYTHON_USEDEP}]
+   virtual/latex-base
dev-texlive/texlive-latexextra
dev-texlive/texlive-fontsrecommended
dev-texlive/texlive-latexrecommended
+   dev-texlive/texlive-luatex
+   dev-texlive/texlive-xetex
>=media-gfx/graphviz-2.42.3[cairo]
)
test? (

diff --git a/dev-python/matplotlib/matplotlib-3.4.3.ebuild 
b/dev-python/matplotlib/matplotlib-3.4.3.ebuild
index 0a6a160d0ce..b7d33af1b52 100644
--- a/dev-python/matplotlib/matplotlib-3.4.3.ebuild
+++ b/dev-python/matplotlib/matplotlib-3.4.3.ebuild
@@ -60,6 +60,7 @@ RDEPEND="
app-text/poppler[utils]
dev-texlive/texlive-fontsrecommended
dev-texlive/texlive-latexextra
+   dev-texlive/texlive-luatex
dev-texlive/texlive-xetex
)
qt5? (
@@ -87,9 +88,12 @@ BDEPEND="
>=dev-python/sphinx-1.3.1[${PYTHON_USEDEP}]
>=dev-python/sphinx-gallery-0.3.1-r1[${PYTHON_USEDEP}]
>=dev-python/xlwt-1.3.0-r1[${PYTHON_USEDEP}]
+   virtual/latex-base
dev-texlive/texlive-latexextra
dev-texlive/texlive-fontsrecommended
dev-texlive/texlive-latexrecommended
+   dev-texlive/texlive-luatex
+   dev-texlive/texlive-xetex
>=media-gfx/graphviz-2.42.3[cairo]
)
test? (



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

2021-10-16 Thread Sam James
commit: f60071a8628b0d0a60818918ba63e6fab1a860d3
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f60071a8

dev-qt/qtpaths: Stabilize 5.15.2-r10 ppc, #806797

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

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

diff --git a/dev-qt/qtpaths/qtpaths-5.15.2-r10.ebuild 
b/dev-qt/qtpaths/qtpaths-5.15.2-r10.ebuild
index ae4ff1eea6b..1d79d126f61 100644
--- a/dev-qt/qtpaths/qtpaths-5.15.2-r10.ebuild
+++ b/dev-qt/qtpaths/qtpaths-5.15.2-r10.ebuild
@@ -10,7 +10,7 @@ inherit qt5-build
 DESCRIPTION="Command line client to QStandardPaths"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 ~arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE=""



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

2021-10-16 Thread Sam James
commit: 85e35fd3aa3aa0d87a13f93cc1165eb4ef1a666e
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85e35fd3

dev-qt/qtxml: Stabilize 5.15.2-r10 ppc, #806797

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

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

diff --git a/dev-qt/qtxml/qtxml-5.15.2-r10.ebuild 
b/dev-qt/qtxml/qtxml-5.15.2-r10.ebuild
index e5aaf50a816..23f2c1e9e28 100644
--- a/dev-qt/qtxml/qtxml-5.15.2-r10.ebuild
+++ b/dev-qt/qtxml/qtxml-5.15.2-r10.ebuild
@@ -10,7 +10,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 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE=""



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

2021-10-16 Thread Sam James
commit: 8eef24003510f2129a6f025a8eca40c2583e0a61
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eef2400

dev-qt/qttranslations: Stabilize 5.15.2-r10 ppc, #806797

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

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

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



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

2021-10-16 Thread Sam James
commit: 36cc1d31ee149906234b712e83a81600c32c1ae1
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36cc1d31

dev-qt/qtprintsupport: Stabilize 5.15.2-r10 ppc, #806797

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

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

diff --git a/dev-qt/qtprintsupport/qtprintsupport-5.15.2-r10.ebuild 
b/dev-qt/qtprintsupport/qtprintsupport-5.15.2-r10.ebuild
index a772dd8c480..39e464926b2 100644
--- a/dev-qt/qtprintsupport/qtprintsupport-5.15.2-r10.ebuild
+++ b/dev-qt/qtprintsupport/qtprintsupport-5.15.2-r10.ebuild
@@ -11,7 +11,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 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="cups gles2-only"



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

2021-10-16 Thread Sam James
commit: c80a2bab4930f7bed535a5d3dce6f96d38548b32
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c80a2bab

dev-qt/qtsvg: Stabilize 5.15.2-r10 ppc, #806797

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

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

diff --git a/dev-qt/qtsvg/qtsvg-5.15.2-r10.ebuild 
b/dev-qt/qtsvg/qtsvg-5.15.2-r10.ebuild
index a4f3e4a3cf8..63798ecf760 100644
--- a/dev-qt/qtsvg/qtsvg-5.15.2-r10.ebuild
+++ b/dev-qt/qtsvg/qtsvg-5.15.2-r10.ebuild
@@ -9,7 +9,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 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE=""



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

2021-10-16 Thread Sam James
commit: 5859b39675dfc9fe1835ac4ea1fa251bc2ce6cd8
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5859b396

dev-qt/qtwayland: Stabilize 5.15.2-r14 ppc, #806797

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

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

diff --git a/dev-qt/qtwayland/qtwayland-5.15.2-r14.ebuild 
b/dev-qt/qtwayland/qtwayland-5.15.2-r14.ebuild
index 2d46f37afb9..3fa3cf6 100644
--- a/dev-qt/qtwayland/qtwayland-5.15.2-r14.ebuild
+++ b/dev-qt/qtwayland/qtwayland-5.15.2-r14.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="Wayland platform plugin for Qt"
 SLOT=5/${QT5_PV} # bug 815646
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="vulkan X"



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

2021-10-16 Thread Sam James
commit: dc8dee599b11658387b1c658d8689b74fb6c1ea6
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc8dee59

dev-qt/qthelp: Stabilize 5.15.2-r10 ppc, #806797

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

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

diff --git a/dev-qt/qthelp/qthelp-5.15.2-r10.ebuild 
b/dev-qt/qthelp/qthelp-5.15.2-r10.ebuild
index 2c598ff76a0..94ca49f5643 100644
--- a/dev-qt/qthelp/qthelp-5.15.2-r10.ebuild
+++ b/dev-qt/qthelp/qthelp-5.15.2-r10.ebuild
@@ -10,7 +10,7 @@ inherit qt5-build
 DESCRIPTION="Qt5 module for integrating online documentation into applications"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE=""



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

2021-10-16 Thread Sam James
commit: 1319390c0ddf168cee7c2e2ed37528466efd7ca7
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1319390c

dev-qt/linguist-tools: Stabilize 5.15.2-r10 ppc, #806797

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

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

diff --git a/dev-qt/linguist-tools/linguist-tools-5.15.2-r10.ebuild 
b/dev-qt/linguist-tools/linguist-tools-5.15.2-r10.ebuild
index 547a37e4e6a..b41bec10340 100644
--- a/dev-qt/linguist-tools/linguist-tools-5.15.2-r10.ebuild
+++ b/dev-qt/linguist-tools/linguist-tools-5.15.2-r10.ebuild
@@ -10,7 +10,7 @@ inherit qt5-build
 DESCRIPTION="Tools for working with Qt translation data files"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="qml"



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

2021-10-16 Thread Sam James
commit: e0514901ff0cc3c3084e7b8953cad53869ab312e
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:42 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0514901

dev-qt/qtmultimedia: Stabilize 5.15.2-r2 ppc, #806797

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

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

diff --git a/dev-qt/qtmultimedia/qtmultimedia-5.15.2-r2.ebuild 
b/dev-qt/qtmultimedia/qtmultimedia-5.15.2-r2.ebuild
index 1cb495da237..54ae53fe2ee 100644
--- a/dev-qt/qtmultimedia/qtmultimedia-5.15.2-r2.ebuild
+++ b/dev-qt/qtmultimedia/qtmultimedia-5.15.2-r2.ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Multimedia (audio, video, radio, camera) library for the Qt5 
framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="alsa gles2-only gstreamer openal pulseaudio qml widgets"



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

2021-10-16 Thread Sam James
commit: f71f41f9298be5bb9a9e69e0df56b6875470635f
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f71f41f9

dev-qt/designer: Stabilize 5.15.2-r11 ppc, #806797

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

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

diff --git a/dev-qt/designer/designer-5.15.2-r11.ebuild 
b/dev-qt/designer/designer-5.15.2-r11.ebuild
index 4426876b9f8..0d41f6d0c41 100644
--- a/dev-qt/designer/designer-5.15.2-r11.ebuild
+++ b/dev-qt/designer/designer-5.15.2-r11.ebuild
@@ -10,7 +10,7 @@ inherit desktop qt5-build xdg-utils
 DESCRIPTION="WYSIWYG tool for designing and building graphical user interfaces 
with QtWidgets"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv x86"
 fi
 
 IUSE="declarative"



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

2021-10-16 Thread Sam James
commit: 645282f53a9e0ba5d062bbfd4442a3954d1df5a0
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:26 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=645282f5

dev-qt/qtwidgets: Stabilize 5.15.2-r11 ppc, #806797

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

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

diff --git a/dev-qt/qtwidgets/qtwidgets-5.15.2-r11.ebuild 
b/dev-qt/qtwidgets/qtwidgets-5.15.2-r11.ebuild
index 10d1e1045a4..90eb44f6124 100644
--- a/dev-qt/qtwidgets/qtwidgets-5.15.2-r11.ebuild
+++ b/dev-qt/qtwidgets/qtwidgets-5.15.2-r11.ebuild
@@ -10,7 +10,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 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 # keep IUSE defaults in sync with qtgui



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

2021-10-16 Thread Sam James
commit: 9249d9ed3af886a63c8a41a1ae630e7a0d24b8a4
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9249d9ed

dev-qt/qdbus: Stabilize 5.15.2-r10 ppc, #806797

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

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

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



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

2021-10-16 Thread Sam James
commit: d19abc7178fa7f255d39ca0444cb0358484a2709
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d19abc71

dev-qt/qtgui: Stabilize 5.15.2-r13 ppc, #806797

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

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

diff --git a/dev-qt/qtgui/qtgui-5.15.2-r13.ebuild 
b/dev-qt/qtgui/qtgui-5.15.2-r13.ebuild
index e99bb4c91d5..f7f9b5e7c58 100644
--- a/dev-qt/qtgui/qtgui-5.15.2-r13.ebuild
+++ b/dev-qt/qtgui/qtgui-5.15.2-r13.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="The GUI module and platform plugins for the Qt5 
framework"
 SLOT=5/${QT5_PV} # bug 707658
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="accessibility dbus egl eglfs evdev +gif gles2-only ibus jpeg



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

2021-10-16 Thread Sam James
commit: 28103fed2e6eca8d8216da21dfc5b38b7a81de09
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28103fed

dev-qt/qtopengl: Stabilize 5.15.2-r11 ppc, #806797

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

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

diff --git a/dev-qt/qtopengl/qtopengl-5.15.2-r11.ebuild 
b/dev-qt/qtopengl/qtopengl-5.15.2-r11.ebuild
index 0be3e8f111b..e665ed8dace 100644
--- a/dev-qt/qtopengl/qtopengl-5.15.2-r11.ebuild
+++ b/dev-qt/qtopengl/qtopengl-5.15.2-r11.ebuild
@@ -11,7 +11,7 @@ inherit qt5-build
 DESCRIPTION="OpenGL support library for the Qt5 framework (deprecated)"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="gles2-only"



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

2021-10-16 Thread Sam James
commit: 5027f8fe1cf238893ea23398fe35c7b2d83478d9
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5027f8fe

dev-qt/qtsql: Stabilize 5.15.2-r10 ppc, #806797

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

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

diff --git a/dev-qt/qtsql/qtsql-5.15.2-r10.ebuild 
b/dev-qt/qtsql/qtsql-5.15.2-r10.ebuild
index 9730cabbda7..7d2229ef073 100644
--- a/dev-qt/qtsql/qtsql-5.15.2-r10.ebuild
+++ b/dev-qt/qtsql/qtsql-5.15.2-r10.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="SQL abstraction library for the Qt5 framework"
 SLOT=5/${QT5_PV} # bug 639140
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="freetds mysql oci8 odbc postgres +sqlite"



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

2021-10-16 Thread Sam James
commit: 3d7f0883855278b418bdc7d90644110d6f5490a1
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:27 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d7f0883

dev-qt/qtdeclarative: Stabilize 5.15.2-r12 ppc, #806797

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

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

diff --git a/dev-qt/qtdeclarative/qtdeclarative-5.15.2-r12.ebuild 
b/dev-qt/qtdeclarative/qtdeclarative-5.15.2-r12.ebuild
index 9270b31774e..7987361ecfd 100644
--- a/dev-qt/qtdeclarative/qtdeclarative-5.15.2-r12.ebuild
+++ b/dev-qt/qtdeclarative/qtdeclarative-5.15.2-r12.ebuild
@@ -10,7 +10,7 @@ inherit python-any-r1 qt5-build
 DESCRIPTION="The QML and Quick modules for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="gles2-only +jit localstorage vulkan +widgets"



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

2021-10-16 Thread Sam James
commit: 2bf935120d160802844cb5a77a56e83b5aed8790
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bf93512

dev-qt/qtnetwork: Stabilize 5.15.2-r11 ppc, #806797

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

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

diff --git a/dev-qt/qtnetwork/qtnetwork-5.15.2-r11.ebuild 
b/dev-qt/qtnetwork/qtnetwork-5.15.2-r11.ebuild
index eeb41e78d4e..babaf742b4c 100644
--- a/dev-qt/qtnetwork/qtnetwork-5.15.2-r11.ebuild
+++ b/dev-qt/qtnetwork/qtnetwork-5.15.2-r11.ebuild
@@ -10,7 +10,7 @@ inherit qt5-build
 DESCRIPTION="Network abstraction library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="bindist connman gssapi libproxy networkmanager sctp +ssl"



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

2021-10-16 Thread Sam James
commit: 34cbfa52804c7c7e5762bea08838c1998cc1170d
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34cbfa52

dev-qt/qtconcurrent: Stabilize 5.15.2-r10 ppc, #806797

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

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

diff --git a/dev-qt/qtconcurrent/qtconcurrent-5.15.2-r10.ebuild 
b/dev-qt/qtconcurrent/qtconcurrent-5.15.2-r10.ebuild
index 2c95c8bd96f..f226909ed33 100644
--- a/dev-qt/qtconcurrent/qtconcurrent-5.15.2-r10.ebuild
+++ b/dev-qt/qtconcurrent/qtconcurrent-5.15.2-r10.ebuild
@@ -10,7 +10,7 @@ inherit qt5-build
 DESCRIPTION="Multi-threading concurrence support library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE=""



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

2021-10-16 Thread Sam James
commit: 53c0d60c26a075e551feff0f03a67a1271f597e2
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53c0d60c

dev-qt/qttest: Stabilize 5.15.2-r10 ppc, #806797

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

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

diff --git a/dev-qt/qttest/qttest-5.15.2-r10.ebuild 
b/dev-qt/qttest/qttest-5.15.2-r10.ebuild
index 35530389569..8489fbe36c7 100644
--- a/dev-qt/qttest/qttest-5.15.2-r10.ebuild
+++ b/dev-qt/qttest/qttest-5.15.2-r10.ebuild
@@ -11,7 +11,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 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE=""



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

2021-10-16 Thread Sam James
commit: f02c00f2c94e70d921afb14c0b5bdd2dac40337d
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:19 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f02c00f2

dev-qt/qtchooser: Stabilize 66-r1 ppc, #806797

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

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

diff --git a/dev-qt/qtchooser/qtchooser-66-r1.ebuild 
b/dev-qt/qtchooser/qtchooser-66-r1.ebuild
index b6c9cbd62ef..e25d6043764 100644
--- a/dev-qt/qtchooser/qtchooser-66-r1.ebuild
+++ b/dev-qt/qtchooser/qtchooser-66-r1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="http://download.qt.io/official_releases/${PN}/${P}.tar.xz;
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 LICENSE="|| ( LGPL-2.1 GPL-3 )"



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

2021-10-16 Thread Sam James
commit: b8113480e5ee4ac03beca8595c81ea072d51d391
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8113480

dev-qt/qtdbus: Stabilize 5.15.2-r10 ppc, #806797

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

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

diff --git a/dev-qt/qtdbus/qtdbus-5.15.2-r10.ebuild 
b/dev-qt/qtdbus/qtdbus-5.15.2-r10.ebuild
index 8e425cd4fcf..0d2d952579e 100644
--- a/dev-qt/qtdbus/qtdbus-5.15.2-r10.ebuild
+++ b/dev-qt/qtdbus/qtdbus-5.15.2-r10.ebuild
@@ -10,7 +10,7 @@ inherit qt5-build
 DESCRIPTION="Qt5 module for inter-process communication over the D-Bus 
protocol"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE=""



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

2021-10-16 Thread Sam James
commit: a96a69f9a759b9b27f1599cdb304843ab8e74127
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:29:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:29:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a96a69f9

dev-qt/qtcore: Stabilize 5.15.2-r10 ppc, #806797

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

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

diff --git a/dev-qt/qtcore/qtcore-5.15.2-r10.ebuild 
b/dev-qt/qtcore/qtcore-5.15.2-r10.ebuild
index 809ba50bd24..ee99b42e811 100644
--- a/dev-qt/qtcore/qtcore-5.15.2-r10.ebuild
+++ b/dev-qt/qtcore/qtcore-5.15.2-r10.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Cross-platform application development framework"
 SLOT=5/${QT5_PV}
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="icu old-kernel systemd"



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

2021-10-16 Thread Sam James
commit: 849bb28a9a96bac07def3b7555b76374f800f9ff
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=849bb28a

dev-qt/qttranslations: Stabilize 5.15.2-r10 ppc64, #806797

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

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

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



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

2021-10-16 Thread Sam James
commit: b6af50b65ce9f7b96f1f518dbde5c6a3d3dd5827
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6af50b6

dev-qt/linguist-tools: Stabilize 5.15.2-r10 ppc64, #806797

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

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

diff --git a/dev-qt/linguist-tools/linguist-tools-5.15.2-r10.ebuild 
b/dev-qt/linguist-tools/linguist-tools-5.15.2-r10.ebuild
index 639bf1ae2ca..547a37e4e6a 100644
--- a/dev-qt/linguist-tools/linguist-tools-5.15.2-r10.ebuild
+++ b/dev-qt/linguist-tools/linguist-tools-5.15.2-r10.ebuild
@@ -10,7 +10,7 @@ inherit qt5-build
 DESCRIPTION="Tools for working with Qt translation data files"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="qml"



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

2021-10-16 Thread Sam James
commit: c0a5f8228ba8d78be5a41bb1058c1bcd5d7b1939
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0a5f822

dev-qt/qdbusviewer: Stabilize 5.15.2-r10 ppc64, #806797

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

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

diff --git a/dev-qt/qdbusviewer/qdbusviewer-5.15.2-r10.ebuild 
b/dev-qt/qdbusviewer/qdbusviewer-5.15.2-r10.ebuild
index 09d3b0f1cd8..11f5c9a1d50 100644
--- a/dev-qt/qdbusviewer/qdbusviewer-5.15.2-r10.ebuild
+++ b/dev-qt/qdbusviewer/qdbusviewer-5.15.2-r10.ebuild
@@ -10,7 +10,7 @@ inherit desktop qt5-build xdg-utils
 DESCRIPTION="Graphical tool that lets you introspect D-Bus objects and 
messages"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc64 ~sparc x86"
+   KEYWORDS="amd64 ~arm arm64 ~hppa ppc64 ~sparc x86"
 fi
 
 IUSE=""



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

2021-10-16 Thread Sam James
commit: 8f96086d98420db8a2def8fd58a741dc1ef0449e
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f96086d

dev-qt/pixeltool: Stabilize 5.15.2-r11 ppc64, #806797

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

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

diff --git a/dev-qt/pixeltool/pixeltool-5.15.2-r11.ebuild 
b/dev-qt/pixeltool/pixeltool-5.15.2-r11.ebuild
index 15694f09c00..3e456b213cc 100644
--- a/dev-qt/pixeltool/pixeltool-5.15.2-r11.ebuild
+++ b/dev-qt/pixeltool/pixeltool-5.15.2-r11.ebuild
@@ -10,7 +10,7 @@ inherit qt5-build
 DESCRIPTION="Qt screen magnifier"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc64 ~sparc x86"
+   KEYWORDS="amd64 ~arm arm64 ~hppa ppc64 ~sparc x86"
 fi
 
 IUSE=""



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

2021-10-16 Thread Sam James
commit: a6268fd106a96a9689d35ab43941950aa232590d
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6268fd1

dev-qt/linguist: Stabilize 5.15.2-r11 ppc64, #806797

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

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

diff --git a/dev-qt/linguist/linguist-5.15.2-r11.ebuild 
b/dev-qt/linguist/linguist-5.15.2-r11.ebuild
index adbeaf67894..686904fe227 100644
--- a/dev-qt/linguist/linguist-5.15.2-r11.ebuild
+++ b/dev-qt/linguist/linguist-5.15.2-r11.ebuild
@@ -10,7 +10,7 @@ inherit desktop qt5-build xdg-utils
 DESCRIPTION="Graphical tool for translating Qt applications"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc64 x86"
+   KEYWORDS="amd64 ~arm arm64 ~hppa ppc64 x86"
 fi
 
 IUSE=""



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

2021-10-16 Thread Sam James
commit: 5fe20abd4220b37074b67a02c835fb5bd38d8142
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fe20abd

dev-qt/qtmultimedia: Stabilize 5.15.2-r2 ppc64, #806797

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

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

diff --git a/dev-qt/qtmultimedia/qtmultimedia-5.15.2-r2.ebuild 
b/dev-qt/qtmultimedia/qtmultimedia-5.15.2-r2.ebuild
index 08b9b1a9521..1cb495da237 100644
--- a/dev-qt/qtmultimedia/qtmultimedia-5.15.2-r2.ebuild
+++ b/dev-qt/qtmultimedia/qtmultimedia-5.15.2-r2.ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Multimedia (audio, video, radio, camera) library for the Qt5 
framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="alsa gles2-only gstreamer openal pulseaudio qml widgets"



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

2021-10-16 Thread Sam James
commit: 2c3197667cf932fd7fb18890f9661a2e49dae103
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c319766

dev-qt/qtpaths: Stabilize 5.15.2-r10 ppc64, #806797

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

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

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



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

2021-10-16 Thread Sam James
commit: b96d6afdab2922c344407c966da4c61cac2f0c1d
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b96d6afd

dev-qt/designer: Stabilize 5.15.2-r11 ppc64, #806797

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

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

diff --git a/dev-qt/designer/designer-5.15.2-r11.ebuild 
b/dev-qt/designer/designer-5.15.2-r11.ebuild
index b6d8f4d22af..4426876b9f8 100644
--- a/dev-qt/designer/designer-5.15.2-r11.ebuild
+++ b/dev-qt/designer/designer-5.15.2-r11.ebuild
@@ -10,7 +10,7 @@ inherit desktop qt5-build xdg-utils
 DESCRIPTION="WYSIWYG tool for designing and building graphical user interfaces 
with QtWidgets"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv x86"
 fi
 
 IUSE="declarative"



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

2021-10-16 Thread Sam James
commit: 55c834453c3da8e132d6da7a933d3b741c219e9e
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55c83445

dev-qt/qtwebsockets: Stabilize 5.15.2-r10 ppc64, #806797

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

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

diff --git a/dev-qt/qtwebsockets/qtwebsockets-5.15.2-r10.ebuild 
b/dev-qt/qtwebsockets/qtwebsockets-5.15.2-r10.ebuild
index 5b6000dbc97..3430a52d80f 100644
--- a/dev-qt/qtwebsockets/qtwebsockets-5.15.2-r10.ebuild
+++ b/dev-qt/qtwebsockets/qtwebsockets-5.15.2-r10.ebuild
@@ -9,7 +9,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 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="qml +ssl"



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

2021-10-16 Thread Sam James
commit: 5e8a153b0f2dab397de2290f4056caaf994b0a16
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e8a153b

dev-qt/qtprintsupport: Stabilize 5.15.2-r10 ppc64, #806797

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

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

diff --git a/dev-qt/qtprintsupport/qtprintsupport-5.15.2-r10.ebuild 
b/dev-qt/qtprintsupport/qtprintsupport-5.15.2-r10.ebuild
index eb51bc0eae2..a772dd8c480 100644
--- a/dev-qt/qtprintsupport/qtprintsupport-5.15.2-r10.ebuild
+++ b/dev-qt/qtprintsupport/qtprintsupport-5.15.2-r10.ebuild
@@ -11,7 +11,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 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="cups gles2-only"



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

2021-10-16 Thread Sam James
commit: d7e91f782f939ab22a0d9e4e49558c40af33d5ce
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7e91f78

dev-qt/qdbus: Stabilize 5.15.2-r10 ppc64, #806797

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

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

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



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

2021-10-16 Thread Sam James
commit: 0cc0f68121a56318211779d222d85eadf87e9db5
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cc0f681

dev-qt/qthelp: Stabilize 5.15.2-r10 ppc64, #806797

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

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

diff --git a/dev-qt/qthelp/qthelp-5.15.2-r10.ebuild 
b/dev-qt/qthelp/qthelp-5.15.2-r10.ebuild
index 75235890894..2c598ff76a0 100644
--- a/dev-qt/qthelp/qthelp-5.15.2-r10.ebuild
+++ b/dev-qt/qthelp/qthelp-5.15.2-r10.ebuild
@@ -10,7 +10,7 @@ inherit qt5-build
 DESCRIPTION="Qt5 module for integrating online documentation into applications"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE=""



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

2021-10-16 Thread Sam James
commit: 971563881c4f043600d831e42255b9644f9c14a3
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97156388

dev-qt/assistant: Stabilize 5.15.2-r11 ppc64, #806797

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

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

diff --git a/dev-qt/assistant/assistant-5.15.2-r11.ebuild 
b/dev-qt/assistant/assistant-5.15.2-r11.ebuild
index 7f52c026f46..4fb7695223e 100644
--- a/dev-qt/assistant/assistant-5.15.2-r11.ebuild
+++ b/dev-qt/assistant/assistant-5.15.2-r11.ebuild
@@ -10,7 +10,7 @@ inherit desktop qt5-build xdg-utils
 DESCRIPTION="Tool for viewing on-line documentation in Qt help file format"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc64 ~sparc x86"
+   KEYWORDS="amd64 ~arm arm64 ~hppa ppc64 ~sparc x86"
 fi
 
 IUSE=""



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

2021-10-16 Thread Sam James
commit: d43cafc810456da5b11222ca3db6795aca6011f9
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:02 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d43cafc8

dev-qt/qtimageformats: Stabilize 5.15.2-r10 ppc64, #806797

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

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

diff --git a/dev-qt/qtimageformats/qtimageformats-5.15.2-r10.ebuild 
b/dev-qt/qtimageformats/qtimageformats-5.15.2-r10.ebuild
index 2abdd63fcca..5d58b6ffc55 100644
--- a/dev-qt/qtimageformats/qtimageformats-5.15.2-r10.ebuild
+++ b/dev-qt/qtimageformats/qtimageformats-5.15.2-r10.ebuild
@@ -9,7 +9,7 @@ inherit qt5-build
 DESCRIPTION="Additional format plugins for the Qt image I/O system"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 ~arm arm64 ~hppa ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="mng"



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

2021-10-16 Thread Sam James
commit: 6f5fe8a88c3427d0253daa4582910c903dc51fa2
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:26:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:26:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f5fe8a8

dev-qt/qtwidgets: Stabilize 5.15.2-r11 ppc64, #806797

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

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

diff --git a/dev-qt/qtwidgets/qtwidgets-5.15.2-r11.ebuild 
b/dev-qt/qtwidgets/qtwidgets-5.15.2-r11.ebuild
index c7862b854eb..10d1e1045a4 100644
--- a/dev-qt/qtwidgets/qtwidgets-5.15.2-r11.ebuild
+++ b/dev-qt/qtwidgets/qtwidgets-5.15.2-r11.ebuild
@@ -10,7 +10,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 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 # keep IUSE defaults in sync with qtgui



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

2021-10-16 Thread Sam James
commit: 4c071dbb16374fd11a8a95d676838600435a0ccd
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c071dbb

dev-qt/qtxml: Stabilize 5.15.2-r10 ppc64, #806797

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

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

diff --git a/dev-qt/qtxml/qtxml-5.15.2-r10.ebuild 
b/dev-qt/qtxml/qtxml-5.15.2-r10.ebuild
index 268662f96c9..e5aaf50a816 100644
--- a/dev-qt/qtxml/qtxml-5.15.2-r10.ebuild
+++ b/dev-qt/qtxml/qtxml-5.15.2-r10.ebuild
@@ -10,7 +10,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 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE=""



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

2021-10-16 Thread Sam James
commit: 2409d002c5a1175dc72a59aac06b9b7123570d8a
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:08 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2409d002

dev-qt/qtwayland: Stabilize 5.15.2-r14 ppc64, #806797

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

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

diff --git a/dev-qt/qtwayland/qtwayland-5.15.2-r14.ebuild 
b/dev-qt/qtwayland/qtwayland-5.15.2-r14.ebuild
index 013c7c42593..2d46f37afb9 100644
--- a/dev-qt/qtwayland/qtwayland-5.15.2-r14.ebuild
+++ b/dev-qt/qtwayland/qtwayland-5.15.2-r14.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="Wayland platform plugin for Qt"
 SLOT=5/${QT5_PV} # bug 815646
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="vulkan X"



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

2021-10-16 Thread Sam James
commit: fa73e1a8559adeaa7cd5213fab63283863cc432f
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:07 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa73e1a8

dev-qt/qtsvg: Stabilize 5.15.2-r10 ppc64, #806797

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

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

diff --git a/dev-qt/qtsvg/qtsvg-5.15.2-r10.ebuild 
b/dev-qt/qtsvg/qtsvg-5.15.2-r10.ebuild
index 926ce9db4bc..a4f3e4a3cf8 100644
--- a/dev-qt/qtsvg/qtsvg-5.15.2-r10.ebuild
+++ b/dev-qt/qtsvg/qtsvg-5.15.2-r10.ebuild
@@ -9,7 +9,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 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE=""



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

2021-10-16 Thread Sam James
commit: 8edc1b4df2d3ddf8eef1193f9011055b4bf71e52
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:26:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:26:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8edc1b4d

dev-qt/qtgui: Stabilize 5.15.2-r13 ppc64, #806797

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

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

diff --git a/dev-qt/qtgui/qtgui-5.15.2-r13.ebuild 
b/dev-qt/qtgui/qtgui-5.15.2-r13.ebuild
index 6504f338542..e99bb4c91d5 100644
--- a/dev-qt/qtgui/qtgui-5.15.2-r13.ebuild
+++ b/dev-qt/qtgui/qtgui-5.15.2-r13.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="The GUI module and platform plugins for the Qt5 
framework"
 SLOT=5/${QT5_PV} # bug 707658
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="accessibility dbus egl eglfs evdev +gif gles2-only ibus jpeg



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

2021-10-16 Thread Sam James
commit: 5e0b6bb5d42bdb2816770a38ea18db238e4c28fa
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:26:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:26:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e0b6bb5

dev-qt/qtconcurrent: Stabilize 5.15.2-r10 ppc64, #806797

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

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

diff --git a/dev-qt/qtconcurrent/qtconcurrent-5.15.2-r10.ebuild 
b/dev-qt/qtconcurrent/qtconcurrent-5.15.2-r10.ebuild
index 7488ab63fec..2c95c8bd96f 100644
--- a/dev-qt/qtconcurrent/qtconcurrent-5.15.2-r10.ebuild
+++ b/dev-qt/qtconcurrent/qtconcurrent-5.15.2-r10.ebuild
@@ -10,7 +10,7 @@ inherit qt5-build
 DESCRIPTION="Multi-threading concurrence support library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE=""



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

2021-10-16 Thread Sam James
commit: 4143ce504cd81372dd75a6dad6cfbf5a58e79fb0
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:03 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4143ce50

dev-qt/qtopengl: Stabilize 5.15.2-r11 ppc64, #806797

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

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

diff --git a/dev-qt/qtopengl/qtopengl-5.15.2-r11.ebuild 
b/dev-qt/qtopengl/qtopengl-5.15.2-r11.ebuild
index 340303cebc4..0be3e8f111b 100644
--- a/dev-qt/qtopengl/qtopengl-5.15.2-r11.ebuild
+++ b/dev-qt/qtopengl/qtopengl-5.15.2-r11.ebuild
@@ -11,7 +11,7 @@ inherit qt5-build
 DESCRIPTION="OpenGL support library for the Qt5 framework (deprecated)"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="gles2-only"



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

2021-10-16 Thread Sam James
commit: 501763bad52dfc1d7e2283114b9008852a7528b8
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:27:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:27:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=501763ba

dev-qt/qtdeclarative: Stabilize 5.15.2-r12 ppc64, #806797

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

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

diff --git a/dev-qt/qtdeclarative/qtdeclarative-5.15.2-r12.ebuild 
b/dev-qt/qtdeclarative/qtdeclarative-5.15.2-r12.ebuild
index 6e86ee6070b..9270b31774e 100644
--- a/dev-qt/qtdeclarative/qtdeclarative-5.15.2-r12.ebuild
+++ b/dev-qt/qtdeclarative/qtdeclarative-5.15.2-r12.ebuild
@@ -10,7 +10,7 @@ inherit python-any-r1 qt5-build
 DESCRIPTION="The QML and Quick modules for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="gles2-only +jit localstorage vulkan +widgets"



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

2021-10-16 Thread Sam James
commit: 86728980f08e951c953015b915f9a40ff066f104
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:26:55 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:26:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86728980

dev-qt/qtdbus: Stabilize 5.15.2-r10 ppc64, #806797

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

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

diff --git a/dev-qt/qtdbus/qtdbus-5.15.2-r10.ebuild 
b/dev-qt/qtdbus/qtdbus-5.15.2-r10.ebuild
index 6ebb1d4d157..8e425cd4fcf 100644
--- a/dev-qt/qtdbus/qtdbus-5.15.2-r10.ebuild
+++ b/dev-qt/qtdbus/qtdbus-5.15.2-r10.ebuild
@@ -10,7 +10,7 @@ inherit qt5-build
 DESCRIPTION="Qt5 module for inter-process communication over the D-Bus 
protocol"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE=""



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

2021-10-16 Thread Sam James
commit: c8e6f18e02ba49967deaa001869f7d1434117164
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:26:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:26:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8e6f18e

dev-qt/qtsql: Stabilize 5.15.2-r10 ppc64, #806797

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

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

diff --git a/dev-qt/qtsql/qtsql-5.15.2-r10.ebuild 
b/dev-qt/qtsql/qtsql-5.15.2-r10.ebuild
index 20503946883..9730cabbda7 100644
--- a/dev-qt/qtsql/qtsql-5.15.2-r10.ebuild
+++ b/dev-qt/qtsql/qtsql-5.15.2-r10.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="SQL abstraction library for the Qt5 framework"
 SLOT=5/${QT5_PV} # bug 639140
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="freetds mysql oci8 odbc postgres +sqlite"



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

2021-10-16 Thread Sam James
commit: 24b6dbd9fb9ba86133b6fbc7aa2a8c74c9229f14
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:26:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:26:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24b6dbd9

dev-qt/qtnetwork: Stabilize 5.15.2-r11 ppc64, #806797

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

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

diff --git a/dev-qt/qtnetwork/qtnetwork-5.15.2-r11.ebuild 
b/dev-qt/qtnetwork/qtnetwork-5.15.2-r11.ebuild
index bc183a01e72..eeb41e78d4e 100644
--- a/dev-qt/qtnetwork/qtnetwork-5.15.2-r11.ebuild
+++ b/dev-qt/qtnetwork/qtnetwork-5.15.2-r11.ebuild
@@ -10,7 +10,7 @@ inherit qt5-build
 DESCRIPTION="Network abstraction library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 IUSE="bindist connman gssapi libproxy networkmanager sctp +ssl"



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

2021-10-16 Thread Sam James
commit: 0f232990a42ad3de9f10faadc6125b0ba6be53cd
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:13:27 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:13:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f232990

dev-cpp/yaml-cpp: Stabilize 0.7.0-r1 arm64, #813207

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

 dev-cpp/yaml-cpp/yaml-cpp-0.7.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/yaml-cpp/yaml-cpp-0.7.0-r1.ebuild 
b/dev-cpp/yaml-cpp/yaml-cpp-0.7.0-r1.ebuild
index aa6dcdf6eac..77f6bb3f5c1 100644
--- a/dev-cpp/yaml-cpp/yaml-cpp-0.7.0-r1.ebuild
+++ b/dev-cpp/yaml-cpp/yaml-cpp-0.7.0-r1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/yaml-cpp-${P}"
 
 LICENSE="MIT"
 SLOT="0/0.7"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 ~riscv sparc x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="amd64 ~arm arm64 ~hppa ppc ppc64 ~riscv sparc x86 ~amd64-linux 
~x86-linux"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-ml/uutf/

2021-10-16 Thread Sam James
commit: 4cc1a960c30a7c62f9305763cb6765d5edb32e9e
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:13:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:13:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cc1a960

dev-ml/uutf: Stabilize 1.0.2 arm64, #817746

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

 dev-ml/uutf/uutf-1.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/uutf/uutf-1.0.2.ebuild b/dev-ml/uutf/uutf-1.0.2.ebuild
index 6ceb77ea7d6..3c7a96f00fe 100644
--- a/dev-ml/uutf/uutf-1.0.2.ebuild
+++ b/dev-ml/uutf/uutf-1.0.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/uutf/releases/${P}.tbz;
 
 LICENSE="ISC"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 x86"
 IUSE="doc utftrip +ocamlopt test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="utftrip? ( ocamlopt )"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-migrate-parsetree/

2021-10-16 Thread Sam James
commit: a846f5f8d0767ce9e20f508cf1edf57274867428
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:13:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:13:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a846f5f8

dev-ml/ocaml-migrate-parsetree: Stabilize 2.2.0 arm64, #817725

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

 dev-ml/ocaml-migrate-parsetree/ocaml-migrate-parsetree-2.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-ml/ocaml-migrate-parsetree/ocaml-migrate-parsetree-2.2.0.ebuild 
b/dev-ml/ocaml-migrate-parsetree/ocaml-migrate-parsetree-2.2.0.ebuild
index 1dd88300302..8f2728936c1 100644
--- a/dev-ml/ocaml-migrate-parsetree/ocaml-migrate-parsetree-2.2.0.ebuild
+++ b/dev-ml/ocaml-migrate-parsetree/ocaml-migrate-parsetree-2.2.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/let-def/ocaml-migrate-parsetree/archive/v${PV}.tar.g
 
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 x86"
 IUSE="+ocamlopt test"
 RESTRICT="!test? ( test ) strip"
 



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

2021-10-16 Thread Sam James
commit: 599d1cd3bcf48f7d78d8dcffe9aa7a43f7401717
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:13:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:13:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=599d1cd3

app-arch/snappy: Stabilize 1.1.9 arm64, #817659

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

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

diff --git a/app-arch/snappy/snappy-1.1.9.ebuild 
b/app-arch/snappy/snappy-1.1.9.ebuild
index 80460a24d07..2e8c31a5aa5 100644
--- a/app-arch/snappy/snappy-1.1.9.ebuild
+++ b/app-arch/snappy/snappy-1.1.9.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/google/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0/${PV%%.*}"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-ml/labltk/

2021-10-16 Thread Sam James
commit: 54895b545ea7cdce738e83a26c0955fb51cfba3e
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:12:51 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:12:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54895b54

dev-ml/labltk: Stabilize 8.06.10 arm, #804774

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

 dev-ml/labltk/labltk-8.06.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/labltk/labltk-8.06.10.ebuild 
b/dev-ml/labltk/labltk-8.06.10.ebuild
index 75e150f1c7b..136043cd273 100644
--- a/dev-ml/labltk/labltk-8.06.10.ebuild
+++ b/dev-ml/labltk/labltk-8.06.10.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/garrigue/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="QPL-1.0 LGPL-2"
 SLOT="0/${PV}"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 x86 ~amd64-linux 
~x86-linux"
 IUSE="+ocamlopt X"
 
 RDEPEND="dev-lang/tk:=



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

2021-10-16 Thread Sam James
commit: ac34e1fedda2380e4f0852965e48a9a11ad640da
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:13:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:13:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac34e1fe

dev-libs/libuv: Stabilize 1.42.0 arm64, #812752

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

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

diff --git a/dev-libs/libuv/libuv-1.42.0.ebuild 
b/dev-libs/libuv/libuv-1.42.0.ebuild
index c64a64a9f97..b12f873bf1a 100644
--- a/dev-libs/libuv/libuv-1.42.0.ebuild
+++ b/dev-libs/libuv/libuv-1.42.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} = * ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/libuv/libuv/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="BSD BSD-2 ISC MIT"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/camlp4/

2021-10-16 Thread Sam James
commit: 7f845881119b76db507a9a66e4a32b634a49e961
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:12:50 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:12:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f845881

dev-ml/camlp4: Stabilize 4.11_p1-r2 arm, #804774

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

 dev-ml/camlp4/camlp4-4.11_p1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/camlp4/camlp4-4.11_p1-r2.ebuild 
b/dev-ml/camlp4/camlp4-4.11_p1-r2.ebuild
index f1b3eb00f6e..51b6de4ca95 100644
--- a/dev-ml/camlp4/camlp4-4.11_p1-r2.ebuild
+++ b/dev-ml/camlp4/camlp4-4.11_p1-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/camlp4/camlp4/archive/${MY_PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="LGPL-2-with-linking-exception"
 SLOT="0/${PV}"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 x86 ~amd64-linux 
~x86-linux"
 IUSE="+ocamlopt"
 
 RDEPEND="dev-lang/ocaml:0/$(ver_cut 1-2)[ocamlopt?]"



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

2021-10-16 Thread Sam James
commit: 17b26229b3d9a3957353350770bd3b6088c598cd
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:12:55 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:12:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17b26229

dev-python/pillow: Stabilize 8.3.0 arm, #802090

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

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

diff --git a/dev-python/pillow/pillow-8.3.0.ebuild 
b/dev-python/pillow/pillow-8.3.0.ebuild
index b3b3ee316bb..75155d5ba11 100644
--- a/dev-python/pillow/pillow-8.3.0.ebuild
+++ b/dev-python/pillow/pillow-8.3.0.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux"
 IUSE="examples imagequant +jpeg jpeg2k lcms test tiff tk truetype webp xcb 
zlib"
 REQUIRED_USE="test? ( jpeg jpeg2k tiff truetype )"
 RESTRICT="!test? ( test )"



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

2021-10-16 Thread Sam James
commit: d88a997f7cfdfdb5aa7ce4e24a3d60b9d0d2ddd7
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:12:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:12:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d88a997f

dev-lang/ocaml: Stabilize 4.11.2-r2 arm, #804774

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

 dev-lang/ocaml/ocaml-4.11.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/ocaml/ocaml-4.11.2-r2.ebuild 
b/dev-lang/ocaml/ocaml-4.11.2-r2.ebuild
index f8605967166..2d52afb654e 100644
--- a/dev-lang/ocaml/ocaml-4.11.2-r2.ebuild
+++ b/dev-lang/ocaml/ocaml-4.11.2-r2.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Programming language supporting functional, 
imperative & object-ori
 
 LICENSE="QPL-1.0 LGPL-2"
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
 IUSE="emacs flambda latex +ocamlopt spacetime xemacs"
 
 RDEPEND="sys-libs/binutils-libs:=



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

2021-10-16 Thread Sam James
commit: d5b5288d2eda333a283575c184c61f062cea7918
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 00:08:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:09:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5b5288d

net-libs/libnids: don't inline exported functions

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

 .../libnids/files/libnids-1.24-no-inline.patch | 43 ++
 ...bnids-1.24-r7.ebuild => libnids-1.24-r8.ebuild} | 18 -
 2 files changed, 52 insertions(+), 9 deletions(-)

diff --git a/net-libs/libnids/files/libnids-1.24-no-inline.patch 
b/net-libs/libnids/files/libnids-1.24-no-inline.patch
new file mode 100644
index 000..8a57c6354d3
--- /dev/null
+++ b/net-libs/libnids/files/libnids-1.24-no-inline.patch
@@ -0,0 +1,43 @@
+https://src.fedoraproject.org/rpms/libnids/raw/rawhide/f/libnids-1.24-inline.patch
+https://bugs.gentoo.org/818517
+
+Patch by Robert Scheck  for libnids <= 1.24 which
+avoids making the functions ip_fast_csum, ip_compute_csum, my_tcp_check and
+my_udp_check inline, see https://github.com/aol/moloch/issues/440 as well.
+
+--- a/src/checksum.c
 b/src/checksum.c
+@@ -120,7 +120,7 @@
+   By Jorge Cwik , adapted for linux by Arnt
+   Gulbrandsen.
+ */
+-inline u_short ip_fast_csum(u_char * iph, u_int ihl)
++u_short ip_fast_csum(u_char * iph, u_int ihl)
+ {
+   u_int sum;
+   if (dontchksum(((struct ip*)iph)->ip_src.s_addr))
+@@ -191,13 +191,13 @@
+   this routine is used for miscellaneous IP-like checksums, mainly in
+   icmp.c
+ */
+-inline u_short
++u_short
+ ip_compute_csum(u_char * buff, int len)
+ {
+   return (csum_fold(csum_partial(buff, len, 0)));
+ }
+ 
+-inline u_short
++u_short
+ my_tcp_check(struct tcphdr *th, int len, u_int saddr, u_int daddr)
+ {
+   if (dontchksum(saddr))
+@@ -205,7 +205,7 @@
+   return csum_tcpudp_magic(saddr, daddr, len, IPPROTO_TCP,
+  csum_partial((u_char *)th, len, 0));
+ }
+-inline u_short
++u_short
+ my_udp_check(void *u, int len, u_int saddr, u_int daddr)
+ {
+   if (dontchksum(saddr))

diff --git a/net-libs/libnids/libnids-1.24-r7.ebuild 
b/net-libs/libnids/libnids-1.24-r8.ebuild
similarity index 82%
rename from net-libs/libnids/libnids-1.24-r7.ebuild
rename to net-libs/libnids/libnids-1.24-r8.ebuild
index aec872f3286..a993c8d9129 100644
--- a/net-libs/libnids/libnids-1.24-r7.ebuild
+++ b/net-libs/libnids/libnids-1.24-r8.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+
 inherit autotools flag-o-matic toolchain-funcs
 
 DESCRIPTION="an implementation of an E-component of Network Intrusion 
Detection System"
@@ -13,20 +14,18 @@ SLOT="1.2"
 KEYWORDS="amd64 ppc x86"
 IUSE="+glib +libnet static-libs"
 
-RDEPEND="
-   !net-libs/libnids:1.1
+RDEPEND="!net-libs/libnids:1.1
net-libs/libpcap
glib? ( dev-libs/glib:2 )
-   libnet? ( >=net-libs/libnet-1.1.0-r3 )
-"
-DEPEND="
-   ${RDEPEND}
-   glib? ( virtual/pkgconfig )
-"
+   libnet? ( >=net-libs/libnet-1.1.0-r3 )"
+DEPEND="${RDEPEND}"
+BDEPEND="glib? ( virtual/pkgconfig )"
+
 PATCHES=(
"${FILESDIR}"/${P}-ldflags.patch
"${FILESDIR}"/${P}-libdir.patch
"${FILESDIR}"/${P}-static-libs.patch
+   "${FILESDIR}"/${P}-no-inline.patch
 )
 
 src_prepare() {
@@ -36,6 +35,7 @@ src_prepare() {
 
 src_configure() {
tc-export AR
+
append-flags -fno-strict-aliasing
 
econf \



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

2021-10-16 Thread Sam James
commit: 670728e3cc76e18fd20368db425bacb08c29ba40
Author: Sam James  gentoo  org>
AuthorDate: Sat Oct 16 23:59:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 00:08:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=670728e3

dev-python/cachelib: skip fragile Redis tests

Involves spawning a daemon and that never
seems to go well reliably.

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

 dev-python/cachelib/cachelib-0.3.0.ebuild | 6 +-
 dev-python/cachelib/cachelib-0.4.1.ebuild | 6 +-
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/dev-python/cachelib/cachelib-0.3.0.ebuild 
b/dev-python/cachelib/cachelib-0.3.0.ebuild
index 3ec6572206d..3655d313ef2 100644
--- a/dev-python/cachelib/cachelib-0.3.0.ebuild
+++ b/dev-python/cachelib/cachelib-0.3.0.ebuild
@@ -17,7 +17,6 @@ KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 
 BDEPEND="
test? (
-   dev-db/redis
dev-python/pylibmc[${PYTHON_USEDEP}]
dev-python/pytest-xprocess[${PYTHON_USEDEP}]
dev-python/redis-py[${PYTHON_USEDEP}]
@@ -26,3 +25,8 @@ BDEPEND="
)"
 
 distutils_enable_tests pytest
+
+EPYTEST_IGNORE=(
+   # bug #818523
+   tests/test_redis_cache.py
+)

diff --git a/dev-python/cachelib/cachelib-0.4.1.ebuild 
b/dev-python/cachelib/cachelib-0.4.1.ebuild
index 3ec6572206d..3655d313ef2 100644
--- a/dev-python/cachelib/cachelib-0.4.1.ebuild
+++ b/dev-python/cachelib/cachelib-0.4.1.ebuild
@@ -17,7 +17,6 @@ KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 
 BDEPEND="
test? (
-   dev-db/redis
dev-python/pylibmc[${PYTHON_USEDEP}]
dev-python/pytest-xprocess[${PYTHON_USEDEP}]
dev-python/redis-py[${PYTHON_USEDEP}]
@@ -26,3 +25,8 @@ BDEPEND="
)"
 
 distutils_enable_tests pytest
+
+EPYTEST_IGNORE=(
+   # bug #818523
+   tests/test_redis_cache.py
+)



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

2021-10-16 Thread Georgy Yakovlev
commit: f975d077fc58e6cea0cf3f7ae6445550920adecc
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Oct 16 23:57:26 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Oct 17 00:03:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f975d077

dev-util/bear: revbump for hlohmann_json dep adjustment

This effectively reverts commit 337bfe306203ea8a984452d8a3e08a4044bf74a0.
But we do a revision bump for dep change

Bear-issue: https://github.com/rizsotto/Bear/issues/420
Closes: https://bugs.gentoo.org/817233
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-util/bear/{bear-3.0.16-r1.ebuild => bear-3.0.16-r2.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/bear/bear-3.0.16-r1.ebuild 
b/dev-util/bear/bear-3.0.16-r2.ebuild
similarity index 98%
rename from dev-util/bear/bear-3.0.16-r1.ebuild
rename to dev-util/bear/bear-3.0.16-r2.ebuild
index dd769033b4b..ce27dec8b19 100644
--- a/dev-util/bear/bear-3.0.16-r1.ebuild
+++ b/dev-util/bear/bear-3.0.16-r2.ebuild
@@ -17,7 +17,7 @@ KEYWORDS="~amd64 ~ppc64 ~x86"
 IUSE="test"
 
 RDEPEND="
-   =dev-cpp/nlohmann_json-3.7:=
>=dev-db/sqlite-3.14:=
>=dev-libs/libfmt-6.2:=
dev-libs/protobuf:=



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

2021-10-16 Thread Georgy Yakovlev
commit: b5c40a9ace50128951aaf2ddd6df3d727c0cebe3
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Oct 16 23:54:34 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Oct 17 00:00:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5c40a9a

dev-cpp/nlohmann_json: add 3.10.4, drop 3.10.3

Upstream-issue:  https://github.com/nlohmann/json/issues/3070
Bear-issue: https://github.com/rizsotto/Bear/issues/420
Bug: https://bugs.gentoo.org/817233
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-cpp/nlohmann_json/Manifest  | 2 +-
 .../{nlohmann_json-3.10.3.ebuild => nlohmann_json-3.10.4.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/nlohmann_json/Manifest b/dev-cpp/nlohmann_json/Manifest
index 071915c2938..5234c2e1989 100644
--- a/dev-cpp/nlohmann_json/Manifest
+++ b/dev-cpp/nlohmann_json/Manifest
@@ -1,5 +1,5 @@
 DIST nlohmann_json-3.10.0.tar.gz 7006504 BLAKE2B 
2ccb2e50a46a8579b6a848f6fee35ad1ff11a1491157bdf5d343133f24d4468ddfabc4fe4e9909b47011d52b3604566d5d7e275f0731c8d91efd1e1b9c545ef2
 SHA512 
1531780110260ea4cd8fbe79d860f1ea46fa8377d520669f938ddb5f8a4b11fe550fc7d2d978a281d5ddcc511447d160a2f68c06583672496c57c6672a4036a1
 DIST nlohmann_json-3.10.2.tar.gz 7054440 BLAKE2B 
e7da213fb75d528b1f5425822f5b598e882f232a67670aaae2d8f89c76e72ee23fa3344d1acfef2b0338a6a423d17b231b7e047ff064c984c2ec7783b721a22c
 SHA512 
9a399dfc8aab19c9fc12470e8087895b1c05d48a9bcc731b483d8670c361cffb2adc3ccced822b7f17255e88387a441d619c4e1f1afeb702d1d035ad24fe22ed
-DIST nlohmann_json-3.10.3.tar.gz 7061586 BLAKE2B 
266dc441a88b36c2314d5fb85699b03ba054be0d620718c62949a5860d7678bc07aede206b353d7d25b81e8813c1ec1190db6d322ff2c5bbcbdab7a2f3dc4c59
 SHA512 
92d438e9c23480ebc3f335213c77b0872524530f1118f9bba269ac4ec500c485e18e5e774bd0cf3c428db2f344c39a42b98dcc7e83121be0adcee301e415a0ea
+DIST nlohmann_json-3.10.4.tar.gz 7062443 BLAKE2B 
7f526d12c4ce8148c874c76d280090ef69ae3adf817b63758bbcc23ff9476e119ede90bebc397b9bb84b54012f057e3e010d643c595b4699a8ecd437a5a3f913
 SHA512 
f78592db6218165cbc74c10bcba40366f1bfea84405b7ee25fe97a056d5b7a15aeeb956d93296673928dcbd6e26ffcfb152f885b4a44d5d55751396ccf090835
 DIST nlohmann_json-3.9.1.tar.gz 6882818 BLAKE2B 
97276dc2345ac2070ac2d30d0a2e1953bb2f6ecde437eaed87dad46c108daa4b21c662a047e7d4e7c180179df9e7dfb71f545f3e42b2528201630d9093539090
 SHA512 
e0eb4727bea993af984f832e069d03a21219befae0f24ee49e67a1144cf1e8428dcf2e37f683aedb8d14118545d5087f2b7d822a576944cef3e590a12be51642
 DIST nlohmann_json-testdata-3.0.0.tar.gz 112348454 BLAKE2B 
f0a47b41805bf1426f612e9a82efea2a3e5b1c15740c1c531d859e60dc5daeb85209b4fe363fd8fb84e3bbf01a2578c74538ba3e769726494047979f5a4d468d
 SHA512 
d9af8419b837c592ec7519cd5772651c761078a9c43cf2a309cee55c323aee0df0c233fb58a07d5ee2e77492ac8b16398de234b387eae037a60e3c9ba5b08891

diff --git a/dev-cpp/nlohmann_json/nlohmann_json-3.10.3.ebuild 
b/dev-cpp/nlohmann_json/nlohmann_json-3.10.4.ebuild
similarity index 100%
rename from dev-cpp/nlohmann_json/nlohmann_json-3.10.3.ebuild
rename to dev-cpp/nlohmann_json/nlohmann_json-3.10.4.ebuild



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

2021-10-16 Thread Sam James
commit: d6a0bf9437a7278215c25a7e3f65cdbb5a8608d6
Author: Sam James  gentoo  org>
AuthorDate: Sat Oct 16 23:41:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Oct 16 23:41:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6a0bf94

dev-util/clazy: run tests against built copy of clazy

This doesn't get us all of the way there yet though,
tests still fail due to Clang shenanigans with include
paths(?)

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

 dev-util/clazy/clazy-1.10.ebuild | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-util/clazy/clazy-1.10.ebuild b/dev-util/clazy/clazy-1.10.ebuild
index 7f7ef80b920..160c50c5c64 100644
--- a/dev-util/clazy/clazy-1.10.ebuild
+++ b/dev-util/clazy/clazy-1.10.ebuild
@@ -36,3 +36,9 @@ src_configure() {
export LLVM_ROOT="/usr/lib/llvm/$(ver_cut 1 
${clang_version##sys-devel/clang-})"
cmake_src_configure
 }
+
+src_test() {
+   # Run tests against built copy, not installed
+   # bug #811723
+   PATH="${BUILD_DIR}/bin:${PATH}" LD_LIBRARY_PATH="${BUILD_DIR}/lib" 
cmake_src_test
+}



  1   2   3   4   5   >