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

2021-03-14 Thread Sam James
commit: 5f94abf337d587ca1b72bd13bc10c6c255ba81e1
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:16:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f94abf3

dev-ml/ocaml-gettext: drop 0.3.7-r3

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

 dev-ml/ocaml-gettext/Manifest  |  1 -
 .../ocaml-gettext/files/ocaml-unsafe-string.patch  | 17 -
 dev-ml/ocaml-gettext/ocaml-gettext-0.3.7-r3.ebuild | 76 --
 3 files changed, 94 deletions(-)

diff --git a/dev-ml/ocaml-gettext/Manifest b/dev-ml/ocaml-gettext/Manifest
index 045151ba25a..839e7295801 100644
--- a/dev-ml/ocaml-gettext/Manifest
+++ b/dev-ml/ocaml-gettext/Manifest
@@ -1,2 +1 @@
-DIST ocaml-gettext-0.3.7.tar.gz 134316 BLAKE2B 
9de6ef9e04afbb6001ddc5ef145a687ad88a20eef1c27d3a3e6136f81ad46100cc6496cb66e3edfbf0f7eacfa8abbccb44d846d2f676862c96b8ceb860d8f424
 SHA512 
1358320359b9d2f3fd97a47d69b2a619942a65605c1e5cbf25e33ef42a10273167b526bca15e6c9523b87d8ea9dfd3215334050ad8eb84a8c41d4feef880a27a
 DIST ocaml-gettext-0.4.2.tar.gz 110249 BLAKE2B 
54a25ba9f8fb20194fdfaf651586222fab68f927ebfa711812f7c9a387ff40c19e1bf3f63124127356b32b0ca0be2c5ff4e1cdfaf5f3afe690b90c0ca96c470d
 SHA512 
fb89be8d8d9e0ed9327b81a0c81c884ff3f1a97e46b475ef8084abded5c84a256de05d5aa0f42be94f43ab438276a4506af726b6950e4161359a9616fb5832ec

diff --git a/dev-ml/ocaml-gettext/files/ocaml-unsafe-string.patch 
b/dev-ml/ocaml-gettext/files/ocaml-unsafe-string.patch
deleted file mode 100644
index 8d0a12c80d0..000
--- a/dev-ml/ocaml-gettext/files/ocaml-unsafe-string.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff --git a/ConfMakefile.in b/ConfMakefile.in
-index 5a1e9ea..b562698 100644
 a/ConfMakefile.in
-+++ b/ConfMakefile.in
-@@ -37,9 +37,9 @@ OCAMLLIB=@OCAMLLIB@
- OCAMLFIND_COMMANDS = "ocamlc=@OCAMLC@ \
-   ocamlopt=@OCAMLOPT@ \
-   ocamldep=@OCAMLDEP@"
--OCAMLC   = @OCAMLFIND@ ocamlc 
--OCAMLOPT = @OCAMLFIND@ ocamlopt
--OCAMLDEP = @OCAMLFIND@ ocamldep
-+OCAMLC   = @OCAMLFIND@ ocamlc -unsafe-string 
-+OCAMLOPT = @OCAMLFIND@ ocamlopt -unsafe-string
-+OCAMLDEP = @OCAMLFIND@ ocamldep -unsafe-string
- OCAMLBEST= @OCAMLBEST@
- OCAMLVERSION = @OCAMLVERSION@
- OCAMLFIND= @OCAMLFIND@

diff --git a/dev-ml/ocaml-gettext/ocaml-gettext-0.3.7-r3.ebuild 
b/dev-ml/ocaml-gettext/ocaml-gettext-0.3.7-r3.ebuild
deleted file mode 100644
index 7af5b26e0ad..000
--- a/dev-ml/ocaml-gettext/ocaml-gettext-0.3.7-r3.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools findlib
-
-DESCRIPTION="Provides support for internationalization of OCaml program"
-HOMEPAGE="https://github.com/gildor478/ocaml-gettext;
-SRC_URI="https://github.com/gildor478/ocaml-gettext/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-PATCHES=( "${FILESDIR}"/ocaml-unsafe-string.patch )
-
-BDEPEND="
-   doc? (
-   app-text/docbook-xsl-stylesheets
-   dev-libs/libxslt
-   )
-"
-# OCaml 4.10 does not support -unsafe-string by default
-# bug #666149
-RDEPEND="
-   >=dev-lang/ocaml-3.12.1:=
-   =dev-ml/ocaml-fileutils-0.4.0:=
-   >=dev-ml/camomile-0.8.3:=
-   sys-devel/gettext
-   dev-ml/camlp4:=
-   !dev-ml/ocaml-gettext-stub
-"
-DEPEND="
-   ${RDEPEND}
-   test? ( dev-ml/ounit2 )
-"
-
-src_prepare() {
-   default
-
-   # Porting to dev-ml/ounit2
-   sed -i \
-   -e 
's/OCAMLFIND_CHECK_MODULE(oUnit/OCAMLFIND_CHECK_MODULE(ounit2/' \
-   configure.in || die
-   sed -i \
-   -e 's/oUnit/ounit2/' \
-   test/Makefile || die
-
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   
--with-docbook-stylesheet="${EPREFIX}/usr/share/sgml/docbook/xsl-stylesheets/" \
-   $(use_enable doc) \
-   $(use_enable test)
-}
-
-src_compile() {
-   emake -j1
-}
-
-src_install() {
-   findlib_src_preinst
-   emake -j1 DESTDIR="${D}" \
-   BINDIR="${ED}/usr/bin" \
-   PODIR="${ED}/usr/share/locale/" \
-   DOCDIR="${ED}/usr/share/doc/${PF}" \
-   MANDIR="${ED}/usr/share/man" \
-   install
-   dodoc CHANGELOG README THANKS TODO
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ml/dune-private-libs/

2021-03-14 Thread Sam James
commit: d036e0454d4f47aabe91d9c55f3e0a84f346a0cc
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:16:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:02:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d036e045

dev-ml/dune-private-libs: drop 2.7.1

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

 dev-ml/dune-private-libs/Manifest  |  1 -
 .../dune-private-libs-2.7.1.ebuild | 44 --
 2 files changed, 45 deletions(-)

diff --git a/dev-ml/dune-private-libs/Manifest 
b/dev-ml/dune-private-libs/Manifest
index 30bb206eaf0..f8470c9f312 100644
--- a/dev-ml/dune-private-libs/Manifest
+++ b/dev-ml/dune-private-libs/Manifest
@@ -1,3 +1,2 @@
-DIST dune-2.7.1.tar.gz 1290915 BLAKE2B 
85a2dee92d1ead03b43b80742c291f4470dd9e1d843fdb257754c567e2329c101d11b42573da19de537f0d8591ebdacfcaab1099e0f46bdeebcd8421eb1bbcb2
 SHA512 
b77d0e207263107365e5a6e94423e8ab4ddbab1f920872d915e4014b7cc69915274b53fe946bb4b29dfe3de2bf5573ab3b2bffb4db8eb50b472e7dfb6cab88b7
 DIST dune-2.8.2.tar.gz 1369417 BLAKE2B 
d846d35675a18abc3ccc57a52574d81a8fb4f082d9935912f035061c1107b47be8752daeb9c49bb2af4877e419a6c8bc30f846db6d773cf5267d3d761272a872
 SHA512 
fcbe45ea59492517e0868bf1f801c2bd2f3b1b30234e36d789c33e7ee48bd724726beb211697f3820609bbc27923c8c37d7be89dcbd059558014743360f2d0b7
 DIST dune-2.8.4.tar.gz 1372925 BLAKE2B 
5b6d6738a0dc701d852e6cc59a1998f64c006d233f43a804b0b9b677a6eadda25aa20f52799c90910d361e4bc565636a50d218ad5d0a9927239adc5be36b3889
 SHA512 
13b36eb6a943f9513987a23dab467b2e449cc3a4de35227f8323c3c724b27f19daac500602141ab22a0457924c8484ce27a7f73e46a72e796d30fb1c3253

diff --git a/dev-ml/dune-private-libs/dune-private-libs-2.7.1.ebuild 
b/dev-ml/dune-private-libs/dune-private-libs-2.7.1.ebuild
deleted file mode 100644
index 8eeb996d0c4..000
--- a/dev-ml/dune-private-libs/dune-private-libs-2.7.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit dune
-
-DESCRIPTION="A composable build system for OCaml"
-HOMEPAGE="https://github.com/ocaml/dune;
-SRC_URI="https://github.com/ocaml/dune/archive/${PV}.tar.gz -> 
dune-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0/${PV}"
-KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86"
-IUSE="+ocamlopt test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-   ~dev-ml/dune-${PV}
-   test? (
-   dev-ml/ppx_expect
-   )"
-DEPEND="
-   dev-ml/csexp:=
-   dev-ml/findlib:=
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/dune-${PV}"
-
-src_prepare() {
-   default
-   # remove tests that run git
-   rm -f \
-   test/blackbox-tests/test-cases/dune-project-meta/main.t/run.t \
-   test/blackbox-tests/test-cases/meta-template-version-bug.t \
-   test/blackbox-tests/test-cases/subst.t/run.t \
-   test/expect-tests/vcs_tests.ml \
-   || die
-}
-
-src_configure(){
-   :
-}



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

2021-03-14 Thread Sam James
commit: bf2094436235b7a6620571aa0ace839991da7bd3
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:46:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:02:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf209443

dev-ml/ocaml-migrate-parsetree: drop 2.0.0

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

 dev-ml/ocaml-migrate-parsetree/Manifest   |  1 -
 .../ocaml-migrate-parsetree-2.0.0.ebuild  | 19 ---
 2 files changed, 20 deletions(-)

diff --git a/dev-ml/ocaml-migrate-parsetree/Manifest 
b/dev-ml/ocaml-migrate-parsetree/Manifest
index 90f3b4f3b77..f9fb313bbbc 100644
--- a/dev-ml/ocaml-migrate-parsetree/Manifest
+++ b/dev-ml/ocaml-migrate-parsetree/Manifest
@@ -1,3 +1,2 @@
 DIST ocaml-migrate-parsetree-1.8.0.tar.gz 466241 BLAKE2B 
0b2211ed3a2a2e4e5200a6da0eb288839620fb6397b3cb2b1b83ed7c9a6a23eb7505e1311d30a8449a198221888a5d3b44d528dc84b1f6cabc546adad4110c67
 SHA512 
25eefd57a23221c7e71025557c977159c2a831713a40188e9750af7ddb93f089163ad4d8b24c53667869839249f1f389ea7928f54777101d5c291684e76be1a1
-DIST ocaml-migrate-parsetree-2.0.0.tar.gz 150973 BLAKE2B 
f9cdaabfccd82ba2fcd02a044815072ac6495c46ece5cce306a108246dbe68b711f163b05702dc657cc8ee56f1080a5e83430ce2084990fa4ab2a4740fef77c2
 SHA512 
eba6574339225c44a1872e91fb95b3e8953031b2550038497c57832c94b02297ca3215525341bbe114fe480198519965a6a1619e6490a57ad66f65eff66d160d
 DIST ocaml-migrate-parsetree-2.1.0.tar.gz 169358 BLAKE2B 
072ba6e1a879d5e308e7b40c55c323f353cd2187c8884bce25bffd35d7f5e64f2aa7070ae2766c1e41ef47ffbbf44218fdc8b823dbb33c6c11f0e262cd94ab83
 SHA512 
0fd9dc9ae9a4c0b50f100958c0df6d9bb33a4d3c2e4d9572aae52d4e7393c1432deca9f5812dbccc637150b1a8f58eabb433e87baf08c79af9e1ff3c58509a32

diff --git 
a/dev-ml/ocaml-migrate-parsetree/ocaml-migrate-parsetree-2.0.0.ebuild 
b/dev-ml/ocaml-migrate-parsetree/ocaml-migrate-parsetree-2.0.0.ebuild
deleted file mode 100644
index 08473031c00..000
--- a/dev-ml/ocaml-migrate-parsetree/ocaml-migrate-parsetree-2.0.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit dune
-
-DESCRIPTION="Convert OCaml parsetrees between different major versions"
-HOMEPAGE="https://github.com/let-def/ocaml-migrate-parsetree;
-SRC_URI="https://github.com/let-def/ocaml-migrate-parsetree/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-IUSE="+ocamlopt test"
-RESTRICT="!test? ( test )"
-
-DEPEND="dev-ml/cinaps:="
-RDEPEND="${DEPEND}"



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

2021-03-14 Thread Sam James
commit: 1442a638f2671d6a743f35cfb2b9b11c9ab3497f
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:14:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1442a638

dev-ml/logs: drop 0.6.3

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

 dev-ml/logs/Manifest  |  1 -
 dev-ml/logs/logs-0.6.3.ebuild | 54 ---
 2 files changed, 55 deletions(-)

diff --git a/dev-ml/logs/Manifest b/dev-ml/logs/Manifest
index c3d5031ecb4..bc580c5435c 100644
--- a/dev-ml/logs/Manifest
+++ b/dev-ml/logs/Manifest
@@ -1,2 +1 @@
-DIST logs-0.6.3.tbz 17670 BLAKE2B 
bea90590913c83ef0ac32bb63551542d52cdc63f761e0198ff747f9e03987dcbfacd1b1e351a826218f71768020df8ebe1caa7272fd79e2c1b634645d728bdd6
 SHA512 
6cdcb3ee19eadb824500e90235a62326194ff5d2a44dca598d2727f2ad358273a79240197965b682aa80986870bb859ee1e57f2cb29c684c92ca146cac8094d1
 DIST logs-0.7.0.tbz 18458 BLAKE2B 
091d1778166af0b67e17e932a775a73e31e5d167b94b1b378063a7112c21bf1ac935c7e51fe29bcc0121cd5e60ea46ed3c7381f4db5df400b463feedfbe89663
 SHA512 
657f66eeaf5788947a3ff4b2a179f7e192ad4ce086fc8968286066d4b83af476523b3befce50ee58abf2d9b8c8dc65573ba8ed62f9c5e7933db29a7fb769646a

diff --git a/dev-ml/logs/logs-0.6.3.ebuild b/dev-ml/logs/logs-0.6.3.ebuild
deleted file mode 100644
index 978b7cf88e0..000
--- a/dev-ml/logs/logs-0.6.3.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit findlib
-
-DESCRIPTION="Logging infrastructure for OCaml"
-HOMEPAGE="https://erratique.ch/software/logs https://github.com/dbuenzli/logs;
-SRC_URI="https://erratique.ch/software/logs/releases/${P}.tbz;
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="+fmt cli +lwt test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-ml/result:=[ocamlopt]
-   dev-lang/ocaml:=[ocamlopt]
-   fmt? ( dev-ml/fmt:= )
-   cli? ( dev-ml/cmdliner:=[ocamlopt] )
-   lwt? ( dev-ml/lwt:= )
-"
-DEPEND="${RDEPEND}
-   dev-ml/opam
-   dev-ml/topkg
-   dev-ml/ocamlbuild
-   dev-ml/findlib
-   test? ( dev-ml/mtime )
-"
-
-src_compile() {
-   ocaml pkg/pkg.ml build \
-   --with-js_of_ocaml false \
-   --with-fmt $(usex fmt true false) \
-   --with-cmdliner $(usex cli true false) \
-   --with-lwt $(usex fmt true false) \
-   --tests $(usex test true false) \
-   || die
-}
-
-src_test() {
-   ocaml pkg/pkg.ml test || die
-}
-
-src_install() {
-   opam-installer -i \
-   --prefix="${ED}/usr" \
-   --libdir="${D}/$(ocamlc -where)" \
-   --docdir="${ED}/usr/share/doc/${PF}" \
-   ${PN}.install || die
-   dodoc CHANGES.md README.md
-}



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

2021-03-14 Thread Sam James
commit: 8e8f91ca93093f3bd3b637b3a82f9d8d7c20fbd7
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:14:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e8f91ca

dev-ml/ppx_tools_versioned: drop 5.2.2

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

 dev-ml/ppx_tools_versioned/Manifest|  1 -
 .../ppx_tools_versioned-5.2.2.ebuild   | 25 --
 2 files changed, 26 deletions(-)

diff --git a/dev-ml/ppx_tools_versioned/Manifest 
b/dev-ml/ppx_tools_versioned/Manifest
index 40da2fefa2e..314018a2a23 100644
--- a/dev-ml/ppx_tools_versioned/Manifest
+++ b/dev-ml/ppx_tools_versioned/Manifest
@@ -1,2 +1 @@
-DIST ppx_tools_versioned-5.2.2.tar.gz 60068 BLAKE2B 
0b965d2124852e8ea3c8f4187ef320a3054eab4f969bfd64f4bb647e1381cc6f571b74d5176a6da59003ada89982a63b605f45231fb0bbf4ebec7da959e76d1e
 SHA512 
68c168ebc01af46fe8766ad7e36cc778caabb97d8eb303db284d106450cb79974c2a640ce459e197630b9e84b02caa24b59c97c9a8d39ddadc7efc7284e42a70
 DIST ppx_tools_versioned-5.4.0.tar.gz 91817 BLAKE2B 
0de64bbc0e7626306389eb350119262e1b1dbf1c643a62d4b2363f06203567e719962fc64727de65aa204a488381f8e48bbbe1243e9908823cb24162bc88
 SHA512 
7f0421dbb42b43acc4f7892ac1c4c0ac13bdc188400d308688c4548b228aaf8bd80a4e2294672b50c78ac61e3c8df148c98d16b59f48292f02be40e7fd9640a9

diff --git a/dev-ml/ppx_tools_versioned/ppx_tools_versioned-5.2.2.ebuild 
b/dev-ml/ppx_tools_versioned/ppx_tools_versioned-5.2.2.ebuild
deleted file mode 100644
index 78043c28ed6..000
--- a/dev-ml/ppx_tools_versioned/ppx_tools_versioned-5.2.2.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit dune
-
-MY_PV=${PV/_/}
-MY_P=${PN}-${MY_PV}
-
-DESCRIPTION="Tools for authors of ppx rewriters"
-HOMEPAGE="https://github.com/let-def/ppx_tools_versioned;
-SRC_URI="https://github.com/let-def/ppx_tools_versioned/archive/${MY_PV}.tar.gz
 -> ${MY_P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
-IUSE="+ocamlopt"
-
-DEPEND="
-   dev-lang/ocaml:=
-   

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

2021-03-14 Thread Sam James
commit: af231ddff7d2f175b4b9b7f452827a4eff3589a3
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:46:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:02:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af231ddf

dev-ml/ppx_tools_versioned: add note re ocaml-migrate-parsetree restriction

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

 dev-ml/ppx_tools_versioned/ppx_tools_versioned-5.4.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-ml/ppx_tools_versioned/ppx_tools_versioned-5.4.0.ebuild 
b/dev-ml/ppx_tools_versioned/ppx_tools_versioned-5.4.0.ebuild
index 91702c092c6..3fc8939ea91 100644
--- a/dev-ml/ppx_tools_versioned/ppx_tools_versioned-5.4.0.ebuild
+++ b/dev-ml/ppx_tools_versioned/ppx_tools_versioned-5.4.0.ebuild
@@ -17,6 +17,7 @@ SLOT="0/${PV}"
 KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
 IUSE="+ocamlopt"
 
+# 
https://github.com/ocaml-ppx/ppx_tools_versioned/issues/28#issuecomment-694146771
 DEPEND="


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

2021-03-14 Thread Sam James
commit: b71783086519a86406a67a494f6fd3e4a8175eab
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:16:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:02:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7178308

dev-ml/dune-configurator: drop 2.7.1

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

 dev-ml/dune-configurator/Manifest  |  1 -
 .../dune-configurator-2.7.1.ebuild | 31 --
 2 files changed, 32 deletions(-)

diff --git a/dev-ml/dune-configurator/Manifest 
b/dev-ml/dune-configurator/Manifest
index 30bb206eaf0..f8470c9f312 100644
--- a/dev-ml/dune-configurator/Manifest
+++ b/dev-ml/dune-configurator/Manifest
@@ -1,3 +1,2 @@
-DIST dune-2.7.1.tar.gz 1290915 BLAKE2B 
85a2dee92d1ead03b43b80742c291f4470dd9e1d843fdb257754c567e2329c101d11b42573da19de537f0d8591ebdacfcaab1099e0f46bdeebcd8421eb1bbcb2
 SHA512 
b77d0e207263107365e5a6e94423e8ab4ddbab1f920872d915e4014b7cc69915274b53fe946bb4b29dfe3de2bf5573ab3b2bffb4db8eb50b472e7dfb6cab88b7
 DIST dune-2.8.2.tar.gz 1369417 BLAKE2B 
d846d35675a18abc3ccc57a52574d81a8fb4f082d9935912f035061c1107b47be8752daeb9c49bb2af4877e419a6c8bc30f846db6d773cf5267d3d761272a872
 SHA512 
fcbe45ea59492517e0868bf1f801c2bd2f3b1b30234e36d789c33e7ee48bd724726beb211697f3820609bbc27923c8c37d7be89dcbd059558014743360f2d0b7
 DIST dune-2.8.4.tar.gz 1372925 BLAKE2B 
5b6d6738a0dc701d852e6cc59a1998f64c006d233f43a804b0b9b677a6eadda25aa20f52799c90910d361e4bc565636a50d218ad5d0a9927239adc5be36b3889
 SHA512 
13b36eb6a943f9513987a23dab467b2e449cc3a4de35227f8323c3c724b27f19daac500602141ab22a0457924c8484ce27a7f73e46a72e796d30fb1c3253

diff --git a/dev-ml/dune-configurator/dune-configurator-2.7.1.ebuild 
b/dev-ml/dune-configurator/dune-configurator-2.7.1.ebuild
deleted file mode 100644
index 081e961014d..000
--- a/dev-ml/dune-configurator/dune-configurator-2.7.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit dune
-
-DESCRIPTION="A composable build system for OCaml"
-HOMEPAGE="https://github.com/ocaml/dune;
-SRC_URI="https://github.com/ocaml/dune/archive/${PV}.tar.gz -> 
dune-${PV}.tar.gz"
-S="${WORKDIR}/dune-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0/${PV}"
-KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86"
-IUSE="+ocamlopt test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-   ~dev-ml/dune-private-libs-${PV}:=
-   dev-ml/csexp:=
-"
-RDEPEND="${DEPEND}"
-DEPEND="${DEPEND}
-   test? (
-   dev-ml/ppx_expect
-   )"
-
-src_configure(){
-   :
-}



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

2021-03-14 Thread Sam James
commit: ffacd0954545b9c12a43f8613e99ab7ba2cf81fb
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:16:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:02:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffacd095

dev-ml/opam: drop 2.0.7-r1

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

 dev-ml/opam/Manifest |  1 -
 dev-ml/opam/opam-2.0.7-r1.ebuild | 38 --
 2 files changed, 39 deletions(-)

diff --git a/dev-ml/opam/Manifest b/dev-ml/opam/Manifest
index bf98012b040..4ce56fe2e51 100644
--- a/dev-ml/opam/Manifest
+++ b/dev-ml/opam/Manifest
@@ -1,3 +1,2 @@
 DIST opam-1.3.1.tar.gz 669485 BLAKE2B 
e1aed54175d46f5dd9fd989e56c25657370356e26df6976c01dd089e381291fa04e25da295104f85d513010cd028276d80ebf7a4a77b38f3e089e52f4e64f43a
 SHA512 
d075c9b2c9670d712f29bd2df34b8020da52041fa2bbef599cb54a81f63554507d78bebece45ecf668d3d1d4ed514e4ab88a1d86b64088d283bca7a8e75ae582
-DIST opam-2.0.7.tar.gz 636708 BLAKE2B 
2824a5c53f4103c267f99ae10f55df740b3afcc033321e888133817c0e53c4a8fc31738338df3d6d9ff8755987e85ade4a4726be98f77b06b81ffc1476d02c3d
 SHA512 
2ade3998a94333a5a838b55e229ab0c707e678481cae892980b986fb86f39163070a9b7d3e0e87879cd57b91a33bf6a3e15f3786c3510a635e59383782218f1d
 DIST opam-2.0.8.tar.gz 643221 BLAKE2B 
66510a18285f315fe95665e8ba2f334dd44211c716543cdc25f2951a7dfe537f115981046e5963fd08deea4c76f5672fa7cf8e7af2274a713a3165bdd0bac8c2
 SHA512 
14737dc994be2c54dfeaf2658d3713178033e1bc2b4b845a58b4bfc118bbbf12b502924add0ae32b4b2b6c1944462e5ee7143df3de362d9ee39573249d013bc9

diff --git a/dev-ml/opam/opam-2.0.7-r1.ebuild b/dev-ml/opam/opam-2.0.7-r1.ebuild
deleted file mode 100644
index 765c723d6f1..000
--- a/dev-ml/opam/opam-2.0.7-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit dune
-
-DESCRIPTION="A source-based package manager for OCaml"
-HOMEPAGE="http://opam.ocaml.org/;
-SRC_URI="https://github.com/ocaml/opam/archive/${PV/_/-}.tar.gz -> 
opam-${PV}.tar.gz"
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-IUSE="+ocamlopt"
-
-RDEPEND="
-   dev-ml/cmdliner:=
-   dev-ml/cudf:=
-   dev-ml/dose3:=
-   dev-ml/extlib:=
-   ~dev-ml/opam-client-${PV}:=
-   dev-ml/opam-file-format:=
-   dev-ml/re:="
-
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/opam-${PV/_/-}"
-
-src_prepare() {
-   default
-   cat <<- EOF >> "${S}/dune"
-   (env
-(dev
- (flags (:standard -warn-error -3-9-33)))
-(release
- (flags (:standard -warn-error -3-9-33
-   EOF
-}



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

2021-03-14 Thread Sam James
commit: ec651c44eb8580373c2b52feee6fdecdd5104ef1
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:14:03 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec651c44

dev-ml/integers: drop 0.2.2

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

 dev-ml/integers/Manifest  |  1 -
 dev-ml/integers/integers-0.2.2.ebuild | 32 
 2 files changed, 33 deletions(-)

diff --git a/dev-ml/integers/Manifest b/dev-ml/integers/Manifest
index d75277c3580..4f78ee27466 100644
--- a/dev-ml/integers/Manifest
+++ b/dev-ml/integers/Manifest
@@ -1,2 +1 @@
-DIST integers-0.2.2.tbz 9155 BLAKE2B 
7dcbf0a10cdd2f65683c590dcc18ab7a67540eb39b78500506b303afaf881d6322ac8014dff9a772d7b43cb9b4765dbf85cdb2d31a3a5a78cf5a8e674f18dfea
 SHA512 
957ec87f385916a847eeccef1142d706cf2bf9024a4f0b97120f73a2eda4c049261078bc27227db14bfed53bf014da14a93ef75b515a851af72088bd8b04081a
 DIST integers-0.4.0.tar.gz 9980 BLAKE2B 
ee67c39024d77f4ce20e9ba7e1564b3418397f1e98b9a5f30e238f5c161d7572701e3d824871b46d15b90887d5f3983a9ab440f46e22c4de8cbc68912daea5eb
 SHA512 
73af64654579b27db18c612229044dba094064dc7d36a73f42ffd4ba7040ed326f859f588e7a764bce3b2fd6e9365f9e9f99330ef29bafbe77ca6dcb53d5ed79

diff --git a/dev-ml/integers/integers-0.2.2.ebuild 
b/dev-ml/integers/integers-0.2.2.ebuild
deleted file mode 100644
index 4c499913430..000
--- a/dev-ml/integers/integers-0.2.2.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Various signed and unsigned integer types for OCaml"
-HOMEPAGE="https://github.com/ocamllabs/ocaml-integers;
-SRC_URI="https://github.com/ocamllabs/ocaml-integers/releases/download/v${PV}/${P}.tbz;
-
-LICENSE="MIT"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE=""
-
-RDEPEND="dev-lang/ocaml:="
-DEPEND="${RDEPEND}
-   dev-ml/ocamlbuild
-   dev-ml/opam
-   dev-ml/topkg
-   dev-ml/findlib"
-
-src_compile() {
-   ocaml pkg/pkg.ml build || die
-}
-
-src_install() {
-   opam-installer -i \
-   --prefix="${ED}/usr" \
-   --libdir="${D}/$(ocamlc -where)" \
-   --docdir="${ED}/usr/share/doc/${PF}" \
-   ${PN}.install || die
-}



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

2021-03-14 Thread Sam James
commit: 80910f3268a132cb68b55b843713c70d586b5aa9
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:14:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80910f32

dev-ml/camomile: drop 0.8.5-r2

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

 dev-ml/camomile/Manifest |  1 -
 dev-ml/camomile/camomile-0.8.5-r2.ebuild | 47 
 2 files changed, 48 deletions(-)

diff --git a/dev-ml/camomile/Manifest b/dev-ml/camomile/Manifest
index 1c3860b2bb5..f5976e8b2a7 100644
--- a/dev-ml/camomile/Manifest
+++ b/dev-ml/camomile/Manifest
@@ -1,2 +1 @@
-DIST camomile-0.8.5.tar.bz2 2607084 BLAKE2B 
5e0ff51cdd6d7ce41ee024189a793f3d3e4bec1bd9849e7c01d2722ff22ca2cb5f0d5bd5f95820e741469ebda2996edf3611827535df5fe095d3f6617ecfdd42
 SHA512 
ef4da32f955e69e0b2958b4b2bf12ae94e210d8aa7cee5a9030607b79ac43a884758549f3164c223fb07d987a4a50b15f0bc5083ff67120270409f7fb9928014
 DIST camomile-1.0.2.tar.gz 7032339 BLAKE2B 
8cd60c74821c2c8e7084e752d1e4d67428c935859e02a8630f3f5563b53b3ce444071fa26153950f6a410b2743073692c7061e4f1f902c23e5fa54c50a89383c
 SHA512 
d62ecaa297058b52674f98e513a6d776148fe62651b2b4a2dac4bb3e05abb8b7684960e889f68c6dab60aee669fbab715a2d6a9206645e24d10d8aaaf7cedf0e

diff --git a/dev-ml/camomile/camomile-0.8.5-r2.ebuild 
b/dev-ml/camomile/camomile-0.8.5-r2.ebuild
deleted file mode 100644
index 93b60798ff0..000
--- a/dev-ml/camomile/camomile-0.8.5-r2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit findlib eutils
-
-DESCRIPTION="Camomile is a comprehensive Unicode library for ocaml"
-HOMEPAGE="https://github.com/yoriyuki/Camomile/wiki;
-SRC_URI="https://github.com/yoriyuki/Camomile/releases/download/rel-${PV}/${P}.tar.bz2;
-
-LICENSE="LGPL-2"
-SLOT="0/${PV}"
-KEYWORDS="amd64 ppc x86"
-IUSE="debug +ocamlopt"
-
-PATCHES=( "${FILESDIR}"/ocaml-unsafe-string.patch )
-
-RDEPEND="
-   >=dev-lang/ocaml-3.10.2:=[ocamlopt?]
-   dev-ml/camlp4:=
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   default
-
-   if has_version '>=dev-lang/ocaml-4.05_beta'; then
-   eapply "${FILESDIR}/ocaml405.patch"
-   fi
-}
-
-src_configure() {
-   econf $(use_enable debug)
-}
-
-src_compile() {
-   emake -j1 byte unidata unimaps charmap_data locale_data
-   if use ocamlopt; then
-   emake -j1 opt
-   fi
-}
-
-src_install() {
-   dodir /usr/bin
-   findlib_src_install DATADIR="${D}/usr/share" BINDIR="${D}/usr/bin"
-}



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

2021-03-14 Thread Sam James
commit: 0db909331e046ad7cbe882ce5230e83a60242922
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:14:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0db90933

dev-ml/ppx_deriving: drop 4.5

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

 dev-ml/ppx_deriving/Manifest|  1 -
 dev-ml/ppx_deriving/ppx_deriving-4.5.ebuild | 29 -
 2 files changed, 30 deletions(-)

diff --git a/dev-ml/ppx_deriving/Manifest b/dev-ml/ppx_deriving/Manifest
index 8d62b98a54f..b5a0cf80e61 100644
--- a/dev-ml/ppx_deriving/Manifest
+++ b/dev-ml/ppx_deriving/Manifest
@@ -1,2 +1 @@
-DIST ppx_deriving-4.5.tar.gz 45886 BLAKE2B 
257bacda986a3830e3efd55b8e97d8c633b64740a36c7954c7b13ef42578fef8795f268e709a2b7285fa3dda1297afe7cfcc277da8557ed654dda6401a550680
 SHA512 
f79153c5231ba1e03a3491fde95ca82ecb62fe05b60a649a374d2fbc5ea5dd9242126de7dfbe917c22fd7077c026c940e18c6b36c5ce0ec4bb6e07f11d2b710b
 DIST ppx_deriving-5.2.tar.gz 45766 BLAKE2B 
67d041b69ad675873500844f8ef638797e271c3a3a82467407914a073e6eb9ff84f911d128ccf507be051fb89c7c85991987793067046b0dd1ecdc534b658b05
 SHA512 
0daf7d0050b8e2b18b441da994e8cf1f05e37f7d88d1f4512204979f19ac4d116a6c72f683c615b091e0340a4d380684f9b2ed1b70d84fae6ca928843ed3f479

diff --git a/dev-ml/ppx_deriving/ppx_deriving-4.5.ebuild 
b/dev-ml/ppx_deriving/ppx_deriving-4.5.ebuild
deleted file mode 100644
index 47ccd56be1a..000
--- a/dev-ml/ppx_deriving/ppx_deriving-4.5.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit dune
-
-DESCRIPTION="Type-driven code generation for OCaml"
-HOMEPAGE="https://github.com/ocaml-ppx/ppx_deriving;
-SRC_URI="https://github.com/ocaml-ppx/ppx_deriving/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-IUSE="+ocamlopt test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-   dev-ml/ppx_tools:=
-   

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

2021-03-14 Thread Sam James
commit: 71a342925abafefafe24497492e46ae892b0cfd8
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:13:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71a34292

dev-ml/re2: drop 0.9.0

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

 dev-ml/re2/Manifest |  1 -
 dev-ml/re2/re2-0.9.0.ebuild | 24 
 2 files changed, 25 deletions(-)

diff --git a/dev-ml/re2/Manifest b/dev-ml/re2/Manifest
index 49eba6a6053..80e398d16db 100644
--- a/dev-ml/re2/Manifest
+++ b/dev-ml/re2/Manifest
@@ -1,2 +1 @@
-DIST re2-0.9.0.tar.gz 388868 BLAKE2B 
e4a16d9c417099c0aae331adbb09a5b1da597df576232f40d991aaafb751a936f92771df4dc17b869e1b90d86800d0f4313fd51924b0fbb04c1ac8c06961704d
 SHA512 
d11cde52c151486025e05318930253f37312eb6498698ffd3b271f4ba0c83cae0ff8c0c1a11e01b6ab333770400108f3de33fd68f73ab6df1c832e7edffb5e77
 DIST re2-0.9.1.tar.gz 388911 BLAKE2B 
d6d0673142e2523c0d5fed2c19439bbf7c2ace401558f4c40f0302445492ae17bf67076c4faeb0e25eeb8cc01f463f4804317d4f6a5113586be77df18ec93874
 SHA512 
a92dc39a1d263dd2bbfad88f0ea0936fcadd1d03cd735d9db151412919713cfb4d8329f1e0fa454917d8faa49480e8dd60af9331b0863548ab267b647bd1e192

diff --git a/dev-ml/re2/re2-0.9.0.ebuild b/dev-ml/re2/re2-0.9.0.ebuild
deleted file mode 100644
index e77c46fb603..000
--- a/dev-ml/re2/re2-0.9.0.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit opam
-
-DESCRIPTION="OCaml bindings for RE2"
-HOMEPAGE="https://github.com/janestreet/re2;
-SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
-   dev-ml/core_kernel:=
-   dev-ml/ppx_driver:=
-   dev-ml/ppx_jane:=
-   dev-ml/ocaml-migrate-parsetree:=
-"
-RDEPEND="${DEPEND}"
-DEPEND="${DEPEND} dev-ml/jbuilder"



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

2021-03-14 Thread Sam James
commit: e2dade8b79da88f265180899360d98a9ec8b39d2
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:12:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2dade8b

dev-ml/bin-prot: drop 0.9.0, 0.9.1

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

 dev-ml/bin-prot/Manifest  |  2 --
 dev-ml/bin-prot/bin-prot-0.9.0.ebuild | 44 ---
 dev-ml/bin-prot/bin-prot-0.9.1.ebuild | 44 ---
 3 files changed, 90 deletions(-)

diff --git a/dev-ml/bin-prot/Manifest b/dev-ml/bin-prot/Manifest
index 56a42452c2b..21d3f915059 100644
--- a/dev-ml/bin-prot/Manifest
+++ b/dev-ml/bin-prot/Manifest
@@ -1,3 +1 @@
-DIST bin-prot-0.9.0.tar.gz 338958 BLAKE2B 
78b447f42f2c75d70d17dedd855c2c08b740ea847a489bdcff860b88f4ce3fbfd05d88f87d16d761b26314715507288035f708e5bb8267125a360abf4df70850
 SHA512 
111e0a9d07bdf22db6e3e7e9a165d196a264a3652e4cc363ec8f49c4ef385b8b76982a9d42fa8e0954e15a4a80c35ca6876c70fe6f20d7497fd8a2d53fab24c1
-DIST bin-prot-0.9.1.tar.gz 338969 BLAKE2B 
249329c0093affc082a42b5a496f0f8861d761799104ef50d788331179e3a6965cb1cd03ee6530782a608677488a4970583e85f25e5ba220d2d179d3d16908c2
 SHA512 
6575f51931c6dfb0f640bc6eb8bb789fd1ca4b1ca95876df906bd5d5c3320dc8aebedd44b5c6feee6b66b40007bd0077da6cc628c791daba0c8cf806d7af7b9c
 DIST bin-prot-0.9.2.tar.gz 339008 BLAKE2B 
3fcad0d5a88393b49b22d42b4669da485ddd9a61938cdda4183658eca5b0369265480005945bdaeb53cc8af5c324cc7cb158b4208e4a7a7f821db5c045502910
 SHA512 
a4aa453ff4d2037b8ed0e53186fafa876a96ecb970ef25e99cf133afa4615b8fc53de75234454519a4f7c11f771f98e8117f8fa37682dbb8f73d4fda8a1805f7

diff --git a/dev-ml/bin-prot/bin-prot-0.9.0.ebuild 
b/dev-ml/bin-prot/bin-prot-0.9.0.ebuild
deleted file mode 100644
index 5c2d435fef0..000
--- a/dev-ml/bin-prot/bin-prot-0.9.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Binary protocol generator"
-HOMEPAGE="https://github.com/janestreet/bin_prot;
-SRC_URI="https://github.com/janestreet/bin_prot/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="
-   dev-lang/ocaml:=
-   dev-ml/base:=
-   dev-ml/ppx_compare:=
-   dev-ml/ppx_custom_printf:=
-   dev-ml/ppx_core:=
-   dev-ml/ppx_driver:=
-   dev-ml/ppx_fields_conv:=
-   dev-ml/ppx_sexp_conv:=
-   dev-ml/ppx_type_conv:=
-   dev-ml/ppx_variants_conv:=
-   dev-ml/sexplib:=
-   dev-ml/ocaml-migrate-parsetree:=
-"
-DEPEND="${RDEPEND} dev-ml/opam dev-ml/jbuilder"
-
-S="${WORKDIR}/bin_prot-${PV}"
-
-src_test() {
-   jbuilder runtest || die
-}
-
-src_install() {
-   opam-installer -i \
-   --prefix="${ED}/usr" \
-   --libdir="${D}/$(ocamlc -where)" \
-   --docdir="${ED}/usr/share/doc/${PF}" \
-   ${PN/-/_}.install || die
-   dodoc CHANGES.md README.md
-}

diff --git a/dev-ml/bin-prot/bin-prot-0.9.1.ebuild 
b/dev-ml/bin-prot/bin-prot-0.9.1.ebuild
deleted file mode 100644
index 5c2d435fef0..000
--- a/dev-ml/bin-prot/bin-prot-0.9.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Binary protocol generator"
-HOMEPAGE="https://github.com/janestreet/bin_prot;
-SRC_URI="https://github.com/janestreet/bin_prot/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="
-   dev-lang/ocaml:=
-   dev-ml/base:=
-   dev-ml/ppx_compare:=
-   dev-ml/ppx_custom_printf:=
-   dev-ml/ppx_core:=
-   dev-ml/ppx_driver:=
-   dev-ml/ppx_fields_conv:=
-   dev-ml/ppx_sexp_conv:=
-   dev-ml/ppx_type_conv:=
-   dev-ml/ppx_variants_conv:=
-   dev-ml/sexplib:=
-   dev-ml/ocaml-migrate-parsetree:=
-"
-DEPEND="${RDEPEND} dev-ml/opam dev-ml/jbuilder"
-
-S="${WORKDIR}/bin_prot-${PV}"
-
-src_test() {
-   jbuilder runtest || die
-}
-
-src_install() {
-   opam-installer -i \
-   --prefix="${ED}/usr" \
-   --libdir="${D}/$(ocamlc -where)" \
-   --docdir="${ED}/usr/share/doc/${PF}" \
-   ${PN/-/_}.install || die
-   dodoc CHANGES.md README.md
-}



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

2021-03-14 Thread Sam James
commit: c32e074868001a119445f6262aa985ceb44f7373
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar 14 00:59:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c32e0748

dev-ml/opam-state: drop 2.0.7-r1

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

 dev-ml/opam-state/Manifest   |  1 -
 dev-ml/opam-state/opam-state-2.0.7-r1.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/dev-ml/opam-state/Manifest b/dev-ml/opam-state/Manifest
index 39fe274747d..6022b2986d9 100644
--- a/dev-ml/opam-state/Manifest
+++ b/dev-ml/opam-state/Manifest
@@ -1,2 +1 @@
-DIST opam-2.0.7.tar.gz 636708 BLAKE2B 
2824a5c53f4103c267f99ae10f55df740b3afcc033321e888133817c0e53c4a8fc31738338df3d6d9ff8755987e85ade4a4726be98f77b06b81ffc1476d02c3d
 SHA512 
2ade3998a94333a5a838b55e229ab0c707e678481cae892980b986fb86f39163070a9b7d3e0e87879cd57b91a33bf6a3e15f3786c3510a635e59383782218f1d
 DIST opam-2.0.8.tar.gz 643221 BLAKE2B 
66510a18285f315fe95665e8ba2f334dd44211c716543cdc25f2951a7dfe537f115981046e5963fd08deea4c76f5672fa7cf8e7af2274a713a3165bdd0bac8c2
 SHA512 
14737dc994be2c54dfeaf2658d3713178033e1bc2b4b845a58b4bfc118bbbf12b502924add0ae32b4b2b6c1944462e5ee7143df3de362d9ee39573249d013bc9

diff --git a/dev-ml/opam-state/opam-state-2.0.7-r1.ebuild 
b/dev-ml/opam-state/opam-state-2.0.7-r1.ebuild
deleted file mode 100644
index 6a79137fcca..000
--- a/dev-ml/opam-state/opam-state-2.0.7-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit dune
-
-DESCRIPTION="opam state libraries"
-HOMEPAGE="https://opam.ocaml.org/ https://github.com/ocaml/opam;
-SRC_URI="https://github.com/ocaml/opam/archive/${PV/_/-}.tar.gz -> 
opam-${PV}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-IUSE="+ocamlopt"
-
-RDEPEND="
-   ~dev-ml/opam-repository-${PV}:=
-   dev-ml/re:=
-   dev-ml/opam-file-format:=
-"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/opam-${PV/_/-}"
-RESTRICT="test"
-
-src_prepare() {
-   default
-   cat <<- EOF >> "${S}/dune"
-   (env
-(dev
- (flags (:standard -warn-error -3-9-33)))
-(release
- (flags (:standard -warn-error -3-9-33
-   EOF
-}



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

2021-03-14 Thread Sam James
commit: 02ce8e75e1e5dbb907dc1b0d69e193ee340428f3
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:12:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02ce8e75

dev-ml/astring: drop 0.8.3

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

 dev-ml/astring/Manifest |  1 -
 dev-ml/astring/astring-0.8.3.ebuild | 25 -
 2 files changed, 26 deletions(-)

diff --git a/dev-ml/astring/Manifest b/dev-ml/astring/Manifest
index b4a531be8ac..9de5e69087a 100644
--- a/dev-ml/astring/Manifest
+++ b/dev-ml/astring/Manifest
@@ -1,2 +1 @@
-DIST astring-0.8.3.tbz 38710 BLAKE2B 
253fe07b51996eb7b5f84e18d171b0f65cbb5abba9b241a02aa679765f3190edc636c1ba989910fde374a20c7615db1887eb73d8607f3bb8311e20ab6e67f670
 SHA512 
c7230e47b7ef14e6040fb18284a3d5aa8da1428b721cf91a7f17104cfb853be24b9c2aaa0b118bf3e050158aa8748311435417c6cf9014d260fb4379e4ead3e1
 DIST astring-0.8.5.tbz 37499 BLAKE2B 
bff0b9a295da9e33e0cc4bf1a5a0c3cec4010f477d67a39650bbb8e61f12e517cd5734f1e869d35448e4e555a04d0223b76181f29ee299ef9f19359c7d59e69a
 SHA512 
b40634cc2053d651bce5c1974996b352ffa48ecac429919113840b2a807efb34387d950f12accb346afd5e40514cb90219d70b00109c30e1450c4e99f65c9856

diff --git a/dev-ml/astring/astring-0.8.3.ebuild 
b/dev-ml/astring/astring-0.8.3.ebuild
deleted file mode 100644
index 503571633f0..000
--- a/dev-ml/astring/astring-0.8.3.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit opam
-
-DESCRIPTION="Alternative String module for OCaml"
-HOMEPAGE="https://erratique.ch/software/astring 
https://github.com/dbuenzli/astring;
-SRC_URI="https://erratique.ch/software/astring/releases/${P}.tbz;
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="dev-lang/ocaml:=[ocamlopt]"
-DEPEND="${RDEPEND}
-   dev-ml/topkg
-   dev-ml/ocamlbuild
-   dev-ml/findlib"
-
-src_compile() {
-   ocaml pkg/pkg.ml build || die
-}



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

2021-03-14 Thread Sam James
commit: 7d75ebdb34fda411ce9c1e17842d0c7cf6663a95
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:12:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d75ebdb

dev-ml/ppx_driver: drop 0.9.1-r1

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

 dev-ml/ppx_driver/Manifest   |  1 -
 dev-ml/ppx_driver/ppx_driver-0.9.1-r1.ebuild | 24 
 2 files changed, 25 deletions(-)

diff --git a/dev-ml/ppx_driver/Manifest b/dev-ml/ppx_driver/Manifest
index 81ae2e9ea42..d0688f42d14 100644
--- a/dev-ml/ppx_driver/Manifest
+++ b/dev-ml/ppx_driver/Manifest
@@ -1,2 +1 @@
 DIST ppx_driver-0.11.0.tar.gz 9157 BLAKE2B 
053e710c3d8cb6096c893bd5308fbe2b4563dfb2de3c006402ae363aed60db31a3bb1b7656f0565ce13d88368d8b6bef68658f81190dda397562d462828618f4
 SHA512 
d7ef318f6f0c6e4c56537584bb50b6673b294b67ac264208b7c8b4bcc9d0ca6baf1cbea752459b12d9102bb84a392047c907c65afd23760cac1cc4465ed85ea9
-DIST ppx_driver-0.9.1.tar.gz 28637 BLAKE2B 
d787ac91713bd750d2d2bde5830df3abb1a07be6672000d7a6de6c125a7627e7a5b94aa9f8f87e2c6c57a7a92073c44e18c7285575aad02f5db9c7b4419647d8
 SHA512 
1e3647e34fb9e6d44b783fae1fce21413e5591f8934c3d2ddac3d1b37019b0d95117c8d64abf14cbfe4f67147612371ec1eb76b477763b062206ffc9b46688d7

diff --git a/dev-ml/ppx_driver/ppx_driver-0.9.1-r1.ebuild 
b/dev-ml/ppx_driver/ppx_driver-0.9.1-r1.ebuild
deleted file mode 100644
index c950b017789..000
--- a/dev-ml/ppx_driver/ppx_driver-0.9.1-r1.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit opam
-
-DESCRIPTION="Feature-full driver for OCaml AST transformers"
-HOMEPAGE="https://github.com/janestreet/ppx_driver;
-SRC_URI="https://github.com/janestreet/ppx_driver/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-DEPEND="
-   dev-ml/ppx_core:=
- dev-ml/stdio:=
-   dev-ml/ppx_optcomp:=
-   dev-ml/ocaml-migrate-parsetree:=
-   dev-ml/ocamlbuild:="
-RDEPEND="${DEPEND}"
-DEPEND="${DEPEND} dev-ml/jbuilder"



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

2021-03-14 Thread Sam James
commit: c2ca2e5f59df47e2d728cbf33fd01b6262ef64fb
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:13:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2ca2e5f

dev-ml/ocamlnet: drop 4.1.2

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

 dev-ml/ocamlnet/Manifest  |  1 -
 dev-ml/ocamlnet/ocamlnet-4.1.2.ebuild | 76 ---
 2 files changed, 77 deletions(-)

diff --git a/dev-ml/ocamlnet/Manifest b/dev-ml/ocamlnet/Manifest
index 07c2fea79b5..ad3635f4b81 100644
--- a/dev-ml/ocamlnet/Manifest
+++ b/dev-ml/ocamlnet/Manifest
@@ -1,2 +1 @@
-DIST ocamlnet-4.1.2.tar.gz 4623183 BLAKE2B 
7e8d5cdc823b9e924258f75f00957ba185d49555377ba2a2d960c47e2ea958059e1ab62e27be63770bb4f547e1fa0cb788a54c3e698180b2b15f0097fe84455a
 SHA512 
69f42042a54efd662db2217224da53513fc7e72c7b2313d4a4a1128f1b4624f4f6298434f5b19f354b832119ff151abc81e85eb0108d6eb24f30f82d176e0b4d
 DIST ocamlnet-4.1.8.tar.gz 4620065 BLAKE2B 
8f84ce4d79de5f4a1f26d4e45f68327042b0adc22717e56eeaca03ee6371e9251c01e8736d3afe5c00a1c65ef0286d56a04c57e80377402bb19ff87955ae98d9
 SHA512 
e238235968b9546c60568a38e68e354378d30e7137973332dcb10da21fa775ab7b367889fc51f5bd7cb00e51582834cafe2a0c4706b0bc77a44d4571a6f22815

diff --git a/dev-ml/ocamlnet/ocamlnet-4.1.2.ebuild 
b/dev-ml/ocamlnet/ocamlnet-4.1.2.ebuild
deleted file mode 100644
index d307e762830..000
--- a/dev-ml/ocamlnet/ocamlnet-4.1.2.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils findlib
-
-MY_P=${P/_beta/test}
-DESCRIPTION="Modules for OCaml application-level Internet protocols"
-HOMEPAGE="http://projects.camlcity.org/projects/ocamlnet.html;
-SRC_URI="http://download.camlcity.org/download/${MY_P}.tar.gz;
-
-LICENSE="ZLIB GPL-2+"
-SLOT="0/${PV}"
-KEYWORDS="amd64 ppc x86"
-IUSE="gtk kerberos tk httpd +ocamlopt +pcre ssl zip"
-RESTRICT="installsources strip"
-
-# the auth-dh compile flag has been disabled as well, since it depends on
-# ocaml-cryptgps, which is not available.
-
-RDEPEND=">=dev-ml/findlib-1.0
-   pcre? ( >=dev-ml/pcre-ocaml-5:= )
-   >=dev-lang/ocaml-3.10.2:=[ocamlopt?]
-   tk? ( dev-ml/labltk:= )
-   ssl? ( net-libs/gnutls:= )
-   gtk? ( >=dev-ml/lablgtk-2:= )
-   kerberos? ( virtual/krb5 )
-   zip? ( dev-ml/camlzip:= )
-   "
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   epatch "${FILESDIR}/ocaml405.patch"
-}
-
-ocamlnet_use_with() {
-   if use $1; then
-   echo "-with-$2"
-   else
-   echo "-without-$2"
-   fi
-}
-
-ocamlnet_use_enable() {
-   if use $1; then
-   echo "-enable-$2"
-   else
-   echo "-disable-$2"
-   fi
-}
-
-src_configure() {
-   ./configure \
-   -bindir /usr/bin \
-   -datadir /usr/share/${PN} \
-   $(ocamlnet_use_enable ssl gnutls) \
-   $(ocamlnet_use_enable gtk gtk2) \
-   $(ocamlnet_use_enable kerberos gssapi) \
-   $(ocamlnet_use_enable pcre pcre) \
-   $(ocamlnet_use_enable tk tcl) \
-   $(ocamlnet_use_enable zip zip) \
-   $(ocamlnet_use_with httpd nethttpd) \
-   || die "Error : econf failed!"
-}
-
-src_compile() {
-   emake -j1 all
-   if use ocamlopt; then
-   emake -j1 opt
-   fi
-}



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

2021-03-14 Thread Sam James
commit: 3474fb5d222b8f2bccdf02ddce7a1b70ec6a1055
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:13:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3474fb5d

dev-ml/ocplib-simplex: drop 0.3

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

 dev-ml/ocplib-simplex/Manifest  |  1 -
 dev-ml/ocplib-simplex/ocplib-simplex-0.3.ebuild | 33 -
 2 files changed, 34 deletions(-)

diff --git a/dev-ml/ocplib-simplex/Manifest b/dev-ml/ocplib-simplex/Manifest
index aba0025144b..a1645db7e20 100644
--- a/dev-ml/ocplib-simplex/Manifest
+++ b/dev-ml/ocplib-simplex/Manifest
@@ -1,2 +1 @@
-DIST ocplib-simplex-0.3.tar.gz 31013 BLAKE2B 
30d1541f15bf9d2c55f51ed565f2feb63c2b0fbe0095c15849a22df0876ad992a3e6c15924dbbe5a798ab278c7e171e30cda815b1de2ec9bc19fc92bbe79ad95
 SHA512 
43373deb6e921a31526c27d33808c3520b4f375caf9e5237179db0e8d84b5be3bf43e061e2d991fc6de694958c64c7ede0b258400fb921c4139664e367958630
 DIST ocplib-simplex-0.4.tar.gz 31784 BLAKE2B 
89ebb43ba59debc658b1400b24379dcb717f44f484742a4ea2227e1692f2d1d359469add4e3c22bd15b7a5044e4d45877994b40e80f28ec8639989bf28565d9a
 SHA512 
5eb80f0c8ad32291d24423255c0359e139cd85e2262b0cbbfaffcab66d9a7eb66c9bf04bb9d5d5c103574ec7041a72cde5412e6cb03fc9fe4a8fd257dab49a76

diff --git a/dev-ml/ocplib-simplex/ocplib-simplex-0.3.ebuild 
b/dev-ml/ocplib-simplex/ocplib-simplex-0.3.ebuild
deleted file mode 100644
index f04ed1fed37..000
--- a/dev-ml/ocplib-simplex/ocplib-simplex-0.3.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools findlib multilib
-
-DESCRIPTION="A library implementing a simplex algorithm"
-HOMEPAGE="https://github.com/OCamlPro-Iguernlala/ocplib-simplex;
-SRC_URI="https://github.com/OCamlPro-Iguernlala/${PN}/archive/${PV}.tar.gz
-   -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0"
-KEYWORDS="amd64"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-DOCS="CHANGES.md README.md extra/simplex_invariants.txt extra/TODO.txt"
-
-src_prepare() {
-   default
-   mv configure.{in,ac} || die
-   sed -i -e "s:configure.in:configure.ac:g" \
-   Makefile.in
-   eautoreconf
-}
-
-src_install() {
-   findlib_src_install LIBDIR="${D}"usr/"$(get_libdir)"/ocaml
-}



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

2021-03-14 Thread Sam James
commit: 58218de97a92af06a2af9550ad4d0cc534f59cef
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:13:53 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58218de9

dev-ml/fmt: drop 0.8.4

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

 dev-ml/fmt/Manifest |  1 -
 dev-ml/fmt/fmt-0.8.4.ebuild | 33 -
 2 files changed, 34 deletions(-)

diff --git a/dev-ml/fmt/Manifest b/dev-ml/fmt/Manifest
index 6bade5578e9..8b6f6722529 100644
--- a/dev-ml/fmt/Manifest
+++ b/dev-ml/fmt/Manifest
@@ -1,2 +1 @@
-DIST fmt-0.8.4.tbz 14079 BLAKE2B 
c4b6fc35a27734e8d878ef1abfa900b659d4acafc20757b0413aec1404378aed6e57c6a1a0e5c7dbda7e60fdd911d38fa1fecc76d670299ddf6ed14930fbcc28
 SHA512 
d17407f15447172ad444fa288b9a16962b0e4829cb73f62004b0f8dad2bec60a7911ad11fd05545d61d7fdb88099e53694548c73368399ba183c53383e1dfd31
 DIST fmt-0.8.9.tbz 21469 BLAKE2B 
4cddf626118c9bdea435f9db4e6a3c0b92b49b2c07d1b0f708ae7b82963453be666ad49df196d98b466236509d3fa5a519e191da6b2385a308d1019f1583f0b5
 SHA512 
19b97caf5d2dbe86cd75bec478707b8f4e4b899b2a11ce04790dc5acb5c9ed6ea98047de52ee50c6480231a16307af2541eabaa94d18d7d008f7a67496f5f626

diff --git a/dev-ml/fmt/fmt-0.8.4.ebuild b/dev-ml/fmt/fmt-0.8.4.ebuild
deleted file mode 100644
index e08ee4dfd3c..000
--- a/dev-ml/fmt/fmt-0.8.4.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit findlib opam
-
-DESCRIPTION="Combinators to devise OCaml Format pretty-printing functions"
-HOMEPAGE="https://erratique.ch/software/fmt https://github.com/dbuenzli/fmt;
-SRC_URI="https://erratique.ch/software/fmt/releases/${P}.tbz;
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-ml/result:=[ocamlopt]
-   dev-lang/ocaml:=[ocamlopt]
-   dev-ml/uchar:=[ocamlopt]
-   dev-ml/cmdliner:=[ocamlopt]"
-DEPEND="${RDEPEND}
-   >=dev-ml/topkg-0.9
-   dev-ml/ocamlbuild
-   dev-ml/findlib"
-
-src_compile() {
-   ocaml pkg/pkg.ml build --tests $(usex test 'true' 'false') || die
-}
-
-src_test() {
-   ocaml pkg/pkg.ml test || die
-}



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

2021-03-14 Thread Sam James
commit: 5f83bf5c0862a729f58bdd1511c136ebf9d6fcc3
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:11:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f83bf5c

dev-ml/ppx_tools_versioned: drop 5.0.1

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

 dev-ml/ppx_tools_versioned/Manifest|  1 -
 .../ppx_tools_versioned-5.0.1.ebuild   | 30 --
 2 files changed, 31 deletions(-)

diff --git a/dev-ml/ppx_tools_versioned/Manifest 
b/dev-ml/ppx_tools_versioned/Manifest
index 2b4692af4cb..40da2fefa2e 100644
--- a/dev-ml/ppx_tools_versioned/Manifest
+++ b/dev-ml/ppx_tools_versioned/Manifest
@@ -1,3 +1,2 @@
-DIST ppx_tools_versioned-5.0.1.tar.gz 43741 BLAKE2B 
0ff7dc5a03265a7e9fea6bebe372cee993f35d2d2ec451d5f77a1c7de51f91526bf15817882ff93033b3fcd51014efa12841a92cedf243870a22790f00807e9e
 SHA512 
4d47f82c5a05f880dbb3d10caac6de705b9609c488d62be84eb1ebe22fa8c4e3716fad7c546035e955bd0e304d7940f23df090470f86c8d862b549b9db387acb
 DIST ppx_tools_versioned-5.2.2.tar.gz 60068 BLAKE2B 
0b965d2124852e8ea3c8f4187ef320a3054eab4f969bfd64f4bb647e1381cc6f571b74d5176a6da59003ada89982a63b605f45231fb0bbf4ebec7da959e76d1e
 SHA512 
68c168ebc01af46fe8766ad7e36cc778caabb97d8eb303db284d106450cb79974c2a640ce459e197630b9e84b02caa24b59c97c9a8d39ddadc7efc7284e42a70
 DIST ppx_tools_versioned-5.4.0.tar.gz 91817 BLAKE2B 
0de64bbc0e7626306389eb350119262e1b1dbf1c643a62d4b2363f06203567e719962fc64727de65aa204a488381f8e48bbbe1243e9908823cb24162bc88
 SHA512 
7f0421dbb42b43acc4f7892ac1c4c0ac13bdc188400d308688c4548b228aaf8bd80a4e2294672b50c78ac61e3c8df148c98d16b59f48292f02be40e7fd9640a9

diff --git a/dev-ml/ppx_tools_versioned/ppx_tools_versioned-5.0.1.ebuild 
b/dev-ml/ppx_tools_versioned/ppx_tools_versioned-5.0.1.ebuild
deleted file mode 100644
index ec7f405d4df..000
--- a/dev-ml/ppx_tools_versioned/ppx_tools_versioned-5.0.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit findlib
-
-MY_PV=${PV/_/}
-MY_P=${PN}-${MY_PV}
-
-DESCRIPTION="Tools for authors of ppx rewriters"
-HOMEPAGE="https://github.com/let-def/ppx_tools_versioned;
-SRC_URI="https://github.com/let-def/ppx_tools_versioned/archive/${MY_PV}.tar.gz
 -> ${MY_P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
-IUSE=""
-
-DEPEND="
-   dev-lang/ocaml:=
-   dev-ml/ocaml-migrate-parsetree:=
-"
-RDEPEND="${DEPEND}"
-S="${WORKDIR}/${MY_P}"
-
-src_install() {
-   findlib_src_install
-   dodoc README.md
-}



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

2021-03-14 Thread Sam James
commit: 96716746045ff29b9219c6365746390f59780bb9
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:12:50 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96716746

dev-ml/camlzip: drop 1.07

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

 dev-ml/camlzip/Manifest|  1 -
 dev-ml/camlzip/camlzip-1.07.ebuild | 35 ---
 2 files changed, 36 deletions(-)

diff --git a/dev-ml/camlzip/Manifest b/dev-ml/camlzip/Manifest
index 263d292cb7a..2cb16e028b3 100644
--- a/dev-ml/camlzip/Manifest
+++ b/dev-ml/camlzip/Manifest
@@ -1,2 +1 @@
-DIST camlzip-1.07.tar.gz 26652 BLAKE2B 
f373ac0427faa9b6a846e9db8f3e48c00ec6885b8a11cc09fae96b5a7656908f172fda73dbea8ddd1b3dbfd98bcfa3e2e67ce9faf2942d1e260fc0a804813a05
 SHA512 
b92e9db002b9b398fd132c6ecd8098fac4cc7ddb3f770cc412990dcdf4bd62ba358c762d31fb0b5cd6b32f20d3bf4b3410ca6e86c511a438b92ece940f9831bd
 DIST camlzip-1.10.tar.gz 27335 BLAKE2B 
bbf24953634278589395dd9fcedf1e3becce8dad1f380393dc3ac59589143e1685dc14085ef566e12fb751c6f1a333dd368795a5083b94a43b71e058e86489f3
 SHA512 
5c42e0d808230e3820b2e7ef34b544ca51a7bf0a484ce4e1c8b1e4966133196bb3ff7c3ca85b9c50050aca389316eb52f0335f6e2ad60c000594a33171b9a9a9

diff --git a/dev-ml/camlzip/camlzip-1.07.ebuild 
b/dev-ml/camlzip/camlzip-1.07.ebuild
deleted file mode 100644
index 448875803b1..000
--- a/dev-ml/camlzip/camlzip-1.07.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit findlib
-
-DESCRIPTION="Compressed file access ML library (ZIP, GZIP and JAR)"
-HOMEPAGE="https://github.com/xavierleroy/camlzip;
-SRC_URI="https://github.com/xavierleroy/camlzip/archive/rel$(ver_rs 1- 
'').tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${PN}-rel$(ver_rs 1- '')"
-
-SLOT="1/${PV}"
-LICENSE="LGPL-2.1"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~x86"
-IUSE="+ocamlopt"
-
-RDEPEND=">=dev-lang/ocaml-4.05:=[ocamlopt?]
-   >=sys-libs/zlib-1.1.3"
-DEPEND="${RDEPEND}"
-
-src_compile() {
-   emake all
-   if use ocamlopt; then
-   emake allopt
-   fi
-}
-
-src_install() {
-   findlib_src_preinst
-
-   emake DESTDIR="${D}" install-findlib
-
-   dodoc README Changes
-}



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

2021-03-14 Thread Sam James
commit: 159048087a89e4d10b7e75c7fa41f6197a09a197
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar 14 00:59:01 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15904808

dev-ml/opam-installer: drop 2.0.7-r1

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

 dev-ml/opam-installer/Manifest |  1 -
 .../opam-installer/opam-installer-2.0.7-r1.ebuild  | 46 --
 2 files changed, 47 deletions(-)

diff --git a/dev-ml/opam-installer/Manifest b/dev-ml/opam-installer/Manifest
index 5052fbfcb46..bf62be30f70 100644
--- a/dev-ml/opam-installer/Manifest
+++ b/dev-ml/opam-installer/Manifest
@@ -1,2 +1 @@
-DIST opam-full-2.0.7.tar.gz 7929123 BLAKE2B 
100acc2c31e97e47b0b584f3a153283593351d49d5e9cdaca42fdcc025b135d9538bd327927950e7e0972b20f561a0ee3d1d1b5b4b87e1e6af31761e311081e7
 SHA512 
670af4935bba0679c65f6592b7a52b1d429b604eb261e40b13cf72312aeb0bab0c5a76829a555fc5379a0371c352692cbabc46b460fcd9bf32b3cfebdaeceb81
 DIST opam-full-2.0.8.tar.gz 8006252 BLAKE2B 
26348bdbb8bdc2fbf9d736286c1f4134ce065e8c15e34d51c8d2c6e5338fd6db089df38a19b07cde70770724fc4cc3dbd9e7d75628e5435ca8a2f8c0d4d3f2f0
 SHA512 
f08893ad0c1e124368168f28dcb5c3293e443da712d7b12db432c21ff72f7e1440bcc7156f49661d286360a16dcd166d3d02ecdebf8b1cda7c7df2b22e48f80f

diff --git a/dev-ml/opam-installer/opam-installer-2.0.7-r1.ebuild 
b/dev-ml/opam-installer/opam-installer-2.0.7-r1.ebuild
deleted file mode 100644
index 87658e669be..000
--- a/dev-ml/opam-installer/opam-installer-2.0.7-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# We are opam
-OPAM_INSTALLER_DEP=" "
-OPAM_SKIP_VALIDATION=yes
-
-inherit opam
-
-DESCRIPTION="Core installer for opam packages"
-HOMEPAGE="https://opam.ocaml.org/ https://github.com/ocaml/opam;
-SRC_URI="https://github.com/ocaml/opam/releases/download/${PV}/opam-full-${PV}.tar.gz;
-S="${WORKDIR}/opam-full-${PV/_/-}"
-
-LICENSE="LGPL-2.1"
-SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86"
-IUSE=""
-
-RDEPEND="
-   >=dev-lang/ocaml-4.02.3
-   dev-ml/cmdliner:=
-   ~dev-ml/opam-format-${PV}
-"
-DEPEND="${RDEPEND}
-   dev-ml/findlib"
-
-OPAM_INSTALLER="${S}/opam-installer"
-
-src_configure() {
-   econf \
-   --prefix="${EPREFIX}/usr" \
-   --with-mccs \
-   --docdir="${EPREFIX}/usr/share/doc/${PF}" \
-   --mandir="${EPREFIX}/usr/share/man"
-}
-
-src_compile() {
-   sed -e 's/DUNE = .*$/DUNE = /' -i Makefile.config
-   emake lib-ext
-   #passing -jX to the dune build leads to errors
-   #see: https://github.com/ocaml/opam/issues/3585
-   emake DUNE_PROMOTE_ARG="" -j1
-}



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

2021-03-14 Thread Sam James
commit: 1511878188db1afb081b9482716cc14a4178c487
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar 14 00:59:08 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15118781

dev-ml/opam-repository: drop 2.0.7-r1

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

 dev-ml/opam-repository/Manifest|  1 -
 .../opam-repository-2.0.7-r1.ebuild| 36 --
 2 files changed, 37 deletions(-)

diff --git a/dev-ml/opam-repository/Manifest b/dev-ml/opam-repository/Manifest
index 39fe274747d..6022b2986d9 100644
--- a/dev-ml/opam-repository/Manifest
+++ b/dev-ml/opam-repository/Manifest
@@ -1,2 +1 @@
-DIST opam-2.0.7.tar.gz 636708 BLAKE2B 
2824a5c53f4103c267f99ae10f55df740b3afcc033321e888133817c0e53c4a8fc31738338df3d6d9ff8755987e85ade4a4726be98f77b06b81ffc1476d02c3d
 SHA512 
2ade3998a94333a5a838b55e229ab0c707e678481cae892980b986fb86f39163070a9b7d3e0e87879cd57b91a33bf6a3e15f3786c3510a635e59383782218f1d
 DIST opam-2.0.8.tar.gz 643221 BLAKE2B 
66510a18285f315fe95665e8ba2f334dd44211c716543cdc25f2951a7dfe537f115981046e5963fd08deea4c76f5672fa7cf8e7af2274a713a3165bdd0bac8c2
 SHA512 
14737dc994be2c54dfeaf2658d3713178033e1bc2b4b845a58b4bfc118bbbf12b502924add0ae32b4b2b6c1944462e5ee7143df3de362d9ee39573249d013bc9

diff --git a/dev-ml/opam-repository/opam-repository-2.0.7-r1.ebuild 
b/dev-ml/opam-repository/opam-repository-2.0.7-r1.ebuild
deleted file mode 100644
index c0970787f1d..000
--- a/dev-ml/opam-repository/opam-repository-2.0.7-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit dune
-
-DESCRIPTION="opam repository libraries"
-HOMEPAGE="https://opam.ocaml.org/ https://github.com/ocaml/opam;
-SRC_URI="https://github.com/ocaml/opam/archive/${PV/_/-}.tar.gz -> 
opam-${PV}.tar.gz"
-S="${WORKDIR}/opam-${PV/_/-}"
-
-LICENSE="LGPL-2.1"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-IUSE="+ocamlopt"
-RESTRICT="test"
-
-RDEPEND="
-   ~dev-ml/opam-format-${PV}:=
-   dev-ml/re:=
-   dev-ml/dose3:=
-   dev-ml/opam-file-format:=
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   default
-   cat <<- EOF >> "${S}/dune"
-   (env
-(dev
- (flags (:standard -warn-error -3-9-33)))
-(release
- (flags (:standard -warn-error -3-9-33
-   EOF
-}



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

2021-03-14 Thread Sam James
commit: e9910cd54392332f207346cfaab937cbf8c5ca41
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:11:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9910cd5

dev-ml/zarith: drop 1.7, 1.9.1, 1.10

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

 dev-ml/zarith/Manifest|  3 --
 dev-ml/zarith/zarith-1.10.ebuild  | 58 ---
 dev-ml/zarith/zarith-1.7.ebuild   | 52 ---
 dev-ml/zarith/zarith-1.9.1.ebuild | 58 ---
 4 files changed, 171 deletions(-)

diff --git a/dev-ml/zarith/Manifest b/dev-ml/zarith/Manifest
index 87e66d1..9638f9f30e0 100644
--- a/dev-ml/zarith/Manifest
+++ b/dev-ml/zarith/Manifest
@@ -1,5 +1,2 @@
-DIST zarith-1.10.tar.gz 95543 BLAKE2B 
4effafb5a4f90fe48282feb6a3deb07cde4e465c52149d663b1185f82c20ad7e72a02e5965cc3d589ea873f82c33f69dcb47299bbd6a9fa7a6fd686ce14ad61d
 SHA512 
94958feccd3be863b4bcc7887f5108099962402ab6eddbae42420cd04323aafe930dac75c6f1f3d50d8f57cdd2108f1b25546999bac3f03a0a682127d5b67612
 DIST zarith-1.11.tar.gz 98909 BLAKE2B 
01deed333dc79dfdb5748c835ef80403c7892e36e461a1c65e5bb97f147b32df2e6cbe8f4e9b916aabc3bd2479bd97439a68d9cdb123d15b7c9ed0e3e7f784f3
 SHA512 
7c0645d63511d42b763cd0a33b3fb139c26d23ae0cf59cd651388644cb8e7c43a83265d55d69ff3320d8c4586c4f8dbd9c3412197bab2e110c38e6e7dac88b83
 DIST zarith-1.12.tar.gz 93695 BLAKE2B 
b9622e2f397887d08fb8a8520419cf459e99906c05a897af91258b17d92d3fbbd2314a0a4be8a56a07074dcb0a0d04c896b3b5e69526a6c81a8a07b657d1bfec
 SHA512 
8075573ae65579a2606b37dd1b213032a07d220d28c733f9288ae80d36f8a2cc4d91632806df2503c130ea9658dc207ee3a64347c21aa53969050a208f5b2bb4
-DIST zarith-1.7.tar.gz 89617 BLAKE2B 
ee8a272a7421d9e723af8aa6207da8fe046585804e669058b6dec8fb47cab80e438d0520c1b61ed6c79bc279d162a7a1043fa40e74c50342b7e4d553ca8e8f5b
 SHA512 
812b5f9b24ce7a24d3370b8728ff6eeb56e3280fa1573e694fe54e781668c29bf8ff95e94aeff59df948adc85b8acd6b4efe117fb50a124f19b4227bee78e753
-DIST zarith-1.9.1.tar.gz 92321 BLAKE2B 
d61def81600cb5f3ae931eabebcdf081b6025dd24b1deae46a55f5db4f2c67d44b38b9cb9d73fc7fd9bd76c81545294373e3df5969da217209079a2912a8e285
 SHA512 
e77620c66a59d35811acfc45c7ef3f0d50d3042194654b1f5b652a2ed5fb9d5f88e9173222e5ced286c61854434da05a4d96668089faa66ff2917afa677fc32f

diff --git a/dev-ml/zarith/zarith-1.10.ebuild b/dev-ml/zarith/zarith-1.10.ebuild
deleted file mode 100644
index 6ae953c8dae..000
--- a/dev-ml/zarith/zarith-1.10.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit findlib multilib
-
-DESCRIPTION="Arithmetic and logic operations over arbitrary-precision integers"
-HOMEPAGE="https://github.com/ocaml/Zarith;
-SRC_URI="https://github.com/ocaml/Zarith/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
-IUSE="doc mpir +ocamlopt"
-
-RDEPEND="
-   >=dev-lang/ocaml-4.05:=[ocamlopt?]
-   !mpir? ( dev-libs/gmp:0= )
-   mpir? ( sci-libs/mpir )"
-
-DEPEND="${RDEPEND} dev-lang/perl"
-DOCS=( README.md Changes )
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.9.1-ar.patch
-)
-
-S="${WORKDIR}/Zarith-release-${PV}"
-
-src_configure() {
-   tc-export CC AR
-   ./configure -host "${CHOST}" \
-   -ocamllibdir /usr/$(get_libdir)/ocaml \
-   -installdir "${ED}"/usr/$(get_libdir)/ocaml \
-   $(usex mpir "-mpir" "-gmp") || die
-}
-
-src_compile() {
-   emake -j 1 HASOCAMLOPT=$(usex ocamlopt yes no) HASDYNLINK=$(usex 
ocamlopt yes no) all
-   use doc && emake doc
-}
-
-src_test() {
-   if use ocamlopt ; then
-   emake HASOCAMLOPT=$(usex ocamlopt yes no) HASDYNLINK=$(usex 
ocamlopt yes no) tests
-   else
-   ewarn "Tests require USE=ocamlopt. Skipping them."
-   fi
-}
-
-src_install() {
-   findlib_src_preinst
-   emake HASOCAMLOPT=$(usex ocamlopt yes no) HASDYNLINK=$(usex ocamlopt 
yes no) install
-   dosym zarith/libzarith.a /usr/$(get_libdir)/ocaml/libzarith.a
-   use doc && HTML_DOCS=( html/* )
-   einstalldocs
-}

diff --git a/dev-ml/zarith/zarith-1.7.ebuild b/dev-ml/zarith/zarith-1.7.ebuild
deleted file mode 100644
index 21ad63c4e89..000
--- a/dev-ml/zarith/zarith-1.7.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit findlib eutils toolchain-funcs
-
-DESCRIPTION="Arithmetic and logic operations over arbitrary-precision integers"
-HOMEPAGE="https://github.com/ocaml/Zarith;
-SRC_URI="https://github.com/ocaml/Zarith/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="amd64 ~ppc ~x86"
-IUSE="doc mpir +ocamlopt"
-
-RDEPEND="
-

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

2021-03-14 Thread Sam James
commit: 5b2d508a7417a663ca7cdd3552a18cbe1fc6647a
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar 14 00:59:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 04:01:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b2d508a

dev-ml/opam-solver: drop 2.0.7-r1

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

 dev-ml/opam-solver/Manifest|  1 -
 dev-ml/opam-solver/opam-solver-2.0.7-r1.ebuild | 40 --
 2 files changed, 41 deletions(-)

diff --git a/dev-ml/opam-solver/Manifest b/dev-ml/opam-solver/Manifest
index 39fe274747d..6022b2986d9 100644
--- a/dev-ml/opam-solver/Manifest
+++ b/dev-ml/opam-solver/Manifest
@@ -1,2 +1 @@
-DIST opam-2.0.7.tar.gz 636708 BLAKE2B 
2824a5c53f4103c267f99ae10f55df740b3afcc033321e888133817c0e53c4a8fc31738338df3d6d9ff8755987e85ade4a4726be98f77b06b81ffc1476d02c3d
 SHA512 
2ade3998a94333a5a838b55e229ab0c707e678481cae892980b986fb86f39163070a9b7d3e0e87879cd57b91a33bf6a3e15f3786c3510a635e59383782218f1d
 DIST opam-2.0.8.tar.gz 643221 BLAKE2B 
66510a18285f315fe95665e8ba2f334dd44211c716543cdc25f2951a7dfe537f115981046e5963fd08deea4c76f5672fa7cf8e7af2274a713a3165bdd0bac8c2
 SHA512 
14737dc994be2c54dfeaf2658d3713178033e1bc2b4b845a58b4bfc118bbbf12b502924add0ae32b4b2b6c1944462e5ee7143df3de362d9ee39573249d013bc9

diff --git a/dev-ml/opam-solver/opam-solver-2.0.7-r1.ebuild 
b/dev-ml/opam-solver/opam-solver-2.0.7-r1.ebuild
deleted file mode 100644
index 3613f874ac6..000
--- a/dev-ml/opam-solver/opam-solver-2.0.7-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit dune
-
-DESCRIPTION="opam solver"
-HOMEPAGE="https://opam.ocaml.org/ https://github.com/ocaml/opam;
-SRC_URI="https://github.com/ocaml/opam/archive/${PV/_/-}.tar.gz -> 
opam-${PV}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-IUSE="+ocamlopt test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   ~dev-ml/opam-format-${PV}:=
-   dev-ml/opam-file-format:=
-   dev-ml/re:=
-   >=dev-ml/mccs-1.1.4:=
-   dev-ml/dose3:=
-   dev-ml/cudf:=
-"
-DEPEND="${RDEPEND}
-   test? ( dev-ml/opam-client )"
-
-S="${WORKDIR}/opam-${PV/_/-}"
-
-src_prepare() {
-   default
-   cat <<- EOF >> "${S}/dune"
-   (env
-(dev
- (flags (:standard -warn-error -3-9-33)))
-(release
- (flags (:standard -warn-error -3-9-33
-   EOF
-}



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

2021-03-14 Thread Sam James
commit: 5278ef4a71ee7ce6628862fafc8216fd1cef5b12
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:51:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:51:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5278ef4a

media-gfx/sane-backends: Stabilize 1.0.31 arm, #771231

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

 media-gfx/sane-backends/sane-backends-1.0.31.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/sane-backends/sane-backends-1.0.31.ebuild 
b/media-gfx/sane-backends/sane-backends-1.0.31.ebuild
index 8d35afddfd2..d8a28a87886 100644
--- a/media-gfx/sane-backends/sane-backends-1.0.31.ebuild
+++ b/media-gfx/sane-backends/sane-backends-1.0.31.ebuild
@@ -131,7 +131,7 @@ 
SRC_URI="https://gitlab.com/sane-project/backends/-/archive/${PV}/${MY_P}.tar.gz
 
 LICENSE="GPL-2 public-domain"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux"
 
 # For pixma: see 
https://gitlab.com/sane-project/backends/-/releases/1.0.28#build
 RDEPEND="



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

2021-03-14 Thread Sam James
commit: 59079dcc61d52b5a6000cb221f11475ea6aac512
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:49:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:49:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59079dcc

dev-lang/python: Stabilize 3.9.2 ppc, #770853

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

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

diff --git a/dev-lang/python/python-3.9.2.ebuild 
b/dev-lang/python/python-3.9.2.ebuild
index a7d93a8a37e..2f08ca06d0a 100644
--- a/dev-lang/python/python-3.9.2.ebuild
+++ b/dev-lang/python/python-3.9.2.ebuild
@@ -23,7 +23,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-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="bluetooth build examples gdbm hardened ipv6 libressl +ncurses +readline 
sqlite +ssl test tk wininst +xml"
 RESTRICT="!test? ( test )"
 



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

2021-03-14 Thread Sam James
commit: e37821c121cfbc13897d82d00845bbaeb20c8c05
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:49:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:49:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e37821c1

dev-lang/python: Stabilize 2.7.18_p7 ppc, #770853

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

 dev-lang/python/python-2.7.18_p7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-2.7.18_p7.ebuild 
b/dev-lang/python/python-2.7.18_p7.ebuild
index 47e35788fd9..fa9039ea58d 100644
--- a/dev-lang/python/python-2.7.18_p7.ebuild
+++ b/dev-lang/python/python-2.7.18_p7.ebuild
@@ -22,7 +22,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-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="-berkdb bluetooth build elibc_uclibc examples gdbm hardened ipv6 
libressl +ncurses +readline sqlite +ssl +threads tk +wide-unicode wininst +xml"
 
 # Do not add a dependency on dev-lang/python to this ebuild.



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

2021-03-14 Thread Sam James
commit: d08d0efad53c1312e3b13f7edef017a11dcb7851
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:50:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:50:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d08d0efa

net-misc/youtube-dl: Stabilize 2021.03.03 ALLARCHES, #776160

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

 net-misc/youtube-dl/youtube-dl-2021.03.03.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/youtube-dl/youtube-dl-2021.03.03.ebuild 
b/net-misc/youtube-dl/youtube-dl-2021.03.03.ebuild
index 9b024e43dbb..d787a3f3be5 100644
--- a/net-misc/youtube-dl/youtube-dl-2021.03.03.ebuild
+++ b/net-misc/youtube-dl/youtube-dl-2021.03.03.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://youtube-dl.org/downloads/${PV}/${P}.tar.gz;
 S=${WORKDIR}/${PN}
 
 LICENSE="public-domain"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-solaris"
 SLOT="0"
 
 RDEPEND="



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

2021-03-14 Thread Sam James
commit: 98d945ad6479043086497d15381b0536bea751c0
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:50:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:50:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98d945ad

dev-python/dulwich: Stabilize 0.20.19 ppc, #776046

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

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

diff --git a/dev-python/dulwich/dulwich-0.20.19.ebuild 
b/dev-python/dulwich/dulwich-0.20.19.ebuild
index d3ea995081b..ea1538d8306 100644
--- a/dev-python/dulwich/dulwich-0.20.19.ebuild
+++ b/dev-python/dulwich/dulwich-0.20.19.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="doc examples test"
 RESTRICT="!test? ( test )"
 



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

2021-03-14 Thread Sam James
commit: 01318b18f2ac780e8013d36fa043b6d80a5d33d1
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:49:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:49:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01318b18

dev-lang/python: Stabilize 3.8.8 ppc, #770853

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

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

diff --git a/dev-lang/python/python-3.8.8.ebuild 
b/dev-lang/python/python-3.8.8.ebuild
index 50897b80211..e18b3fc39c5 100644
--- a/dev-lang/python/python-3.8.8.ebuild
+++ b/dev-lang/python/python-3.8.8.ebuild
@@ -23,7 +23,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-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="bluetooth build examples gdbm hardened ipv6 libressl +ncurses +readline 
sqlite +ssl test tk wininst +xml"
 RESTRICT="!test? ( test )"
 



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

2021-03-14 Thread Sam James
commit: 3cc6250115fbca78b1b7bef210c84b3ce6c34569
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:50:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:50:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cc62501

dev-python/mpmath: Stabilize 1.2.1 amd64, #776097

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

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

diff --git a/dev-python/mpmath/mpmath-1.2.1.ebuild 
b/dev-python/mpmath/mpmath-1.2.1.ebuild
index 3ab8f63e5d8..7960b10143a 100644
--- a/dev-python/mpmath/mpmath-1.2.1.ebuild
+++ b/dev-python/mpmath/mpmath-1.2.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/fredrik-johansson/${PN}/archive/${PV}.tar.gz -> ${P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos"
 IUSE="gmp matplotlib test"
 RESTRICT="!test? ( test )"
 



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

2021-03-14 Thread Sam James
commit: e053ac20f3bbcd22742af29c8dc102eaa8833ad1
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:50:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:50:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e053ac20

dev-python/brotlicffi: Stabilize 1.0.9.1 ppc, #776034

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

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

diff --git a/dev-python/brotlicffi/brotlicffi-1.0.9.1.ebuild 
b/dev-python/brotlicffi/brotlicffi-1.0.9.1.ebuild
index 233b16357d6..aca8920bb7f 100644
--- a/dev-python/brotlicffi/brotlicffi-1.0.9.1.ebuild
+++ b/dev-python/brotlicffi/brotlicffi-1.0.9.1.ebuild
@@ -24,7 +24,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
app-arch/brotli:=



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

2021-03-14 Thread Sam James
commit: c08fb75fd6a9ea5eeed08f62dae4d0af8570a3c1
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:50:02 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:50:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c08fb75f

app-arch/bzip2: Stabilize 1.0.8-r1 ppc, #768546

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

 app-arch/bzip2/bzip2-1.0.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/bzip2/bzip2-1.0.8-r1.ebuild 
b/app-arch/bzip2/bzip2-1.0.8-r1.ebuild
index f7494008f5d..61861024e39 100644
--- a/app-arch/bzip2/bzip2-1.0.8-r1.ebuild
+++ b/app-arch/bzip2/bzip2-1.0.8-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://sourceware.org/pub/${PN}/${P}.tar.gz;
 
 LICENSE="BZIP2"
 SLOT="0/1" # subslot = SONAME
-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="static static-libs"
 
 PATCHES=(



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

2021-03-14 Thread Sam James
commit: 84828df56ae676746257335dc788c9aaa569a158
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:50:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:50:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84828df5

dev-python/genshi: Stabilize 0.7.5 ALLARCHES, #776055

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

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

diff --git a/dev-python/genshi/genshi-0.7.5.ebuild 
b/dev-python/genshi/genshi-0.7.5.ebuild
index eea4c2c5953..fe7f34e0cfc 100644
--- a/dev-python/genshi/genshi-0.7.5.ebuild
+++ b/dev-python/genshi/genshi-0.7.5.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${P^}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="amd64 ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="doc examples test"
 RESTRICT="!test? ( test )"
 



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

2021-03-14 Thread Sam James
commit: 355146dbd4b0fdfc87ebab46526edb5bf50c2a3b
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:50:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:50:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=355146db

dev-python/nbclient: Stabilize 0.5.2 ALLARCHES, #776100

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

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

diff --git a/dev-python/nbclient/nbclient-0.5.2.ebuild 
b/dev-python/nbclient/nbclient-0.5.2.ebuild
index 6dfa8f2ac37..ac9c8e17af1 100644
--- a/dev-python/nbclient/nbclient-0.5.2.ebuild
+++ b/dev-python/nbclient/nbclient-0.5.2.ebuild
@@ -18,7 +18,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 
 RDEPEND="
dev-python/async_generator[${PYTHON_USEDEP}]



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

2021-03-14 Thread Sam James
commit: 39df29eba443d4f28137564b7137d75f2455feb9
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:50:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:50:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39df29eb

dev-python/mpmath: Stabilize 1.2.1 x86, #776097

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

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

diff --git a/dev-python/mpmath/mpmath-1.2.1.ebuild 
b/dev-python/mpmath/mpmath-1.2.1.ebuild
index ee062f0cf51..3ab8f63e5d8 100644
--- a/dev-python/mpmath/mpmath-1.2.1.ebuild
+++ b/dev-python/mpmath/mpmath-1.2.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/fredrik-johansson/${PN}/archive/${PV}.tar.gz -> ${P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos"
 IUSE="gmp matplotlib test"
 RESTRICT="!test? ( test )"
 



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

2021-03-14 Thread Sam James
commit: c58d91b638078172352a26128b02b2efe3edc63e
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:49:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:49:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c58d91b6

dev-python/brotlicffi: Stabilize 1.0.9.1 ppc64, #776034

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

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

diff --git a/dev-python/brotlicffi/brotlicffi-1.0.9.1.ebuild 
b/dev-python/brotlicffi/brotlicffi-1.0.9.1.ebuild
index 73e8541b4b9..233b16357d6 100644
--- a/dev-python/brotlicffi/brotlicffi-1.0.9.1.ebuild
+++ b/dev-python/brotlicffi/brotlicffi-1.0.9.1.ebuild
@@ -24,7 +24,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
app-arch/brotli:=



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

2021-03-14 Thread Sam James
commit: 5ab4fd8a7edae330feac9779afcca1841641aa7f
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:50:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:50:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ab4fd8a

dev-python/cffi: Stabilize 1.14.5 ppc, #776037

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

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

diff --git a/dev-python/cffi/cffi-1.14.5.ebuild 
b/dev-python/cffi/cffi-1.14.5.ebuild
index 77a72ee633d..41e445f94e6 100644
--- a/dev-python/cffi/cffi-1.14.5.ebuild
+++ b/dev-python/cffi/cffi-1.14.5.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-03-14 Thread Sam James
commit: 418db623d9a2387829d4fff52a7c07dd442b1aae
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:49:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:49:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=418db623

dev-lang/python: Stabilize 3.7.10 ppc, #770853

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

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

diff --git a/dev-lang/python/python-3.7.10.ebuild 
b/dev-lang/python/python-3.7.10.ebuild
index 76d4edfd0be..7b2521e201b 100644
--- a/dev-lang/python/python-3.7.10.ebuild
+++ b/dev-lang/python/python-3.7.10.ebuild
@@ -22,7 +22,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}/${PYVER}m"
-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="bluetooth build examples gdbm hardened ipv6 libressl +ncurses +readline 
sqlite +ssl test tk wininst +xml"
 RESTRICT="!test? ( test )"
 



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

2021-03-14 Thread Sam James
commit: 2b2f7d23164459f0c3ffa3194fb073f38972b9dc
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:49:55 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:49:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b2f7d23

dev-lang/python: Stabilize 3.6.13 ppc, #770853

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

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

diff --git a/dev-lang/python/python-3.6.13.ebuild 
b/dev-lang/python/python-3.6.13.ebuild
index 5232b122477..973abb5dc63 100644
--- a/dev-lang/python/python-3.6.13.ebuild
+++ b/dev-lang/python/python-3.6.13.ebuild
@@ -22,7 +22,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}/${PYVER}m"
-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="bluetooth build examples gdbm hardened ipv6 libressl +ncurses +readline 
sqlite +ssl test +threads tk wininst +xml"
 RESTRICT="!test? ( test )"
 



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

2021-03-14 Thread Sam James
commit: f9ef0f8b5648e7eee053217b63c60806b2bd01d5
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:49:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:49:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9ef0f8b

dev-python/cffi: Stabilize 1.14.5 ppc64, #776037

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

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

diff --git a/dev-python/cffi/cffi-1.14.5.ebuild 
b/dev-python/cffi/cffi-1.14.5.ebuild
index 83a6113b4ee..77a72ee633d 100644
--- a/dev-python/cffi/cffi-1.14.5.ebuild
+++ b/dev-python/cffi/cffi-1.14.5.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-03-14 Thread Sam James
commit: cc5e4e13c3a978d1577ded6c2ceb9eb280c4ba89
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:47:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:47:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc5e4e13

dev-ml/opam-installer: Stabilize 2.0.8-r1 ppc, #772833

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

 dev-ml/opam-installer/opam-installer-2.0.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/opam-installer/opam-installer-2.0.8-r1.ebuild 
b/dev-ml/opam-installer/opam-installer-2.0.8-r1.ebuild
index 9d8a5620e52..71045308f5b 100644
--- a/dev-ml/opam-installer/opam-installer-2.0.8-r1.ebuild
+++ b/dev-ml/opam-installer/opam-installer-2.0.8-r1.ebuild
@@ -16,7 +16,7 @@ OPAM_INSTALLER="${S}/opam-installer"
 
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86"
+KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
 
 RDEPEND="
>=dev-lang/ocaml-4.02.3



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

2021-03-14 Thread Sam James
commit: 41e494cb13728ffeb3115870332d50653580cf1c
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:09:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:09:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41e494cb

app-office/texstudio: drop 3.0.4-r1

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

 app-office/texstudio/Manifest  |  1 -
 app-office/texstudio/texstudio-3.0.4-r1.ebuild | 73 --
 2 files changed, 74 deletions(-)

diff --git a/app-office/texstudio/Manifest b/app-office/texstudio/Manifest
index 553790034d9..6c75fec2963 100644
--- a/app-office/texstudio/Manifest
+++ b/app-office/texstudio/Manifest
@@ -1,4 +1,3 @@
-DIST texstudio-3.0.4.tar.gz 83191627 BLAKE2B 
a800b369967051a7154a1ec5d00ae735477fdbb4237e6653bf5469c5fcfa1083fa28f56e3e6bda304821084281e1bf02dfdc4738e6762072d7fb43988e029641
 SHA512 
094fc53cab388d2e5f9ecfc1172a6ae853c04abe746ed03afe8819be3acdf4e7cb2bdf9ce1edda43fda9396c260f2063aa05ca9aae6687150d7da6c49beb
 DIST texstudio-3.0.5.tar.gz 83231803 BLAKE2B 
739a57fa5305ad8044f8fc13903910ee743cac353aeed53b298dd3d50291c4e5b2d2b67db7785305d1f1c71ba805769a57b46374c762efd39bc1a450f1df470e
 SHA512 
240d177ffbd64f51a8f2aa93644cae29764876ed6fdd03733da05ed97a8ec10e21c1f3aebcb05b35617083abf0442b60ffe8f0a89edb28adacaf9ebe40609a48
 DIST texstudio-3.1.0.tar.gz 83232492 BLAKE2B 
6e890fb19a51d8f1fdecbf844f674579391cfea4c3e41535db1daca78d24774e085d7c3c7d2c1eae6e7c287e9ab1d465e1082a25e95b95a7b62930a416bd654d
 SHA512 
83d758102b597eae928e68a59035a83d90a950920995dc992a4478f8eba8ccb1f038a01bd07cce2681f354cad735394b2637cb79899d8e89960bae258652b3d8
 DIST texstudio-3.1.1.tar.gz 83239128 BLAKE2B 
7aeedba9ec5a404d51e8854a67c2e07f4efdc03882ebe83ba4d5e99376dcac5c906b40f093129106cfbec716be6001ae6c1848f323147289a5d252c713cb25a6
 SHA512 
b8c843693d781052914f43215ee42c7bafd4bffe676aede966bafa08b4b74616b55a60e611878a8f0188c84d364ba27f86425adfd4e640c7d4390b0fdfcee8c7

diff --git a/app-office/texstudio/texstudio-3.0.4-r1.ebuild 
b/app-office/texstudio/texstudio-3.0.4-r1.ebuild
deleted file mode 100644
index fca57b96036..000
--- a/app-office/texstudio/texstudio-3.0.4-r1.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop prefix qmake-utils xdg
-
-MY_PV="${PV/_/}"
-DESCRIPTION="Free cross-platform LaTeX editor (fork from texmakerX)"
-HOMEPAGE="https://www.texstudio.org https://github.com/texstudio-org/texstudio;
-SRC_URI="https://github.com/texstudio-org/texstudio/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
-IUSE="video"
-
-COMMON_DEPEND="
-   app-text/hunspell:=
-   app-text/poppler[qt5]
-   >=dev-libs/quazip-0.7.2:0[qt5(+)]
-   dev-qt/designer:5
-   dev-qt/qtcore:5
-   dev-qt/qtconcurrent:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtprintsupport:5
-   dev-qt/qtscript:5
-   dev-qt/qtsingleapplication[qt5(+),X]
-   dev-qt/qtsvg:5
-   dev-qt/qttest:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtxml:5
-   sys-libs/zlib
-   x11-libs/libX11
-   x11-libs/libXext
-   video? ( media-libs/phonon[qt5(+)] )"
-RDEPEND="${COMMON_DEPEND}
-   app-text/ghostscript-gpl
-   app-text/psutils
-   media-libs/netpbm
-   virtual/latex-base"
-DEPEND="${COMMON_DEPEND}"
-
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
-   default
-
-   if use video; then
-   sed "/^PHONON/s:$:true:g" -i ${PN}.pro || die
-   fi
-
-   sed \
-   -e '/qtsingleapplication.pri/d' \
-   -i ${PN}.pro || die
-
-   cp "${FILESDIR}"/texmakerx_my.pri ${PN}.pri || die
-   eprefixify ${PN}.pri
-}
-
-src_configure() {
-   eqmake5 USE_SYSTEM_HUNSPELL=1 USE_SYSTEM_QUAZIP=1
-}
-
-src_install() {
-   local i
-   for i in 16x16 22x22 32x32 48x48 64x64 128x128; do
-   newicon -s ${i} utilities/${PN}${i}.png ${PN}.png
-   done
-   emake DESTDIR="${D}" INSTALL_ROOT="${ED}" install
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/

2021-03-14 Thread Sam James
commit: ef1c5cd9b5898149f2e0b0b58b1a5fe9b88804ee
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:07:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:07:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef1c5cd9

dev-python/unittest-or-fail: mark ALLARCHES

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

 dev-python/unittest-or-fail/metadata.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-python/unittest-or-fail/metadata.xml 
b/dev-python/unittest-or-fail/metadata.xml
index 22e0d6d87f6..3136117dc03 100644
--- a/dev-python/unittest-or-fail/metadata.xml
+++ b/dev-python/unittest-or-fail/metadata.xml
@@ -7,5 +7,7 @@


pyt...@gentoo.org
+   Python

+   
 



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

2021-03-14 Thread Sam James
commit: 65be2fbb158babe22c23fbe563115f6853112446
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:01:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:01:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65be2fbb

profiles/arch/powerpc: drop obsolete klibc mask

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

 profiles/arch/powerpc/use.mask | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/profiles/arch/powerpc/use.mask b/profiles/arch/powerpc/use.mask
index 26ae8393fc2..fa4819770c3 100644
--- a/profiles/arch/powerpc/use.mask
+++ b/profiles/arch/powerpc/use.mask
@@ -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
 
 # PPC Specific use flags
@@ -50,9 +50,6 @@ gnuefi
 appindicator
 ayatana
 
-#Klibc does not work
-klibc
-
 # These flags should only be used for ppc
 -ppcsha1
 # Unmask the Altivec instruction set
@@ -135,4 +132,3 @@ nvtt
 # Pacho Ramos  (2014-01-08)
 # Unmask systemd since it is keyworded here.
 -systemd
-



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

2021-03-14 Thread Sam James
commit: f9b684774dafc3d2c11410da2abf39e27feb8c2e
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:59:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:59:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9b68477

profiles/arch/arm: drop obsolete dmraid[klibc, dietlibc] masks

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

 profiles/arch/arm/package.use.stable.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/arm/package.use.stable.mask 
b/profiles/arch/arm/package.use.stable.mask
index b945eac9226..4f4d0363ae5 100644
--- a/profiles/arch/arm/package.use.stable.mask
+++ b/profiles/arch/arm/package.use.stable.mask
@@ -118,10 +118,6 @@ dev-db/mariadb galera
 # Not going to be stable for now
 dev-util/geany-plugins gtkspell
 
-# Pacho Ramos  (2016-12-31)
-# No stable for arm
-sys-fs/dmraid dietlibc klibc
-
 # Christoph Junghans  (2016-11-27)
 # no stable mpi on arm yet, but maybe in the future
 <=sci-libs/fftw-3.3.4 mpi



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

2021-03-14 Thread Sam James
commit: 6ad03479539437c7eb9b6e53e01d129777217012
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:00:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:00:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ad03479

profiles/base: drop obsolete sys-fs/dmraid[klibc] mask

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

 profiles/base/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 224618c993d..dedd70e37ca 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -11,10 +11,6 @@
 dev-lang/julia system-llvm
 dev-util/perf clang
 
-# Andreas K. Hüttel  (2021-03-06)
-# Needs last-rited dev-libs/klibc
-sys-fs/dmraid klibc
-
 # Sam James  (2021-02-27)
 # Needs last-rited sci-mathematics/ggnfs
 sci-mathematics/yafu sieve



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

2021-03-14 Thread Sam James
commit: 4ad61239941549683829bf5f0c83f049d0ec900c
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:02:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:02:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ad61239

profiles: drop games-strategy/0ad-data mask (removed)

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

 profiles/package.mask | 10 --
 1 file changed, 10 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index fd5e65fc029..0e2c07fa128 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -254,16 +254,6 @@ dev-ml/core_extended
 # bug #729098
 ~sci-libs/proj-8.0.0
 
-# Sam James  (2021-02-28)
-# games-strategy/0ad-data has been merged
-# into games-strategy/0ad for simplicity.
-# Note that in most cases, the latter uses
-# upstream pre-built assets anyway.
-# Nothing should really be using this.
-# bug #735352, bug #768930
-# Removal in 14 days.
-games-strategy/0ad-data
-
 # Bernd Waibel  (2021-02-27)
 # Mask until removal of media-gfx/openexr_viewers.
 # Version has several vulnerabilities. See #717474



[gentoo-commits] repo/gentoo:master commit in: games-strategy/0ad-data/

2021-03-14 Thread Sam James
commit: ac141c909e1f6198054d2c36975d57c8e4dde6c4
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:02:55 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:02:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac141c90

games-strategy/0ad-data: treeclean

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

 .../0ad-data/0ad-data-0.0.23_alpha.ebuild  | 26 ---
 .../0ad-data/0ad-data-0.0.23b_alpha.ebuild | 26 ---
 .../0ad-data-0.0.24_alpha_pre20210116040036.ebuild | 88 --
 games-strategy/0ad-data/Manifest   |  3 -
 games-strategy/0ad-data/metadata.xml   | 11 ---
 5 files changed, 154 deletions(-)

diff --git a/games-strategy/0ad-data/0ad-data-0.0.23_alpha.ebuild 
b/games-strategy/0ad-data/0ad-data-0.0.23_alpha.ebuild
deleted file mode 100644
index 9b33e87f794..000
--- a/games-strategy/0ad-data/0ad-data-0.0.23_alpha.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_P="0ad-${PV/_/-}"
-DESCRIPTION="Data files for 0ad"
-HOMEPAGE="https://play0ad.com/;
-SRC_URI="http://releases.wildfiregames.com/${MY_P}-unix-data.tar.xz;
-
-LICENSE="GPL-2 CC-BY-SA-3.0 LPPL-1.3c BitstreamVera"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   default
-   rm binaries/data/tools/fontbuilder/fonts/*.txt
-}
-
-src_install() {
-   insinto /usr/share/0ad
-   doins -r binaries/data/*
-}

diff --git a/games-strategy/0ad-data/0ad-data-0.0.23b_alpha.ebuild 
b/games-strategy/0ad-data/0ad-data-0.0.23b_alpha.ebuild
deleted file mode 100644
index e0fd74cd914..000
--- a/games-strategy/0ad-data/0ad-data-0.0.23b_alpha.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_P="0ad-${PV/_/-}"
-DESCRIPTION="Data files for 0ad"
-HOMEPAGE="https://play0ad.com/;
-SRC_URI="http://releases.wildfiregames.com/${MY_P}-unix-data.tar.xz;
-
-LICENSE="GPL-2 CC-BY-SA-3.0 LPPL-1.3c BitstreamVera"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE=""
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   default
-   rm binaries/data/tools/fontbuilder/fonts/*.txt
-}
-
-src_install() {
-   insinto /usr/share/0ad
-   doins -r binaries/data/*
-}

diff --git 
a/games-strategy/0ad-data/0ad-data-0.0.24_alpha_pre20210116040036.ebuild 
b/games-strategy/0ad-data/0ad-data-0.0.24_alpha_pre20210116040036.ebuild
deleted file mode 100644
index da5bd064e6e..000
--- a/games-strategy/0ad-data/0ad-data-0.0.24_alpha_pre20210116040036.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 2014-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-MY_PN="0ad"
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-
-   EGIT_REPO_URI="https://github.com/0ad/0ad;
-   ZEROAD_GIT_REVISION=""
-elif [[ ${PV} == *_pre* ]]; then
-   ZEROAD_GIT_REVISION="c7d07d3979f969b969211a5e5748fa775f6768a7"
-else
-   MY_P="${MY_PN}-${PV/_/-}"
-fi
-
-DESCRIPTION="Data files for 0ad"
-HOMEPAGE="https://play0ad.com/;
-if [[ ${PV} ==  ]]; then
-   SRC_URI=""
-elif [[ ${PV} == *_pre* ]]; then
-   
SRC_URI="https://github.com/0ad/0ad/archive/${ZEROAD_GIT_REVISION}.tar.gz -> 
${MY_PN}-${PV}.tar.gz"
-else
-   SRC_URI="http://releases.wildfiregames.com/${MY_P}-unix-data.tar.xz;
-fi
-
-LICENSE="BitstreamVera CC-BY-SA-3.0 GPL-2 LPPL-1.3c"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-if [[ ${PV} ==  || ${PV} == *_pre* ]]; then
-   BDEPEND="~games-strategy/0ad-${PV}[nvtt]"
-else
-   BDEPEND=""
-fi
-DEPEND=""
-RDEPEND=""
-
-if [[ ${PV} ==  ]]; then
-   S="${WORKDIR}/${MY_PN}-${PV}"
-elif [[ ${PV} == *_pre* ]]; then
-   S="${WORKDIR}/${MY_PN}-${ZEROAD_GIT_REVISION}"
-else
-   S="${WORKDIR}/${MY_P}"
-fi
-
-src_prepare() {
-   default
-   rm binaries/data/tools/fontbuilder/fonts/*.txt || die
-}
-
-src_compile() {
-   if [[ ${PV} ==  || ${PV} == *_pre* ]]; then
-   # source/lib/sysdep/os/linux/ldbg.cpp:debug_SetThreadName() 
tries to open /proc/self/task/${TID}/comm for writing.
-   addpredict /proc/self/task
-
-   # Based on source/tools/dist/build-archives.sh used by 
source/tools/dist/build.sh.
-   local archivebuild_input archivebuild_output mod_name
-   for archivebuild_input in binaries/data/mods/[A-Za-z0-9]*; do
-   mod_name="${archivebuild_input##*/}"
-   archivebuild_output="archives/${mod_name}"
-
-   mkdir -p "${archivebuild_output}"
-
-   einfo 0ad -archivebuild="${archivebuild_input}" 
-archivebuild-output="${archivebuild_output}/${mod_name}.zip"
-   0ad -archivebuild="${archivebuild_input}" 

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

2021-03-14 Thread Sam James
commit: 94365280ce517bb4a8e2a92d9d357d1e32860129
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:00:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:00:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94365280

profiles/arch/sparc: drop obsolete dmraid[klibc] mask

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

 profiles/arch/sparc/package.use.stable.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/sparc/package.use.stable.mask 
b/profiles/arch/sparc/package.use.stable.mask
index d12134be1b6..762bcb6d86a 100644
--- a/profiles/arch/sparc/package.use.stable.mask
+++ b/profiles/arch/sparc/package.use.stable.mask
@@ -60,10 +60,6 @@ net-libs/libssh mbedtls
 net-libs/libssh2 mbedtls
 net-vpn/openvpn mbedtls
 
-# Rolf Eike Beer  (2020-04-04)
-# Needs stable dev-libs/klibc, bug #653384
-sys-fs/dmraid klibc
-
 # Rolf Eike Beer  (2020-04-04)
 # Needs stable x11-terms/xterm, bug #706118
 app-editors/joe xterm



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

2021-03-14 Thread Sam James
commit: afca658e253b0e654e162edb88c189fad41e4c7a
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:58:51 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:58:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afca658e

profiles/arch/alpha: drop obsolete dmraid[klibc, dietlibc] masks

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

 profiles/arch/alpha/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/alpha/package.use.mask 
b/profiles/arch/alpha/package.use.mask
index 93a3ef8b9b0..d04202790fd 100644
--- a/profiles/arch/alpha/package.use.mask
+++ b/profiles/arch/alpha/package.use.mask
@@ -365,10 +365,6 @@ app-accessibility/orca braille
 # media-libs/x265 doesn't work on alpha (bug 519046)
 media-video/ffmpeg x265
 
-# Tobias Klausmann =sys-fs/dmraid-1.0.0_rc16-r3 dietlibc klibc
-
 # Pacho Ramos  (2014-02-22)
 # Missing keywords, bug #495250
 >=gnome-base/gnome-extra-apps-3.10 tracker



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

2021-03-14 Thread Sam James
commit: c2b14d80d491c7eb369c66762419dfd4775de4b7
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 03:00:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 03:00:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2b14d80

profiles/base: drop obsolete  sci-geosciences/viking[mapnik] mask

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

 profiles/base/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 2bddf5cf51b..224618c993d 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -135,10 +135,6 @@ media-gfx/exact-image lua
 # The respective dependencies are masked for removal.
 net-im/telepathy-connection-managers gadu icq meanwhile steam yahoo
 
-# Michał Górny  (2020-09-26)
-# The respective dependencies are masked for removal.
-sci-geosciences/viking mapnik
-
 # Joonas Niilola  (2020-09-23)
 # Highly experimental, may cause breakages when updating. Use with
 # caution!



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

2021-03-14 Thread Sam James
commit: 23e3c53e9425a96c9c1cb1fedbd6c198957d15b4
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:59:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:59:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23e3c53e

profiles/arch/powerpc: drop obsolete dmraid[dietlibc] masks

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

 profiles/arch/powerpc/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/powerpc/package.use.mask 
b/profiles/arch/powerpc/package.use.mask
index 10a462f783b..cb052974464 100644
--- a/profiles/arch/powerpc/package.use.mask
+++ b/profiles/arch/powerpc/package.use.mask
@@ -345,10 +345,6 @@ net-misc/connman ofono
 # Mask some use flags for openmpi due to unkeyworded deps
 sys-cluster/openmpi openmpi_fabrics_psm openmpi_fabrics_knem 
openmpi_fabrics_ofed openmpi_fabrics_dapl openmpi_rm_slurm 
openmpi_ofed_features_rdmacm openmpi_ofed_features_control-hdr-padding 
openmpi_ofed_features_connectx-xrc openmpi_ofed_features_udcm 
openmpi_ofed_features_dynamic-sl openmpi_ofed_features_failover
 
-# Kacper Kowalik  (2011-11-20)
-# Dropped dietlibc wrt #364103
-sys-fs/dmraid dietlibc
-
 # Patrick McLean  (2011-09-07)
 # missing keywords on dependencies
 media-video/x264-encoder ffmpegsource



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

2021-03-14 Thread Sam James
commit: 02702c3ad6ac4537b8807a4d877c923ec3ce563c
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:50:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:50:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02702c3a

dev-python/argparse-manpage: mark ALLARCHES

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

 dev-python/argparse-manpage/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/argparse-manpage/metadata.xml 
b/dev-python/argparse-manpage/metadata.xml
index ad3003519fc..a43b4146396 100644
--- a/dev-python/argparse-manpage/metadata.xml
+++ b/dev-python/argparse-manpage/metadata.xml
@@ -5,6 +5,7 @@
chutz...@gentoo.org
Patrick McLean

+   

argparse-manpage
praiskup/argparse-manpage



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

2021-03-14 Thread Sam James
commit: 5d0a7bb67c4f936c6b78ec6d2c8feb355aaad329
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:52:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:52:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d0a7bb6

dev-python/authheaders: mark ALLARCHES

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

 dev-python/authheaders/metadata.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-python/authheaders/metadata.xml 
b/dev-python/authheaders/metadata.xml
index d7a8404dd95..acf4ae8def2 100644
--- a/dev-python/authheaders/metadata.xml
+++ b/dev-python/authheaders/metadata.xml
@@ -3,11 +3,13 @@
 

pyt...@gentoo.org
+   Python


prometheanf...@gentoo.org
Matthew Thode

+   

authheaders




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

2021-03-14 Thread Sam James
commit: d912b121f3d746a4a20c15d722f969d9517a6e1b
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:53:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:53:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d912b121

dev-python/authres: mark ALLARCHES

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

 dev-python/authres/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/authres/metadata.xml b/dev-python/authres/metadata.xml
index 3772cef1634..e88f77ce3df 100644
--- a/dev-python/authres/metadata.xml
+++ b/dev-python/authres/metadata.xml
@@ -5,6 +5,7 @@
pyt...@gentoo.org
Python

+   

RFC 5451 Authentication-Results Headers generation and parsing for 
Python.
It also supports Authentication Results extensions:



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

2021-03-14 Thread Sam James
commit: 8ab2686fa8a1cf44b0ee5cf85fac5d8bf251dcc1
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:49:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:49:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ab2686f

dev-python/argh: mark ALLARCHES

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

 dev-python/argh/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/argh/metadata.xml b/dev-python/argh/metadata.xml
index 0e0938894bc..9f9610ea4f8 100644
--- a/dev-python/argh/metadata.xml
+++ b/dev-python/argh/metadata.xml
@@ -5,6 +5,7 @@
pyt...@gentoo.org
Python

+   

argh




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

2021-03-14 Thread Sam James
commit: e4a8b4e17f458b26431563881db2a5cb8225d857
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:54:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:54:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4a8b4e1

dev-python/autoprop: mark ALLARCHES

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

 dev-python/autoprop/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/autoprop/metadata.xml b/dev-python/autoprop/metadata.xml
index f84836a68a1..bf3801e6277 100644
--- a/dev-python/autoprop/metadata.xml
+++ b/dev-python/autoprop/metadata.xml
@@ -5,6 +5,7 @@
 3dpr...@gentoo.org
 Gentoo 3D Printer Project
 
+
 
 Properties are a feature in python that allow accessor functions (i.e. 
getters and setters) to masquerade as
 regular attributes. This makes it possible to provide transparent APIs 
for classes that need to cache results,



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

2021-03-14 Thread Sam James
commit: a702a536955b06ac599936a90743515635f8cee7
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:47:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:47:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a702a536

dev-python/apispec: mark ALLARCHES

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

 dev-python/apispec/metadata.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-python/apispec/metadata.xml b/dev-python/apispec/metadata.xml
index bdc70168fa4..7adc8b65039 100644
--- a/dev-python/apispec/metadata.xml
+++ b/dev-python/apispec/metadata.xml
@@ -3,11 +3,13 @@
 

zmed...@gentoo.org
+   Zac Medico


pyt...@gentoo.org
Python

+   

apispec
marshmallow-code/apispec



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

2021-03-14 Thread Sam James
commit: e0b024a6abd54d9dd0113456b1efdf0b218ec81a
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:40:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:40:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0b024a6

dev-python/aiofiles: mark ALLARCHES

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

 dev-python/aiofiles/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/aiofiles/metadata.xml b/dev-python/aiofiles/metadata.xml
index f316a59679f..ad0c8f1682d 100644
--- a/dev-python/aiofiles/metadata.xml
+++ b/dev-python/aiofiles/metadata.xml
@@ -9,6 +9,7 @@
proxy-ma...@gentoo.org
Proxy Maintainers

+   

Tinche/aiofiles
https://github.com/Tinche/aiofiles/issues



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

2021-03-14 Thread Sam James
commit: a40250f226fa4cc3da662ea97677f404f5e26d10
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:51:51 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:51:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a40250f2

dev-python/atpublic: mark ALLARCHES

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

 dev-python/atpublic/metadata.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-python/atpublic/metadata.xml b/dev-python/atpublic/metadata.xml
index 1f3c4c7a971..a383d8c8c89 100644
--- a/dev-python/atpublic/metadata.xml
+++ b/dev-python/atpublic/metadata.xml
@@ -3,11 +3,13 @@
 

pyt...@gentoo.org
+   Python


prometheanf...@gentoo.org
Matthew Thode

+   

atpublic
warsaw/public



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

2021-03-14 Thread Sam James
commit: aa55c5e0e64e5f46b1fbf8e97b2b646a6d4513ab
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:45:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:45:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa55c5e0

dev-python/ansicolor: mark ALLARCHES

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

 dev-python/ansicolor/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/ansicolor/metadata.xml 
b/dev-python/ansicolor/metadata.xml
index 50b2ecb5367..1c45472b4e5 100644
--- a/dev-python/ansicolor/metadata.xml
+++ b/dev-python/ansicolor/metadata.xml
@@ -9,6 +9,7 @@
proxy-ma...@gentoo.org
Proxy Maintainers

+   

numerodix/ansicolor
ansicolor



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

2021-03-14 Thread Sam James
commit: 7aae5481eeaf7a5aafd17f553db31d83592ee32d
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:46:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:46:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7aae5481

dev-python/aodhclient: mark ALLARCHES

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

 dev-python/aodhclient/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/aodhclient/metadata.xml 
b/dev-python/aodhclient/metadata.xml
index 45a7e697a59..1397f01bdcf 100644
--- a/dev-python/aodhclient/metadata.xml
+++ b/dev-python/aodhclient/metadata.xml
@@ -9,6 +9,7 @@
openst...@gentoo.org
Openstack

+   

python-aodhclient
openstack/python-aodhclient



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

2021-03-14 Thread Sam James
commit: a604b84bc3567d242224071178d0437455b89364
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:48:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:48:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a604b84b

dev-python/APScheduler: mark ALLARCHES

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

 dev-python/APScheduler/metadata.xml | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/dev-python/APScheduler/metadata.xml 
b/dev-python/APScheduler/metadata.xml
index 345688745de..0186fb52b90 100644
--- a/dev-python/APScheduler/metadata.xml
+++ b/dev-python/APScheduler/metadata.xml
@@ -1,11 +1,13 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+   
+   zmed...@gentoo.org
+   Zac Medico
+   
+   

APScheduler
agronholm/apscheduler

-   
-   zmed...@gentoo.org
-   
 



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

2021-03-14 Thread Sam James
commit: bd091b19d201d0f0d39d912659e7ed0060da9ff2
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:43:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:43:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd091b19

dev-python/amodem: mark ALLARCHES

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

 dev-python/amodem/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/amodem/metadata.xml b/dev-python/amodem/metadata.xml
index 142f79bfc21..a244e654052 100644
--- a/dev-python/amodem/metadata.xml
+++ b/dev-python/amodem/metadata.xml
@@ -9,6 +9,7 @@
 proxy-ma...@gentoo.org
 Proxy Maintainers
   
+  
   
 amodem
 romanz/amodem



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

2021-03-14 Thread Sam James
commit: c8d0ac07de8d18fa026ce6c0331869bdd1dd5a92
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:35:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:35:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8d0ac07

dev-python/aiosmtpd: mark ALLARCHES

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

 dev-python/aiosmtpd/metadata.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-python/aiosmtpd/metadata.xml b/dev-python/aiosmtpd/metadata.xml
index 733c44fba3e..33766b43e66 100644
--- a/dev-python/aiosmtpd/metadata.xml
+++ b/dev-python/aiosmtpd/metadata.xml
@@ -3,11 +3,13 @@
 

pyt...@gentoo.org
+   Python


prometheanf...@gentoo.org
Matthew Thode

+   

aio-libs/aiosmtpd
aiosmtpd



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

2021-03-14 Thread Sam James
commit: 826376e3e1c49c9025691004e1c0d892bd2e51c3
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:42:02 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:42:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=826376e3

dev-python/aiohttp-jinja2: mark ALLARCHES

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

 dev-python/aiohttp-jinja2/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/aiohttp-jinja2/metadata.xml 
b/dev-python/aiohttp-jinja2/metadata.xml
index d312e97052b..f9d1eb44fbd 100644
--- a/dev-python/aiohttp-jinja2/metadata.xml
+++ b/dev-python/aiohttp-jinja2/metadata.xml
@@ -5,6 +5,7 @@
zmed...@gentoo.org
Zac Medico

+   

aiohttp_jinja2
aio-libs/aiohttp-jinja2



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

2021-03-14 Thread Sam James
commit: 40f161ccf7a70063c26a3e2db474047db42119a2
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:41:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:41:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40f161cc

dev-python/aiohttp-cors: mark ALLARCHES

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

 dev-python/aiohttp-cors/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/aiohttp-cors/metadata.xml 
b/dev-python/aiohttp-cors/metadata.xml
index 7e698af58c3..0bddc960e82 100644
--- a/dev-python/aiohttp-cors/metadata.xml
+++ b/dev-python/aiohttp-cors/metadata.xml
@@ -9,6 +9,7 @@
proxy-ma...@gentoo.org
Proxy Maintainers

+   

aio-libs/aiohttp-cors
aiohttp_cors



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

2021-03-14 Thread Sam James
commit: 22413496c251e08a425785b4e83e6ce6587b3ce6
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:40:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:40:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22413496

dev-python/aiofiles: add 0.6.0

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

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

diff --git a/dev-python/aiofiles/Manifest b/dev-python/aiofiles/Manifest
index 2c0b011998d..a54b334c38e 100644
--- a/dev-python/aiofiles/Manifest
+++ b/dev-python/aiofiles/Manifest
@@ -1 +1,2 @@
 DIST aiofiles-0.5.0.tar.gz 13332 BLAKE2B 
ccd044ce9fcd74b2a6419b4f0e9e3977086c9685741dbb734a7f9222ab96dca58b5330ad0d0cd9f10fce03ee123add7101825f047451344fc451c40a4352674e
 SHA512 
89eb1af506bdf5f3f2e9c3afe90f17d521ada1cdeb449dcdc800d4faa4edc1c9ca93811915aa059d8c5a1b0a3aaa40231a46b3d041ca745e071628293bddf1b7
+DIST aiofiles-0.6.0.tar.gz 13585 BLAKE2B 
4b81e8369f91b0406c9bd5025c4b5da91418dc810065f1979ec862299fd16976105b89282b22a3ae2e0151cc550c927524795d3c5d69c82809faeb4e16179b8d
 SHA512 
2cf9e340eccfef3934bbd86338a235368b99a10e34526e8267232cef14b12e3d79d40350d82874841d5bf7fd0acf779b663288c57d150096f1275586d51583c4

diff --git a/dev-python/aiofiles/aiofiles-0.6.0.ebuild 
b/dev-python/aiofiles/aiofiles-0.6.0.ebuild
new file mode 100644
index 000..abe5dc24806
--- /dev/null
+++ b/dev-python/aiofiles/aiofiles-0.6.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit distutils-r1
+
+DESCRIPTION="File support for asyncio"
+HOMEPAGE="https://github.com/Tinche/aiofiles;
+SRC_URI="https://github.com/Tinche/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest



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

2021-03-14 Thread Sam James
commit: ce34cfa88ac687ce9b618c4b3f6dbff8ae7318b2
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:31:42 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:31:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce34cfa8

dev-python/sphinx_lv2_theme: ALLARCHES stable for 1.0.0

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

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

diff --git a/dev-python/sphinx_lv2_theme/sphinx_lv2_theme-1.0.0.ebuild 
b/dev-python/sphinx_lv2_theme/sphinx_lv2_theme-1.0.0.ebuild
index 2bb94609273..3a5a72a5368 100644
--- a/dev-python/sphinx_lv2_theme/sphinx_lv2_theme-1.0.0.ebuild
+++ b/dev-python/sphinx_lv2_theme/sphinx_lv2_theme-1.0.0.ebuild
@@ -14,6 +14,6 @@ 
SRC_URI="https://gitlab.com/lv2/${PN}/-/archive/v${PV}/{PN}-v${PV}.tar.gz;
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
 
 S="${WORKDIR}/${PN}-v${PV}-${COMMIT}"



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

2021-03-14 Thread Sam James
commit: 318aa66ad2e78e03888f2ab7d3547082c2d3b87b
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:28:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:28:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=318aa66a

dev-python/brotlicffi: Stabilize 1.0.9.1 sparc, #776034

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

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

diff --git a/dev-python/brotlicffi/brotlicffi-1.0.9.1.ebuild 
b/dev-python/brotlicffi/brotlicffi-1.0.9.1.ebuild
index de73322b8fd..73e8541b4b9 100644
--- a/dev-python/brotlicffi/brotlicffi-1.0.9.1.ebuild
+++ b/dev-python/brotlicffi/brotlicffi-1.0.9.1.ebuild
@@ -24,7 +24,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc 
x86 ~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc 
x86 ~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
app-arch/brotli:=



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

2021-03-14 Thread Sam James
commit: 52af82dd2b09c3c3494c29ce99023043a3daff89
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:28:51 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:28:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52af82dd

dev-python/hypothesis: Stabilize 6.2.0 ALLARCHES, #776070

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

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

diff --git a/dev-python/hypothesis/hypothesis-6.2.0.ebuild 
b/dev-python/hypothesis/hypothesis-6.2.0.ebuild
index 973ce1a66b6..60bc6007a39 100644
--- a/dev-python/hypothesis/hypothesis-6.2.0.ebuild
+++ b/dev-python/hypothesis/hypothesis-6.2.0.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${PN}-${PN}-python-${PV}/${PN}-python"
 
 LICENSE="MPL-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~x64-macos"
 IUSE="cli test"
 RESTRICT="!test? ( test )"
 



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

2021-03-14 Thread Sam James
commit: 59b488fcb48a058fe660a2b94760c9c8f2b1f9bc
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:28:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:28:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59b488fc

dev-python/trustme: Stabilize 0.7.0 ALLARCHES, #776142

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

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

diff --git a/dev-python/trustme/trustme-0.7.0.ebuild 
b/dev-python/trustme/trustme-0.7.0.ebuild
index 7b5a4fce6c5..c57a34cf32e 100644
--- a/dev-python/trustme/trustme-0.7.0.ebuild
+++ b/dev-python/trustme/trustme-0.7.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( Apache-2.0 MIT )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 
 RDEPEND="dev-python/cryptography[${PYTHON_USEDEP}]
dev-python/idna[${PYTHON_USEDEP}]"



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

2021-03-14 Thread Sam James
commit: 280aa9b412ca313b0ebb8e7272af3fe6ddec99dd
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:28:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:28:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=280aa9b4

dev-python/urllib3: Stabilize 1.26.3-r1 ALLARCHES, #776145

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

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

diff --git a/dev-python/urllib3/urllib3-1.26.3-r1.ebuild 
b/dev-python/urllib3/urllib3-1.26.3-r1.ebuild
index 4917ce1c828..25ba58bf0bf 100644
--- a/dev-python/urllib3/urllib3-1.26.3-r1.ebuild
+++ b/dev-python/urllib3/urllib3-1.26.3-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-cygwin ~amd64-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 ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="brotli test"
 RESTRICT="!test? ( test )"
 



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

2021-03-14 Thread Sam James
commit: 0e126c7fe8a9488cd6c3e3b9d86186b6e091cba6
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:28:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:28:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e126c7f

dev-python/secretstorage: Stabilize 3.3.1 ALLARCHES, #776127

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

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

diff --git a/dev-python/secretstorage/secretstorage-3.3.1.ebuild 
b/dev-python/secretstorage/secretstorage-3.3.1.ebuild
index 4a0d3fd0924..b1f1ed74948 100644
--- a/dev-python/secretstorage/secretstorage-3.3.1.ebuild
+++ b/dev-python/secretstorage/secretstorage-3.3.1.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_PN}-${PV}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux"
 
 RDEPEND="
dev-python/cryptography[${PYTHON_USEDEP}]



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

2021-03-14 Thread Sam James
commit: 93bb053c2f901b1879ec5b0ea1908c80768e5982
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:28:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:28:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93bb053c

dev-python/cffi: Stabilize 1.14.5 sparc, #776037

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

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

diff --git a/dev-python/cffi/cffi-1.14.5.ebuild 
b/dev-python/cffi/cffi-1.14.5.ebuild
index a722f82be1e..83a6113b4ee 100644
--- a/dev-python/cffi/cffi-1.14.5.ebuild
+++ b/dev-python/cffi/cffi-1.14.5.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-03-14 Thread Sam James
commit: 395786272f74c4d5bafcbc36d1263108a5dfac47
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:27:52 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:27:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39578627

app-admin/checksec: Stabilize 2.4.0 x86, #775821

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

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

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



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

2021-03-14 Thread Sam James
commit: 4af787cbdcd83baa74121db5262025eda6d3e886
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:27:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:27:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4af787cb

media-sound/qtractor: Stabilize 0.9.20 x86, #775719

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

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

diff --git a/media-sound/qtractor/qtractor-0.9.20.ebuild 
b/media-sound/qtractor/qtractor-0.9.20.ebuild
index ba0b616769b..7ac0473fba8 100644
--- a/media-sound/qtractor/qtractor-0.9.20.ebuild
+++ b/media-sound/qtractor/qtractor-0.9.20.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/qtractor/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 IUSE="aubio cpu_flags_x86_sse debug dssi ladspa libsamplerate mad osc 
rubberband vorbis zlib"
 



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

2021-03-14 Thread Sam James
commit: 9b0121751866ce03cba3c1fa848e8e1492cd635e
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:28:02 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:28:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b012175

dev-python/joblib: Stabilize 1.0.1 ALLARCHES, #776085

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

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

diff --git a/dev-python/joblib/joblib-1.0.1.ebuild 
b/dev-python/joblib/joblib-1.0.1.ebuild
index 3a8beae1a37..6066ffdcf33 100644
--- a/dev-python/joblib/joblib-1.0.1.ebuild
+++ b/dev-python/joblib/joblib-1.0.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 x86"
 
 RDEPEND="
dev-python/cloudpickle[${PYTHON_USEDEP}]



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

2021-03-14 Thread Sam James
commit: d36e6af627114eb06ca9bf6d1d0a5cafb7cd6e78
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:27:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:27:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d36e6af6

dev-cpp/catch: Stabilize 2.13.4 x86, #775836

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

 dev-cpp/catch/catch-2.13.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/catch/catch-2.13.4.ebuild 
b/dev-cpp/catch/catch-2.13.4.ebuild
index a33a6a89e42..4ef09010228 100644
--- a/dev-cpp/catch/catch-2.13.4.ebuild
+++ b/dev-cpp/catch/catch-2.13.4.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]]; then
 else
MY_P=${PN^}2-${PV}
SRC_URI="https://github.com/catchorg/Catch2/archive/v${PV}.tar.gz -> 
${MY_P}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
 
S="${WORKDIR}/${MY_P}"
 fi



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

2021-03-14 Thread Sam James
commit: 46dfb5da32381966f757bec11101a290114998a0
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:26:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:26:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46dfb5da

dev-python/pygpgme: Stabilize 0.3-r3 arm64, #776112

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

 dev-python/pygpgme/pygpgme-0.3-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pygpgme/pygpgme-0.3-r3.ebuild 
b/dev-python/pygpgme/pygpgme-0.3-r3.ebuild
index 0f5f53075db..6f1f219c442 100644
--- a/dev-python/pygpgme/pygpgme-0.3-r3.ebuild
+++ b/dev-python/pygpgme/pygpgme-0.3-r3.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 arm64 ~x86"
 IUSE=""
 
 DEPEND="app-crypt/gpgme"



[gentoo-commits] repo/gentoo:master commit in: dev-tex/latexmk/

2021-03-14 Thread Sam James
commit: d15e2c441621aee014617103bf9c56720aa9ebab
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:26:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:26:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d15e2c44

dev-tex/latexmk: Stabilize 470b arm64, #775830

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

 dev-tex/latexmk/latexmk-470b.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/latexmk/latexmk-470b.ebuild 
b/dev-tex/latexmk/latexmk-470b.ebuild
index 097ed4f3ab2..0e606d0590b 100644
--- a/dev-tex/latexmk/latexmk-470b.ebuild
+++ b/dev-tex/latexmk/latexmk-470b.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://personal.psu.edu/~jcc8/software/${PN}/${P}.zip;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~ppc-macos ~x64-macos"
 
 RDEPEND="virtual/latex-base
dev-lang/perl"



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

2021-03-14 Thread Sam James
commit: 6582e3792759c7e81d6ca45b682855b43df41525
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:26:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:26:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6582e379

dev-libs/elfutils: Stabilize 0.183 arm64, #775749

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

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

diff --git a/dev-libs/elfutils/elfutils-0.183.ebuild 
b/dev-libs/elfutils/elfutils-0.183.ebuild
index f2eca3e848f..55ef4374030 100644
--- a/dev-libs/elfutils/elfutils-0.183.ebuild
+++ b/dev-libs/elfutils/elfutils-0.183.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://sourceware.org/elfutils/ftp/${PV}/${P}.tar.bz2;
 
 LICENSE="|| ( GPL-2+ LGPL-3+ ) utils? ( GPL-3+ )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="bzip2 lzma nls static-libs test +threads +utils valgrind zstd"
 
 RDEPEND=">=sys-libs/zlib-1.2.8-r1[static-libs?,${MULTILIB_USEDEP}]



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

2021-03-14 Thread Sam James
commit: f5144ce79658837fbbb53d3ec09381e11ce4e774
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:26:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:26:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5144ce7

media-gfx/optipng: Stabilize 0.7.7-r1 arm64, #775698

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

 media-gfx/optipng/optipng-0.7.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/optipng/optipng-0.7.7-r1.ebuild 
b/media-gfx/optipng/optipng-0.7.7-r1.ebuild
index f144c6b6a6e..7891be669fa 100644
--- a/media-gfx/optipng/optipng-0.7.7-r1.ebuild
+++ b/media-gfx/optipng/optipng-0.7.7-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-solaris"
 IUSE=""
 
 RDEPEND="sys-libs/zlib



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

2021-03-14 Thread Sam James
commit: 52467a8cec111a684caace482b011e4018d07063
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:26:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:26:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52467a8c

app-arch/bzip2: Stabilize 1.0.8-r1 arm, #768546

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

 app-arch/bzip2/bzip2-1.0.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/bzip2/bzip2-1.0.8-r1.ebuild 
b/app-arch/bzip2/bzip2-1.0.8-r1.ebuild
index 70b385f6993..f7494008f5d 100644
--- a/app-arch/bzip2/bzip2-1.0.8-r1.ebuild
+++ b/app-arch/bzip2/bzip2-1.0.8-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://sourceware.org/pub/${PN}/${P}.tar.gz;
 
 LICENSE="BZIP2"
 SLOT="0/1" # subslot = SONAME
-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="static static-libs"
 
 PATCHES=(



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

2021-03-14 Thread Sam James
commit: 71bd45a4f8ea572c9ec7bf486f31a1303ba0c434
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 02:26:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 02:26:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71bd45a4

dev-python/GitPython: Stabilize 3.1.13 ALLARCHES, #776058

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

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

diff --git a/dev-python/GitPython/GitPython-3.1.13.ebuild 
b/dev-python/GitPython/GitPython-3.1.13.ebuild
index f1e63e903be..ef1dd01cb94 100644
--- a/dev-python/GitPython/GitPython-3.1.13.ebuild
+++ b/dev-python/GitPython/GitPython-3.1.13.ebuild
@@ -23,7 +23,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
dev-vcs/git



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

2021-03-14 Thread Thomas Deutschmann
commit: 2361f11700fe667f833d3a70f41b000ad3b2278c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 15 01:36:07 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 15 01:36:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2361f117

dev-lang/python: x86 stable (bug #770853)

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-lang/python/python-2.7.18_p7.ebuild | 2 +-
 dev-lang/python/python-3.6.13.ebuild| 2 +-
 dev-lang/python/python-3.7.10.ebuild| 2 +-
 dev-lang/python/python-3.8.8.ebuild | 2 +-
 dev-lang/python/python-3.9.2.ebuild | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-lang/python/python-2.7.18_p7.ebuild 
b/dev-lang/python/python-2.7.18_p7.ebuild
index b022d92234d..47e35788fd9 100644
--- a/dev-lang/python/python-2.7.18_p7.ebuild
+++ b/dev-lang/python/python-2.7.18_p7.ebuild
@@ -22,7 +22,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-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="-berkdb bluetooth build elibc_uclibc examples gdbm hardened ipv6 
libressl +ncurses +readline sqlite +ssl +threads tk +wide-unicode wininst +xml"
 
 # Do not add a dependency on dev-lang/python to this ebuild.

diff --git a/dev-lang/python/python-3.6.13.ebuild 
b/dev-lang/python/python-3.6.13.ebuild
index 9c9faa0f5c7..5232b122477 100644
--- a/dev-lang/python/python-3.6.13.ebuild
+++ b/dev-lang/python/python-3.6.13.ebuild
@@ -22,7 +22,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}/${PYVER}m"
-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="bluetooth build examples gdbm hardened ipv6 libressl +ncurses +readline 
sqlite +ssl test +threads tk wininst +xml"
 RESTRICT="!test? ( test )"
 

diff --git a/dev-lang/python/python-3.7.10.ebuild 
b/dev-lang/python/python-3.7.10.ebuild
index 0228c646c66..76d4edfd0be 100644
--- a/dev-lang/python/python-3.7.10.ebuild
+++ b/dev-lang/python/python-3.7.10.ebuild
@@ -22,7 +22,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}/${PYVER}m"
-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="bluetooth build examples gdbm hardened ipv6 libressl +ncurses +readline 
sqlite +ssl test tk wininst +xml"
 RESTRICT="!test? ( test )"
 

diff --git a/dev-lang/python/python-3.8.8.ebuild 
b/dev-lang/python/python-3.8.8.ebuild
index e30fdd1c11f..50897b80211 100644
--- a/dev-lang/python/python-3.8.8.ebuild
+++ b/dev-lang/python/python-3.8.8.ebuild
@@ -23,7 +23,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-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="bluetooth build examples gdbm hardened ipv6 libressl +ncurses +readline 
sqlite +ssl test tk wininst +xml"
 RESTRICT="!test? ( test )"
 

diff --git a/dev-lang/python/python-3.9.2.ebuild 
b/dev-lang/python/python-3.9.2.ebuild
index 9d724f7f937..a7d93a8a37e 100644
--- a/dev-lang/python/python-3.9.2.ebuild
+++ b/dev-lang/python/python-3.9.2.ebuild
@@ -23,7 +23,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-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="bluetooth build examples gdbm hardened ipv6 libressl +ncurses +readline 
sqlite +ssl test tk wininst +xml"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-tex/latexmk/

2021-03-14 Thread Thomas Deutschmann
commit: cee50bb34650959b566c4ebcb2913817a5b2392e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 15 01:33:30 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 15 01:33:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cee50bb3

dev-tex/latexmk: x86 stable (bug #775830)

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-tex/latexmk/latexmk-470b.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/latexmk/latexmk-470b.ebuild 
b/dev-tex/latexmk/latexmk-470b.ebuild
index 1ff62d44ec7..097ed4f3ab2 100644
--- a/dev-tex/latexmk/latexmk-470b.ebuild
+++ b/dev-tex/latexmk/latexmk-470b.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://personal.psu.edu/~jcc8/software/${PN}/${P}.zip;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc 
~x86 ~amd64-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~ppc-macos ~x64-macos"
 
 RDEPEND="virtual/latex-base
dev-lang/perl"



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

2021-03-14 Thread Thomas Deutschmann
commit: ab0f75060b00eba0abbf8895f4affac4ddc370a4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 15 01:33:00 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 15 01:33:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab0f7506

dev-libs/elfutils: x86 stable (bug #775749)

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/dev-libs/elfutils/elfutils-0.183.ebuild 
b/dev-libs/elfutils/elfutils-0.183.ebuild
index 3571a9baee3..f2eca3e848f 100644
--- a/dev-libs/elfutils/elfutils-0.183.ebuild
+++ b/dev-libs/elfutils/elfutils-0.183.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://sourceware.org/elfutils/ftp/${PV}/${P}.tar.bz2;
 
 LICENSE="|| ( GPL-2+ LGPL-3+ ) utils? ( GPL-3+ )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="bzip2 lzma nls static-libs test +threads +utils valgrind zstd"
 
 RDEPEND=">=sys-libs/zlib-1.2.8-r1[static-libs?,${MULTILIB_USEDEP}]



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

2021-03-14 Thread Thomas Deutschmann
commit: 237a1e90e37801d6eb39e63fd995e92874297bef
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 15 01:33:41 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 15 01:33:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=237a1e90

app-crypt/libnitrokey: x86 stable (bug #775833)

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-crypt/libnitrokey/libnitrokey-3.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/libnitrokey/libnitrokey-3.6.ebuild 
b/app-crypt/libnitrokey/libnitrokey-3.6.ebuild
index c7d39350de3..ecef8c9b5c2 100644
--- a/app-crypt/libnitrokey/libnitrokey-3.6.ebuild
+++ b/app-crypt/libnitrokey/libnitrokey-3.6.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]]; then
EGIT_SUBMODULES=()
 else
SRC_URI="https://github.com/Nitrokey/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc64 x86"
 fi
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: dev-db/mysql-connector-c/

2021-03-14 Thread Thomas Deutschmann
commit: 88f6ec0e9ac37e488c2e35cc90c29dc79bd07d36
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 15 01:35:25 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 15 01:35:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88f6ec0e

dev-db/mysql-connector-c: x86 stable (bug #768231)

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-db/mysql-connector-c/mysql-connector-c-8.0.23-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/mysql-connector-c/mysql-connector-c-8.0.23-r1.ebuild 
b/dev-db/mysql-connector-c/mysql-connector-c-8.0.23-r1.ebuild
index 1abc77fe993..ebffdbbcada 100644
--- a/dev-db/mysql-connector-c/mysql-connector-c-8.0.23-r1.ebuild
+++ b/dev-db/mysql-connector-c/mysql-connector-c-8.0.23-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-boost-${PV}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0/21"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86"
 IUSE="ldap libressl static-libs"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-java/tomcat-servlet-api/

2021-03-14 Thread Thomas Deutschmann
commit: 9071cece0da903e7429d66ff56bc0f0388ffaf43
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 15 01:39:08 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 15 01:39:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9071cece

dev-java/tomcat-servlet-api: x86 stable (bug #773571)

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-java/tomcat-servlet-api/tomcat-servlet-api-10.0.2.ebuild  | 2 +-
 dev-java/tomcat-servlet-api/tomcat-servlet-api-7.0.108.ebuild | 2 +-
 dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.63.ebuild  | 2 +-
 dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.43.ebuild  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-10.0.2.ebuild 
b/dev-java/tomcat-servlet-api/tomcat-servlet-api-10.0.2.ebuild
index 5c22f78e4c3..b8fec495a25 100644
--- a/dev-java/tomcat-servlet-api/tomcat-servlet-api-10.0.2.ebuild
+++ b/dev-java/tomcat-servlet-api/tomcat-servlet-api-10.0.2.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="mirror://apache/tomcat/tomcat-10/v${PV}/src/${MY_P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="5.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/jdk-1.8"

diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-7.0.108.ebuild 
b/dev-java/tomcat-servlet-api/tomcat-servlet-api-7.0.108.ebuild
index cdb2d22d435..f6011174998 100644
--- a/dev-java/tomcat-servlet-api/tomcat-servlet-api-7.0.108.ebuild
+++ b/dev-java/tomcat-servlet-api/tomcat-servlet-api-7.0.108.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="mirror://apache/tomcat/tomcat-7/v${PV}/src/${MY_P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="3.0"
-KEYWORDS="~amd64 ~arm ~arm64 ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/jdk-1.8"

diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.63.ebuild 
b/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.63.ebuild
index 0209b9ea50c..b6efba16675 100644
--- a/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.63.ebuild
+++ b/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.63.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="mirror://apache/tomcat/tomcat-8/v${PV}/src/${MY_P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="3.1"
-KEYWORDS="~amd64 ~arm ~arm64 ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/jdk-1.8"

diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.43.ebuild 
b/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.43.ebuild
index 6939efb958e..8b077fcce91 100644
--- a/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.43.ebuild
+++ b/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.43.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="mirror://apache/tomcat/tomcat-9/v${PV}/src/${MY_P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="4.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/jdk-1.8"



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

2021-03-14 Thread Thomas Deutschmann
commit: ff90a476783004583c7a9cfc2e8232235c2ac72d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 15 01:36:35 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 15 01:36:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff90a476

dev-db/redis: x86 stable (bug #773328)

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-db/redis/redis-5.0.12.ebuild | 2 +-
 dev-db/redis/redis-6.0.12.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-db/redis/redis-5.0.12.ebuild b/dev-db/redis/redis-5.0.12.ebuild
index ebd7a3e489d..db7046eaf85 100644
--- a/dev-db/redis/redis-5.0.12.ebuild
+++ b/dev-db/redis/redis-5.0.12.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://redis.io;
 SRC_URI="http://download.redis.io/releases/${P}.tar.gz;
 
 LICENSE="BSD"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 ~x86 ~amd64-linux ~x86-linux 
~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux 
~x86-solaris"
 IUSE="+jemalloc tcmalloc luajit test"
 RESTRICT="!test? ( test )"
 SLOT="0"

diff --git a/dev-db/redis/redis-6.0.12.ebuild b/dev-db/redis/redis-6.0.12.ebuild
index 4e6d2786f68..ba48c5558da 100644
--- a/dev-db/redis/redis-6.0.12.ebuild
+++ b/dev-db/redis/redis-6.0.12.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://redis.io;
 SRC_URI="https://download.redis.io/releases/${P}.tar.gz;
 
 LICENSE="BSD"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux 
~x86-solaris"
 IUSE="+jemalloc ssl tcmalloc test"
 RESTRICT="!test? ( test )"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tls/

2021-03-14 Thread Thomas Deutschmann
commit: 850588a66659dd48376ee481ebf6c8ecc71dc6c8
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 15 01:36:52 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 15 01:36:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=850588a6

dev-tcltk/tls: x86 stable (bug #773328)

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-tcltk/tls/tls-1.7.22.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tcltk/tls/tls-1.7.22.ebuild b/dev-tcltk/tls/tls-1.7.22.ebuild
index ab59e7fdd52..937c4a1aa9f 100644
--- a/dev-tcltk/tls/tls-1.7.22.ebuild
+++ b/dev-tcltk/tls/tls-1.7.22.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://core.tcl.tk/tcltls/uv/${MY_P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos"
 IUSE="tk"
 
 DEPEND="



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

2021-03-14 Thread Thomas Deutschmann
commit: 4027648392b3116e00fce3a0495bb246deaf33fd
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 15 01:33:12 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 15 01:33:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40276483

dev-lang/go: x86 stable (bug #775326)

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-lang/go/go-1.15.10.ebuild | 2 +-
 dev-lang/go/go-1.16.2.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

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

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



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

2021-03-14 Thread Thomas Deutschmann
commit: e9228db263d0b5004e9f84e92e80976f9de90dc7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 15 01:31:07 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 15 01:31:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9228db2

dev-python/brotlicffi: x86 stable (bug #776034)

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/dev-python/brotlicffi/brotlicffi-1.0.9.1.ebuild 
b/dev-python/brotlicffi/brotlicffi-1.0.9.1.ebuild
index e24126baf31..de73322b8fd 100644
--- a/dev-python/brotlicffi/brotlicffi-1.0.9.1.ebuild
+++ b/dev-python/brotlicffi/brotlicffi-1.0.9.1.ebuild
@@ -24,7 +24,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc 
~x86 ~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc 
x86 ~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
app-arch/brotli:=



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

2021-03-14 Thread Thomas Deutschmann
commit: d692cb67f51f098739f3ca5e66d2e26c46c7d5ad
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 15 01:32:01 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 15 01:32:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d692cb67

dev-python/cffi: x86 stable (bug #776037)

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/dev-python/cffi/cffi-1.14.5.ebuild 
b/dev-python/cffi/cffi-1.14.5.ebuild
index ef3ef802e26..a722f82be1e 100644
--- a/dev-python/cffi/cffi-1.14.5.ebuild
+++ b/dev-python/cffi/cffi-1.14.5.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-03-14 Thread Thomas Deutschmann
commit: f2d3ce3a089498d23b199f0e9f9c44ae6051e7e3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 15 01:32:17 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 15 01:32:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2d3ce3a

net-firewall/conntrack-tools: x86 stable (bug #773307)

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 net-firewall/conntrack-tools/conntrack-tools-1.4.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/conntrack-tools/conntrack-tools-1.4.6-r1.ebuild 
b/net-firewall/conntrack-tools/conntrack-tools-1.4.6-r1.ebuild
index 5c420d94876..875567fd508 100644
--- a/net-firewall/conntrack-tools/conntrack-tools-1.4.6-r1.ebuild
+++ b/net-firewall/conntrack-tools/conntrack-tools-1.4.6-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.netfilter.org/projects/conntrack-tools/files/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ppc ~ppc64 x86"
 IUSE="doc +cthelper +cttimeout systemd"
 
 RDEPEND="



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

2021-03-14 Thread Thomas Deutschmann
commit: 1a3157e1b966b66a517074beedad3a0227b3b23a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 15 01:32:36 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 15 01:32:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a3157e1

net-libs/libnetfilter_conntrack: x86 stable (bug #773307)

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.8.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.8.ebuild 
b/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.8.ebuild
index fefe91d6422..45d0351f13e 100644
--- a/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.8.ebuild
+++ b/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.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=6
@@ -10,7 +10,7 @@ 
SRC_URI="https://www.netfilter.org/projects/${PN}/files/${P}.tar.bz2;
 
 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="static-libs"
 
 RDEPEND="



  1   2   3   4   >