[gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-solver/, dev-ml/opam-solver/files/

2021-06-06 Thread Sam James
commit: 44a31e3306b4435bc9250118a8f36c2c8b75bad1
Author: Hank Leininger  korelogic  com>
AuthorDate: Wed May  5 17:33:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun  6 23:55:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44a31e33

dev-ml/opam-solver: patch for dose3-6.x compat

Lifted from Debian, see https://bugs.debian.org/982733

Signed-off-by: Hank Leininger  korelogic.com>
Closes: https://bugs.gentoo.org/788265
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Sam James  gentoo.org>

 .../files/debian-Port-to-Dose3-6.0.1.patch | 142 +
 dev-ml/opam-solver/opam-solver-2.0.8-r1.ebuild |  42 ++
 2 files changed, 184 insertions(+)

diff --git a/dev-ml/opam-solver/files/debian-Port-to-Dose3-6.0.1.patch 
b/dev-ml/opam-solver/files/debian-Port-to-Dose3-6.0.1.patch
new file mode 100644
index 000..a8af27416df
--- /dev/null
+++ b/dev-ml/opam-solver/files/debian-Port-to-Dose3-6.0.1.patch
@@ -0,0 +1,142 @@
+From: Mehdi Dogguy 
+Date: Sun, 28 Feb 2021 19:27:24 +0100
+Subject: Port to Dose3 6.0.1
+
+---
+ src/client/opamAdminCheck.ml   | 2 ++
+ src/client/opamAdminRepoUpgrade.ml | 2 ++
+ src/solver/opamBuiltinMccs.ml.real | 2 +-
+ src/solver/opamCudf.ml | 5 -
+ src/solver/opamCudf.mli| 4 ++--
+ src/solver/opamCudfSolver.ml   | 4 ++--
+ src/solver/opamSolver.ml   | 4 +++-
+ 7 files changed, 16 insertions(+), 7 deletions(-)
+
+diff --git a/src/client/opamAdminCheck.ml b/src/client/opamAdminCheck.ml
+index 05543a2..f23bfc4 100644
+--- a/src/client/opamAdminCheck.ml
 b/src/client/opamAdminCheck.ml
+@@ -8,6 +8,8 @@
+ (**)
+ (**)
+ 
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamPackage.Set.Op
+ 
+diff --git a/src/client/opamAdminRepoUpgrade.ml 
b/src/client/opamAdminRepoUpgrade.ml
+index 0be53b2..635e792 100644
+--- a/src/client/opamAdminRepoUpgrade.ml
 b/src/client/opamAdminRepoUpgrade.ml
+@@ -8,6 +8,8 @@
+ (**)
+ (**)
+ 
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamProcess.Job.Op
+ open OpamStd.Option.Op
+diff --git a/src/solver/opamBuiltinMccs.ml.real 
b/src/solver/opamBuiltinMccs.ml.real
+index ab39ab3..2b41982 100644
+--- a/src/solver/opamBuiltinMccs.ml.real
 b/src/solver/opamBuiltinMccs.ml.real
+@@ -35,7 +35,7 @@ let call solver_backend ext ~criteria ?timeout cudf =
+   ~verbose:OpamCoreConfig.(!r.debug_level >= 2)
+   ?timeout criteria cudf
+   with
+-  | None -> raise Common.CudfSolver.Unsat
++  | None -> raise Dose_common.CudfSolver.Unsat
+   | Some (preamble, univ) -> Some preamble, univ
+   | exception Mccs.Timeout -> raise Timeout
+ 
+diff --git a/src/solver/opamCudf.ml b/src/solver/opamCudf.ml
+index e07ff54..ad7293c 100644
+--- a/src/solver/opamCudf.ml
 b/src/solver/opamCudf.ml
+@@ -9,6 +9,9 @@
+ (**)
+ (**)
+ 
++module Common = Dose_common
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamTypesBase
+ 
+@@ -634,7 +637,7 @@ let call_external_solver ~version_map univ req =
+   let r =
+ Algo.Depsolver.check_request_using
+   ~call_solver:(OpamSolverConfig.call_solver ~criteria)
+-  ~criteria ~explain:true cudf_request
++  ~explain:true cudf_request
+   in
+   log "Solver call done in %.3f" (chrono ());
+   r
+diff --git a/src/solver/opamCudf.mli b/src/solver/opamCudf.mli
+index cb8158d..c928ccf 100644
+--- a/src/solver/opamCudf.mli
 b/src/solver/opamCudf.mli
+@@ -24,7 +24,7 @@ module Map: OpamStd.MAP with type key = Cudf.package
+ module Graph: sig
+   (** Graph of cudf packages *)
+ 
+-  include module type of Algo.Defaultgraphs.PackageGraph.G
++  include module type of Dose_algo.Defaultgraphs.PackageGraph.G
+ 
+   (** Build a graph from a CUDF universe. Warning: dependency edges are 
towards
+   the dependency, which is the reverse of what happens in the action
+@@ -180,7 +180,7 @@ val string_of_vpkgs: Cudf_types.vpkg list -> string
+ 
+ val make_conflicts:
+   version_map:int package_map -> Cudf.universe ->
+-  Algo.Diagnostic.diagnosis -> ('a, conflict) result
++  Dose_algo.Diagnostic.diagnosis -> ('a, conflict) result
+ val cycle_conflict:
+   version_map:int package_map -> Cudf.universe ->
+   string list list -> ('a, conflict) result
+diff --git a/src/solver/opamCudfSolver.ml b/src/solver/opamCudfSolver.ml
+index 03486f1..2651373 100644
+--- a/src/solver/opamCudfSolver.ml
 b/src/solver/opamCudfSolver.ml
+@@ -57,7 +57,7 @@ let call_external_solver command ~criteria ?timeout (_, 
universe,_ as cudf) =
+ in

[gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-repository/, dev-ml/opam-repository/files/

2021-06-06 Thread Sam James
commit: 356c11601aabe4199a5df3036a50e095aedb5eb8
Author: Hank Leininger  korelogic  com>
AuthorDate: Wed May  5 17:17:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun  6 23:55:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=356c1160

dev-ml/opam-repository: patch for dose3-6.x compat

Lifted from Debian, see https://bugs.debian.org/982733

Signed-off-by: Hank Leininger  korelogic.com>
Closes: https://bugs.gentoo.org/788265
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Sam James  gentoo.org>

 .../files/debian-Port-to-Dose3-6.0.1.patch | 142 +
 .../opam-repository-2.0.8-r1.ebuild|  39 ++
 2 files changed, 181 insertions(+)

diff --git a/dev-ml/opam-repository/files/debian-Port-to-Dose3-6.0.1.patch 
b/dev-ml/opam-repository/files/debian-Port-to-Dose3-6.0.1.patch
new file mode 100644
index 000..a8af27416df
--- /dev/null
+++ b/dev-ml/opam-repository/files/debian-Port-to-Dose3-6.0.1.patch
@@ -0,0 +1,142 @@
+From: Mehdi Dogguy 
+Date: Sun, 28 Feb 2021 19:27:24 +0100
+Subject: Port to Dose3 6.0.1
+
+---
+ src/client/opamAdminCheck.ml   | 2 ++
+ src/client/opamAdminRepoUpgrade.ml | 2 ++
+ src/solver/opamBuiltinMccs.ml.real | 2 +-
+ src/solver/opamCudf.ml | 5 -
+ src/solver/opamCudf.mli| 4 ++--
+ src/solver/opamCudfSolver.ml   | 4 ++--
+ src/solver/opamSolver.ml   | 4 +++-
+ 7 files changed, 16 insertions(+), 7 deletions(-)
+
+diff --git a/src/client/opamAdminCheck.ml b/src/client/opamAdminCheck.ml
+index 05543a2..f23bfc4 100644
+--- a/src/client/opamAdminCheck.ml
 b/src/client/opamAdminCheck.ml
+@@ -8,6 +8,8 @@
+ (**)
+ (**)
+ 
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamPackage.Set.Op
+ 
+diff --git a/src/client/opamAdminRepoUpgrade.ml 
b/src/client/opamAdminRepoUpgrade.ml
+index 0be53b2..635e792 100644
+--- a/src/client/opamAdminRepoUpgrade.ml
 b/src/client/opamAdminRepoUpgrade.ml
+@@ -8,6 +8,8 @@
+ (**)
+ (**)
+ 
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamProcess.Job.Op
+ open OpamStd.Option.Op
+diff --git a/src/solver/opamBuiltinMccs.ml.real 
b/src/solver/opamBuiltinMccs.ml.real
+index ab39ab3..2b41982 100644
+--- a/src/solver/opamBuiltinMccs.ml.real
 b/src/solver/opamBuiltinMccs.ml.real
+@@ -35,7 +35,7 @@ let call solver_backend ext ~criteria ?timeout cudf =
+   ~verbose:OpamCoreConfig.(!r.debug_level >= 2)
+   ?timeout criteria cudf
+   with
+-  | None -> raise Common.CudfSolver.Unsat
++  | None -> raise Dose_common.CudfSolver.Unsat
+   | Some (preamble, univ) -> Some preamble, univ
+   | exception Mccs.Timeout -> raise Timeout
+ 
+diff --git a/src/solver/opamCudf.ml b/src/solver/opamCudf.ml
+index e07ff54..ad7293c 100644
+--- a/src/solver/opamCudf.ml
 b/src/solver/opamCudf.ml
+@@ -9,6 +9,9 @@
+ (**)
+ (**)
+ 
++module Common = Dose_common
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamTypesBase
+ 
+@@ -634,7 +637,7 @@ let call_external_solver ~version_map univ req =
+   let r =
+ Algo.Depsolver.check_request_using
+   ~call_solver:(OpamSolverConfig.call_solver ~criteria)
+-  ~criteria ~explain:true cudf_request
++  ~explain:true cudf_request
+   in
+   log "Solver call done in %.3f" (chrono ());
+   r
+diff --git a/src/solver/opamCudf.mli b/src/solver/opamCudf.mli
+index cb8158d..c928ccf 100644
+--- a/src/solver/opamCudf.mli
 b/src/solver/opamCudf.mli
+@@ -24,7 +24,7 @@ module Map: OpamStd.MAP with type key = Cudf.package
+ module Graph: sig
+   (** Graph of cudf packages *)
+ 
+-  include module type of Algo.Defaultgraphs.PackageGraph.G
++  include module type of Dose_algo.Defaultgraphs.PackageGraph.G
+ 
+   (** Build a graph from a CUDF universe. Warning: dependency edges are 
towards
+   the dependency, which is the reverse of what happens in the action
+@@ -180,7 +180,7 @@ val string_of_vpkgs: Cudf_types.vpkg list -> string
+ 
+ val make_conflicts:
+   version_map:int package_map -> Cudf.universe ->
+-  Algo.Diagnostic.diagnosis -> ('a, conflict) result
++  Dose_algo.Diagnostic.diagnosis -> ('a, conflict) result
+ val cycle_conflict:
+   version_map:int package_map -> Cudf.universe ->
+   string list list -> ('a, conflict) result
+diff --git a/src/solver/opamCudfSolver.ml b/src/solver/opamCudfSolver.ml
+index 03486f1..2651373 100644
+--- a/src/solver/opamCudfSolver.ml
 b/src/solver/opamCudfSolver.ml
+@@ -57,7 +57,7 @@ let call_external_solver command ~criteria ?timeout (_, 
universe,_ as 

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

2021-06-06 Thread Sam James
commit: 121f73a4e94454e2fc6fe3b200f9b40eaf2464c4
Author: Hank Leininger  korelogic  com>
AuthorDate: Tue May  4 22:48:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun  6 23:55:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=121f73a4

dev-ml/dose3: version bump for newer ocaml compat.

Switched to the Dune build system by copy-paste from other ebuilds.
Caveats: I don't know the right way to make some components optional
with Dune build systems; therefore, everything that used to be
conditional on USE is now mandatory. Also, ocaml-base64 is only
KEYWORDS=~amd64, so as a result that is the only arch I could keep for
dose3-6 atm without repoman having a fit.

Signed-off-by: Hank Leininger  korelogic.com>
Closes: https://bugs.gentoo.org/769821
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Sam James  gentoo.org>

 dev-ml/dose3/Manifest  |  2 ++
 dev-ml/dose3/dose3-6.0.1_p2.ebuild | 53 ++
 2 files changed, 55 insertions(+)

diff --git a/dev-ml/dose3/Manifest b/dev-ml/dose3/Manifest
index aaee3c2d0d8..13da65b0876 100644
--- a/dev-ml/dose3/Manifest
+++ b/dev-ml/dose3/Manifest
@@ -1,2 +1,4 @@
 DIST dose3_5.0.1-16.debian.tar.xz 39448 BLAKE2B 
a5ae8c74ee1a5a89bf3594cbaf0b37703fcf03a03e336c6b91626fcb6767518c517bf28ec4a24f6cbeb40e1544b34e95855507f39aacca110e8daa6e6e5d3994
 SHA512 
52d14a45bc0b0a66c4cf3acc05b479b1456c78fa8cb0e453a01dd2f0d849dfcf959bd9e8ff8d505272ad7ad542ff402013746816ead3ccd2dbd0bed572ee2930
 DIST dose3_5.0.1.orig.tar.gz 297433 BLAKE2B 
74ae954604f26398f091b4f14d2a633132ae62102f52af13284af27e41cd7c47afb1b533b0821a8921ba33fa6658e94b3bb6bf5f104f48881a50e14517cd65e2
 SHA512 
e66526319446054041f138ee2633043d0832089f6a554cf566a28de899d10383acfb1aa6bf1a368811602939676510933a7d2404fd34dbeba15045b458f5af84
+DIST dose3_6.0.1-2.debian.tar.xz 23320 BLAKE2B 
0351a715756b76c1f81fdf5599d10373ce85554f1d63b4dcbaa647dcf81b099e59c68f93413ca391bdf17b52831b085a7d2b86bc64d86676763bbabd7804a6a4
 SHA512 
219bb7614d1200adb5d22032cb3d7442c16cdce785088f58b3fcc188856b93817f0157ea6ed1bd72e1f565b9a98df145c188e0fa5d7f538d616b7eccc20ab706
+DIST dose3_6.0.1.orig.tar.gz 1417354 BLAKE2B 
c5fb08c853d2d3589416237addf767912fffab5ef74b7f3332799ae350a371307bd06a24abe6565d2d00aedc01f58d0a2583db6d2d76fc2ebee634b05405ab86
 SHA512 
cb9dad4ae296b85317f60133bb9dcc63dad8560486e2bd83139205810643e701de5e9834d8d2de34d8237d0abfd394970088c73eeab08956fc9c4178411303ea

diff --git a/dev-ml/dose3/dose3-6.0.1_p2.ebuild 
b/dev-ml/dose3/dose3-6.0.1_p2.ebuild
new file mode 100644
index 000..ca51186d7fa
--- /dev/null
+++ b/dev-ml/dose3/dose3-6.0.1_p2.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit dune
+
+DESCRIPTION="Library to perform analysis on package repositories"
+HOMEPAGE="http://www.mancoosi.org/software/ 
https://gforge.inria.fr/projects/dose";
+SRC_URI="http://deb.debian.org/debian/pool/main/d/dose3/${PN}_$(ver_cut 
1-3).orig.tar.gz"
+SRC_URI+=" 
http://deb.debian.org/debian/pool/main/d/dose3/${PN}_${PV/_p/-}.debian.tar.xz";
+S="${WORKDIR}/${PN}-$(ver_cut 1-3)"
+
+LICENSE="LGPL-3"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="+ocamlopt test"
+
+BDEPEND="
+   dev-ml/findlib
+   dev-ml/ocamlbuild
+"
+RDEPEND="
+   >=dev-lang/ocaml-4.03:=[ocamlopt=]
+   dev-ml/ocaml-base64:=[ocamlopt=]
+   >=dev-ml/cudf-0.7:=[ocamlopt=]
+   >=dev-ml/extlib-1.7.8:=[ocamlopt=]
+   >=dev-ml/ocamlgraph-2.0.0:=[ocamlopt=]
+   >=dev-ml/re-1.2.2:=[ocamlopt=]
+   dev-ml/parmap:=[ocamlopt=]
+   >=dev-ml/camlzip-1.08:=[ocamlopt=]
+   >=dev-ml/camlbz2-0.7.0:=
+   dev-ml/ocaml-expat:=[ocamlopt=]
+   dev-ml/xml-light:=[ocamlopt=]
+   app-arch/rpm
+"
+DEPEND="${RDEPEND}
+   test? ( dev-python/pyyaml[libyaml] )
+"
+
+# missing test data
+RESTRICT="test"
+
+QA_FLAGS_IGNORED='.*'
+
+src_prepare() {
+   default
+
+   elog "Applying Debian patchset..."
+   for file in "${WORKDIR}"/debian/patches/*.patch ; do
+   eapply "${file}"
+   done
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ml/opam/files/, dev-ml/opam/

2021-06-06 Thread Sam James
commit: 0fd664fe11178c6ce24f131bc2f0448d1556489e
Author: Hank Leininger  korelogic  com>
AuthorDate: Wed May  5 17:56:52 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun  6 23:55:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fd664fe

dev-ml/opam: patch for dose3-6.x compat

Lifted from Debian, see https://bugs.debian.org/982733

Signed-off-by: Hank Leininger  korelogic.com>
Closes: https://bugs.gentoo.org/788265
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Sam James  gentoo.org>

 dev-ml/opam/files/debian-Port-to-Dose3-6.0.1.patch | 142 +
 dev-ml/opam/opam-2.0.8-r2.ebuild   |  41 ++
 2 files changed, 183 insertions(+)

diff --git a/dev-ml/opam/files/debian-Port-to-Dose3-6.0.1.patch 
b/dev-ml/opam/files/debian-Port-to-Dose3-6.0.1.patch
new file mode 100644
index 000..a8af27416df
--- /dev/null
+++ b/dev-ml/opam/files/debian-Port-to-Dose3-6.0.1.patch
@@ -0,0 +1,142 @@
+From: Mehdi Dogguy 
+Date: Sun, 28 Feb 2021 19:27:24 +0100
+Subject: Port to Dose3 6.0.1
+
+---
+ src/client/opamAdminCheck.ml   | 2 ++
+ src/client/opamAdminRepoUpgrade.ml | 2 ++
+ src/solver/opamBuiltinMccs.ml.real | 2 +-
+ src/solver/opamCudf.ml | 5 -
+ src/solver/opamCudf.mli| 4 ++--
+ src/solver/opamCudfSolver.ml   | 4 ++--
+ src/solver/opamSolver.ml   | 4 +++-
+ 7 files changed, 16 insertions(+), 7 deletions(-)
+
+diff --git a/src/client/opamAdminCheck.ml b/src/client/opamAdminCheck.ml
+index 05543a2..f23bfc4 100644
+--- a/src/client/opamAdminCheck.ml
 b/src/client/opamAdminCheck.ml
+@@ -8,6 +8,8 @@
+ (**)
+ (**)
+ 
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamPackage.Set.Op
+ 
+diff --git a/src/client/opamAdminRepoUpgrade.ml 
b/src/client/opamAdminRepoUpgrade.ml
+index 0be53b2..635e792 100644
+--- a/src/client/opamAdminRepoUpgrade.ml
 b/src/client/opamAdminRepoUpgrade.ml
+@@ -8,6 +8,8 @@
+ (**)
+ (**)
+ 
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamProcess.Job.Op
+ open OpamStd.Option.Op
+diff --git a/src/solver/opamBuiltinMccs.ml.real 
b/src/solver/opamBuiltinMccs.ml.real
+index ab39ab3..2b41982 100644
+--- a/src/solver/opamBuiltinMccs.ml.real
 b/src/solver/opamBuiltinMccs.ml.real
+@@ -35,7 +35,7 @@ let call solver_backend ext ~criteria ?timeout cudf =
+   ~verbose:OpamCoreConfig.(!r.debug_level >= 2)
+   ?timeout criteria cudf
+   with
+-  | None -> raise Common.CudfSolver.Unsat
++  | None -> raise Dose_common.CudfSolver.Unsat
+   | Some (preamble, univ) -> Some preamble, univ
+   | exception Mccs.Timeout -> raise Timeout
+ 
+diff --git a/src/solver/opamCudf.ml b/src/solver/opamCudf.ml
+index e07ff54..ad7293c 100644
+--- a/src/solver/opamCudf.ml
 b/src/solver/opamCudf.ml
+@@ -9,6 +9,9 @@
+ (**)
+ (**)
+ 
++module Common = Dose_common
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamTypesBase
+ 
+@@ -634,7 +637,7 @@ let call_external_solver ~version_map univ req =
+   let r =
+ Algo.Depsolver.check_request_using
+   ~call_solver:(OpamSolverConfig.call_solver ~criteria)
+-  ~criteria ~explain:true cudf_request
++  ~explain:true cudf_request
+   in
+   log "Solver call done in %.3f" (chrono ());
+   r
+diff --git a/src/solver/opamCudf.mli b/src/solver/opamCudf.mli
+index cb8158d..c928ccf 100644
+--- a/src/solver/opamCudf.mli
 b/src/solver/opamCudf.mli
+@@ -24,7 +24,7 @@ module Map: OpamStd.MAP with type key = Cudf.package
+ module Graph: sig
+   (** Graph of cudf packages *)
+ 
+-  include module type of Algo.Defaultgraphs.PackageGraph.G
++  include module type of Dose_algo.Defaultgraphs.PackageGraph.G
+ 
+   (** Build a graph from a CUDF universe. Warning: dependency edges are 
towards
+   the dependency, which is the reverse of what happens in the action
+@@ -180,7 +180,7 @@ val string_of_vpkgs: Cudf_types.vpkg list -> string
+ 
+ val make_conflicts:
+   version_map:int package_map -> Cudf.universe ->
+-  Algo.Diagnostic.diagnosis -> ('a, conflict) result
++  Dose_algo.Diagnostic.diagnosis -> ('a, conflict) result
+ val cycle_conflict:
+   version_map:int package_map -> Cudf.universe ->
+   string list list -> ('a, conflict) result
+diff --git a/src/solver/opamCudfSolver.ml b/src/solver/opamCudfSolver.ml
+index 03486f1..2651373 100644
+--- a/src/solver/opamCudfSolver.ml
 b/src/solver/opamCudfSolver.ml
+@@ -57,7 +57,7 @@ let call_external_solver command ~criteria ?timeout (_, 
universe,_ as cudf) =
+ in
+ OpamFilename.remove s

[gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-client/files/, dev-ml/opam-client/

2021-06-06 Thread Sam James
commit: 13815a199c4921685b3c94d13440915367da8ef4
Author: Hank Leininger  korelogic  com>
AuthorDate: Wed May  5 17:55:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun  6 23:55:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13815a19

dev-ml/opam-client: patch for dose3-6.x compat

Lifted from Debian, see https://bugs.debian.org/982733

Signed-off-by: Hank Leininger  korelogic.com>
Closes: https://bugs.gentoo.org/788265
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Sam James  gentoo.org>

 .../files/debian-Port-to-Dose3-6.0.1.patch | 142 +
 dev-ml/opam-client/opam-client-2.0.8-r1.ebuild |  40 ++
 2 files changed, 182 insertions(+)

diff --git a/dev-ml/opam-client/files/debian-Port-to-Dose3-6.0.1.patch 
b/dev-ml/opam-client/files/debian-Port-to-Dose3-6.0.1.patch
new file mode 100644
index 000..a8af27416df
--- /dev/null
+++ b/dev-ml/opam-client/files/debian-Port-to-Dose3-6.0.1.patch
@@ -0,0 +1,142 @@
+From: Mehdi Dogguy 
+Date: Sun, 28 Feb 2021 19:27:24 +0100
+Subject: Port to Dose3 6.0.1
+
+---
+ src/client/opamAdminCheck.ml   | 2 ++
+ src/client/opamAdminRepoUpgrade.ml | 2 ++
+ src/solver/opamBuiltinMccs.ml.real | 2 +-
+ src/solver/opamCudf.ml | 5 -
+ src/solver/opamCudf.mli| 4 ++--
+ src/solver/opamCudfSolver.ml   | 4 ++--
+ src/solver/opamSolver.ml   | 4 +++-
+ 7 files changed, 16 insertions(+), 7 deletions(-)
+
+diff --git a/src/client/opamAdminCheck.ml b/src/client/opamAdminCheck.ml
+index 05543a2..f23bfc4 100644
+--- a/src/client/opamAdminCheck.ml
 b/src/client/opamAdminCheck.ml
+@@ -8,6 +8,8 @@
+ (**)
+ (**)
+ 
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamPackage.Set.Op
+ 
+diff --git a/src/client/opamAdminRepoUpgrade.ml 
b/src/client/opamAdminRepoUpgrade.ml
+index 0be53b2..635e792 100644
+--- a/src/client/opamAdminRepoUpgrade.ml
 b/src/client/opamAdminRepoUpgrade.ml
+@@ -8,6 +8,8 @@
+ (**)
+ (**)
+ 
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamProcess.Job.Op
+ open OpamStd.Option.Op
+diff --git a/src/solver/opamBuiltinMccs.ml.real 
b/src/solver/opamBuiltinMccs.ml.real
+index ab39ab3..2b41982 100644
+--- a/src/solver/opamBuiltinMccs.ml.real
 b/src/solver/opamBuiltinMccs.ml.real
+@@ -35,7 +35,7 @@ let call solver_backend ext ~criteria ?timeout cudf =
+   ~verbose:OpamCoreConfig.(!r.debug_level >= 2)
+   ?timeout criteria cudf
+   with
+-  | None -> raise Common.CudfSolver.Unsat
++  | None -> raise Dose_common.CudfSolver.Unsat
+   | Some (preamble, univ) -> Some preamble, univ
+   | exception Mccs.Timeout -> raise Timeout
+ 
+diff --git a/src/solver/opamCudf.ml b/src/solver/opamCudf.ml
+index e07ff54..ad7293c 100644
+--- a/src/solver/opamCudf.ml
 b/src/solver/opamCudf.ml
+@@ -9,6 +9,9 @@
+ (**)
+ (**)
+ 
++module Common = Dose_common
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamTypesBase
+ 
+@@ -634,7 +637,7 @@ let call_external_solver ~version_map univ req =
+   let r =
+ Algo.Depsolver.check_request_using
+   ~call_solver:(OpamSolverConfig.call_solver ~criteria)
+-  ~criteria ~explain:true cudf_request
++  ~explain:true cudf_request
+   in
+   log "Solver call done in %.3f" (chrono ());
+   r
+diff --git a/src/solver/opamCudf.mli b/src/solver/opamCudf.mli
+index cb8158d..c928ccf 100644
+--- a/src/solver/opamCudf.mli
 b/src/solver/opamCudf.mli
+@@ -24,7 +24,7 @@ module Map: OpamStd.MAP with type key = Cudf.package
+ module Graph: sig
+   (** Graph of cudf packages *)
+ 
+-  include module type of Algo.Defaultgraphs.PackageGraph.G
++  include module type of Dose_algo.Defaultgraphs.PackageGraph.G
+ 
+   (** Build a graph from a CUDF universe. Warning: dependency edges are 
towards
+   the dependency, which is the reverse of what happens in the action
+@@ -180,7 +180,7 @@ val string_of_vpkgs: Cudf_types.vpkg list -> string
+ 
+ val make_conflicts:
+   version_map:int package_map -> Cudf.universe ->
+-  Algo.Diagnostic.diagnosis -> ('a, conflict) result
++  Dose_algo.Diagnostic.diagnosis -> ('a, conflict) result
+ val cycle_conflict:
+   version_map:int package_map -> Cudf.universe ->
+   string list list -> ('a, conflict) result
+diff --git a/src/solver/opamCudfSolver.ml b/src/solver/opamCudfSolver.ml
+index 03486f1..2651373 100644
+--- a/src/solver/opamCudfSolver.ml
 b/src/solver/opamCudfSolver.ml
+@@ -57,7 +57,7 @@ let call_external_solver command ~criteria ?timeout (_, 
universe,_ as cudf) =
+ in

[gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-installer/files/, dev-ml/opam-installer/

2021-06-06 Thread Sam James
commit: 52d438422968d43ce090534d9e80b89e4f905754
Author: Hank Leininger  korelogic  com>
AuthorDate: Tue Jun  1 16:29:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun  6 23:55:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52d43842

dev-ml/opam-installer: patch for dose3-6.x compat

Lifted from Debian, see https://bugs.debian.org/982733

Signed-off-by: Hank Leininger  korelogic.com>
Closes: https://bugs.gentoo.org/788265
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Closes: https://github.com/gentoo/gentoo/pull/20686
Signed-off-by: Sam James  gentoo.org>

 .../files/debian-Port-to-Dose3-6.0.1.patch | 142 +
 .../opam-installer/opam-installer-2.0.8-r3.ebuild  |  45 +++
 2 files changed, 187 insertions(+)

diff --git a/dev-ml/opam-installer/files/debian-Port-to-Dose3-6.0.1.patch 
b/dev-ml/opam-installer/files/debian-Port-to-Dose3-6.0.1.patch
new file mode 100644
index 000..a8af27416df
--- /dev/null
+++ b/dev-ml/opam-installer/files/debian-Port-to-Dose3-6.0.1.patch
@@ -0,0 +1,142 @@
+From: Mehdi Dogguy 
+Date: Sun, 28 Feb 2021 19:27:24 +0100
+Subject: Port to Dose3 6.0.1
+
+---
+ src/client/opamAdminCheck.ml   | 2 ++
+ src/client/opamAdminRepoUpgrade.ml | 2 ++
+ src/solver/opamBuiltinMccs.ml.real | 2 +-
+ src/solver/opamCudf.ml | 5 -
+ src/solver/opamCudf.mli| 4 ++--
+ src/solver/opamCudfSolver.ml   | 4 ++--
+ src/solver/opamSolver.ml   | 4 +++-
+ 7 files changed, 16 insertions(+), 7 deletions(-)
+
+diff --git a/src/client/opamAdminCheck.ml b/src/client/opamAdminCheck.ml
+index 05543a2..f23bfc4 100644
+--- a/src/client/opamAdminCheck.ml
 b/src/client/opamAdminCheck.ml
+@@ -8,6 +8,8 @@
+ (**)
+ (**)
+ 
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamPackage.Set.Op
+ 
+diff --git a/src/client/opamAdminRepoUpgrade.ml 
b/src/client/opamAdminRepoUpgrade.ml
+index 0be53b2..635e792 100644
+--- a/src/client/opamAdminRepoUpgrade.ml
 b/src/client/opamAdminRepoUpgrade.ml
+@@ -8,6 +8,8 @@
+ (**)
+ (**)
+ 
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamProcess.Job.Op
+ open OpamStd.Option.Op
+diff --git a/src/solver/opamBuiltinMccs.ml.real 
b/src/solver/opamBuiltinMccs.ml.real
+index ab39ab3..2b41982 100644
+--- a/src/solver/opamBuiltinMccs.ml.real
 b/src/solver/opamBuiltinMccs.ml.real
+@@ -35,7 +35,7 @@ let call solver_backend ext ~criteria ?timeout cudf =
+   ~verbose:OpamCoreConfig.(!r.debug_level >= 2)
+   ?timeout criteria cudf
+   with
+-  | None -> raise Common.CudfSolver.Unsat
++  | None -> raise Dose_common.CudfSolver.Unsat
+   | Some (preamble, univ) -> Some preamble, univ
+   | exception Mccs.Timeout -> raise Timeout
+ 
+diff --git a/src/solver/opamCudf.ml b/src/solver/opamCudf.ml
+index e07ff54..ad7293c 100644
+--- a/src/solver/opamCudf.ml
 b/src/solver/opamCudf.ml
+@@ -9,6 +9,9 @@
+ (**)
+ (**)
+ 
++module Common = Dose_common
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamTypesBase
+ 
+@@ -634,7 +637,7 @@ let call_external_solver ~version_map univ req =
+   let r =
+ Algo.Depsolver.check_request_using
+   ~call_solver:(OpamSolverConfig.call_solver ~criteria)
+-  ~criteria ~explain:true cudf_request
++  ~explain:true cudf_request
+   in
+   log "Solver call done in %.3f" (chrono ());
+   r
+diff --git a/src/solver/opamCudf.mli b/src/solver/opamCudf.mli
+index cb8158d..c928ccf 100644
+--- a/src/solver/opamCudf.mli
 b/src/solver/opamCudf.mli
+@@ -24,7 +24,7 @@ module Map: OpamStd.MAP with type key = Cudf.package
+ module Graph: sig
+   (** Graph of cudf packages *)
+ 
+-  include module type of Algo.Defaultgraphs.PackageGraph.G
++  include module type of Dose_algo.Defaultgraphs.PackageGraph.G
+ 
+   (** Build a graph from a CUDF universe. Warning: dependency edges are 
towards
+   the dependency, which is the reverse of what happens in the action
+@@ -180,7 +180,7 @@ val string_of_vpkgs: Cudf_types.vpkg list -> string
+ 
+ val make_conflicts:
+   version_map:int package_map -> Cudf.universe ->
+-  Algo.Diagnostic.diagnosis -> ('a, conflict) result
++  Dose_algo.Diagnostic.diagnosis -> ('a, conflict) result
+ val cycle_conflict:
+   version_map:int package_map -> Cudf.universe ->
+   string list list -> ('a, conflict) result
+diff --git a/src/solver/opamCudfSolver.ml b/src/solver/opamCudfSolver.ml
+index 03486f1..2651373 100644
+--- a/src/solver/opamCudfSolver.ml
 b/src/solver/opamCudfSolver.ml
+@@ -57,7 +57,7 @@ let call_external_solv

[gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-state/files/, dev-ml/opam-state/

2021-06-06 Thread Sam James
commit: 2433fc726df4a5c8cf2b1f1bab0fb81c49a2c1bb
Author: Hank Leininger  korelogic  com>
AuthorDate: Wed May  5 17:58:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun  6 23:55:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2433fc72

dev-ml/opam-state: patch for dose3-6.x compat

Lifted from Debian, see https://bugs.debian.org/982733

Signed-off-by: Hank Leininger  korelogic.com>
Closes: https://bugs.gentoo.org/788265
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Sam James  gentoo.org>

 .../files/debian-Port-to-Dose3-6.0.1.patch | 142 +
 dev-ml/opam-state/opam-state-2.0.8-r1.ebuild   |  38 ++
 2 files changed, 180 insertions(+)

diff --git a/dev-ml/opam-state/files/debian-Port-to-Dose3-6.0.1.patch 
b/dev-ml/opam-state/files/debian-Port-to-Dose3-6.0.1.patch
new file mode 100644
index 000..a8af27416df
--- /dev/null
+++ b/dev-ml/opam-state/files/debian-Port-to-Dose3-6.0.1.patch
@@ -0,0 +1,142 @@
+From: Mehdi Dogguy 
+Date: Sun, 28 Feb 2021 19:27:24 +0100
+Subject: Port to Dose3 6.0.1
+
+---
+ src/client/opamAdminCheck.ml   | 2 ++
+ src/client/opamAdminRepoUpgrade.ml | 2 ++
+ src/solver/opamBuiltinMccs.ml.real | 2 +-
+ src/solver/opamCudf.ml | 5 -
+ src/solver/opamCudf.mli| 4 ++--
+ src/solver/opamCudfSolver.ml   | 4 ++--
+ src/solver/opamSolver.ml   | 4 +++-
+ 7 files changed, 16 insertions(+), 7 deletions(-)
+
+diff --git a/src/client/opamAdminCheck.ml b/src/client/opamAdminCheck.ml
+index 05543a2..f23bfc4 100644
+--- a/src/client/opamAdminCheck.ml
 b/src/client/opamAdminCheck.ml
+@@ -8,6 +8,8 @@
+ (**)
+ (**)
+ 
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamPackage.Set.Op
+ 
+diff --git a/src/client/opamAdminRepoUpgrade.ml 
b/src/client/opamAdminRepoUpgrade.ml
+index 0be53b2..635e792 100644
+--- a/src/client/opamAdminRepoUpgrade.ml
 b/src/client/opamAdminRepoUpgrade.ml
+@@ -8,6 +8,8 @@
+ (**)
+ (**)
+ 
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamProcess.Job.Op
+ open OpamStd.Option.Op
+diff --git a/src/solver/opamBuiltinMccs.ml.real 
b/src/solver/opamBuiltinMccs.ml.real
+index ab39ab3..2b41982 100644
+--- a/src/solver/opamBuiltinMccs.ml.real
 b/src/solver/opamBuiltinMccs.ml.real
+@@ -35,7 +35,7 @@ let call solver_backend ext ~criteria ?timeout cudf =
+   ~verbose:OpamCoreConfig.(!r.debug_level >= 2)
+   ?timeout criteria cudf
+   with
+-  | None -> raise Common.CudfSolver.Unsat
++  | None -> raise Dose_common.CudfSolver.Unsat
+   | Some (preamble, univ) -> Some preamble, univ
+   | exception Mccs.Timeout -> raise Timeout
+ 
+diff --git a/src/solver/opamCudf.ml b/src/solver/opamCudf.ml
+index e07ff54..ad7293c 100644
+--- a/src/solver/opamCudf.ml
 b/src/solver/opamCudf.ml
+@@ -9,6 +9,9 @@
+ (**)
+ (**)
+ 
++module Common = Dose_common
++module Algo = Dose_algo
++
+ open OpamTypes
+ open OpamTypesBase
+ 
+@@ -634,7 +637,7 @@ let call_external_solver ~version_map univ req =
+   let r =
+ Algo.Depsolver.check_request_using
+   ~call_solver:(OpamSolverConfig.call_solver ~criteria)
+-  ~criteria ~explain:true cudf_request
++  ~explain:true cudf_request
+   in
+   log "Solver call done in %.3f" (chrono ());
+   r
+diff --git a/src/solver/opamCudf.mli b/src/solver/opamCudf.mli
+index cb8158d..c928ccf 100644
+--- a/src/solver/opamCudf.mli
 b/src/solver/opamCudf.mli
+@@ -24,7 +24,7 @@ module Map: OpamStd.MAP with type key = Cudf.package
+ module Graph: sig
+   (** Graph of cudf packages *)
+ 
+-  include module type of Algo.Defaultgraphs.PackageGraph.G
++  include module type of Dose_algo.Defaultgraphs.PackageGraph.G
+ 
+   (** Build a graph from a CUDF universe. Warning: dependency edges are 
towards
+   the dependency, which is the reverse of what happens in the action
+@@ -180,7 +180,7 @@ val string_of_vpkgs: Cudf_types.vpkg list -> string
+ 
+ val make_conflicts:
+   version_map:int package_map -> Cudf.universe ->
+-  Algo.Diagnostic.diagnosis -> ('a, conflict) result
++  Dose_algo.Diagnostic.diagnosis -> ('a, conflict) result
+ val cycle_conflict:
+   version_map:int package_map -> Cudf.universe ->
+   string list list -> ('a, conflict) result
+diff --git a/src/solver/opamCudfSolver.ml b/src/solver/opamCudfSolver.ml
+index 03486f1..2651373 100644
+--- a/src/solver/opamCudfSolver.ml
 b/src/solver/opamCudfSolver.ml
+@@ -57,7 +57,7 @@ let call_external_solver command ~criteria ?timeout (_, 
universe,_ as cudf) =
+ in
+  

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

2021-06-06 Thread Yixun Lan
commit: 65035cde3a2de724c85e5da1871a4ae49e96a93b
Author: Yixun Lan  gentoo  org>
AuthorDate: Sun Jun  6 22:32:44 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Mon Jun  7 00:57:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65035cde

app-backup/snapper: version bump, 0.9.0

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

 app-backup/snapper/Manifest|  1 +
 .../snapper/files/snapper-0.9.0-testsuite.patch| 83 
 app-backup/snapper/snapper-0.9.0.ebuild| 89 ++
 3 files changed, 173 insertions(+)

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

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

diff --git a/app-backup/snapper/snapper-0.9.0.ebuild 
b/app-backup/snapper/snapper-0.9.0.ebuild
new file mode 100644
index 000..3a46790c0d3
--- /dev/null
+++ b/app-backup/snapper/snapper-0.9.0.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of 

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

2021-06-06 Thread Matt Turner
commit: 9b5e1793bb207f42d2ea17c7ef0a8415ef29d54c
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Jun  7 00:57:00 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jun  7 01:06:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b5e1793

dev-util/sysprof-capture: Version bump to 3.40.1

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

 dev-util/sysprof-capture/Manifest  |  1 +
 .../sysprof-capture/sysprof-capture-3.40.1.ebuild  | 39 ++
 2 files changed, 40 insertions(+)

diff --git a/dev-util/sysprof-capture/Manifest 
b/dev-util/sysprof-capture/Manifest
index 0af7bddcac0..42a4802cbe1 100644
--- a/dev-util/sysprof-capture/Manifest
+++ b/dev-util/sysprof-capture/Manifest
@@ -1,2 +1,3 @@
 DIST sysprof-3.36.0.tar.xz 435956 BLAKE2B 
990a6c6c28339594df915ed1fb98f504bf6b080a5e3c31af0cc4bcfd208027361f02a9068291692d082787a6fd42ab414079122a63e4706aee2511040379f0c8
 SHA512 
41f99cc3446a6624ea74fcdecd7a29a2e5e2d4086383d59a9064c4a3df5d9b8d08f4903ff4dcc85ffa9c6d42bd84dec5c03f6010fffd4415cc8fecf4dc0b23f4
 DIST sysprof-3.38.1.tar.xz 458572 BLAKE2B 
68c219a6c80ed070314fc7718a2995c49821cc7c761b277fdd29c233da9d81b561b6c68cd0d0a42cc3e4c150e3de438322f7d418140ce19f3381f4ffac78aa1a
 SHA512 
7ba3dd51bd4055dcdf4d46ff87e46537afe42ba009809fdee5ba0ebcdf70776d9e1ff812714096d33b09ac57d459707b92b1ca07682e2f3888b612ca74820442
+DIST sysprof-3.40.1.tar.xz 468320 BLAKE2B 
fcba3b627ea32c38e621046027fced7478b6c57ba5487834d35fdde45a38bf4df66e5d696e93627217fa237978a6e7074b9e92ae89f963db7b6fca4482b59053
 SHA512 
ad07fd21066dfa6c7be81acdb720d97f392e1bbd05e71dd45d743b10a631b2b2c4c1177086f28e7f500271add79aa3356dd2aebdb97604357c4fef43809ead87

diff --git a/dev-util/sysprof-capture/sysprof-capture-3.40.1.ebuild 
b/dev-util/sysprof-capture/sysprof-capture-3.40.1.ebuild
new file mode 100644
index 000..6b494d32578
--- /dev/null
+++ b/dev-util/sysprof-capture/sysprof-capture-3.40.1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+GNOME_ORG_MODULE="sysprof"
+
+inherit gnome.org meson-multilib systemd
+
+DESCRIPTION="Static library for sysprof capture data generation"
+HOMEPAGE="http://sysprof.com/";
+
+LICENSE="GPL-3+ GPL-2+"
+SLOT="4"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="!=dev-util/sysprof-3.34.1-r0"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   dev-util/gdbus-codegen
+   >=sys-kernel/linux-headers-2.6.32
+   virtual/pkgconfig
+"
+
+multilib_src_configure() {
+   local emesonargs=(
+   -Denable_gtk=false
+   -Dlibsysprof=false
+   -Dwith_sysprofd=none
+   -Dsystemdunitdir=$(systemd_get_systemunitdir)
+   # -Ddebugdir
+   -Dhelp=false
+   -Dlibunwind=false
+   -Denable_tools=false
+   -Denable_tests=false
+   -Denable_examples=false
+   )
+   meson_src_configure
+}



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

2021-06-06 Thread Matt Turner
commit: 42a11d14ad7d1482d99e012567e0fe9f913f9f40
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Jun  7 00:58:30 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jun  7 01:06:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42a11d14

dev-util/sysprof: Version bump to 3.40.1

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

 dev-util/sysprof/Manifest  |  1 +
 dev-util/sysprof/sysprof-3.40.1.ebuild | 80 ++
 2 files changed, 81 insertions(+)

diff --git a/dev-util/sysprof/Manifest b/dev-util/sysprof/Manifest
index 833ac962838..26ead59a532 100644
--- a/dev-util/sysprof/Manifest
+++ b/dev-util/sysprof/Manifest
@@ -1 +1,2 @@
 DIST sysprof-3.38.1.tar.xz 458572 BLAKE2B 
68c219a6c80ed070314fc7718a2995c49821cc7c761b277fdd29c233da9d81b561b6c68cd0d0a42cc3e4c150e3de438322f7d418140ce19f3381f4ffac78aa1a
 SHA512 
7ba3dd51bd4055dcdf4d46ff87e46537afe42ba009809fdee5ba0ebcdf70776d9e1ff812714096d33b09ac57d459707b92b1ca07682e2f3888b612ca74820442
+DIST sysprof-3.40.1.tar.xz 468320 BLAKE2B 
fcba3b627ea32c38e621046027fced7478b6c57ba5487834d35fdde45a38bf4df66e5d696e93627217fa237978a6e7074b9e92ae89f963db7b6fca4482b59053
 SHA512 
ad07fd21066dfa6c7be81acdb720d97f392e1bbd05e71dd45d743b10a631b2b2c4c1177086f28e7f500271add79aa3356dd2aebdb97604357c4fef43809ead87

diff --git a/dev-util/sysprof/sysprof-3.40.1.ebuild 
b/dev-util/sysprof/sysprof-3.40.1.ebuild
new file mode 100644
index 000..bbcfc1400ed
--- /dev/null
+++ b/dev-util/sysprof/sysprof-3.40.1.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit gnome.org gnome2-utils meson systemd xdg
+
+DESCRIPTION="System-wide Linux Profiler"
+HOMEPAGE="http://sysprof.com/";
+
+LICENSE="GPL-3+ GPL-2+"
+API_VERSION="4"
+SLOT="0/${API_VERSION}"
+KEYWORDS="~amd64 ~x86"
+IUSE="gtk +unwind"
+
+RDEPEND="
+   >=dev-libs/glib-2.67.4:2
+   gtk? (
+   >=x11-libs/gtk+-3.22.0:3
+   >=dev-libs/libdazzle-3.30.0
+   )
+   dev-libs/json-glib
+   >=sys-auth/polkit-0.114
+   unwind? ( sys-libs/libunwind:= )
+   >=dev-util/sysprof-common-${PV}
+   >=dev-util/sysprof-capture-${PV}:${API_VERSION}
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   dev-libs/appstream-glib
+   dev-util/gdbus-codegen
+   dev-util/itstool
+   >=sys-devel/gettext-0.19.8
+   >=sys-kernel/linux-headers-2.6.32
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   xdg_src_prepare
+   # These are installed by dev-util/sysprof-capture
+   sed -i -e '/install/d' src/libsysprof-capture/meson.build || die
+   sed -i -e 's/pkgconfig\.generate/subdir_done()\npkgconfig\.generate/' 
src/libsysprof-capture/meson.build || die
+   # We want to ship org.gnome.Sysprof3.Profiler.xml in sysprof-common for 
the benefit of x11-wm/mutter
+   sed -i -e "s|if get_option('libsysprof')|if false|g" src/meson.build || 
die
+}
+
+src_configure() {
+   # -Dwith_sysprofd=host currently unavailable from ebuild
+   local emesonargs=(
+   $(meson_use gtk enable_gtk)
+   -Dlibsysprof=true
+   -Dwith_sysprofd=bundled
+   -Dsystemdunitdir=$(systemd_get_systemunitdir)
+   # -Ddebugdir
+   -Dhelp=true
+   $(meson_use unwind libunwind)
+   )
+   meson_src_configure
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_schemas_update
+
+   elog "On many systems, especially amd64, it is typical that with a 
modern"
+   elog "toolchain -fomit-frame-pointer for gcc is the default, because"
+   elog "debugging is still possible thanks to gcc4/gdb location list 
feature."
+   elog "However sysprof is not able to construct call trees if frame 
pointers"
+   elog "are not present. Therefore -fno-omit-frame-pointer CFLAGS is 
suggested"
+   elog "for the libraries and applications involved in the profiling. 
That"
+   elog "means a CPU register is used for the frame pointer instead of 
other"
+   elog "purposes, which means a very minimal performance loss when there 
is"
+   elog "register pressure."
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_schemas_update
+}



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

2021-06-06 Thread Matt Turner
commit: 8e3b9857d15d2fd7f4bdcda5748f59128e12afe7
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Jun  7 00:56:13 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jun  7 01:06:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e3b9857

dev-util/sysprof-common: Version bump to 3.40.1

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

 dev-util/sysprof-common/Manifest   |  1 +
 .../sysprof-common/sysprof-common-3.40.1.ebuild| 24 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-util/sysprof-common/Manifest b/dev-util/sysprof-common/Manifest
index 833ac962838..26ead59a532 100644
--- a/dev-util/sysprof-common/Manifest
+++ b/dev-util/sysprof-common/Manifest
@@ -1 +1,2 @@
 DIST sysprof-3.38.1.tar.xz 458572 BLAKE2B 
68c219a6c80ed070314fc7718a2995c49821cc7c761b277fdd29c233da9d81b561b6c68cd0d0a42cc3e4c150e3de438322f7d418140ce19f3381f4ffac78aa1a
 SHA512 
7ba3dd51bd4055dcdf4d46ff87e46537afe42ba009809fdee5ba0ebcdf70776d9e1ff812714096d33b09ac57d459707b92b1ca07682e2f3888b612ca74820442
+DIST sysprof-3.40.1.tar.xz 468320 BLAKE2B 
fcba3b627ea32c38e621046027fced7478b6c57ba5487834d35fdde45a38bf4df66e5d696e93627217fa237978a6e7074b9e92ae89f963db7b6fca4482b59053
 SHA512 
ad07fd21066dfa6c7be81acdb720d97f392e1bbd05e71dd45d743b10a631b2b2c4c1177086f28e7f500271add79aa3356dd2aebdb97604357c4fef43809ead87

diff --git a/dev-util/sysprof-common/sysprof-common-3.40.1.ebuild 
b/dev-util/sysprof-common/sysprof-common-3.40.1.ebuild
new file mode 100644
index 000..96a57b01072
--- /dev/null
+++ b/dev-util/sysprof-common/sysprof-common-3.40.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+GNOME_ORG_MODULE="sysprof"
+
+inherit gnome.org
+
+DESCRIPTION="Static library for sysprof capture data generation"
+HOMEPAGE="http://sysprof.com/";
+
+LICENSE="GPL-3+ GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   !=dev-util/sysprof-3.34.1-r0
+   !=dev-util/sysprof-capture-3.36.0-r0
+"
+
+src_install() {
+   insinto /usr/share/dbus-1/interfaces/
+   doins "${S}"/src/org.gnome.Sysprof3.Profiler.xml
+}



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

2021-06-06 Thread Joshua Kinard
commit: d729cab65c1cd133dcc4fe78fe17aedb9ca6faf8
Author: Joshua Kinard  gentoo  org>
AuthorDate: Mon Jun  7 02:41:46 2021 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Mon Jun  7 02:42:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d729cab6

sys-kernel/mips-sources: LTS bump, go to EAPI7

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.19, Repoman-3.0.3

 sys-kernel/mips-sources/Manifest  | 6 +++---
 ...{mips-sources-4.14.232.ebuild => mips-sources-4.14.235.ebuild} | 8 ++--
 ...{mips-sources-4.19.190.ebuild => mips-sources-4.19.193.ebuild} | 8 ++--
 .../{mips-sources-5.4.120.ebuild => mips-sources-5.4.124.ebuild}  | 8 ++--
 4 files changed, 9 insertions(+), 21 deletions(-)

diff --git a/sys-kernel/mips-sources/Manifest b/sys-kernel/mips-sources/Manifest
index e96176f6dda..a940f6c9f8e 100644
--- a/sys-kernel/mips-sources/Manifest
+++ b/sys-kernel/mips-sources/Manifest
@@ -5,6 +5,6 @@ DIST mips-sources-4.14.0-patches-v3.tar.xz 287468 BLAKE2B 
24212e2d6ca784986d0e3e
 DIST mips-sources-4.19.0-patches-v3.tar.xz 289136 BLAKE2B 
9c77c641d4c4603983c0bc11cba5d83337c7373f67bc5870b8b02d6d4a537c8c02f21fe47fd64f13c5e10d37100654857d0b598be6d8c429f5fe1d7332b6b6bd
 SHA512 
7199a20f20f9d0a4eae38279335d8c9da20940fb37f0ba38cb6b68fdd5c9d4d2e2b65efff5383065e685c0fb5ad639c6d79d74989a5b4200b987f175de7da422
 DIST mips-sources-5.4-patches-v4.tar.xz 195208 BLAKE2B 
3f68af3e2c7c344436e351319a8f148b27f346f3cdc0a7f60dbb6a8b8a4c17a14a4fe3f1b9ed0984aeb1f80279a5aac43d14a3947c0f0c6eb5fc6aebc0ac857b
 SHA512 
144863448d760ce3a5a9fa3a23204a5384d0d145b3a87ed6a283728a0c5cb605d4bd74b125b9ff0535e8689f10cd05b22b1abb4d0ea12d6d8f05fb9fc58c2017
 DIST mipsgit-4.14.0-20180128.diff.xz 1008 BLAKE2B 
2a317ff97aab096883680c6b653e993aee31994e6caec52c52dfbbb61f1dc1f25d03ebd3182fa122923a67aeee0aa598b36e603692333e4c9ccdc741fd456d96
 SHA512 
378deb1bc1d10a6b4912e5e4a0d6fcab28952e2e59c35fc879601841cf8160081b318a2598ef74db225e95f0f26483f6b9a56a348811b1ee7b8934391dd271ae
-DIST patch-4.14.232.xz 4228268 BLAKE2B 
259de6445dcfd1d407bbe0d2d0489e8b7fb2a99a58886aa55a414b6ba37f5d20cec58693eb034592914acd729da410032dcf5924843943530db07d8f1f55b4cc
 SHA512 
c3b18afbe83c279ecb856b8332f613311a96955b101cc9e5fc1c82fa0a741a91778f5ef4490ec00554ee83907866e935958962a31f78f5d8617664b904ff251a
-DIST patch-4.19.190.xz 3933168 BLAKE2B 
301dcd17bfc0c94ad09bdcf6261da09ad9f1c36c1a047df94e7040d1b2c2b6224b08b596c3b4583a884ea7d5a70b9d3652ccd72e49aff54f61ee4afb30e514d7
 SHA512 
cf70f27725e3c9e4b9a5a0062734ebf20672bc4378f33dc882b3ed3abfccf31ed70c211c3e13a8b1d3971d7f0a71b089e080a49083cb39e738b80f77d0215a65
-DIST patch-5.4.120.xz 2952144 BLAKE2B 
7c0a8bce55dea410ee6d6590aa92f6c1bc506dd0dc6822471527025ce5940df1912b0fb8af73cf9c9de0116d6d332dd97474364a862f5b0f8c8934171ca151bb
 SHA512 
2d41d66a1426ba6d25ec692d6f5df0ead367cf4194cd75bea8159af21a1301125dd7b94907ccf3bef17d2d52982a259e25f5c09dbf386438b01a0b5b0e442d4c
+DIST patch-4.14.235.xz 4299416 BLAKE2B 
456b70cac19e7638dfa826983c9be8addb5a18e7b9827be84b0478a0dfed1d4997ece82b1960dc3dfba5a7bb8d17adf33e62916fb823bc19ffddf335a33e6b38
 SHA512 
a0ad98d60bebad099e82a40ff3a3661e4284a080aa4ed1b4a059a3de97362ccdf78e19744a0a9531bf179d5d7375547c42eeb9420780226a98109f95ca1750c2
+DIST patch-4.19.193.xz 4028404 BLAKE2B 
4eb96c41384b244ab40f3c47080151ae8b9a194bbb378737e804cc30a416a83f3a21af6b3fb5dfa79435efd6344c2b2fa32c81bb7daa218f212b64d208dd41d9
 SHA512 
b2382a705df90cf450ee516c60ff69b8557e046b825e85a96aab9eec2cd6179f142363f6d6d644e7ce48be167ce2dcec68f76ea29521eadda1297685764e8011
+DIST patch-5.4.124.xz 3006220 BLAKE2B 
394645f0cf7898c98d416e93858b3effe171d5bdbc968bccd876c41de527ce0221331a06744cc081a05407d3b539d7ab83ae526ff1cc99e9e17629af7b968932
 SHA512 
9a8a5388d921c55a6f620f2da0528c4d0ed4487cfa58ac876b7b9625247860e3b25bbfcd39b4ae73f34c2d2b8a45b155a149613a650a1306bdab4bad57f8f9e9

diff --git a/sys-kernel/mips-sources/mips-sources-4.14.232.ebuild 
b/sys-kernel/mips-sources/mips-sources-4.14.235.ebuild
similarity index 99%
rename from sys-kernel/mips-sources/mips-sources-4.14.232.ebuild
rename to sys-kernel/mips-sources/mips-sources-4.14.235.ebuild
index 9c03742acf3..25085a4036e 100644
--- a/sys-kernel/mips-sources/mips-sources-4.14.232.ebuild
+++ b/sys-kernel/mips-sources/mips-sources-4.14.235.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 # EAPI Version
-EAPI="6"
+EAPI="7"
 
 
#//--
 
@@ -24,7 +24,7 @@ K_FROM_GIT="yes"
 ETYPE="sources"
 
 # Inherit Eclasses
-inherit kernel-2 eapi7-ver
+inherit kernel-2
 detect_version
 
 # Version Data
@@ -36,10 +36,6 @@ BASE_KV="$(ver_cut 1-2).0"
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:MIPS";
 KEYWORDS="-* ~mips"
 IUSE="experimental ip27 ip28 ip30"
-RDEPEND=""
-DEPEND="${RDEPEND}
-   >=sys-devel/gcc-4.7.0
-   >=sys-devel/patch-2.7.4"
 
 # Specify any patches or patch familes

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

2021-06-06 Thread Dennis Lamm
commit: 938f74f675c7347593a5a3346bef090dce39c349
Author: Dennis Lamm  gentoo  org>
AuthorDate: Mon Jun  7 03:24:32 2021 +
Commit: Dennis Lamm  gentoo  org>
CommitDate: Mon Jun  7 03:24:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=938f74f6

media-gfx/prusaslicer: metadata added cpe entry

Signed-off-by: Dennis Lamm  gentoo.org>
Package-Manager: Portage-3.0.18, Repoman-3.0.2

 media-gfx/prusaslicer/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-gfx/prusaslicer/metadata.xml 
b/media-gfx/prusaslicer/metadata.xml
index dd17dbe10ea..32e35320f53 100644
--- a/media-gfx/prusaslicer/metadata.xml
+++ b/media-gfx/prusaslicer/metadata.xml
@@ -16,6 +16,7 @@

https://github.com/prusa3d/PrusaSlicer/issues
https://help.prusa3d.com/en/article/general-info_1910
+   cpe:/a:prusa3d:prusaslicer
prusa3d/PrusaSlicer

 



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

2021-06-06 Thread Dennis Lamm
commit: cdcff7ecc9b4a04498b97a759edf2b3616135b61
Author: Dennis Lamm  gentoo  org>
AuthorDate: Mon Jun  7 03:23:06 2021 +
Commit: Dennis Lamm  gentoo  org>
CommitDate: Mon Jun  7 03:23:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdcff7ec

media-gfx/slic3r: metadata added cpe entry

Signed-off-by: Dennis Lamm  gentoo.org>
Package-Manager: Portage-3.0.18, Repoman-3.0.2

 media-gfx/slic3r/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-gfx/slic3r/metadata.xml b/media-gfx/slic3r/metadata.xml
index f2a29f739d2..45df234a6cd 100644
--- a/media-gfx/slic3r/metadata.xml
+++ b/media-gfx/slic3r/metadata.xml
@@ -15,6 +15,7 @@
 
 https://github.com/slic3r/Slic3r/issues
 https://manual.slic3r.org/
+cpe:/a:slic3r:libslic3r
 slic3r/Slic3r
 
 



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

2021-06-06 Thread Joshua Kinard
commit: 1dea7276ac6139dbc8cc4e5d6ff9caf7d2e53c6a
Author: Joshua Kinard  gentoo  org>
AuthorDate: Mon Jun  7 03:43:56 2021 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Mon Jun  7 03:43:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dea7276

sys-kernel/mips-sources: Go back to EAPI6

Missed two items when bumping to EAPI7, so going back to EAPI6
until I can work a fix out.

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.19, Repoman-3.0.3

 sys-kernel/mips-sources/mips-sources-4.14.235.ebuild | 2 +-
 sys-kernel/mips-sources/mips-sources-4.19.193.ebuild | 2 +-
 sys-kernel/mips-sources/mips-sources-5.4.124.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-kernel/mips-sources/mips-sources-4.14.235.ebuild 
b/sys-kernel/mips-sources/mips-sources-4.14.235.ebuild
index 25085a4036e..26b69af1b40 100644
--- a/sys-kernel/mips-sources/mips-sources-4.14.235.ebuild
+++ b/sys-kernel/mips-sources/mips-sources-4.14.235.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 # EAPI Version
-EAPI="7"
+EAPI="6"
 
 
#//--
 

diff --git a/sys-kernel/mips-sources/mips-sources-4.19.193.ebuild 
b/sys-kernel/mips-sources/mips-sources-4.19.193.ebuild
index c948a818773..f8b3da0cf24 100644
--- a/sys-kernel/mips-sources/mips-sources-4.19.193.ebuild
+++ b/sys-kernel/mips-sources/mips-sources-4.19.193.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 # EAPI Version
-EAPI="7"
+EAPI="6"
 
 
#//--
 

diff --git a/sys-kernel/mips-sources/mips-sources-5.4.124.ebuild 
b/sys-kernel/mips-sources/mips-sources-5.4.124.ebuild
index 493a26be205..c297256ee21 100644
--- a/sys-kernel/mips-sources/mips-sources-5.4.124.ebuild
+++ b/sys-kernel/mips-sources/mips-sources-5.4.124.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 # EAPI Version
-EAPI="7"
+EAPI="6"
 
 
#//--
 



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

2021-06-06 Thread Matthew Thode
commit: 26f0ff239591c5bcaffbd4d6a8709704a6d61ad0
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Jun  7 04:18:15 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Jun  7 04:18:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26f0ff23

sys-fs/growpart: 0.0.32 bump

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

 sys-fs/growpart/Manifest   |  1 +
 sys-fs/growpart/growpart-0.0.32.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/sys-fs/growpart/Manifest b/sys-fs/growpart/Manifest
index 183307588c6..c0456a52b33 100644
--- a/sys-fs/growpart/Manifest
+++ b/sys-fs/growpart/Manifest
@@ -1 +1,2 @@
 DIST growpart-0.0.30.gz 7897 BLAKE2B 
b8f28615578c1b19a7cd2eff9cb60c37929c2d3767d9f98b07b1040f7f5d2687f41ed051b9899573119b4de9c2e04dcb91d76fc70fcff7a6e6dde0335959681f
 SHA512 
ed6cf92149c0802c4a08427fa025ce2666dd7c32c5d1f362f4d14973f709dfd73124fd85b7eaf179daad5dfb1d126e86d7db0fb1fe7e2d496e17bf0bc1bc9c58
+DIST growpart-0.0.32.gz 9525 BLAKE2B 
a7c7ca27ae237eb7d6e43decb16cba2c8a26b63bcfe1b1f74f63b116a9cc23fc5e54394df846c13de6caeb8433a4ad7e76046f2f4311e6fe7cb069fce588b6e3
 SHA512 
baa9e59581d2d9685d4b0e7563e6582130064881f6f9b9fcd3250a4bdceb7d03bcd1ce346218ce4395f82de948f85fd59339cc30417377feb61d5b444f3dde23

diff --git a/sys-fs/growpart/growpart-0.0.32.ebuild 
b/sys-fs/growpart/growpart-0.0.32.ebuild
new file mode 100644
index 000..aa8ac8c42c2
--- /dev/null
+++ b/sys-fs/growpart/growpart-0.0.32.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="A script that can grow your rootfs on first boot"
+HOMEPAGE="http://manpages.ubuntu.com/manpages/natty/man1/growpart.1.html";
+SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/${PN}/${P}.gz";
+S="${WORKDIR}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="sys-apps/gptfdisk"
+
+src_install() {
+   exeinto /usr/sbin/
+   newexe "growpart-${PV}" growpart
+}



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

2021-06-06 Thread Matthew Thode
commit: a6144c069440d2b9675f73f48415e0982550f8e5
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Jun  7 04:10:26 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Jun  7 04:10:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6144c06

sys-block/fio: 3.27 bump with py39

Closes: https://bugs.gentoo.org/794583
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Matthew Thode  gentoo.org>

 sys-block/fio/Manifest|   1 +
 sys-block/fio/fio-3.27.ebuild | 154 ++
 2 files changed, 155 insertions(+)

diff --git a/sys-block/fio/Manifest b/sys-block/fio/Manifest
index 0b703dc303d..1faed5903ac 100644
--- a/sys-block/fio/Manifest
+++ b/sys-block/fio/Manifest
@@ -1 +1,2 @@
 DIST fio-3.20.tar.bz2 912040 BLAKE2B 
44f8c20a390a6382aadc07881c1e7c65cca932099a1b3992e848669cf2a52b410fde67f9ae576efcd0d8e88ceec04174b6bc077d4b3f9b615b59be9f24f62bed
 SHA512 
4e073754c95cb8d6416a80f48ca61003f34d664717f67a3f29b554e9205f8fe3553595ba6f8a8e9cb3463022d5c83be961f5b5a1ebcd2a9f4da9406a9986c1fb
+DIST fio-3.27.tar.bz2 960330 BLAKE2B 
7e7e01a5c1d6af13a6f87139e7738646cbc8f45ebc370d0c45b9efe1f93778613d374daafc6df459f988f27f2be54ff636235e1e5a92a4a6ecf9a60ed573d170
 SHA512 
9c5f2ab0c9ac24ab78dbc74fb6c5acd60f8189fdc618f4280992141b6c0abe1c235c373fee18ad0c803e7fb25d480f45aec56dc3be2e0d26d181b3418b179f99

diff --git a/sys-block/fio/fio-3.27.ebuild b/sys-block/fio/fio-3.27.ebuild
new file mode 100644
index 000..2fe78c1da6c
--- /dev/null
+++ b/sys-block/fio/fio-3.27.ebuild
@@ -0,0 +1,154 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit python-r1 toolchain-funcs
+
+MY_PV="${PV/_rc/-rc}"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="Jens Axboe's Flexible IO tester"
+HOMEPAGE="https://brick.kernel.dk/snaps/";
+SRC_URI="https://brick.kernel.dk/snaps/${MY_P}.tar.bz2";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+IUSE="aio curl glusterfs gnuplot gtk io-uring numa python rbd rdma static 
tcmalloc test zbc zlib"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
+   gnuplot? ( python )
+   io-uring? ( aio )"
+RESTRICT="!test? ( test )"
+
+BDEPEND="virtual/pkgconfig"
+
+# GTK+:2 does not offer static libaries.
+LIB_DEPEND="aio? ( dev-libs/libaio[static-libs(+)] )
+   curl? (
+   net-misc/curl:=[static-libs(+)]
+   dev-libs/openssl:0=[static-libs(+)]
+   )
+   glusterfs? ( sys-cluster/glusterfs[static-libs(+)] )
+   gtk? ( dev-libs/glib:2[static-libs(+)] )
+   io-uring? ( sys-libs/liburing:=[static-libs(+)] )
+   numa? ( sys-process/numactl[static-libs(+)] )
+   rbd? ( sys-cluster/ceph[static-libs(+)] )
+   rdma? (
+   sys-fabric/libibverbs[static-libs(+)]
+   sys-fabric/librdmacm[static-libs(+)]
+   )
+   tcmalloc? ( dev-util/google-perftools:=[static-libs(+)] )
+   zbc? ( >=sys-block/libzbc-5 )
+   zlib? ( sys-libs/zlib[static-libs(+)] )"
+RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )
+   gtk? ( x11-libs/gtk+:2 )"
+DEPEND="${RDEPEND}
+   static? ( ${LIB_DEPEND} )
+   test? ( dev-util/cunit )"
+RDEPEND+="
+   python? (
+   ${PYTHON_DEPS}
+   $(python_gen_any_dep 'dev-python/pandas[${PYTHON_USEDEP}]')
+   )
+   gnuplot? ( sci-visualization/gnuplot )"
+
+S="${WORKDIR}/${MY_P}"
+
+PATCHES=(
+   "${FILESDIR}"/fio-2.2.13-libmtd.patch
+)
+
+python_check_deps() {
+   has_version "dev-python/pandas[${PYTHON_USEDEP}]"
+}
+
+src_prepare() {
+   default
+
+   sed -i '/^DEBUGFLAGS/s: -D_FORTIFY_SOURCE=2::g' Makefile || die
+
+   # Many checks don't have configure flags.
+   sed -i \
+   -e "s:\:$(tc-getPKG_CONFIG):" \
+   -e '/if compile_prog "" "-lzbc" "libzbc" *; *then/  '"s::if 
$(usex zbc true false) ; then:" \
+   -e '/if compile_prog "" "-lz" "zlib" *; *then/  '"s::if $(usex 
zlib true false) ; then:" \
+   -e '/if compile_prog "" "-laio" "libaio" *; *then/'"s::if 
$(usex aio true false) ; then:" \
+   -e '/if compile_prog "" "-lcunit" "CUnit" *; *then/'"s::if 
$(usex test true false) ; then:" \
+   configure || die
+}
+
+src_configure() {
+   chmod g-w "${T}"
+   # not a real configure script
+   # TODO: cuda
+   # TODO: libnbd - not packaged in Gentoo
+   # TODO: pmem - not packaged in Gentoo
+   set -- \
+   ./configure \
+   --disable-optimizations \
+   --extra-cflags="${CFLAGS} ${CPPFLAGS}" \
+   --cc="$(tc-getCC)" \
+   --disable-pmem \
+   $(usex curl '' '--disable-http') \
+   $(usex glusterfs '' '--disable-gfapi') \
+   $(usex gtk '--enable-gfio' '') \
+   $(usex io-uring '--enable-libaio-uring' '') \
+

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-integration-spotify/

2021-06-06 Thread Matthew Thode
commit: 5c4cad8486755058fe425af660cfa73663cebc96
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Jun  7 04:07:01 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Jun  7 04:07:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c4cad84

gnome-extra/gnome-integration-spotify: add py39

Closes: https://bugs.gentoo.org/794244
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Matthew Thode  gentoo.org>

 .../gnome-integration-spotify-20140907-r2.ebuild  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/gnome-extra/gnome-integration-spotify/gnome-integration-spotify-20140907-r2.ebuild
 
b/gnome-extra/gnome-integration-spotify/gnome-integration-spotify-20140907-r2.ebuild
index 049a2479a33..5e822f8ad79 100644
--- 
a/gnome-extra/gnome-integration-spotify/gnome-integration-spotify-20140907-r2.ebuild
+++ 
b/gnome-extra/gnome-integration-spotify/gnome-integration-spotify-20140907-r2.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-PYTHON_COMPAT=( python3_7 python3_8 )
+PYTHON_COMPAT=( python3_7 python3_8 python3_9 )
 
 inherit gnome2-utils python-r1
 



[gentoo-commits] repo/gentoo:master commit in: app-emulation/virt-what/

2021-06-06 Thread Matthew Thode
commit: ceb8e0eb8a9148bde23b12a93ea60168d5e281f6
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Jun  7 04:21:14 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Jun  7 04:21:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ceb8e0eb

app-emulation/virt-what: 1.21 bump

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

 app-emulation/virt-what/Manifest  |  1 +
 app-emulation/virt-what/virt-what-1.21.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/app-emulation/virt-what/Manifest b/app-emulation/virt-what/Manifest
index 5bdbd3695f3..957407c11fc 100644
--- a/app-emulation/virt-what/Manifest
+++ b/app-emulation/virt-what/Manifest
@@ -1,3 +1,4 @@
 DIST virt-what-1.18.tar.gz 173703 BLAKE2B 
c1ab6f331ca370572cedef06fd3eb9177ca8ef4302446eb46c737446a001e77a0825ec8771aade903e6194af3f4f745c3f35f1d9dbbb8a0550b493296878ade3
 SHA512 
8085a38111d5664f411f5bb9d2ee221bc22e5b0f2d993e8d518718b3f63b16ba73e052b1623c090493cf8fef52fd237ba823377503a32b4b7d03cc5380d5c613
 DIST virt-what-1.19.tar.gz 183594 BLAKE2B 
36b58cbe41f195cf81e0b0cf35ab881c3746ac352c57f470e1fe0005d65534f38886d7688ee9393837e667fd1c8bf41af013f3a12748db5f8615b9b5c944f7a9
 SHA512 
7b6e6c00e3f35cea236cc5f5fdf28d13e9e38143f280dfcbf083ebf0dca2cb677752b8daec5b2956a08405d1fe5368f9f633ce11a854928c31121a35ee4c6820
 DIST virt-what-1.20.tar.gz 459243 BLAKE2B 
c51bfc4366ba90e32548a5d1e0779fcc1835dae7a6bb2b6f67b4371c2d2e949339aa0ff67d64485cdb03592713a3ae04a6779e4dac0babf08bb268ce6403066f
 SHA512 
edf74903122bfb422c7a5ecba711bb64d6ef668828f208dfc0571ef14f2643456c14bc9a77dfea209df3d93869ac0a2c9fd039779922eddc6ebd9d988585dea4
+DIST virt-what-1.21.tar.gz 478767 BLAKE2B 
7c48b84d9f1fe5f734921f68848b84beee2e5687a6ebfbc422a1349063e6a83c932a89cb2936239da6be033b72e6010694314cf106486cd6c54cd02652bc61a6
 SHA512 
14ace184c4aee5a09b855c1f5acaa619057aed1b9bf03c91ed1003e6a39ea69162c9fe452ea8162c7fe29825e0e2202cfc7d76e82f0cecea3e32405e5eb9f717

diff --git a/app-emulation/virt-what/virt-what-1.21.ebuild 
b/app-emulation/virt-what/virt-what-1.21.ebuild
new file mode 100644
index 000..04e200d15f8
--- /dev/null
+++ b/app-emulation/virt-what/virt-what-1.21.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Detects if the current machine is running in a virtual machine"
+HOMEPAGE="https://people.redhat.com/~rjones/virt-what/";
+SRC_URI="https://people.redhat.com/~rjones/virt-what/files/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="dmi"
+
+DEPEND="dev-lang/perl"
+RDEPEND="app-shells/bash
+   dmi? ( sys-apps/dmidecode )"
+
+src_prepare() {
+   default
+
+   # Pretends to be POSIX sh while it is not
+   sed -e 's:/bin/sh:/bin/bash:' -i virt-what.in || die
+}



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

2021-06-06 Thread Matthew Thode
commit: f3ae80dbfdcd93e2623f36fc87b2117e4ed06916
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Jun  7 04:22:57 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Jun  7 04:22:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3ae80db

profiles/package.mask: add spice-html5 to openstack removal

Signed-off-by: Matthew Thode  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index ec8a44dd13c..427d93f6196 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -160,6 +160,7 @@ dev-python/csv23
 # remove some stuff to make redacted happy
 # bug #793800
 app-admin/glance
+app-emulation/spice-html5
 dev-python/aodhclient
 dev-python/automaton
 dev-python/castellan



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

2021-06-06 Thread Hans de Graaff
commit: 89f83ac833e529d887fc33121a0385fa987fb35e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jun  7 04:50:02 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jun  7 04:50:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89f83ac8

dev-ruby/loofah: cleanup

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

 dev-ruby/loofah/Manifest|  1 -
 dev-ruby/loofah/loofah-2.9.0.ebuild | 39 -
 2 files changed, 40 deletions(-)

diff --git a/dev-ruby/loofah/Manifest b/dev-ruby/loofah/Manifest
index a209e0c73cd..c6d22b5375e 100644
--- a/dev-ruby/loofah/Manifest
+++ b/dev-ruby/loofah/Manifest
@@ -1,4 +1,3 @@
 DIST loofah-2.7.0.tar.gz 69272 BLAKE2B 
1578cba4b4b12fb35a1095060af8d764ec55d3745a44cf756f1de5bf43bc0bde37276372e7aa53a3a26c2c83a8c3da417140d3addb102cc0429f7d47b8c01806
 SHA512 
698f7976e6048615643d8875aa4dc09c4bd261234bdc9908589edc08be9073a83f84f04fff7e32b518712d63cefe2611895543733967a8b8de12e6cecdb902c9
 DIST loofah-2.8.0.tar.gz 68844 BLAKE2B 
52b5b5c7a70939069d84d0f66c4262e456d2ed81ab4ef2541eceb9068ccdddbb1c7b470ca7504700f6f66d4aa4507b9edfd4720c1302f6026008c10100c1fecb
 SHA512 
a9d7c21be733e1aab8353ab7bfb3db14d47e8da2c3f20eba11d0041b782e4f2cb82865bbd5a2a9321aae7ea04089f6a5fd1bd3119cbfe8a00c2ea71a40cae53b
-DIST loofah-2.9.0.tar.gz 69098 BLAKE2B 
097479b8de0f2fdebedfab9b1a0a656811c4650c13cdb73d2594c513a6be7bd9d6e6f81b5594367e7f0d783ff22664d22dcc8e06014cae51493057069831c174
 SHA512 
9dfcdd1142256b4fee10038ace13e33f5086aac0ab8e449fae878c33d66bc0882e6e032a9251dd16188dcb4549260403768771f2c7f5f38d55686a6a88792b65
 DIST loofah-2.9.1.tar.gz 69652 BLAKE2B 
76bdd6c1ffda325314eb28c4bea6e5c8b8a69c3a7e9a661f328507a523ca086c2caf14f58b2e83cc2213c072342176bbb2de7be5a68d68e54675f30e81657b92
 SHA512 
625c38de7fe5fcbd8e3fb01aa7aa28560e7f3bb4e5354912bed072bd83cf35e824cf84e491155fa44b50ae418c46a187f02d4f605062abbfde05653d022bb663

diff --git a/dev-ruby/loofah/loofah-2.9.0.ebuild 
b/dev-ruby/loofah/loofah-2.9.0.ebuild
deleted file mode 100644
index 000d6ae80a3..000
--- a/dev-ruby/loofah/loofah-2.9.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-USE_RUBY="ruby25 ruby26 ruby27"
-
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
-
-RUBY_FAKEGEM_GEMSPEC="loofah.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Library for manipulating and transforming HTML/XML documents and 
fragments."
-HOMEPAGE="https://github.com/flavorjones/loofah";
-SRC_URI="https://github.com/flavorjones/loofah/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
-IUSE=""
-
-ruby_add_rdepend "=dev-ruby/crass-1.0* >=dev-ruby/crass-1.0.2 
>=dev-ruby/nokogiri-1.5.9"
-
-ruby_add_bdepend "test? ( >=dev-ruby/rr-1.1.0 )"
-
-all_ruby_prepare() {
-   # Fix version in gemspec
-   sed -i -e '/s\.version/ s/".*"/"'${PV}'"/' ${RUBY_FAKEGEM_GEMSPEC} || 
die
-
-   # Avoid unneeded development dependencies
-   sed -i -e '/concourse/I s:^:#:' Rakefile || die
-
-   # Avoid test failing on different whitespace.
-   sed -i -e '/test_fragment_whitewash_on_microsofty_markup/askip 
"gentoo"' test/integration/test_ad_hoc.rb || die
-}
-
-each_ruby_test() {
-   ${RUBY} -Ilib:.:test -e 'Dir["test/**/test_*.rb"].each{|f| require f}' 
|| die
-}



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

2021-06-06 Thread Hans de Graaff
commit: 4dd59e26b2870435368e7eb2aae15cd02aa3c490
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jun  7 04:54:41 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jun  7 04:54:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dd59e26

dev-ruby/loofah: add 2.10.0

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

 dev-ruby/loofah/Manifest |  1 +
 dev-ruby/loofah/loofah-2.10.0.ebuild | 39 
 2 files changed, 40 insertions(+)

diff --git a/dev-ruby/loofah/Manifest b/dev-ruby/loofah/Manifest
index c6d22b5375e..04ae057e811 100644
--- a/dev-ruby/loofah/Manifest
+++ b/dev-ruby/loofah/Manifest
@@ -1,3 +1,4 @@
+DIST loofah-2.10.0.tar.gz 70379 BLAKE2B 
1de980e181bfb0c6fc8c98713b01aaedbd5d7bc7cffb30a0b8f477ee0e475c255a8e14d9b54254d318b569ca4327e78a6b42c73f765c7bafd8a265f083cc4449
 SHA512 
c51e3981b4f4f2d93a1e8817c86df57c50818b0a0589e260fb4208b34c69f08b270ea39e3354c4c15b670bbd3eaba6b3274e4f4d67a8c97fc99b28bc8ef2
 DIST loofah-2.7.0.tar.gz 69272 BLAKE2B 
1578cba4b4b12fb35a1095060af8d764ec55d3745a44cf756f1de5bf43bc0bde37276372e7aa53a3a26c2c83a8c3da417140d3addb102cc0429f7d47b8c01806
 SHA512 
698f7976e6048615643d8875aa4dc09c4bd261234bdc9908589edc08be9073a83f84f04fff7e32b518712d63cefe2611895543733967a8b8de12e6cecdb902c9
 DIST loofah-2.8.0.tar.gz 68844 BLAKE2B 
52b5b5c7a70939069d84d0f66c4262e456d2ed81ab4ef2541eceb9068ccdddbb1c7b470ca7504700f6f66d4aa4507b9edfd4720c1302f6026008c10100c1fecb
 SHA512 
a9d7c21be733e1aab8353ab7bfb3db14d47e8da2c3f20eba11d0041b782e4f2cb82865bbd5a2a9321aae7ea04089f6a5fd1bd3119cbfe8a00c2ea71a40cae53b
 DIST loofah-2.9.1.tar.gz 69652 BLAKE2B 
76bdd6c1ffda325314eb28c4bea6e5c8b8a69c3a7e9a661f328507a523ca086c2caf14f58b2e83cc2213c072342176bbb2de7be5a68d68e54675f30e81657b92
 SHA512 
625c38de7fe5fcbd8e3fb01aa7aa28560e7f3bb4e5354912bed072bd83cf35e824cf84e491155fa44b50ae418c46a187f02d4f605062abbfde05653d022bb663

diff --git a/dev-ruby/loofah/loofah-2.10.0.ebuild 
b/dev-ruby/loofah/loofah-2.10.0.ebuild
new file mode 100644
index 000..000d6ae80a3
--- /dev/null
+++ b/dev-ruby/loofah/loofah-2.10.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="loofah.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Library for manipulating and transforming HTML/XML documents and 
fragments."
+HOMEPAGE="https://github.com/flavorjones/loofah";
+SRC_URI="https://github.com/flavorjones/loofah/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
+IUSE=""
+
+ruby_add_rdepend "=dev-ruby/crass-1.0* >=dev-ruby/crass-1.0.2 
>=dev-ruby/nokogiri-1.5.9"
+
+ruby_add_bdepend "test? ( >=dev-ruby/rr-1.1.0 )"
+
+all_ruby_prepare() {
+   # Fix version in gemspec
+   sed -i -e '/s\.version/ s/".*"/"'${PV}'"/' ${RUBY_FAKEGEM_GEMSPEC} || 
die
+
+   # Avoid unneeded development dependencies
+   sed -i -e '/concourse/I s:^:#:' Rakefile || die
+
+   # Avoid test failing on different whitespace.
+   sed -i -e '/test_fragment_whitewash_on_microsofty_markup/askip 
"gentoo"' test/integration/test_ad_hoc.rb || die
+}
+
+each_ruby_test() {
+   ${RUBY} -Ilib:.:test -e 'Dir["test/**/test_*.rb"].each{|f| require f}' 
|| die
+}



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

2021-06-06 Thread Hans de Graaff
commit: 8ea2d4f22d368dcb9c0ee3f91f03f8d95f6167b5
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jun  7 04:49:38 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jun  7 04:49:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ea2d4f2

dev-ruby/loofah: amd64 stable

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

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

diff --git a/dev-ruby/loofah/loofah-2.8.0.ebuild 
b/dev-ruby/loofah/loofah-2.8.0.ebuild
index 000b13cda4d..50570d6e95f 100644
--- a/dev-ruby/loofah/loofah-2.8.0.ebuild
+++ b/dev-ruby/loofah/loofah-2.8.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/flavorjones/loofah/archive/v${PV}.tar.gz -> ${P}.tar
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
 IUSE=""
 
 ruby_add_rdepend "=dev-ruby/crass-1.0* >=dev-ruby/crass-1.0.2 
>=dev-ruby/nokogiri-1.5.9"



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

2021-06-06 Thread Hans de Graaff
commit: f6c5bb67d382277d253b00f79d6cf3a89975c446
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jun  7 04:56:01 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jun  7 04:56:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6c5bb67

dev-ruby/ruby_parser: add 3.16.0

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

 dev-ruby/ruby_parser/Manifest  |  1 +
 dev-ruby/ruby_parser/ruby_parser-3.16.0.ebuild | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/dev-ruby/ruby_parser/Manifest b/dev-ruby/ruby_parser/Manifest
index 6b4b41e2ba9..2d6a7339a9c 100644
--- a/dev-ruby/ruby_parser/Manifest
+++ b/dev-ruby/ruby_parser/Manifest
@@ -1,3 +1,4 @@
 DIST ruby_parser-3.14.2.gem 466432 BLAKE2B 
2694888b5b705733468eaf074f7f059814e2a230d1ec7390ef6b093c717534bfc6648a00240fd07d0f108ee1dcdc9f81b121a0ff0446d4ebf75fa5bf87006fa0
 SHA512 
65b8977fff322d4ecdbb8da1276d76318f08a13a25d8cf8429ba5ca7097c2b58c03431d60b05eec6cb62be316cf9b1efc753b86e8b67e076fd413d2324bc6655
 DIST ruby_parser-3.15.0.gem 527360 BLAKE2B 
c27b98052c0850df8decf123a471fbe541190b611b6abc803bd868749ab2c020d15935264d607ee617b8e75df44871b2985bd11bf17062051a172df935fedcd9
 SHA512 
f4d64a7f86d94a324b47f9354b8962a5b96d62ac41b6fedae602b0c3782bf2871ec3d0131770d886c5f58de188a7ed71fa3c31c548f53b75ff04474962b442ee
 DIST ruby_parser-3.15.1.gem 527360 BLAKE2B 
bb8c486f5c1e5da82aa6f0c2e0c08a8fa21928cb6fe1468f68d93cf79159848ae9f88f9eaa446d4d2a41b3f49e2cc961048f3bd6341da639aac99755095f5b8c
 SHA512 
221af19b0b3d035af1b57a098076989f93f8237da3a0833aa2dbc85d5840b343215a2e1421d4685f9cb49f1d85af8640623ce387fd5a22af440432f0699097a8
+DIST ruby_parser-3.16.0.gem 584704 BLAKE2B 
87b9308beb4434565b4238bc3e0faaff4c19fbb9531b534121e1e707a9c890be3450137a4190e819ac3cd77241abdbf4db04f4378c2f1f682d31b7bc6325c26d
 SHA512 
224c316097f11fc37e46d20edbfaa4f1bb29a7fc0ef5c86e6852d1df42673b50762941ca4f6a3386047e24fadeaaa8041f0322934b6df5a9e651fde5e3cc3703

diff --git a/dev-ruby/ruby_parser/ruby_parser-3.16.0.ebuild 
b/dev-ruby/ruby_parser/ruby_parser-3.16.0.ebuild
new file mode 100644
index 000..95016b97fe0
--- /dev/null
+++ b/dev-ruby/ruby_parser/ruby_parser-3.16.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby25 ruby26 ruby27 ruby30"
+
+RUBY_FAKEGEM_EXTRADOC="README.rdoc History.rdoc"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A ruby parser written in pure ruby"
+HOMEPAGE="https://github.com/seattlerb/ruby_parser";
+
+LICENSE="MIT"
+SLOT="3"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/sexp_processor-4.15.1:4"
+
+ruby_add_bdepend "test? ( dev-ruby/racc >=dev-ruby/minitest-4.3 
>=dev-ruby/sexp_processor-4.15.1:4 )"
+
+DEPEND+=" test? ( dev-util/unifdef )"
+
+all_ruby_prepare() {
+   # Remove reference to perforce method that is not in a released
+   # version of hoe-seattlerb.
+   #sed -i -e '/perforce/d' Rakefile || die
+   sed -i -e '/license/d' Rakefile || die
+   sed -i -e '/Hoe.plugin :isolate/ s:^:#:' Rakefile || die
+}
+
+each_ruby_test() {
+   ${RUBY} -Ilib:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || die
+}



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

2021-06-06 Thread Joonas Niilola
commit: fb0c00127cdc7b45a1e101c442f0403749b17258
Author: Zoltan Puskas  sinustrom  info>
AuthorDate: Mon May 10 02:17:11 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Jun  7 05:27:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb0c0012

app-misc/trash-cli: Bump to 0.21.5.25

Closes: https://bugs.gentoo.org/791538
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Zoltan Puskas  sinustrom.info>
Signed-off-by: Joonas Niilola  gentoo.org>

 app-misc/trash-cli/Manifest   |  1 +
 app-misc/trash-cli/trash-cli-0.21.5.25.ebuild | 28 +++
 2 files changed, 29 insertions(+)

diff --git a/app-misc/trash-cli/Manifest b/app-misc/trash-cli/Manifest
index 0abaeb5f7fe..9c1919a166b 100644
--- a/app-misc/trash-cli/Manifest
+++ b/app-misc/trash-cli/Manifest
@@ -1,2 +1,3 @@
 DIST trash-cli-0.20.11.23.tar.gz 69229 BLAKE2B 
f3650a037f00e6ce8cd7bd1ff5f3e11c794ceb09563193e2930eb9b81cd40120dd48f117e8c96d900a8221db9a68360ff633e591367bd544ad07045b1a505304
 SHA512 
d370687da706677de61c0d234d4cb4db4ff4d9da8cde60c361d11eaccf319e2e418969a7d49ec6edd456524b1275b63d1fcd49bc9a9012afabda1c7a8ad7de78
 DIST trash-cli-0.20.12.26.tar.gz 74542 BLAKE2B 
558e3cc043cdaef44bf68317e666c6f757daf9feeb6b731a57aba91ec983e1adb1e404f7e8428a7bd1225d83df6e94e8b9b793942bbb233f09a44127af0a42fa
 SHA512 
d0b0a97014c888ddda95759dc82837385a2809cae04bdf6a84dcf0233dc2cf9370253110bc5fdbc5c4452ebb65c5e7836fe1cfaa9aaabe38d34269724456cd1c
+DIST trash-cli-0.21.5.25.tar.gz 77067 BLAKE2B 
5db46b21ba33b9076ea7f024b93e62f30b3671f44a024b30013369607bd580f0ef9831debd9fdc6c64575ab6edde14aa921229bbd16a6a77657b7ed20b58c318
 SHA512 
75ef338b356048768febc4afd42933d8aa44cde5156e386968dad7b33033b84becaef3d39ccf15c02216394735f37d1c7c8cd49968d51247710e87590507

diff --git a/app-misc/trash-cli/trash-cli-0.21.5.25.ebuild 
b/app-misc/trash-cli/trash-cli-0.21.5.25.ebuild
new file mode 100644
index 000..77b7ce756f9
--- /dev/null
+++ b/app-misc/trash-cli/trash-cli-0.21.5.25.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+DISTUTILS_USE_SETUPTOOLS=bdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Python scripts to manipulate trash cans via the command line"
+HOMEPAGE="https://github.com/andreafrancia/trash-cli";
+SRC_URI="https://github.com/andreafrancia/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )"
+
+RDEPEND="
+   dev-python/psutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests nose



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

2021-06-06 Thread Joonas Niilola
commit: a2f8b09f751fdfd8aaedff28ac17dcaae602917b
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Jun  7 05:28:15 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Jun  7 05:28:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2f8b09f

app-misc/trash-cli: use pytest in 0.21.5.25

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

 app-misc/trash-cli/trash-cli-0.21.5.25.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app-misc/trash-cli/trash-cli-0.21.5.25.ebuild 
b/app-misc/trash-cli/trash-cli-0.21.5.25.ebuild
index 77b7ce756f9..de8339c9926 100644
--- a/app-misc/trash-cli/trash-cli-0.21.5.25.ebuild
+++ b/app-misc/trash-cli/trash-cli-0.21.5.25.ebuild
@@ -4,7 +4,6 @@
 EAPI=7
 
 PYTHON_COMPAT=( python3_{7,8,9} )
-DISTUTILS_USE_SETUPTOOLS=bdepend
 
 inherit distutils-r1
 
@@ -25,4 +24,4 @@ RDEPEND="
dev-python/psutil[${PYTHON_USEDEP}]
 "
 
-distutils_enable_tests nose
+distutils_enable_tests pytest



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

2021-06-06 Thread Joonas Niilola
commit: 3b7d1562964ba99686847df39d584b6b6138943a
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Jun  7 05:34:01 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Jun  7 05:34:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b7d1562

media-video/vcsi: add python-3.10 compatibility

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

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

diff --git a/media-video/vcsi/vcsi-7-r1.ebuild 
b/media-video/vcsi/vcsi-7-r1.ebuild
index e5ae4b42a49..a597fdeb48e 100644
--- a/media-video/vcsi/vcsi-7-r1.ebuild
+++ b/media-video/vcsi/vcsi-7-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_COMPAT=( python3_{7..10} )
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1



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

2021-06-06 Thread Joonas Niilola
commit: 15bcb0ab04deb7c7d87b5937aac42b0643ea2670
Author: Zoltan Puskas  sinustrom  info>
AuthorDate: Sun Jun  6 20:14:14 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Jun  7 05:27:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15bcb0ab

app-misc/trash-cli: Drop oldstable 0.20.11.23

Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Zoltan Puskas  sinustrom.info>
Closes: https://github.com/gentoo/gentoo/pull/20746
Signed-off-by: Joonas Niilola  gentoo.org>

 app-misc/trash-cli/Manifest   |  1 -
 app-misc/trash-cli/trash-cli-0.20.11.23-r1.ebuild | 28 ---
 2 files changed, 29 deletions(-)

diff --git a/app-misc/trash-cli/Manifest b/app-misc/trash-cli/Manifest
index 9c1919a166b..8fe593248b5 100644
--- a/app-misc/trash-cli/Manifest
+++ b/app-misc/trash-cli/Manifest
@@ -1,3 +1,2 @@
-DIST trash-cli-0.20.11.23.tar.gz 69229 BLAKE2B 
f3650a037f00e6ce8cd7bd1ff5f3e11c794ceb09563193e2930eb9b81cd40120dd48f117e8c96d900a8221db9a68360ff633e591367bd544ad07045b1a505304
 SHA512 
d370687da706677de61c0d234d4cb4db4ff4d9da8cde60c361d11eaccf319e2e418969a7d49ec6edd456524b1275b63d1fcd49bc9a9012afabda1c7a8ad7de78
 DIST trash-cli-0.20.12.26.tar.gz 74542 BLAKE2B 
558e3cc043cdaef44bf68317e666c6f757daf9feeb6b731a57aba91ec983e1adb1e404f7e8428a7bd1225d83df6e94e8b9b793942bbb233f09a44127af0a42fa
 SHA512 
d0b0a97014c888ddda95759dc82837385a2809cae04bdf6a84dcf0233dc2cf9370253110bc5fdbc5c4452ebb65c5e7836fe1cfaa9aaabe38d34269724456cd1c
 DIST trash-cli-0.21.5.25.tar.gz 77067 BLAKE2B 
5db46b21ba33b9076ea7f024b93e62f30b3671f44a024b30013369607bd580f0ef9831debd9fdc6c64575ab6edde14aa921229bbd16a6a77657b7ed20b58c318
 SHA512 
75ef338b356048768febc4afd42933d8aa44cde5156e386968dad7b33033b84becaef3d39ccf15c02216394735f37d1c7c8cd49968d51247710e87590507

diff --git a/app-misc/trash-cli/trash-cli-0.20.11.23-r1.ebuild 
b/app-misc/trash-cli/trash-cli-0.20.11.23-r1.ebuild
deleted file mode 100644
index c27b8153f31..000
--- a/app-misc/trash-cli/trash-cli-0.20.11.23-r1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-DISTUTILS_USE_SETUPTOOLS=no
-
-inherit distutils-r1
-
-DESCRIPTION="Python scripts to manipulate trash cans via the command line"
-HOMEPAGE="https://github.com/andreafrancia/trash-cli";
-SRC_URI="https://github.com/andreafrancia/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-BDEPEND="
-   test? (
-   dev-python/mock[${PYTHON_USEDEP}]
-   )"
-
-RDEPEND="
-   dev-python/psutil[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests nose



[gentoo-commits] repo/gentoo:master commit in: net-dns/maradns/, net-dns/maradns/files/

2021-06-06 Thread Joonas Niilola
commit: 4fbf9f4effb630645e5d64809a24e376099f2c30
Author: ktr...@yandex.ru  yandex  ru>
AuthorDate: Sun Jun  6 18:57:20 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Jun  7 05:19:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fbf9f4e

net-dns/maradns: version bump to 3.5.0020 and fixes

- fix ipv6/noipv6 building Deadwood
- still fixes compile flags
- small change in doc's installing

Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Victor Kustov  yandex.ru>
Closes: https://github.com/gentoo/gentoo/pull/21060
Signed-off-by: Joonas Niilola  gentoo.org>

 net-dns/maradns/Manifest   |   1 +
 .../files/maradns-3.5.0020-flags-ipv6.patch| 113 +
 net-dns/maradns/maradns-3.5.0020.ebuild|  96 +
 3 files changed, 210 insertions(+)

diff --git a/net-dns/maradns/Manifest b/net-dns/maradns/Manifest
index 3dc055a4f47..0483ddcd84f 100644
--- a/net-dns/maradns/Manifest
+++ b/net-dns/maradns/Manifest
@@ -1 +1,2 @@
 DIST maradns-3.5.0005.tar.xz 5351412 BLAKE2B 
c6b1c4fb93cb507045b3c09574d7ce30b0af92301e157216b4a5bbd2ed74ceb829ef4d11cd08048c7a685a09cdd4178cf3fc4e7b2465820d26d3a5c1b96f4a5e
 SHA512 
2e7008ff6217929008292dde60d96eb2ec0499a170e1b5bda5fcfb27300d2ce6cecd8b3e2a2d4b09ff32b803f9f435230378e6b2e41e7b63c42653d8c931151d
+DIST maradns-3.5.0020.tar.xz 7154452 BLAKE2B 
4d193c06620332b90f4a004e787f9cbe61cd48adcee1dd667ecf0383c0fb81f5b7cae40ee953f077b2ccf060d7429863f741cf942c34c862d6c56092bc40600b
 SHA512 
3478ccdc82d5be45826072f91c1b00c491f21f69bcce169cfeb3dfdd00e0012a9def884d711daa41ea18dce52e069dbb4c31e1e37ecda418565b5d8d6a0ea4d4

diff --git a/net-dns/maradns/files/maradns-3.5.0020-flags-ipv6.patch 
b/net-dns/maradns/files/maradns-3.5.0020-flags-ipv6.patch
new file mode 100644
index 000..4582dec4f56
--- /dev/null
+++ b/net-dns/maradns/files/maradns-3.5.0020-flags-ipv6.patch
@@ -0,0 +1,113 @@
+From 0a2159798edffdbc0fdba67b2ae4aeca118a2516 Mon Sep 17 00:00:00 2001
+From: Victor Kustov 
+Date: Mon, 31 May 2021 22:47:55 +0300
+Subject: [PATCH] fix
+
+---
+ build/Makefile.linux | 52 ++--
+ configure|  4 ++--
+ 2 files changed, 28 insertions(+), 28 deletions(-)
+
+diff --git a/build/Makefile.linux b/build/Makefile.linux
+index 965c7fb..62c20b9 100644
+--- a/build/Makefile.linux
 b/build/Makefile.linux
+@@ -24,48 +24,48 @@ EXECS=server/maradns
+ # end the Solaris section
+ # Non-Solaris version of "M"
+ V="VERSION=$(VERSION)"
+-Q="DEFINES=-DSELECT_PROBLEM"
++Q="$(LDFLAGS) DEFINES=-DSELECT_PROBLEM"
+ 
+ # Debug
+ 
+ FLAGS = -O2 -Wall -DSELECT_PROBLEM
+-M="CC=$(CC) $(FLAGS)"
+-D="CC=$(CC) $(FLAGS) -DDEBUG -DTHREADS"
++M="CC=$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)"
++D="CC=$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -DDEBUG -DTHREADS"
+ #FLAGS = -g
+ 
+ all: 
+-  cd libs ; make $(M) ; cd ../dns ; make $(M) ; \
+-  cd ../rng ; make $(M) ; cd ../parse ; make $(M) ; \
+-  cd ../qual ; make $(M) ; cd ../server ; \
++  cd libs ; $(MAKE) $(M) ; cd ../dns ; $(MAKE) $(M) ; \
++  cd ../rng ; $(MAKE) $(M) ; cd ../parse ; $(MAKE) $(M) ; \
++  cd ../qual ; $(MAKE) $(M) ; cd ../server ; \
+   make $(M) $(V) COMPILED=\"$(COMPILED)\" ; \
+-  cd ../tools ; make $(M) ; \
+-  cd ../deadwood-*/src/ ; make FLAGS=-O2 ; \
+-  cd ../../tcp ; make $(M) $(V) ; cat ../00README.FIRST
++  cd ../tools ; $(MAKE) $(M) ; \
++  cd ../deadwood-*/src/ ; $(MAKE)  $(M) ; \
++  cd ../../tcp ; $(MAKE) $(M) $(V) ; cat ../00README.FIRST
+ 
+ debug: 
+-  cd libs ; make $(D) DEBUG="-DDEBUG -DTHREADS" ; \
+-  cd ../dns ; make $(D) ; cd ../rng ; make $(D) ; \
+-  cd ../parse ; make $(D) ; cd ../qual ; make $(D) ; \
++  cd libs ; $(MAKE) $(D) DEBUG="-DDEBUG -DTHREADS" ; \
++  cd ../dns ; $(MAKE) $(D) ; cd ../rng ; $(MAKE) $(D) ; \
++  cd ../parse ; $(MAKE) $(D) ; cd ../qual ; $(MAKE) $(D) ; \
+   cd ../server ; \
+   make $(D) $(Q) $(V) COMPILED=\"$(COMPILED_DEBUG)\" ; \
+-  cd ../tools ; make $(D) ; \
+-  cd ../tcp ; make $(D) $(V) ; cat ../00README.FIRST
++  cd ../tools ; $(MAKE) $(D) ; \
++  cd ../tcp ; $(MAKE) $(D) $(V) ; cat ../00README.FIRST
+ 
+ clean:
+   rm -f $(OBJECTS) core $(EXECS) ; \
+-  cp build/Makefile.w Makefile ; cd dns ; make clean ; \
+-  cd ../libs ; make clean ; cd ../parse ; make clean ; \
+-  cd ../qual ; make clean ; \
+-  cd ../server ; make clean ; \
++  cp build/Makefile.w Makefile ; cd dns ; $(MAKE) clean ; \
++  cd ../libs ; $(MAKE) clean ; cd ../parse ; $(MAKE) clean ; \
++  cd ../qual ; $(MAKE) clean ; \
++  cd ../server ; $(MAKE) clean ; \
+   cp Makefile.recursive Makefile ; \
+-  cd ../test ; make clean ; \
+-  cd ../tools ; make clean ; \
+-  cd misc ; make clean ; \
+-  cd ../../utf8 ; make clean ; \
+-  cd ../tcp ; make clean ; \
+-  cd ../rng ; make clean ; \
+-  c

[gentoo-commits] repo/gentoo:master commit in: dev-haskell/integer-logarithms/

2021-06-06 Thread Sergei Trofimovich
commit: fe022b2572a25a7978110d0aa8ef6d4c569582e8
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:16:17 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:16:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe022b25

dev-haskell/integer-logarithms: bump up to 1.0.3.1

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

 dev-haskell/integer-logarithms/Manifest|  1 +
 .../integer-logarithms-1.0.3.1.ebuild  | 40 ++
 dev-haskell/integer-logarithms/metadata.xml|  8 -
 3 files changed, 41 insertions(+), 8 deletions(-)

diff --git a/dev-haskell/integer-logarithms/Manifest 
b/dev-haskell/integer-logarithms/Manifest
index 6ff7af00eb8..133ba4d2cde 100644
--- a/dev-haskell/integer-logarithms/Manifest
+++ b/dev-haskell/integer-logarithms/Manifest
@@ -1 +1,2 @@
+DIST integer-logarithms-1.0.3.1.tar.gz 9023 BLAKE2B 
29a9e2e73a6fb63f31ad87b53161b9f669a3cf6fed2992d7bf7414d9c9cff9cbe00baa301f7a7889fc0a31ff635d85dafc49ed5ce3f009202ba017b47e75c8a0
 SHA512 
670aff419de8d6afd1b7e1a40b68290bcf7aefad788c3b08aebfa5ca3e709f5d22543fce82fb75dc18b3ba0ef6d8a8f61735cde647a7a6c9392a60ec365534b3
 DIST integer-logarithms-1.0.3.tar.gz 8840 BLAKE2B 
d59a01c2b712c499ee5c81da0d8055d96137f5a1c55ccc5a77ca99449743b753223949de2a0289965423ae16bb61eef7452ace736cc5a0d6448d7f1ab8318fed
 SHA512 
b211127620bb52398ae7e64281f991d9dd016d5f74ff5d939275afea15689b01f82577efeaa2dfcdf4230cfea841f6c14f731ba16d38192f48e2e7ae90e704f3

diff --git a/dev-haskell/integer-logarithms/integer-logarithms-1.0.3.1.ebuild 
b/dev-haskell/integer-logarithms/integer-logarithms-1.0.3.1.ebuild
new file mode 100644
index 000..862daf5a24e
--- /dev/null
+++ b/dev-haskell/integer-logarithms/integer-logarithms-1.0.3.1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# ebuild generated by hackport 0.6.7.
+#hackport: flags: -check-bounds,+integer-gmp
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour" # test-suite"
+inherit haskell-cabal
+
+DESCRIPTION="Integer logarithms"
+HOMEPAGE="https://github.com/haskellari/integer-logarithms";
+SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz";
+
+LICENSE="MIT"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+#circular dependency: scientific -> integer-logarithms -> tasty -> scientific
+RESTRICT=test
+
+RDEPEND=">=dev-lang/ghc-8.4.3:=
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-2.2.0.1"
+#  test? ( >=dev-haskell/quickcheck-2.14.1 =dev-haskell/smallcheck-1.2 =dev-haskell/tasty-0.10 =dev-haskell/tasty-hunit-0.9 =dev-haskell/tasty-quickcheck-0.8 
=dev-haskell/tasty-smallcheck-0.8 
hask...@gentoo.org
Gentoo Haskell

-   
-   "Math.NumberTheory.Logarithms" and 
"Math.NumberTheory.Powers.Integer"
-   from the arithmoi package.
-   
-   Also provides "GHC.Integer.Logarithms.Compat" and
-   "Math.NumberTheory.Power.Natural" modules, as well as some
-   additional functions in migrated modules.
-   
 



[gentoo-commits] repo/gentoo:master commit in: net-firewall/nfacct/

2021-06-06 Thread Georgy Yakovlev
commit: 6d3983dfcb989016786695462d33f25eb9a01837
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun  7 05:53:38 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jun  7 06:17:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d3983df

net-firewall/nfacct: keyword 1.0.2 for ~ppc64

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

 net-firewall/nfacct/nfacct-1.0.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-firewall/nfacct/nfacct-1.0.2.ebuild 
b/net-firewall/nfacct/nfacct-1.0.2.ebuild
index e5e078f04e8..e8f02e4ce7f 100644
--- a/net-firewall/nfacct/nfacct-1.0.2.ebuild
+++ b/net-firewall/nfacct/nfacct-1.0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ 
SRC_URI="https://www.netfilter.org/projects/${PN}/files/${P}.tar.bz2";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 ~arm ~ppc64 x86"
 
 RDEPEND="
net-libs/libmnl



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/netdata/

2021-06-06 Thread Georgy Yakovlev
commit: e6b1c8df363da27eb5f46c6f494821755c0d52c2
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun  7 05:55:00 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jun  7 06:17:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6b1c8df

net-analyzer/netdata: keyword 1.31.0 for ~ppc64

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

 net-analyzer/netdata/netdata-1.31.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/netdata/netdata-1.31.0.ebuild 
b/net-analyzer/netdata/netdata-1.31.0.ebuild
index 64c8c68c5aa..250ba90c151 100644
--- a/net-analyzer/netdata/netdata-1.31.0.ebuild
+++ b/net-analyzer/netdata/netdata-1.31.0.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
 else

SRC_URI="https://github.com/netdata/${PN}/releases/download/v${PV}/${PN}-v${PV}.tar.gz
 -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-v${PV}"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~ppc64 ~x86"
 fi
 
 DESCRIPTION="Linux real time system monitoring, done right!"



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/netdata/

2021-06-06 Thread Georgy Yakovlev
commit: a743c9efec142dd8d7dff92a290a86835d07b7ad
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun  7 05:55:31 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jun  7 06:17:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a743c9ef

net-analyzer/netdata: sync live ebuild keywords

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

 net-analyzer/netdata/netdata-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/netdata/netdata-.ebuild 
b/net-analyzer/netdata/netdata-.ebuild
index 64c8c68c5aa..250ba90c151 100644
--- a/net-analyzer/netdata/netdata-.ebuild
+++ b/net-analyzer/netdata/netdata-.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
 else

SRC_URI="https://github.com/netdata/${PN}/releases/download/v${PV}/${PN}-v${PV}.tar.gz
 -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-v${PV}"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~ppc64 ~x86"
 fi
 
 DESCRIPTION="Linux real time system monitoring, done right!"



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

2021-06-06 Thread Georgy Yakovlev
commit: f71f27b3bbabfe9842574971acbd7d784d7d0469
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun  7 06:03:49 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jun  7 06:17:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f71f27b3

profiles/arch/powerpc: mask xen

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

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

diff --git a/profiles/arch/powerpc/use.mask b/profiles/arch/powerpc/use.mask
index dc1ed5ab98c..05881727de1 100644
--- a/profiles/arch/powerpc/use.mask
+++ b/profiles/arch/powerpc/use.mask
@@ -4,6 +4,10 @@
 # PPC Specific use flags
 #
 
+# Georgy Yakovlev  (2021-06-06)
+# XEN does not support ppc/ppc64 yet
+xen
+
 # David Seifert 

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

2021-06-06 Thread Georgy Yakovlev
commit: 7b8b64001f15cd9f9f898582cce4f1dcb0a36b84
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun  7 05:50:59 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jun  7 06:17:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b8b6400

net-libs/libwebsockets: keyword 4.2.0 for ~ppc64

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

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

diff --git a/net-libs/libwebsockets/libwebsockets-4.2.0.ebuild 
b/net-libs/libwebsockets/libwebsockets-4.2.0.ebuild
index 3150830664b..42991e83c78 100644
--- a/net-libs/libwebsockets/libwebsockets-4.2.0.ebuild
+++ b/net-libs/libwebsockets/libwebsockets-4.2.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/warmcat/libwebsockets/archive/v${PV}.tar.gz -> ${P}.
 
 LICENSE="MIT"
 SLOT="0/18" # libwebsockets.so.18
-KEYWORDS="amd64 arm arm64 ~ppc x86"
+KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 x86"
 IUSE="access-log caps cgi client dbus generic-sessions http-proxy http2 ipv6
+lejp libev libevent libuv mbedtls peer-limits server-status smtp socks5
sqlite3 ssl threads zip"



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

2021-06-06 Thread Georgy Yakovlev
commit: 42b46a624d1c31c935e6d06a1aa74b4ee8e0f37c
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun  7 06:05:33 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jun  7 06:17:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42b46a62

profiles/arch/powerpc/ppc64/64ul: mask netdata[kinesis,mongo]

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

 profiles/arch/powerpc/ppc64/64ul/package.use.mask | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/arch/powerpc/ppc64/64ul/package.use.mask 
b/profiles/arch/powerpc/ppc64/64ul/package.use.mask
index ff9223177e3..5bd532ae7d8 100644
--- a/profiles/arch/powerpc/ppc64/64ul/package.use.mask
+++ b/profiles/arch/powerpc/ppc64/64ul/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Georgy Yakovlev  (2021-06-06)
+# deps not keyworded
+net-analyzer/netdata kinesis mongo
+
 # Michał Górny  (2021-03-06)
 # LLVM 9 has been removed.
 dev-util/perf clang



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/robin-hood-hashing/

2021-06-06 Thread Sergei Trofimovich
commit: f813afc7ce7deacf0a60b3adca8545754d3ee4dd
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:19:36 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:19:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f813afc7

dev-cpp/robin-hood-hashing: keyworded 3.11.2 for ppc

keyworded wrt bug #792360

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-cpp/robin-hood-hashing/robin-hood-hashing-3.11.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/robin-hood-hashing/robin-hood-hashing-3.11.2.ebuild 
b/dev-cpp/robin-hood-hashing/robin-hood-hashing-3.11.2.ebuild
index 13577d90c00..7b03f771bc4 100644
--- a/dev-cpp/robin-hood-hashing/robin-hood-hashing-3.11.2.ebuild
+++ b/dev-cpp/robin-hood-hashing/robin-hood-hashing-3.11.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64"
 SRC_URI="https://github.com/martinus/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 DESCRIPTION="Fast & memory efficient hashtable based on robin hood hashing for 
C++11/14/17/20"



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

2021-06-06 Thread Sergei Trofimovich
commit: 09fb145027866e0c93154471a2039ed5f8785c09
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:19:45 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:19:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09fb1450

dev-util/vulkan-tools: keyworded 1.2.179 for ppc

keyworded wrt bug #792360

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/vulkan-tools/vulkan-tools-1.2.179.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/vulkan-tools/vulkan-tools-1.2.179.ebuild 
b/dev-util/vulkan-tools/vulkan-tools-1.2.179.ebuild
index 14d7bb81d12..dd3ff96da94 100644
--- a/dev-util/vulkan-tools/vulkan-tools-1.2.179.ebuild
+++ b/dev-util/vulkan-tools/vulkan-tools-1.2.179.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64"
S="${WORKDIR}"/${MY_PN}-${PV}
 fi
 



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

2021-06-06 Thread Sergei Trofimovich
commit: 16cca7d6b544795d565bd088223a3963010632fa
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:19:47 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:19:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16cca7d6

dev-ruby/ice_nine: keyworded 0.11.2-r1 for ppc

keyworded wrt bug #790740

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-ruby/ice_nine/ice_nine-0.11.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/ice_nine/ice_nine-0.11.2-r1.ebuild 
b/dev-ruby/ice_nine/ice_nine-0.11.2-r1.ebuild
index f3f634c7260..714186ccb68 100644
--- a/dev-ruby/ice_nine/ice_nine-0.11.2-r1.ebuild
+++ b/dev-ruby/ice_nine/ice_nine-0.11.2-r1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="https://rubygems.org/gems/ice_nine 
https://github.com/dkubb/ice_nine";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~sparc"
 IUSE=""
 
 RESTRICT="test"



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

2021-06-06 Thread Sergei Trofimovich
commit: 7c543f537ad09167c93078abb25aa87718916b25
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:19:42 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:19:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c543f53

media-libs/vulkan-loader: keyworded 1.2.179 for ppc

keyworded wrt bug #792360

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-libs/vulkan-loader/vulkan-loader-1.2.179.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/vulkan-loader/vulkan-loader-1.2.179.ebuild 
b/media-libs/vulkan-loader/vulkan-loader-1.2.179.ebuild
index 79d96bf973d..52680c70524 100644
--- a/media-libs/vulkan-loader/vulkan-loader-1.2.179.ebuild
+++ b/media-libs/vulkan-loader/vulkan-loader-1.2.179.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64"
S="${WORKDIR}"/${MY_PN}-${PV}
 fi
 



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

2021-06-06 Thread Sergei Trofimovich
commit: 7b2a8aab9fecb0bed7bb7cf1c5a4e90c106aa424
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:19:49 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:19:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b2a8aab

dev-ruby/regexp_parser: keyworded 2.1.1-r1 for ppc

keyworded wrt bug #790740

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-ruby/regexp_parser/regexp_parser-2.1.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/regexp_parser/regexp_parser-2.1.1-r1.ebuild 
b/dev-ruby/regexp_parser/regexp_parser-2.1.1-r1.ebuild
index 71af0790208..a4803be95fe 100644
--- a/dev-ruby/regexp_parser/regexp_parser-2.1.1-r1.ebuild
+++ b/dev-ruby/regexp_parser/regexp_parser-2.1.1-r1.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/ammar/regexp_parser/archive/v${PV}.tar.gz -> ${P}.ta
 
 LICENSE="MIT"
 SLOT="$(ver_cut 1)"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~sparc"
 IUSE=""
 
 DEPEND+=" =dev-util/ragel-6*"



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

2021-06-06 Thread Sergei Trofimovich
commit: a3bfa2699d26cb86199d10faaa571aceb5bf0883
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:19:39 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:19:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3bfa269

media-libs/vulkan-layers: keyworded 1.2.179 for ppc

keyworded wrt bug #792360

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-libs/vulkan-layers/vulkan-layers-1.2.179.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/vulkan-layers/vulkan-layers-1.2.179.ebuild 
b/media-libs/vulkan-layers/vulkan-layers-1.2.179.ebuild
index 2950360f4c7..07c02145ee3 100644
--- a/media-libs/vulkan-layers/vulkan-layers-1.2.179.ebuild
+++ b/media-libs/vulkan-layers/vulkan-layers-1.2.179.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64"
S="${WORKDIR}"/${MY_PN}-${PV}
 fi
 



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-characters/

2021-06-06 Thread Georgy Yakovlev
commit: ca2d66c0e64a1ade421b8e86aba5420e6b88162d
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  2 15:53:00 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jun  7 06:21:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca2d66c0

gnome-extra/gnome-characters: add ~ppc64 keyword

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

 gnome-extra/gnome-characters/gnome-characters-40.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/gnome-characters/gnome-characters-40.0.ebuild 
b/gnome-extra/gnome-characters/gnome-characters-40.0.ebuild
index 37a15a0b405..ad852bf8356 100644
--- a/gnome-extra/gnome-characters/gnome-characters-40.0.ebuild
+++ b/gnome-extra/gnome-characters/gnome-characters-40.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.gnome.org/Design/Apps/CharacterMap";
 
 LICENSE="GPL-2+ BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 
 RDEPEND="
>=dev-libs/gjs-1.50



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-calendar/

2021-06-06 Thread Georgy Yakovlev
commit: 212650ee8112992f791fa380f93d530c43df53f0
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  2 15:48:56 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jun  7 06:21:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=212650ee

gnome-extra/gnome-calendar: add ~ppc64 keyword

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

 gnome-extra/gnome-calendar/gnome-calendar-40.1.ebuild | 2 +-
 gnome-extra/gnome-calendar/gnome-calendar-40.2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnome-extra/gnome-calendar/gnome-calendar-40.1.ebuild 
b/gnome-extra/gnome-calendar/gnome-calendar-40.1.ebuild
index ec92dd3fcfd..3b44fd1d02e 100644
--- a/gnome-extra/gnome-calendar/gnome-calendar-40.1.ebuild
+++ b/gnome-extra/gnome-calendar/gnome-calendar-40.1.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Calendar";
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 
 # >=libical-1.0.1 for https://bugzilla.gnome.org/show_bug.cgi?id=751244
 DEPEND="

diff --git a/gnome-extra/gnome-calendar/gnome-calendar-40.2.ebuild 
b/gnome-extra/gnome-calendar/gnome-calendar-40.2.ebuild
index 5cb90545e6f..ac5e1d4c4c4 100644
--- a/gnome-extra/gnome-calendar/gnome-calendar-40.2.ebuild
+++ b/gnome-extra/gnome-calendar/gnome-calendar-40.2.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Calendar";
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 
 # >=libical-1.0.1 for https://bugzilla.gnome.org/show_bug.cgi?id=751244
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-weather/

2021-06-06 Thread Georgy Yakovlev
commit: 3218e5bf5c9024b3403e6064fa82d39160eda0b6
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  2 15:53:30 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jun  7 06:21:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3218e5bf

gnome-extra/gnome-weather: add ~ppc64 keyword

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

 gnome-extra/gnome-weather/gnome-weather-40.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/gnome-weather/gnome-weather-40.0.ebuild 
b/gnome-extra/gnome-weather/gnome-weather-40.0.ebuild
index 72bdad82ee2..0302c9bd140 100644
--- a/gnome-extra/gnome-weather/gnome-weather-40.0.ebuild
+++ b/gnome-extra/gnome-weather/gnome-weather-40.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.gnome.org/Design/Apps/Weather";
 
 LICENSE="GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 
 DEPEND="
>=dev-libs/glib-2.32:2



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

2021-06-06 Thread Georgy Yakovlev
commit: 1f6351c5275e68668743be0390e51d6531035e6d
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  2 16:15:59 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jun  7 06:22:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f6351c5

media-sound/gnome-music: add ~ppc64 keyword

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

 media-sound/gnome-music/gnome-music-40.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/gnome-music/gnome-music-40.0.ebuild 
b/media-sound/gnome-music/gnome-music-40.0.ebuild
index b9e291603ed..21901b88118 100644
--- a/media-sound/gnome-music/gnome-music-40.0.ebuild
+++ b/media-sound/gnome-music/gnome-music-40.0.ebuild
@@ -13,7 +13,7 @@ LICENSE="GPL-2+"
 SLOT="0"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 
 DEPEND="${PYTHON_DEPS}
>=dev-libs/glib-2.50:2



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

2021-06-06 Thread Georgy Yakovlev
commit: e39a21578171f0dacb598a99c9d8f39b82b11ad9
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  2 16:34:16 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jun  7 06:23:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e39a2157

dev-util/dogtail: add ~ppc64 keyword

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

 dev-util/dogtail/dogtail-0.9.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/dogtail/dogtail-0.9.11.ebuild 
b/dev-util/dogtail/dogtail-0.9.11.ebuild
index 89c5bb69956..90994c0714e 100644
--- a/dev-util/dogtail/dogtail-0.9.11.ebuild
+++ b/dev-util/dogtail/dogtail-0.9.11.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://gitlab.com/${PN}/${PN}/raw/released/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 IUSE=""
 
 RDEPEND="



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

2021-06-06 Thread Georgy Yakovlev
commit: 50cd8791cb0b0fa09ddeec7d29e67ca1599348a1
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  2 16:14:44 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jun  7 06:22:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50cd8791

net-libs/libgfbgraph: add ~ppc64 keyword

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

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

diff --git a/net-libs/libgfbgraph/libgfbgraph-0.2.4.ebuild 
b/net-libs/libgfbgraph/libgfbgraph-0.2.4.ebuild
index e73dd6ac971..fd523668829 100644
--- a/net-libs/libgfbgraph/libgfbgraph-0.2.4.ebuild
+++ b/net-libs/libgfbgraph/libgfbgraph-0.2.4.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/libgfbgraph/";
 
 LICENSE="LGPL-2.1+"
 SLOT="0.2"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 IUSE="+introspection"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-Slurp/

2021-06-06 Thread Sergei Trofimovich
commit: 93a0562dcfa76b409e916bbc2e211c4942d111d3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:00 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93a0562d

dev-perl/File-Slurp: stable .320.0 for ppc

stable wrt bug #793281

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/File-Slurp/File-Slurp-.320.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-Slurp/File-Slurp-.320.0.ebuild 
b/dev-perl/File-Slurp/File-Slurp-.320.0.ebuild
index 2fdf50f2330..a8e8fa4ee70 100644
--- a/dev-perl/File-Slurp/File-Slurp-.320.0.ebuild
+++ b/dev-perl/File-Slurp/File-Slurp-.320.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Simple and Efficient Reading/Writing/Modifying of Complete Files"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-Slurper/

2021-06-06 Thread Sergei Trofimovich
commit: c9cda0411f12e2a940d26b25b5d4628a42882190
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:21:58 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9cda041

dev-perl/File-Slurper: stable 0.12.0 for ppc

stable wrt bug #793284

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/File-Slurper/File-Slurper-0.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-Slurper/File-Slurper-0.12.0.ebuild 
b/dev-perl/File-Slurper/File-Slurper-0.12.0.ebuild
index 4c9ada1c9f3..9b949edaebb 100644
--- a/dev-perl/File-Slurper/File-Slurper-0.12.0.ebuild
+++ b/dev-perl/File-Slurper/File-Slurper-0.12.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="A simple, sane and efficient module to slurp a file"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/List-MoreUtils/

2021-06-06 Thread Sergei Trofimovich
commit: f523008b8a0a85c46d871d6c96ca14b77c39c003
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:07 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f523008b

dev-perl/List-MoreUtils: stable 0.428.0 for ppc

stable wrt bug #793275

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/List-MoreUtils/List-MoreUtils-0.428.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/List-MoreUtils/List-MoreUtils-0.428.0.ebuild 
b/dev-perl/List-MoreUtils/List-MoreUtils-0.428.0.ebuild
index e3e37480e3f..1c065eea4dc 100644
--- a/dev-perl/List-MoreUtils/List-MoreUtils-0.428.0.ebuild
+++ b/dev-perl/List-MoreUtils/List-MoreUtils-0.428.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Provide the missing functionality from List::Util"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x86-solaris"
 IUSE="test +xs"
 RESTRICT="!test? ( test )"
 # See MoreUtils.pm/LICENSE



[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-ShareDir-Install/

2021-06-06 Thread Sergei Trofimovich
commit: 842e579690f5dbaec3b477dbed911c897852eaaa
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:03 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=842e5796

dev-perl/File-ShareDir-Install: stable 0.130.0 for ppc

stable wrt bug #793278

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/File-ShareDir-Install/File-ShareDir-Install-0.130.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-perl/File-ShareDir-Install/File-ShareDir-Install-0.130.0.ebuild 
b/dev-perl/File-ShareDir-Install/File-ShareDir-Install-0.130.0.ebuild
index cc620b7c076..b5d60e097b0 100644
--- a/dev-perl/File-ShareDir-Install/File-ShareDir-Install-0.130.0.ebuild
+++ b/dev-perl/File-ShareDir-Install/File-ShareDir-Install-0.130.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Install shared files"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-06-06 Thread Sergei Trofimovich
commit: 33f1e86ae2023afe4d8e6a0b3ba8974aae648058
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:10 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33f1e86a

net-vpn/strongswan: stable 5.9.2 for ppc

stable wrt bug #793269

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 net-vpn/strongswan/strongswan-5.9.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/strongswan/strongswan-5.9.2.ebuild 
b/net-vpn/strongswan/strongswan-5.9.2.ebuild
index 8f197987d17..b7b28afa8ea 100644
--- a/net-vpn/strongswan/strongswan-5.9.2.ebuild
+++ b/net-vpn/strongswan/strongswan-5.9.2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://download.strongswan.org/${P}.tar.bz2";
 
 LICENSE="GPL-2 RSA DES"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 arm ~arm64 ppc ~ppc64 x86"
 IUSE="+caps curl +constraints debug dhcp eap farp gcrypt +gmp ldap mysql 
networkmanager +non-root +openssl selinux sqlite systemd pam pkcs11"
 
 STRONGSWAN_PLUGINS_STD="led lookip systime-fix unity vici"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-Remove/

2021-06-06 Thread Sergei Trofimovich
commit: c64913e5b82f08dfcb146ab8c2e4519e9e8075ff
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:12 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c64913e5

dev-perl/File-Remove: stable 1.580.0 for ppc

stable wrt bug #793263

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/File-Remove/File-Remove-1.580.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-Remove/File-Remove-1.580.0.ebuild 
b/dev-perl/File-Remove/File-Remove-1.580.0.ebuild
index d87d2796ebd..7771178a504 100644
--- a/dev-perl/File-Remove/File-Remove-1.580.0.ebuild
+++ b/dev-perl/File-Remove/File-Remove-1.580.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Remove files and directories"
 LICENSE="|| ( Artistic GPL-1+ ) || ( CC0-1.0 public-domain MIT )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-HomeDir/

2021-06-06 Thread Sergei Trofimovich
commit: 95b39ebeaeee3d0c5ec06ccabc92686bfb15fa74
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:23 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95b39ebe

dev-perl/File-HomeDir: stable 1.6.0 for ppc

stable wrt bug #793059

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/File-HomeDir/File-HomeDir-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-HomeDir/File-HomeDir-1.6.0.ebuild 
b/dev-perl/File-HomeDir/File-HomeDir-1.6.0.ebuild
index 20c549c387e..4f2a68277ed 100644
--- a/dev-perl/File-HomeDir/File-HomeDir-1.6.0.ebuild
+++ b/dev-perl/File-HomeDir/File-HomeDir-1.6.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Get home directory for self or other user"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="+xdg test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/IO-Interactive/

2021-06-06 Thread Sergei Trofimovich
commit: 3ce561a5c2cd2408e67d9471d0535a39d6fedae0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:37 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ce561a5

dev-perl/IO-Interactive: stable 1.22.0 for ppc

stable wrt bug #791562

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/IO-Interactive/IO-Interactive-1.22.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/IO-Interactive/IO-Interactive-1.22.0.ebuild 
b/dev-perl/IO-Interactive/IO-Interactive-1.22.0.ebuild
index 3acb6f7352a..30537a8f237 100644
--- a/dev-perl/IO-Interactive/IO-Interactive-1.22.0.ebuild
+++ b/dev-perl/IO-Interactive/IO-Interactive-1.22.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Utilities for interactive I/O"
 
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~riscv x86"
+KEYWORDS="amd64 ppc ~riscv x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/extra-cmake-modules/

2021-06-06 Thread Sergei Trofimovich
commit: 64a2392310cce9b6b4b8f38a177bd07c576f2af9
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:39 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64a23923

kde-frameworks/extra-cmake-modules: stable 5.82.0 for ppc

stable wrt bug #788820

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.82.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.82.0.ebuild 
b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.82.0.ebuild
index c5dfbb52213..3a6ed56d80f 100644
--- a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.82.0.ebuild
+++ b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.82.0.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Extra modules and scripts for CMake"
 HOMEPAGE="https://invent.kde.org/frameworks/extra-cmake-modules";
 
 LICENSE="BSD"
-KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~hppa ppc ~ppc64 x86"
 IUSE="doc test"
 
 RESTRICT+=" !test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-pushd/

2021-06-06 Thread Sergei Trofimovich
commit: 45ae68a723774ac1d2bae9e38f644763a3809623
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:14 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45ae68a7

dev-perl/File-pushd: stable 1.16.0 for ppc

stable wrt bug #793260

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/File-pushd/File-pushd-1.16.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-pushd/File-pushd-1.16.0.ebuild 
b/dev-perl/File-pushd/File-pushd-1.16.0.ebuild
index 286ca1f7a8a..3e6fa1a895e 100644
--- a/dev-perl/File-pushd/File-pushd-1.16.0.ebuild
+++ b/dev-perl/File-pushd/File-pushd-1.16.0.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Change directory temporarily for a limited scope"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-06-06 Thread Sergei Trofimovich
commit: 5e1317901abcf308b0085cc040f34f2961375770
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:17 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e131790

app-editors/emacs: stable 27.2 for ppc

stable wrt bug #793113

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-editors/emacs/emacs-27.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/emacs/emacs-27.2.ebuild 
b/app-editors/emacs/emacs-27.2.ebuild
index b5355a44356..271469e3625 100644
--- a/app-editors/emacs/emacs-27.2.ebuild
+++ b/app-editors/emacs/emacs-27.2.ebuild
@@ -33,7 +33,7 @@ else
fi
SLOT="${PV%%.*}"
[[ ${PV} == *.*.* ]] && SLOT+="-vcs"
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 fi
 
 DESCRIPTION="The extensible, customizable, self-documenting real-time display 
editor"



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

2021-06-06 Thread Sergei Trofimovich
commit: 860b360a5bfbb47ccc6559d5068291fa6218185d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:34 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=860b360a

net-misc/dhcp: stable 4.4.2_p1 for ppc

stable wrt bug #792324

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 net-misc/dhcp/dhcp-4.4.2_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/dhcp/dhcp-4.4.2_p1.ebuild 
b/net-misc/dhcp/dhcp-4.4.2_p1.ebuild
index b073122583b..0cb341b0cec 100644
--- a/net-misc/dhcp/dhcp-4.4.2_p1.ebuild
+++ b/net-misc/dhcp/dhcp-4.4.2_p1.ebuild
@@ -18,7 +18,7 @@ SRC_URI="ftp://ftp.isc.org/isc/dhcp/${MY_P}.tar.gz
 
 LICENSE="MPL-2.0 BSD SSLeay GPL-2" # GPL-2 only for init script
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc 
x86"
 IUSE="+client ipv6 kernel_linux ldap selinux +server ssl vim-syntax"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-LibMagic/

2021-06-06 Thread Sergei Trofimovich
commit: d67b9d608731aca5cbbc6f1daec72263f7bbdff3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:23:38 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d67b9d60

dev-perl/File-LibMagic: stable 1.230.0 for ppc

stable wrt bug #793062

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/File-LibMagic/File-LibMagic-1.230.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-LibMagic/File-LibMagic-1.230.0.ebuild 
b/dev-perl/File-LibMagic/File-LibMagic-1.230.0.ebuild
index 3c0dca32865..2103983f26a 100644
--- a/dev-perl/File-LibMagic/File-LibMagic-1.230.0.ebuild
+++ b/dev-perl/File-LibMagic/File-LibMagic-1.230.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Perl wrapper for libmagic"
 
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 sparc ~x86"
+KEYWORDS="amd64 ~hppa ppc ~ppc64 sparc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-06-06 Thread Sergei Trofimovich
commit: 0f6cdebee6f1186da80f2c3776b21e488ccbf813
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:49 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f6cdebe

media-video/ffmpeg: stable 4.4 for ppc

stable wrt bug #781146

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/media-video/ffmpeg/ffmpeg-4.4.ebuild 
b/media-video/ffmpeg/ffmpeg-4.4.ebuild
index aa2fd13df6e..0b38621720e 100644
--- a/media-video/ffmpeg/ffmpeg-4.4.ebuild
+++ b/media-video/ffmpeg/ffmpeg-4.4.ebuild
@@ -59,7 +59,7 @@ LICENSE="
samba? ( GPL-3 )
 "
 if [ "${PV#}" = "${PV}" ] ; then
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 sparc x86 
~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 
~amd64-linux ~x86-linux"
 fi
 
 # Options to use as use_enable in the foo[:bar] form.



[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-ShareDir/

2021-06-06 Thread Sergei Trofimovich
commit: 8028e24277ad97c95757f52f66641c40a3dd837f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:23:29 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8028e242

dev-perl/File-ShareDir: stable 1.116.0 for ppc

stable wrt bug #793275

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/File-ShareDir/File-ShareDir-1.116.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-ShareDir/File-ShareDir-1.116.0.ebuild 
b/dev-perl/File-ShareDir/File-ShareDir-1.116.0.ebuild
index 78ed0d633f1..2743509df43 100644
--- a/dev-perl/File-ShareDir/File-ShareDir-1.116.0.ebuild
+++ b/dev-perl/File-ShareDir/File-ShareDir-1.116.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Locate per-dist and per-module shared files"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x86-solaris"
 IUSE="minimal test"
 RESTRICT="!test? ( test )"
 



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

2021-06-06 Thread Sergei Trofimovich
commit: 06aacd14f0f5462a6fa2296692942667421a0f70
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:41 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06aacd14

sys-fs/reiser4progs: stable 2.0.5 for ppc

stable wrt bug #788379

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-fs/reiser4progs/reiser4progs-2.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/reiser4progs/reiser4progs-2.0.5.ebuild 
b/sys-fs/reiser4progs/reiser4progs-2.0.5.ebuild
index 2740f0d3565..bc2336496e2 100644
--- a/sys-fs/reiser4progs/reiser4progs-2.0.5.ebuild
+++ b/sys-fs/reiser4progs/reiser4progs-2.0.5.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/reiser4/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~ppc ppc64 -sparc x86"
+KEYWORDS="amd64 arm ~arm64 ppc ppc64 -sparc x86"
 IUSE="debug readline static static-libs"
 
 LIB_DEPEND=">=sys-libs/libaal-1.0.7:=[static-libs(+)]



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Test-Compile/

2021-06-06 Thread Sergei Trofimovich
commit: 23a97600ce92d4d2261bc36d2efa9a77bb520160
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:23:43 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23a97600

dev-perl/Test-Compile: stable 2.4.1 for ppc

stable wrt bug #793056

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/Test-Compile/Test-Compile-2.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Test-Compile/Test-Compile-2.4.1.ebuild 
b/dev-perl/Test-Compile/Test-Compile-2.4.1.ebuild
index cdddbfe11d9..33904272b42 100644
--- a/dev-perl/Test-Compile/Test-Compile-2.4.1.ebuild
+++ b/dev-perl/Test-Compile/Test-Compile-2.4.1.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="Check whether Perl files compile correctly"
 SLOT="0"
-KEYWORDS="amd64 ~ia64 ~ppc sparc x86"
+KEYWORDS="amd64 ~ia64 ppc sparc x86"
 IUSE="minimal test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Devel-CheckOS/

2021-06-06 Thread Sergei Trofimovich
commit: 92cbc72f2bfa139b0148c7402b0330805cfd1817
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:32 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92cbc72f

dev-perl/Devel-CheckOS: stable 1.860.0 for ppc

stable wrt bug #793056

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/Devel-CheckOS/Devel-CheckOS-1.860.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Devel-CheckOS/Devel-CheckOS-1.860.0.ebuild 
b/dev-perl/Devel-CheckOS/Devel-CheckOS-1.860.0.ebuild
index ddf2c853c4b..f2027a0f27a 100644
--- a/dev-perl/Devel-CheckOS/Devel-CheckOS-1.860.0.ebuild
+++ b/dev-perl/Devel-CheckOS/Devel-CheckOS-1.860.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="Check what OS we're running on"
 SLOT="0"
-KEYWORDS="amd64 ~ia64 ~ppc sparc x86"
+KEYWORDS="amd64 ~ia64 ppc sparc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/FileHandle-Unget/

2021-06-06 Thread Sergei Trofimovich
commit: 54899ce6a0781b73a65562e1a783accbfb3b05b5
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:23:42 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54899ce6

dev-perl/FileHandle-Unget: stable 0.163.400 for ppc

stable wrt bug #793056

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/FileHandle-Unget/FileHandle-Unget-0.163.400.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/FileHandle-Unget/FileHandle-Unget-0.163.400.ebuild 
b/dev-perl/FileHandle-Unget/FileHandle-Unget-0.163.400.ebuild
index cad27c8129a..7d0632ad2e2 100644
--- a/dev-perl/FileHandle-Unget/FileHandle-Unget-0.163.400.ebuild
+++ b/dev-perl/FileHandle-Unget/FileHandle-Unget-0.163.400.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="A FileHandle which supports ungetting of 
multiple bytes"
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="amd64 ~ia64 ~ppc sparc x86"
+KEYWORDS="amd64 ~ia64 ppc sparc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Config-AutoConf/

2021-06-06 Thread Sergei Trofimovich
commit: 6a06d3d8f376be4b3e587a8ed64dd25551d080cd
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:21 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a06d3d8

dev-perl/Config-AutoConf: stable 0.319.0 for ppc

stable wrt bug #793062

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/Config-AutoConf/Config-AutoConf-0.319.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Config-AutoConf/Config-AutoConf-0.319.0.ebuild 
b/dev-perl/Config-AutoConf/Config-AutoConf-0.319.0.ebuild
index 89231e4c487..299a32f832f 100644
--- a/dev-perl/Config-AutoConf/Config-AutoConf-0.319.0.ebuild
+++ b/dev-perl/Config-AutoConf/Config-AutoConf-0.319.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="A module to implement some of AutoConf macros in pure perl"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ~ppc64 sparc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBI-Shell/

2021-06-06 Thread Sergei Trofimovich
commit: c32b2bb5f11c738dd2cf6f917e2370b22ffdda30
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:23:50 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c32b2bb5

dev-perl/DBI-Shell: stable 11.970.0 for ppc

stable wrt bug #791562

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/DBI-Shell/DBI-Shell-11.970.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBI-Shell/DBI-Shell-11.970.0.ebuild 
b/dev-perl/DBI-Shell/DBI-Shell-11.970.0.ebuild
index 23d02c212a5..ba0b2a80862 100644
--- a/dev-perl/DBI-Shell/DBI-Shell-11.970.0.ebuild
+++ b/dev-perl/DBI-Shell/DBI-Shell-11.970.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Interactive command shell for the DBI"
 
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="minimal test"
 RESTRICT="!test? ( test )"
 



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

2021-06-06 Thread Sergei Trofimovich
commit: f4e8fe74bec89cd02348386fdf755b126c3b2f8d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:46 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4e8fe74

x11-wm/ctwm: stable 4.0.3 for ppc

stable wrt bug #784059

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 x11-wm/ctwm/ctwm-4.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-wm/ctwm/ctwm-4.0.3.ebuild b/x11-wm/ctwm/ctwm-4.0.3.ebuild
index 86968cd029f..27fb610aba7 100644
--- a/x11-wm/ctwm/ctwm-4.0.3.ebuild
+++ b/x11-wm/ctwm/ctwm-4.0.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://ctwm.org/dist/${P}.tar.xz";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="jpeg rplay test xpm"
 RESTRICT="!test? ( test )"
 



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

2021-06-06 Thread Sergei Trofimovich
commit: 4bff16d69884d441292465a418476c72405b66ec
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:43 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bff16d6

dev-libs/libofx: stable 0.10.2 for ppc

stable wrt bug #788268

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-libs/libofx/libofx-0.10.2.ebuild 
b/dev-libs/libofx/libofx-0.10.2.ebuild
index 3f8f6d55f1a..1acb92d8616 100644
--- a/dev-libs/libofx/libofx-0.10.2.ebuild
+++ b/dev-libs/libofx/libofx-0.10.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0/10"
-KEYWORDS="amd64 ~arm64 ~ppc ppc64 x86"
+KEYWORDS="amd64 ~arm64 ppc ppc64 x86"
 IUSE="doc test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-ru/

2021-06-06 Thread Sergei Trofimovich
commit: 8711c4d41a89798c2494e8750526463289f2aef7
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:51 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8711c4d4

app-dicts/myspell-ru: stable 20180627 for ppc

stable wrt bug #729922

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-dicts/myspell-ru/myspell-ru-20180627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-dicts/myspell-ru/myspell-ru-20180627.ebuild 
b/app-dicts/myspell-ru/myspell-ru-20180627.ebuild
index c5b3a4ca275..0a9987dd6ec 100644
--- a/app-dicts/myspell-ru/myspell-ru-20180627.ebuild
+++ b/app-dicts/myspell-ru/myspell-ru-20180627.ebuild
@@ -20,7 +20,7 @@ 
SRC_URI="https://extensions.libreoffice.org/${EXT}/${DICT}/0-4.3/@@download/file
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~sparc 
~x86 ~amd64-linux"
 
 src_prepare() {
default



[gentoo-commits] repo/gentoo:master commit in: dev-perl/UNIVERSAL-require/

2021-06-06 Thread Sergei Trofimovich
commit: 1da0a6315ebc7d411b92b208240a4e4cc957db9e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:22:28 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1da0a631

dev-perl/UNIVERSAL-require: stable 0.180.0 for ppc

stable wrt bug #793056

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/UNIVERSAL-require/UNIVERSAL-require-0.180.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/UNIVERSAL-require/UNIVERSAL-require-0.180.0.ebuild 
b/dev-perl/UNIVERSAL-require/UNIVERSAL-require-0.180.0.ebuild
index 931da363d3d..c467808e793 100644
--- a/dev-perl/UNIVERSAL-require/UNIVERSAL-require-0.180.0.ebuild
+++ b/dev-perl/UNIVERSAL-require/UNIVERSAL-require-0.180.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="UNIVERSAL::require - require() modules from a variable"
 
 SLOT="0"
-KEYWORDS="amd64 ~ia64 ~ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~ia64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-06-06 Thread Sergei Trofimovich
commit: 50bb2ee72cbe5401c5accc9ae1e1a03c7bff4e3f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:25:52 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50bb2ee7

media-fonts/ubuntu-font-family: keyworded 0.83-r1 for ppc64

keyworded wrt bug #792123

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-fonts/ubuntu-font-family/ubuntu-font-family-0.83-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/ubuntu-font-family/ubuntu-font-family-0.83-r1.ebuild 
b/media-fonts/ubuntu-font-family/ubuntu-font-family-0.83-r1.ebuild
index 768b2dd001d..0f1820dfbe9 100644
--- a/media-fonts/ubuntu-font-family/ubuntu-font-family-0.83-r1.ebuild
+++ b/media-fonts/ubuntu-font-family/ubuntu-font-family-0.83-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://assets.ubuntu.com/v1/fad7939b-${P}.zip -> 
${P}.zip"
 
 LICENSE="UbuntuFontLicense-1.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE=""
 
 BDEPEND="app-arch/unzip"



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

2021-06-06 Thread Sergei Trofimovich
commit: 988e0402e2603f3d1cc18d99ee2845e0d82f91e6
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:25:55 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=988e0402

media-fonts/croscorefonts: keyworded 1.31.0 for ppc64

keyworded wrt bug #792117

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-fonts/croscorefonts/croscorefonts-1.31.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/croscorefonts/croscorefonts-1.31.0.ebuild 
b/media-fonts/croscorefonts/croscorefonts-1.31.0.ebuild
index a0689b4926c..97d4bbed485 100644
--- a/media-fonts/croscorefonts/croscorefonts-1.31.0.ebuild
+++ b/media-fonts/croscorefonts/croscorefonts-1.31.0.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://commondatastorage.googleapis.com/chromeos-localmirror/distfiles
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 x86"
+KEYWORDS="amd64 arm arm64 ~ppc64 x86"
 
 RESTRICT="binchecks strip test"
 



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

2021-06-06 Thread Sergei Trofimovich
commit: 0b66f2f1e6fdebcb90d3ac9f40d74cb30805afa5
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:25:50 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b66f2f1

media-sound/mikmod: keyworded 3.2.8 for ppc64

keyworded wrt bug #792126

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-sound/mikmod/mikmod-3.2.8.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/mikmod/mikmod-3.2.8.ebuild 
b/media-sound/mikmod/mikmod-3.2.8.ebuild
index aa4da6360bd..35c7ad01c3a 100644
--- a/media-sound/mikmod/mikmod-3.2.8.ebuild
+++ b/media-sound/mikmod/mikmod-3.2.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/mikmod/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 DEPEND="



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

2021-06-06 Thread Sergei Trofimovich
commit: d6d309c8085ea1ef5c29da5574635a9eab7dd804
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:26:00 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:26:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6d309c8

media-fonts/ahem: keyworded 1.0 for ppc64

keyworded wrt bug #792108

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-fonts/ahem/ahem-1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/ahem/ahem-1.0.ebuild b/media-fonts/ahem/ahem-1.0.ebuild
index a896e7c135b..79a4a56ef7a 100644
--- a/media-fonts/ahem/ahem-1.0.ebuild
+++ b/media-fonts/ahem/ahem-1.0.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${P/a/A}"
 
 LICENSE="CC0-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc64 ~x86"
 IUSE=""
 
 FONT_SUFFIX="ttf"



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

2021-06-06 Thread Sergei Trofimovich
commit: 26e9a972c6388f8f1766b205a95cff8e763327af
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:25:58 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26e9a972

media-fonts/arabeyes-fonts: keyworded 2.0-r1 for ppc64

keyworded wrt bug #792111

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-fonts/arabeyes-fonts/arabeyes-fonts-2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/arabeyes-fonts/arabeyes-fonts-2.0-r1.ebuild 
b/media-fonts/arabeyes-fonts/arabeyes-fonts-2.0-r1.ebuild
index 5791ca8f0da..4a29ad22c05 100644
--- a/media-fonts/arabeyes-fonts/arabeyes-fonts-2.0-r1.ebuild
+++ b/media-fonts/arabeyes-fonts/arabeyes-fonts-2.0-r1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${MY_PN}_${PV}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm ~ia64 ppc ~s390 sparc x86"
+KEYWORDS="amd64 arm ~ia64 ppc ~ppc64 ~s390 sparc x86"
 
 DOCS=( README ChangeLog )
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Test-Fork/

2021-06-06 Thread Sergei Trofimovich
commit: 506a80e326609986466d75daac57151f52704ce3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:26:03 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:26:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=506a80e3

dev-perl/Test-Fork: keyworded 0.20.0 for ppc64

keyworded wrt bug #791481

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/Test-Fork/Test-Fork-0.20.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Test-Fork/Test-Fork-0.20.0.ebuild 
b/dev-perl/Test-Fork/Test-Fork-0.20.0.ebuild
index 80a2d26293b..a3aa326c059 100644
--- a/dev-perl/Test-Fork/Test-Fork-0.20.0.ebuild
+++ b/dev-perl/Test-Fork/Test-Fork-0.20.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="test code which forks"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc64 ~sparc"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-06-06 Thread Sergei Trofimovich
commit: 4d994e5d2e27669449dbd2ce80dfa7515d616ba7
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:26:16 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:26:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d994e5d

dev-perl/GD: keyworded 2.730.0-r1 for ppc64

keyworded wrt bug #791481

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/GD/GD-2.730.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/GD/GD-2.730.0-r1.ebuild b/dev-perl/GD/GD-2.730.0-r1.ebuild
index 747eb63a214..eda866da0b0 100644
--- a/dev-perl/GD/GD-2.730.0-r1.ebuild
+++ b/dev-perl/GD/GD-2.730.0-r1.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Interface to Thomas Boutell's gd library"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc64 ~sparc"
 IUSE="animgif fcgi test truetype xpm"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-java/sun-jai-bin/

2021-06-06 Thread Sergei Trofimovich
commit: 256c76f55a1633f89251c8e7f6631a6b53395fb4
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:26:04 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:26:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=256c76f5

dev-java/sun-jai-bin: keyworded 1.1.3-r2 for ppc64

keyworded wrt bug #791109

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-java/sun-jai-bin/sun-jai-bin-1.1.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/sun-jai-bin/sun-jai-bin-1.1.3-r2.ebuild 
b/dev-java/sun-jai-bin/sun-jai-bin-1.1.3-r2.ebuild
index 1f5ba79b8b0..dda39756714 100644
--- a/dev-java/sun-jai-bin/sun-jai-bin-1.1.3-r2.ebuild
+++ b/dev-java/sun-jai-bin/sun-jai-bin-1.1.3-r2.ebuild
@@ -17,7 +17,7 @@ SRC_URI="
 
 LICENSE="sun-bcla-jai"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~ppc64"
 
 DEPEND=""
 RDEPEND="virtual/jre:1.8"



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

2021-06-06 Thread Sergei Trofimovich
commit: 315160469c18b6ca70952cbf9b31177f3a7bb708
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:25:53 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31516046

media-fonts/roboto: keyworded 2.138 for ppc64

keyworded wrt bug #792120

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-fonts/roboto/roboto-2.138.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/roboto/roboto-2.138.ebuild 
b/media-fonts/roboto/roboto-2.138.ebuild
index ec3c6d3efcb..efb98a04c0a 100644
--- a/media-fonts/roboto/roboto-2.138.ebuild
+++ b/media-fonts/roboto/roboto-2.138.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 BDEPEND="app-arch/unzip"
 



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

2021-06-06 Thread Sergei Trofimovich
commit: f5250b996503c06213b41df73d8e516bf510e557
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:25:56 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5250b99

media-fonts/clearsans: keyworded 1.00 for ppc64

keyworded wrt bug #792114

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-fonts/clearsans/clearsans-1.00.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/clearsans/clearsans-1.00.ebuild 
b/media-fonts/clearsans/clearsans-1.00.ebuild
index dcf5264b489..276b5cd5b26 100644
--- a/media-fonts/clearsans/clearsans-1.00.ebuild
+++ b/media-fonts/clearsans/clearsans-1.00.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~ppc64 x86"
 IUSE=""
 
 RESTRICT="binchecks strip"



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

2021-06-06 Thread Sergei Trofimovich
commit: 1ab72eb50aab95fde3c000981a69a2d90ea6e949
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:25:49 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:25:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ab72eb5

app-misc/mkcert: keyworded 1.4.1 for ppc64

keyworded wrt bug #792132

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-misc/mkcert/mkcert-1.4.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/mkcert/mkcert-1.4.1.ebuild 
b/app-misc/mkcert/mkcert-1.4.1.ebuild
index 9702e600a1e..d2e82ea9167 100644
--- a/app-misc/mkcert/mkcert-1.4.1.ebuild
+++ b/app-misc/mkcert/mkcert-1.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -49,7 +49,7 @@ 
SRC_URI="https://github.com/FiloSottile/mkcert/archive/v${PV}.tar.gz -> ${P}.tar
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~ppc64"
 IUSE=""
 
 src_compile() {



[gentoo-commits] repo/gentoo:master commit in: net-misc/gnome-online-miners/

2021-06-06 Thread Georgy Yakovlev
commit: f7501edacd9402256a924f6ab0ed73f4676e3eea
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  2 16:20:36 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jun  7 06:27:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7501eda

net-misc/gnome-online-miners: add ~ppc64 keyword

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

 net-misc/gnome-online-miners/gnome-online-miners-3.34.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/gnome-online-miners/gnome-online-miners-3.34.0-r1.ebuild 
b/net-misc/gnome-online-miners/gnome-online-miners-3.34.0-r1.ebuild
index 2b595426beb..0330845cb38 100644
--- a/net-misc/gnome-online-miners/gnome-online-miners-3.34.0-r1.ebuild
+++ b/net-misc/gnome-online-miners/gnome-online-miners-3.34.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/GnomeOnlineMiners";
 LICENSE="GPL-2+"
 SLOT="0"
 IUSE="flickr"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 
 # libgdata[gnome] needed for goa support
 RDEPEND="



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

2021-06-06 Thread Sergei Trofimovich
commit: d1626cc222510eeffddcae67998e8eb5948d13ad
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:27:41 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:28:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1626cc2

dev-libs/isl: stable 0.24 for ppc64

stable wrt bug #794259

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-libs/isl/isl-0.24.ebuild b/dev-libs/isl/isl-0.24.ebuild
index 2fa16f99fd3..9b5ae94248d 100644
--- a/dev-libs/isl/isl-0.24.ebuild
+++ b/dev-libs/isl/isl-0.24.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://isl.gforge.inria.fr/${P}.tar.xz";
 
 LICENSE="LGPL-2.1"
 SLOT="0/23"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~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 ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 RDEPEND=">=dev-libs/gmp-5.1.3-r1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: sci-astronomy/stellarium/

2021-06-06 Thread Sergei Trofimovich
commit: 60e6f9cfc6a647bd257a0b807dd114861dcf928b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:27:39 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:28:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60e6f9cf

sci-astronomy/stellarium: stable 0.20.4 for ppc64

stable wrt bug #794271

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sci-astronomy/stellarium/stellarium-0.20.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-astronomy/stellarium/stellarium-0.20.4.ebuild 
b/sci-astronomy/stellarium/stellarium-0.20.4.ebuild
index d26757c2b44..0fa8419e1e5 100644
--- a/sci-astronomy/stellarium/stellarium-0.20.4.ebuild
+++ b/sci-astronomy/stellarium/stellarium-0.20.4.ebuild
@@ -27,7 +27,7 @@ SRC_URI="
 
 LICENSE="GPL-2+ SGI-B-2.0"
 SLOT="0"
-KEYWORDS="amd64 ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 ~x86"
 IUSE="debug deep-sky doc gps media nls stars telescope test"
 
 # Python interpreter is used while building RemoteControl plugin



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

2021-06-06 Thread Sergei Trofimovich
commit: 79d812971d5fc536546e376e1499efd502004b02
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:27:48 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:28:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79d81297

sys-auth/polkit: stable 0.119 for ppc64

stable wrt bug #794052

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-auth/polkit/polkit-0.119.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/polkit/polkit-0.119.ebuild 
b/sys-auth/polkit/polkit-0.119.ebuild
index f047c46c16f..8b7e0c4bb46 100644
--- a/sys-auth/polkit/polkit-0.119.ebuild
+++ b/sys-auth/polkit/polkit-0.119.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.freedesktop.org/software/${PN}/releases/${P}.tar.gz";
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc64 ~riscv ~s390 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ppc64 ~riscv ~s390 x86"
 IUSE="elogind examples gtk +introspection kde nls pam selinux systemd test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Config-AutoConf/

2021-06-06 Thread Sergei Trofimovich
commit: 234ab39bc871b90e28d7c995cc37ac4768878f1d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:27:57 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:28:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=234ab39b

dev-perl/Config-AutoConf: stable 0.319.0 for ppc64

stable wrt bug #793062

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/Config-AutoConf/Config-AutoConf-0.319.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Config-AutoConf/Config-AutoConf-0.319.0.ebuild 
b/dev-perl/Config-AutoConf/Config-AutoConf-0.319.0.ebuild
index 299a32f832f..9914bdd1bd3 100644
--- a/dev-perl/Config-AutoConf/Config-AutoConf-0.319.0.ebuild
+++ b/dev-perl/Config-AutoConf/Config-AutoConf-0.319.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="A module to implement some of AutoConf macros in pure perl"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ~ppc64 sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 sparc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/List-MoreUtils/

2021-06-06 Thread Sergei Trofimovich
commit: cd3200b086834bb7b21d6df921d86807cb9560e9
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:27:54 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:28:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd3200b0

dev-perl/List-MoreUtils: stable 0.428.0 for ppc64

stable wrt bug #793275

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/List-MoreUtils/List-MoreUtils-0.428.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/List-MoreUtils/List-MoreUtils-0.428.0.ebuild 
b/dev-perl/List-MoreUtils/List-MoreUtils-0.428.0.ebuild
index 1c065eea4dc..820cf71fe99 100644
--- a/dev-perl/List-MoreUtils/List-MoreUtils-0.428.0.ebuild
+++ b/dev-perl/List-MoreUtils/List-MoreUtils-0.428.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Provide the missing functionality from List::Util"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x86-solaris"
 IUSE="test +xs"
 RESTRICT="!test? ( test )"
 # See MoreUtils.pm/LICENSE



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

2021-06-06 Thread Sergei Trofimovich
commit: 1965272f214ab8e8bb37b225d9d91efa82e44456
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:28:03 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:28:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1965272f

dev-python/snakeoil: stable 0.9.5 for ppc64

stable wrt bug #791586

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-python/snakeoil/snakeoil-0.9.5.ebuild 
b/dev-python/snakeoil/snakeoil-0.9.5.ebuild
index c1534674975..d7252cf83e7 100644
--- a/dev-python/snakeoil/snakeoil-0.9.5.ebuild
+++ b/dev-python/snakeoil/snakeoil-0.9.5.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://github.com/pkgcore/snakeoil.git";
inherit git-r3
 else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 
~sparc ~x86 ~x64-macos"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~s390 ~sparc 
~x86 ~x64-macos"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-ru/

2021-06-06 Thread Sergei Trofimovich
commit: 303970d823b3ad277456efe991bb2c0634fa9d5d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:28:09 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:28:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=303970d8

app-dicts/myspell-ru: stable 20180627 for ppc64

stable wrt bug #729922

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-dicts/myspell-ru/myspell-ru-20180627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-dicts/myspell-ru/myspell-ru-20180627.ebuild 
b/app-dicts/myspell-ru/myspell-ru-20180627.ebuild
index 0a9987dd6ec..2cb239090c5 100644
--- a/app-dicts/myspell-ru/myspell-ru-20180627.ebuild
+++ b/app-dicts/myspell-ru/myspell-ru-20180627.ebuild
@@ -20,7 +20,7 @@ 
SRC_URI="https://extensions.libreoffice.org/${EXT}/${DICT}/0-4.3/@@download/file
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~sparc 
~x86 ~amd64-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc 
~x86 ~amd64-linux"
 
 src_prepare() {
default



[gentoo-commits] repo/gentoo:master commit in: games-board/gnuchess/

2021-06-06 Thread Sergei Trofimovich
commit: 3243de9598e3af065af7ace126fcf336ab70c00a
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:28:06 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:28:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3243de95

games-board/gnuchess: stable 6.2.8-r1 for ppc64

stable wrt bug #780855

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 games-board/gnuchess/gnuchess-6.2.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-board/gnuchess/gnuchess-6.2.8-r1.ebuild 
b/games-board/gnuchess/gnuchess-6.2.8-r1.ebuild
index 0928abdc97f..1c78b6b397c 100644
--- a/games-board/gnuchess/gnuchess-6.2.8-r1.ebuild
+++ b/games-board/gnuchess/gnuchess-6.2.8-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://gnu/chess/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
 
 PATCHES=(
"${FILESDIR}"/${P}-cve-2021-30184.patch  # bug 780855



[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-ShareDir/

2021-06-06 Thread Sergei Trofimovich
commit: ad741b2fc9e3c0da18ce4d62f9d77c735e551bf8
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:28:20 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:28:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad741b2f

dev-perl/File-ShareDir: stable 1.116.0 for ppc64

stable wrt bug #793275

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/File-ShareDir/File-ShareDir-1.116.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-ShareDir/File-ShareDir-1.116.0.ebuild 
b/dev-perl/File-ShareDir/File-ShareDir-1.116.0.ebuild
index 2743509df43..ba0cd68bafc 100644
--- a/dev-perl/File-ShareDir/File-ShareDir-1.116.0.ebuild
+++ b/dev-perl/File-ShareDir/File-ShareDir-1.116.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Locate per-dist and per-module shared files"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x86-solaris"
 IUSE="minimal test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-LibMagic/

2021-06-06 Thread Sergei Trofimovich
commit: 5919238f4a081af675160b113199a61d3b4a8658
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:28:24 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:28:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5919238f

dev-perl/File-LibMagic: stable 1.230.0 for ppc64

stable wrt bug #793062

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/File-LibMagic/File-LibMagic-1.230.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-LibMagic/File-LibMagic-1.230.0.ebuild 
b/dev-perl/File-LibMagic/File-LibMagic-1.230.0.ebuild
index 2103983f26a..782d4948f0b 100644
--- a/dev-perl/File-LibMagic/File-LibMagic-1.230.0.ebuild
+++ b/dev-perl/File-LibMagic/File-LibMagic-1.230.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Perl wrapper for libmagic"
 
 SLOT="0"
-KEYWORDS="amd64 ~hppa ppc ~ppc64 sparc ~x86"
+KEYWORDS="amd64 ~hppa ppc ppc64 sparc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-06-06 Thread Sergei Trofimovich
commit: d89e61d743c1905ed1dedbf1e3970b7267990d84
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:27:50 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:28:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d89e61d7

dev-libs/libuv: stable 1.41.0 for ppc64

stable wrt bug #793899

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-libs/libuv/libuv-1.41.0.ebuild 
b/dev-libs/libuv/libuv-1.41.0.ebuild
index f473cd75cab..082ca534234 100644
--- a/dev-libs/libuv/libuv-1.41.0.ebuild
+++ b/dev-libs/libuv/libuv-1.41.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: app-emulation/qemu/

2021-06-06 Thread Sergei Trofimovich
commit: bdf649151dac5b3fa1d05cca7615f880d8cd73ed
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:28:01 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:28:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdf64915

app-emulation/qemu: stable 6.0.0 for ppc64

stable wrt bug #792624

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-emulation/qemu/qemu-6.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/qemu/qemu-6.0.0.ebuild 
b/app-emulation/qemu/qemu-6.0.0.ebuild
index ef7f1b637d4..1a60df4d49b 100644
--- a/app-emulation/qemu/qemu-6.0.0.ebuild
+++ b/app-emulation/qemu/qemu-6.0.0.ebuild
@@ -23,7 +23,7 @@ if [[ ${PV} = ** ]]; then
SRC_URI=""
 else
SRC_URI="https://download.qemu.org/${P}.tar.xz";
-   KEYWORDS="amd64 arm64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 arm64 ~ppc ppc64 ~x86"
 fi
 
 DESCRIPTION="QEMU + Kernel-based Virtual Machine userland tools"



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

2021-06-06 Thread Sergei Trofimovich
commit: 781cb9cd77211ae211eb44e33a45181187b97575
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:27:44 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:28:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=781cb9cd

sys-apps/sandbox: stable 2.24 for ppc64

stable wrt bug #794256

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/sys-apps/sandbox/sandbox-2.24.ebuild 
b/sys-apps/sandbox/sandbox-2.24.ebuild
index 514544b6abd..3a6e7ea22ee 100644
--- a/sys-apps/sandbox/sandbox-2.24.ebuild
+++ b/sys-apps/sandbox/sandbox-2.24.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://dev.gentoo.org/~slyfox/distfiles/${P}.tar.xz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 sparc ~x86"
 IUSE=""
 
 DEPEND="app-arch/xz-utils



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/extra-cmake-modules/

2021-06-06 Thread Sergei Trofimovich
commit: dc42662b21adc9fde4bcc074fc27cc3bd35c0919
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:28:05 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:28:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc42662b

kde-frameworks/extra-cmake-modules: stable 5.82.0 for ppc64

stable wrt bug #788820

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.82.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.82.0.ebuild 
b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.82.0.ebuild
index 3a6ed56d80f..8d8b8249034 100644
--- a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.82.0.ebuild
+++ b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.82.0.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Extra modules and scripts for CMake"
 HOMEPAGE="https://invent.kde.org/frameworks/extra-cmake-modules";
 
 LICENSE="BSD"
-KEYWORDS="amd64 ~arm arm64 ~hppa ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~hppa ppc ppc64 x86"
 IUSE="doc test"
 
 RESTRICT+=" !test? ( test )"



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

2021-06-06 Thread Sergei Trofimovich
commit: 737125080bcbd2653fa80b81dfd2a945172df7c1
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun  7 06:29:40 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun  7 06:29:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73712508

dev-python/snakeoil: stable 0.9.5 for sparc

stable wrt bug #791586

Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-python/snakeoil/snakeoil-0.9.5.ebuild 
b/dev-python/snakeoil/snakeoil-0.9.5.ebuild
index d7252cf83e7..c077caf2849 100644
--- a/dev-python/snakeoil/snakeoil-0.9.5.ebuild
+++ b/dev-python/snakeoil/snakeoil-0.9.5.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://github.com/pkgcore/snakeoil.git";
inherit git-r3
 else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~s390 ~sparc 
~x86 ~x64-macos"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~s390 sparc 
~x86 ~x64-macos"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 fi
 



  1   2   3   4   >