[gentoo-commits] repo/proj/prefix:master commit in: media-sound/gnump3d/, media-sound/gnump3d/files/

2021-06-20 Thread Sam James
commit: 0145211c59dfee04e6952eb0141c0f4a3fcd0404
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:58:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:58:54 2021 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=0145211c

media-sound/gnump3d: drop broken package

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

 media-sound/gnump3d/Manifest   |  1 -
 media-sound/gnump3d/files/gnump3d-3.0-prefix.patch | 13 
 media-sound/gnump3d/files/gnump3d.conf.d   |  5 --
 media-sound/gnump3d/files/gnump3d.init.d   | 37 -
 media-sound/gnump3d/gnump3d-3.0-r1.ebuild  | 87 --
 media-sound/gnump3d/gnump3d-3.0.ebuild | 79 
 media-sound/gnump3d/metadata.xml   |  8 --
 7 files changed, 230 deletions(-)

diff --git a/media-sound/gnump3d/Manifest b/media-sound/gnump3d/Manifest
deleted file mode 100644
index abae458706..00
--- a/media-sound/gnump3d/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST gnump3d-3.0.tar.bz2 633215 BLAKE2B 
aec3e2e95ebcbf2b9465f8f7e5cf579fe64e9e48d3b1757f78d3102f3a02f92970cbccc5986741013505e1b2f0e54e0d7a7c3871837c6169898e763f23e7fcca
 SHA512 
23778604b557346e42f5cd2045cc394c7d6f7044479c74cd635dfdbbfd6835c8e3ad761d54c5cba239cc5e020b049ac11d64eb463272fc4134b7645226e2524b

diff --git a/media-sound/gnump3d/files/gnump3d-3.0-prefix.patch 
b/media-sound/gnump3d/files/gnump3d-3.0-prefix.patch
deleted file mode 100644
index b8edb8c02d..00
--- a/media-sound/gnump3d/files/gnump3d-3.0-prefix.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -ru gnump3d-3.0.orig/bin/getlibdir gnump3d-3.0/bin/getlibdir
 gnump3d-3.0.orig/bin/getlibdir 2008-03-14 10:34:48 +0100
-+++ gnump3d-3.0/bin/getlibdir  2008-03-14 10:38:19 +0100
-@@ -41,7 +41,8 @@
- #  Only examine directories beneath /usr or /Library
- # (The latter is for Mac OS X).
- #
--my @dirs = grep( /^\/usr|^\/Library/, @INC );
-+my $prefix="@GENTOO_PORTAGE_EPREFIX@";
-+my @dirs = grep( /^$prefix/, @INC );
- 
- 
- #

diff --git a/media-sound/gnump3d/files/gnump3d.conf.d 
b/media-sound/gnump3d/files/gnump3d.conf.d
deleted file mode 100644
index 9fe7523c12..00
--- a/media-sound/gnump3d/files/gnump3d.conf.d
+++ /dev/null
@@ -1,5 +0,0 @@
-# Set this to 0 to stop the init script from indexing your mp3s.
-# It takes the longest on the first time, but after that, it only does
-# updates.
-
-DO_INDEX=1

diff --git a/media-sound/gnump3d/files/gnump3d.init.d 
b/media-sound/gnump3d/files/gnump3d.init.d
deleted file mode 100644
index 62c8eeb0a9..00
--- a/media-sound/gnump3d/files/gnump3d.init.d
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/gnump3d/files/gnump3d.init.d,v 
1.5 2011/12/13 23:11:35 radhermit Exp $
-
-extra_commands="index"
-
-depend() {
-   need net
-   after netmount nfsmount
-}
-
-start() {
-   ebegin "Starting gnump3d"
-
-   if [ ${DO_INDEX} -eq 1 ]; then
-   ebegin "Updating index of music files (may take a while for the 
first time)"
-   /usr/bin/gnump3d-index
-   eend $?
-   fi
-
-   start-stop-daemon --start --quiet --exec /usr/bin/gnump3d2 
--make-pidfile \
-   --pidfile /var/run/gnump3d.pid --background -- --quiet
-   eend $?
-}
-
-stop() {
-   ebegin "Stopping gnump3d"
-   start-stop-daemon --stop --quiet --pidfile /var/run/gnump3d.pid
-   eend $?
-}
-
-index() {
-   ebegin "Indexing music files"
-   /usr/bin/gnump3d-index
-   eend $?
-}

diff --git a/media-sound/gnump3d/gnump3d-3.0-r1.ebuild 
b/media-sound/gnump3d/gnump3d-3.0-r1.ebuild
deleted file mode 100644
index d0881a1e29..00
--- a/media-sound/gnump3d/gnump3d-3.0-r1.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/gnump3d/gnump3d-3.0-r1.ebuild,v 
1.6 2012/06/09 23:08:40 zmedico Exp $
-
-inherit eutils multilib user prefix
-
-MY_PV=${PV/9/9final}
-MY_P=${PN}-${MY_PV}
-
-DESCRIPTION="A streaming server for MP3, OGG vorbis and other streamable files"
-HOMEPAGE="http://www.gnu.org/software/gnump3d/;
-SRC_URI="http://savannah.gnu.org/download/${PN}/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="sox"
-
-RDEPEND="dev-lang/perl
-   sox? ( media-sound/sox )"
-DEPEND="dev-lang/perl
-   sys-apps/sed"
-
-RESTRICT="test"
-
-S="${WORKDIR}"/${MY_P}
-
-pkg_setup() {
-   enewuser gnump3d '' '' '' nogroup
-   LIBDIR="${EPREFIX}"/usr/$(get_libdir)
-}
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-
-   epatch "${FILESDIR}"/${P}-prefix.patch
-   eprefixify bin/getlibdir
-}
-
-src_compile() { :; }
-
-src_install() {
-   

[gentoo-commits] repo/proj/prefix:master commit in: dev-util/dialog/, dev-util/dialog/files/

2021-06-20 Thread Sam James
commit: dff5464262d280b98a1d903e5cbeb2611c6eb232
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:58:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:58:23 2021 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=dff54642

dev-util/dialog: drop broken EAPI 4 version

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

 dev-util/dialog/Manifest   |   1 -
 dev-util/dialog/dialog-1.1.20120706.ebuild |  77 -
 .../dialog/files/dialog-1.1-no-usr-local.patch | 103 --
 .../dialog-1.1.20100428-no-path-invention.patch| 121 -
 .../dialog/files/dialog-1.1.20100428-shared.patch  |  80 --
 dev-util/dialog/files/dialog-mkdirs.patch  |  16 ---
 dev-util/dialog/files/dialog-shared.patch  |  80 --
 7 files changed, 478 deletions(-)

diff --git a/dev-util/dialog/Manifest b/dev-util/dialog/Manifest
index 0d0aed2ec5..1eb24922f7 100644
--- a/dev-util/dialog/Manifest
+++ b/dev-util/dialog/Manifest
@@ -1,2 +1 @@
-DIST dialog-1.1-20120706.tgz 444554 BLAKE2B 
d1863ce51fee8e2ab36664b322386a1368b5c30cf11bddd49a7aec5c1760d14cfef2b515c27231b4353e60dfa758d5ab9890ae0114c0c2308e330b58de04af0e
 SHA512 
9dbdd33226767a45a66a60af25c0e743e78d938b329c980c929c18bcdc5e88031ef7f19ca8ab0471060ff2011aa7d52366cb094537d08ea64f5ef2e0b97d
 DIST dialog-1.3-20181022.tgz 531815 BLAKE2B 
c6a34010eb991683356338009998964fde60bcae4181d8b07e6d5b9f0d0e9a61d3f0b112fad02c151b1774380e18b87f93f43fdfe35e0fba86914c029eaa274c
 SHA512 
5d7891086ab6d2f4a815538513b09754a56368bbb0ec3bd107346fd2ed6ae10fa858173447fa609cce28a91e234ed8067d9439efeb973593fff2df1e811a8925

diff --git a/dev-util/dialog/dialog-1.1.20120706.ebuild 
b/dev-util/dialog/dialog-1.1.20120706.ebuild
deleted file mode 100644
index 6606d3fb53..00
--- a/dev-util/dialog/dialog-1.1.20120706.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.1.20120706.ebuild,v 1.1 
2012/07/18 17:25:40 jer Exp $
-
-EAPI="4"
-
-inherit multilib
-
-MY_PV="${PV/1.1./1.1-}"
-S=${WORKDIR}/${PN}-${MY_PV}
-DESCRIPTION="tool to display dialog boxes from a shell"
-HOMEPAGE="http://invisible-island.net/dialog/dialog.html;
-SRC_URI="ftp://invisible-island.net/${PN}/${PN}-${MY_PV}.tgz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="examples minimal nls static-libs unicode"
-
-RDEPEND="
-   >=app-shells/bash-2.04-r3
-   !unicode? ( >=sys-libs/ncurses-5.2-r5 )
-   unicode? ( >=sys-libs/ncurses-5.2-r5[unicode] )
-"
-DEPEND="
-   ${RDEPEND}
-   nls? ( sys-devel/gettext )
-   !minimal? ( sys-devel/libtool )
-   !<=sys-freebsd/freebsd-contrib-8.
-"
-
-src_prepare() {
-   sed -i configure -e '/LIB_CREATE=/s:${CC}:& ${LDFLAGS}:g' || die
-   # configure searches all over the world for some things...
-   sed -i configure \
-   -e 's:^test -d "\(/usr\|$prefix\|/usr/local\|/opt\|$HOME\):test 
-d "XnoX:' || die
-}
-
-src_configure() {
-   local ncursesw
-   use unicode && ncursesw="w"
-   # doing this libtool stuff through configure
-   # (--with-libtool=/path/to/libtool) strangely breaks the build
-   local glibtool="libtool"
-   [[ ${CHOST} == *-darwin* ]] && glibtool="glibtool"
-   export ac_cv_path_LIBTOOL="$(type -P ${glibtool})"
-   econf \
-   --disable-rpath-hack \
-   $(use_enable nls) \
-   $(use_with !minimal libtool) \
-   --with-ncurses${ncursesw}
-}
-
-src_install() {
-   if use minimal; then
-   emake DESTDIR="${D}" install
-   else
-   emake DESTDIR="${D}" install-full
-   fi
-
-   dodoc CHANGES README
-
-   if use examples; then
-   docinto samples
-   dodoc $( find samples -maxdepth 1 -type f )
-   docinto samples/copifuncs
-   dodoc $( find samples/copifuncs -maxdepth 1 -type f )
-   docinto samples/install
-   dodoc $( find samples/install -type f )
-   fi
-
-   if ! use static-libs; then
-   rm -f \
-   "${ED}"usr/$(get_libdir)/libdialog.a \
-   "${ED}"usr/$(get_libdir)/libdialog.la
-   fi
-}

diff --git a/dev-util/dialog/files/dialog-1.1-no-usr-local.patch 
b/dev-util/dialog/files/dialog-1.1-no-usr-local.patch
deleted file mode 100644
index e3d64a9f31..00
--- a/dev-util/dialog/files/dialog-1.1-no-usr-local.patch
+++ /dev/null
@@ -1,103 +0,0 @@
-diff -ru dialog-1.1-20080316.orig/configure dialog-1.1-20080316/configure
 dialog-1.1-20080316.orig/configure 2008-03-25 13:54:12 +0100
-+++ dialog-1.1-20080316/configure 

[gentoo-commits] repo/proj/prefix:master commit in: net-misc/urlview/, net-misc/urlview/files/

2021-06-20 Thread Sam James
commit: bbdbacccbc3961ede63827ae2a57c6421d2f49d6
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:59:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:59:15 2021 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=bbdbaccc

net-misc/urlview: drop broken package

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

 net-misc/urlview/Manifest|  1 -
 net-misc/urlview/files/include-fix.patch | 11 ---
 net-misc/urlview/files/no-trailing-newline.patch | 11 ---
 net-misc/urlview/files/urlview-0.9-DESTDIR.patch | 12 ---
 net-misc/urlview/files/urlview-0.9-prefix.patch  | 30 -
 net-misc/urlview/metadata.xml| 18 --
 net-misc/urlview/urlview-0.9.ebuild  | 42 
 7 files changed, 125 deletions(-)

diff --git a/net-misc/urlview/Manifest b/net-misc/urlview/Manifest
deleted file mode 100644
index e696fbb10c..00
--- a/net-misc/urlview/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST urlview-0.9.tar.gz 46685 BLAKE2B 
7023a32c6a14121bc0639ba0f1ed06ec3cd386fb35cf23b115878ef0e3a5f93a09360e3c9cbbd29ac1b6537ce9d559fbcd73a5ce07556feb20b9e77d1588
 SHA512 
5415c30e34f429c78001b1e87a75a43503d1998b667eaac66dc49298ea491914c6360baba33b5caeeb4ad54e3a4533a46afc05de3b1f135e41069d00fad0936a

diff --git a/net-misc/urlview/files/include-fix.patch 
b/net-misc/urlview/files/include-fix.patch
deleted file mode 100644
index c948a23554..00
--- a/net-misc/urlview/files/include-fix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 urlview.c.orig 2005-02-06 17:10:54.0 +0100
-+++ urlview.c  2005-02-06 17:57:06.998290062 +0100
-@@ -40,6 +40,8 @@
- #include 
- #include 
- 
-+#include "quote.h"
-+
- #ifdef HAVE_REGEX_H
- #include 
- #else

diff --git a/net-misc/urlview/files/no-trailing-newline.patch 
b/net-misc/urlview/files/no-trailing-newline.patch
deleted file mode 100644
index 8a6859f2cc..00
--- a/net-misc/urlview/files/no-trailing-newline.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 urlview.c  2000-07-04 11:14:30.0 +0100
-+++ urlview.no-trailing-newline.c  2003-09-06 11:07:02.0 +0100
-@@ -46,7 +46,7 @@
- #include 
- #endif
- 
--#define DEFAULT_REGEXP "(((https?|ftp|gopher)://|(mailto|file|news):)[^' 
\t<>\"]+|(www|web|w3)\\.[-a-z0-9.]+)[^' \t.,;<>\"\\):]"
-+#define DEFAULT_REGEXP "(((https?|ftp|gopher)://|(mailto|file|news):)[^' 
\t<>\"]+|(www|web|w3)\\.[-a-z0-9.]+)[^' \n\t.,;<>\"\\):]"
- #define DEFAULT_COMMAND "url_handler.sh %s"
- #define SYSTEM_INITFILE "/etc/urlview.conf"
- 

diff --git a/net-misc/urlview/files/urlview-0.9-DESTDIR.patch 
b/net-misc/urlview/files/urlview-0.9-DESTDIR.patch
deleted file mode 100644
index 304fd6706c..00
--- a/net-misc/urlview/files/urlview-0.9-DESTDIR.patch
+++ /dev/null
@@ -1,12 +0,0 @@
 Makefile.in
-+++ Makefile.in
-@@ -318,7 +318,8 @@
- 
- 
- install-data-local:
--  $(INSTALL_DATA) urlview.man $(mandir)/man1/urlview.1
-+  $(mkinstalldirs) $(DESTDIR)$(mandir)/man1
-+  $(INSTALL_DATA) urlview.man $(DESTDIR)$(mandir)/man1/urlview.1
- 
- # how to create a target for uninstall-data-local???
- 

diff --git a/net-misc/urlview/files/urlview-0.9-prefix.patch 
b/net-misc/urlview/files/urlview-0.9-prefix.patch
deleted file mode 100644
index 59ae2cb5e6..00
--- a/net-misc/urlview/files/urlview-0.9-prefix.patch
+++ /dev/null
@@ -1,30 +0,0 @@
 url_handler.sh~2007-10-01 01:49:36 +0200
-+++ url_handler.sh 2007-10-01 01:51:19 +0200
-@@ -1,4 +1,4 @@
--#! /bin/bash
-+#! @GENTOO_PORTAGE_EPREFIX@/bin/bash
- 
- #   Copyright (c) 1998  Martin Schulze 
- #   Slightly modified by Luis Francisco Gonzalez 
-@@ -28,15 +28,15 @@
- # VT: Launch in the same terminal
- 
- # The lists of programs to be executed are
--https_prgs="/usr/X11R6/bin/netscape:XW /usr/bin/lynx:XT"
--http_prgs="/usr/bin/lynx:XT /usr/X11R6/bin/netscape:XW"
--mailto_prgs="/usr/bin/mutt:VT /usr/bin/elm:VT /usr/bin/pine:VT 
/usr/bin/mail:VT"
--gopher_prgs="/usr/bin/lynx:XT /usr/bin/gopher:XT"
--ftp_prgs="/usr/bin/lynx:XT /usr/bin/ncftp:XT"
-+https_prgs="@GENTOO_PORTAGE_EPREFIX@/usr/X11R6/bin/netscape:XW 
@GENTOO_PORTAGE_EPREFIX@/usr/bin/lynx:XT"
-+http_prgs="@GENTOO_PORTAGE_EPREFIX@/usr/bin/lynx:XT 
@GENTOO_PORTAGE_EPREFIX@/usr/X11R6/bin/netscape:XW"
-+mailto_prgs="@GENTOO_PORTAGE_EPREFIX@/usr/bin/mutt:VT 
@GENTOO_PORTAGE_EPREFIX@/usr/bin/elm:VT 
@GENTOO_PORTAGE_EPREFIX@/usr/bin/pine:VT 
@GENTOO_PORTAGE_EPREFIX@/usr/bin/mail:VT"
-+gopher_prgs="@GENTOO_PORTAGE_EPREFIX@/usr/bin/lynx:XT 
@GENTOO_PORTAGE_EPREFIX@/usr/bin/gopher:XT"
-+ftp_prgs="@GENTOO_PORTAGE_EPREFIX@/usr/bin/lynx:XT 
@GENTOO_PORTAGE_EPREFIX@/usr/bin/ncftp:XT"
- 
- # Program used as an xterm (if it doesn't support -T you'll need to change
- # the command line in getprg)
--XTERM=/usr/X11R6/bin/xterm
-+XTERM=@GENTOO_PORTAGE_EPREFIX@/usr/X11R6/bin/xterm
- 
- 
- ###

diff --git 

[gentoo-commits] repo/proj/prefix:master commit in: sys-libs/onc-rpc-nt/

2021-06-20 Thread Sam James
commit: d372c8e8af2010940f36d1a64acaf295603c492a
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:54:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:54:35 2021 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=d372c8e8

sys-libs/onc-rpc-nt: drop broken package

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

 sys-libs/onc-rpc-nt/Manifest |  1 -
 sys-libs/onc-rpc-nt/metadata.xml | 12 
 sys-libs/onc-rpc-nt/onc-rpc-nt-1.14.1.ebuild | 22 --
 3 files changed, 35 deletions(-)

diff --git a/sys-libs/onc-rpc-nt/Manifest b/sys-libs/onc-rpc-nt/Manifest
deleted file mode 100644
index 1ad11ddbea..00
--- a/sys-libs/onc-rpc-nt/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST onc-rpc-nt-1.14.1.tar.gz 430668 RMD160 
ed0200d08b90750b1f471a432510db1a668f5b7a SHA1 
890ab552c9f31a46924987038cd84b351de1834f SHA256 
8b223a6ade01067863c0c1b86e131ff1e30e61c042481a596321966ca0291569

diff --git a/sys-libs/onc-rpc-nt/metadata.xml b/sys-libs/onc-rpc-nt/metadata.xml
deleted file mode 100644
index 2a3134456a..00
--- a/sys-libs/onc-rpc-nt/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-
-
-md...@gentoo.org
-Markus Duft
-
-
-
-
-

diff --git a/sys-libs/onc-rpc-nt/onc-rpc-nt-1.14.1.ebuild 
b/sys-libs/onc-rpc-nt/onc-rpc-nt-1.14.1.ebuild
deleted file mode 100644
index 9816472360..00
--- a/sys-libs/onc-rpc-nt/onc-rpc-nt-1.14.1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-DESCRIPTION="ONC RPC for Windows NT"
-HOMEPAGE="http://dev.gentoo.org/~mduft/rpc;
-SRC_URI="${HOMEPAGE}/onc-rpc-nt-1.14.1.tar.gz"
-
-LICENSE="sun-rpc"
-SLOT="0"
-KEYWORDS="-* ~x86-winnt"
-
-src_install() {
-   emake DESTDIR="${D}" install
-
-   local exeext=
-   [[ -f "${ED}"/usr/bin/rpcgen.exe ]] && exeext=".exe"
-
-   for x in rpcgen rpcinfo portmap; do
-   dosym /usr/bin/$x$exeext /usr/bin/${CHOST}-$x
-   done
-}



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

2021-06-20 Thread Sam James
commit: 20316bfb74af37854e231a03af5c6501ca47b20e
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:55:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:55:44 2021 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=20316bfb

sys-devel/gcc: fix metadata.xml

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

 sys-devel/gcc/metadata.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-devel/gcc/metadata.xml b/sys-devel/gcc/metadata.xml
index bebbcd1011..666aee2a93 100644
--- a/sys-devel/gcc/metadata.xml
+++ b/sys-devel/gcc/metadata.xml
@@ -11,7 +11,7 @@
   (AWT) peer support on top of GTK+
 Support the Cilk Plus language (C/C++ based languages 
for parallel programming)
 Enable support for the D programming language
-Enable fixed-point arithmetic support for MIPS 
targets 
+Enable fixed-point arithmetic support for MIPS 
targets
   in gcc (Warning: significantly increases compile time!)
 Build the GCJ Java language frontend.
 Build the GCC Go language frontend.
@@ -23,8 +23,8 @@
   code in the C library (DO NOT ENABLE THIS IF YOU DON'T KNOW WHAT IT 
DOES)
 Build using Link Time Optimizations (LTO)
 Enable support for Intel Memory Protection Extensions 
(MPX)
-   Disable PIE support (NOT FOR GENERAL USE)
-   Disable SSP support (NOT FOR GENERAL USE)
+Disable PIE support (NOT FOR GENERAL USE)
+Disable SSP support (NOT FOR GENERAL USE)
 Enable support for Native POSIX Threads Library, the new 
threading module (requires linux-2.6 or better usually)
 Build support for the Objective C code language
 Build support for the Objective C++ language



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

2021-06-20 Thread Sam James
commit: 063e859227c0a1e0218c3b415012b672bd8a79a4
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:57:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:57:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=063e8592

eutils.eclass: update die message for EAPI 0

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

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

diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass
index 1af5fbda513..ef663f3095a 100644
--- a/eclass/eutils.eclass
+++ b/eclass/eutils.eclass
@@ -29,7 +29,7 @@ case ${EAPI:-0} in
preserve-libs toolchain-funcs vcs-clean wrapper
;;
7) inherit edos2unix l10n wrapper ;;
-   *) die "${ECLASS} is banned in EAPI ${EAPI}" ;;
+   *) die "${ECLASS} is banned in EAPI ${EAPI:-0}" ;;
 esac
 
 # @FUNCTION: emktemp



[gentoo-commits] repo/proj/prefix:master commit in: .github/workflows/

2021-06-20 Thread Sam James
commit: 7bf9350591f75b64d4289b2d562c94cd380f467c
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:53:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:53:16 2021 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=7bf93505

.github: Drop pkgcheck Github Action for now

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

 .github/workflows/main.yml | 17 -
 1 file changed, 17 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
deleted file mode 100644
index 735537a090..00
--- a/.github/workflows/main.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-name: pkgcheck
-
-on:
-  push:
-branches: [master]
-  pull_request:
-branches: [master]
-
-jobs:
-  build:
-runs-on: ubuntu-latest
-steps:
-- name: Checkout code
-  uses: actions/checkout@v2
-
-- name: Run pkgcheck
-  uses: pkgcore/pkgcheck-action@v1



[gentoo-commits] repo/proj/prefix:master commit in: .github/workflows/

2021-06-20 Thread Sam James
commit: 49a4af85ee63a614e20a457f7a5e8582e537b40d
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:49:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:49:11 2021 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=49a4af85

.github: add pkgcheck Github Action

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

 .github/workflows/main.yml | 17 +
 1 file changed, 17 insertions(+)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 00..735537a090
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,17 @@
+name: pkgcheck
+
+on:
+  push:
+branches: [master]
+  pull_request:
+branches: [master]
+
+jobs:
+  build:
+runs-on: ubuntu-latest
+steps:
+- name: Checkout code
+  uses: actions/checkout@v2
+
+- name: Run pkgcheck
+  uses: pkgcore/pkgcheck-action@v1



[gentoo-commits] repo/proj/prefix:master commit in: .github/workflows/

2021-06-20 Thread Sam James
commit: 3c139a4be8a4a3a01a35f8d3690d976cdff579dc
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:49:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:49:25 2021 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=3c139a4b

.github: Add repoman Github Action

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

 .github/workflows/repoman.yml | 34 ++
 1 file changed, 34 insertions(+)

diff --git a/.github/workflows/repoman.yml b/.github/workflows/repoman.yml
new file mode 100644
index 00..e44ed6d3b5
--- /dev/null
+++ b/.github/workflows/repoman.yml
@@ -0,0 +1,34 @@
+name: repoman
+
+on:
+  push:
+branches: [ master ]
+  pull_request:
+branches: [ master ]
+
+jobs:
+  build:
+runs-on: ubuntu-latest
+steps:
+- uses: actions/checkout@v2
+- name: Set up Python 3.9
+  uses: actions/setup-python@v2
+  with:
+python-version: 3.9
+- name: Setup repoman
+  run: |
+python -m pip install --upgrade pip
+pip install lxml pyyaml
+wget -qO - 
"https://github.com/gentoo/portage/archive/portage-3.0.20.tar.gz; | tar xz
+sudo groupadd -g 250 portage
+sudo useradd -g portage -d /var/tmp/portage -s /bin/false -u 250 
portage
+- name: Setup master gentoo repository
+  run: |
+sudo mkdir -p /var/db/repos/gentoo /etc/portage /var/cache/distfiles
+wget -qO - 
"https://github.com/gentoo-mirror/gentoo/archive/master.tar.gz; | sudo tar xz 
-C /var/db/repos/gentoo --strip-components=1
+sudo wget "https://www.gentoo.org/dtd/metadata.dtd; -O 
/var/cache/distfiles/metadata.dtd
+sudo wget 
"https://gitweb.gentoo.org/proj/portage.git/plain/cnf/repos.conf; -O 
/etc/portage/repos.conf
+sudo ln -s /var/db/repos/gentoo/profiles/default/linux/amd64/17.1 
/etc/portage/make.profile
+- name: Test with repoman
+  run: |
+python3 portage-*/repoman/bin/repoman full -dx



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

2021-06-20 Thread Zac Medico
commit: cbab1179819cb9be15cfe9aa4c28f5205e5a1ddd
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun 21 05:41:11 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 21 05:46:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbab1179

dev-python/leather: Initial import

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

 dev-python/leather/Manifest |  1 +
 dev-python/leather/leather-0.3.3.ebuild | 17 +
 dev-python/leather/metadata.xml | 13 +
 3 files changed, 31 insertions(+)

diff --git a/dev-python/leather/Manifest b/dev-python/leather/Manifest
new file mode 100644
index 000..0d3da570b05
--- /dev/null
+++ b/dev-python/leather/Manifest
@@ -0,0 +1 @@
+DIST leather-0.3.3.tar.gz 18391 BLAKE2B 
0a81343251fcdea85873fea023e1d709a385b268c2900642764c1a0ae6abfa84d9dece0ef67ae152b716c93c1bdaf9671f8c5df8cf5605694af48e8f3552437a
 SHA512 
3387353d4da129fa3601799efe8742aea08f94579caab7a5a05175ff7ad50a815fc7ca4aee5d1c390027bda3a9bf1ecd1ed5167575386a7a58f56625f5165350

diff --git a/dev-python/leather/leather-0.3.3.ebuild 
b/dev-python/leather/leather-0.3.3.ebuild
new file mode 100644
index 000..75f88737327
--- /dev/null
+++ b/dev-python/leather/leather-0.3.3.ebuild
@@ -0,0 +1,17 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{8..9} )
+DISTUTILS_USE_SETUPTOOLS=bdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Python charting for 80% of humans."
+HOMEPAGE="https://github.com/wireservice/leather 
https://pypi.org/project/leather/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RDEPEND=">=dev-python/six-1.6.1[${PYTHON_USEDEP}]"

diff --git a/dev-python/leather/metadata.xml b/dev-python/leather/metadata.xml
new file mode 100644
index 000..2b9e7e0da02
--- /dev/null
+++ b/dev-python/leather/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   zmed...@gentoo.org
+   
+   
+   https://github.com/wireservice/leather/issues
+   
https://github.com/wireservice/leather/commits/master
+   leather
+   wireservice/leather
+   
+



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

2021-06-20 Thread Sam James
commit: fbf6afc71c4eaa29bee3862dbe8dd19dbf23ef71
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:40:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:40:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbf6afc7

cdrom.eclass: add EAPI guard

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

 eclass/cdrom.eclass | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass
index 623a19867d4..9dca3f63bc1 100644
--- a/eclass/cdrom.eclass
+++ b/eclass/cdrom.eclass
@@ -4,6 +4,7 @@
 # @ECLASS: cdrom.eclass
 # @MAINTAINER:
 # ga...@gentoo.org
+# @SUPPORTED_EAPIS: 6 7
 # @BLURB: Functions for CD-ROM handling
 # @DESCRIPTION:
 # Acquire CD(s) for those lovely CD-based emerges.  Yes, this violates
@@ -14,6 +15,11 @@
 # eclass will require RESTRICT="bindist" but the point still stands.
 # The functions are generally called in src_unpack.
 
+case ${EAPI:-0} in
+   [67]) ;;
+   *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
+esac
+
 if [[ -z ${_CDROM_ECLASS} ]]; then
 _CDROM_ECLASS=1
 



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

2021-06-20 Thread Sam James
commit: 8b610ae73860af6e842622ab64ed4ebef5fd0ef9
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:40:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:40:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b610ae7

findlib.eclass: add EAPI guard

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

 eclass/findlib.eclass | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/eclass/findlib.eclass b/eclass/findlib.eclass
index d117c0b2bfd..e8b6e73c97a 100644
--- a/eclass/findlib.eclass
+++ b/eclass/findlib.eclass
@@ -6,10 +6,19 @@
 # ML 
 # @AUTHOR:
 # Original author: Matthieu Sozeau  (retired)
+# @SUPPORTED_EAPIS: 6 7
 # @BLURB: ocamlfind (a.k.a. findlib) eclass
 # @DESCRIPTION:
 # ocamlfind (a.k.a. findlib) eclass
 
+case ${EAPI:-0} in
+   [67]) ;;
+   *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
+esac
+
+if [[ -z ${_FINDLIB_ECLASS} ]] ; then
+_FINDLIB_ECLASS=1
+
 # Do not complain about CFLAGS etc since ML projects do not use them.
 QA_FLAGS_IGNORED='.*'
 
@@ -60,3 +69,5 @@ findlib_src_install() {
findlib_src_preinst
make DESTDIR="${D}" "$@" install || die "make failed"
 }
+
+fi



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

2021-06-20 Thread Sam James
commit: 1f99a6cd272529e80bc22fefe3bfe4bebbfdfb96
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:39:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:39:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f99a6cd

findlib.eclass: Revert "add EAPI guard"

This reverts commit 371c510d5bfbce3a1580374352f2667f71c2ab57.
Reverting for cleaner history, will restore.

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

 eclass/cdrom.eclass   |  6 --
 eclass/findlib.eclass | 11 ---
 2 files changed, 17 deletions(-)

diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass
index 9dca3f63bc1..623a19867d4 100644
--- a/eclass/cdrom.eclass
+++ b/eclass/cdrom.eclass
@@ -4,7 +4,6 @@
 # @ECLASS: cdrom.eclass
 # @MAINTAINER:
 # ga...@gentoo.org
-# @SUPPORTED_EAPIS: 6 7
 # @BLURB: Functions for CD-ROM handling
 # @DESCRIPTION:
 # Acquire CD(s) for those lovely CD-based emerges.  Yes, this violates
@@ -15,11 +14,6 @@
 # eclass will require RESTRICT="bindist" but the point still stands.
 # The functions are generally called in src_unpack.
 
-case ${EAPI:-0} in
-   [67]) ;;
-   *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
-esac
-
 if [[ -z ${_CDROM_ECLASS} ]]; then
 _CDROM_ECLASS=1
 

diff --git a/eclass/findlib.eclass b/eclass/findlib.eclass
index e8b6e73c97a..d117c0b2bfd 100644
--- a/eclass/findlib.eclass
+++ b/eclass/findlib.eclass
@@ -6,19 +6,10 @@
 # ML 
 # @AUTHOR:
 # Original author: Matthieu Sozeau  (retired)
-# @SUPPORTED_EAPIS: 6 7
 # @BLURB: ocamlfind (a.k.a. findlib) eclass
 # @DESCRIPTION:
 # ocamlfind (a.k.a. findlib) eclass
 
-case ${EAPI:-0} in
-   [67]) ;;
-   *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
-esac
-
-if [[ -z ${_FINDLIB_ECLASS} ]] ; then
-_FINDLIB_ECLASS=1
-
 # Do not complain about CFLAGS etc since ML projects do not use them.
 QA_FLAGS_IGNORED='.*'
 
@@ -69,5 +60,3 @@ findlib_src_install() {
findlib_src_preinst
make DESTDIR="${D}" "$@" install || die "make failed"
 }
-
-fi



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

2021-06-20 Thread Sam James
commit: a84acf2f400184c08278f6a630ae65f7decd3d10
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a84acf2f

ruby-utils.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

 eclass/ruby-utils.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/ruby-utils.eclass b/eclass/ruby-utils.eclass
index 82e09cf49cb..4db362e2cd5 100644
--- a/eclass/ruby-utils.eclass
+++ b/eclass/ruby-utils.eclass
@@ -6,8 +6,8 @@
 # Ruby team 
 # @AUTHOR:
 # Author: Hans de Graaff 
-# @BLURB: An eclass for supporting ruby scripts and bindings in non-ruby 
packages
 # @SUPPORTED_EAPIS: 5 6 7
+# @BLURB: An eclass for supporting ruby scripts and bindings in non-ruby 
packages
 # @DESCRIPTION:
 # The ruby-utils eclass is designed to allow an easier installation of
 # Ruby scripts and bindings for non-ruby packages.



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

2021-06-20 Thread Sam James
commit: ade17222e8419de4d1fae60421d1ac26da20d994
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ade17222

qmail.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

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

diff --git a/eclass/qmail.eclass b/eclass/qmail.eclass
index 92df9ad28fc..76c612f026f 100644
--- a/eclass/qmail.eclass
+++ b/eclass/qmail.eclass
@@ -4,8 +4,8 @@
 # @ECLASS: qmail.eclass
 # @MAINTAINER:
 # Rolf Eike Beer 
-# @BLURB: common qmail functions
 # @SUPPORTED_EAPIS: 6 7
+# @BLURB: common qmail functions
 
 case ${EAPI:-0} in
[67]) ;;



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

2021-06-20 Thread Sam James
commit: c66e5ed27f928e9283f7b8e43ad384a3c518f9e7
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:39:01 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:39:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c66e5ed2

unpacker.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

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

diff --git a/eclass/unpacker.eclass b/eclass/unpacker.eclass
index b8a40cc682e..c9dab4345c9 100644
--- a/eclass/unpacker.eclass
+++ b/eclass/unpacker.eclass
@@ -4,8 +4,8 @@
 # @ECLASS: unpacker.eclass
 # @MAINTAINER:
 # base-sys...@gentoo.org
-# @BLURB: helpers for extraneous file formats and consistent behavior across 
EAPIs
 # @SUPPORTED_EAPIS: 5 6 7
+# @BLURB: helpers for extraneous file formats and consistent behavior across 
EAPIs
 # @DESCRIPTION:
 # Some extraneous file formats are not part of PMS, or are only in certain
 # EAPIs.  Rather than worrying about that, support the crazy cruft here



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

2021-06-20 Thread Sam James
commit: ca5ec4720d5dc8e3bf5539fb2e8d66116081e6c8
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca5ec472

toolchain-funcs.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

 eclass/toolchain-funcs.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass
index 6806bd0883b..e0e8433f4d4 100644
--- a/eclass/toolchain-funcs.eclass
+++ b/eclass/toolchain-funcs.eclass
@@ -4,8 +4,8 @@
 # @ECLASS: toolchain-funcs.eclass
 # @MAINTAINER:
 # Toolchain Ninjas 
-# @BLURB: functions to query common info about the toolchain
 # @SUPPORTED_EAPIS: 5 6 7
+# @BLURB: functions to query common info about the toolchain
 # @DESCRIPTION:
 # The toolchain-funcs aims to provide a complete suite of functions
 # for gleaning useful information about the toolchain and to simplify



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

2021-06-20 Thread Sam James
commit: 6762a2adb04570a3d4aff01c519cef323a3622df
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6762a2ad

preserve-libs.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

 eclass/preserve-libs.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/preserve-libs.eclass b/eclass/preserve-libs.eclass
index 8b2daf3e7f2..da13e7943ad 100644
--- a/eclass/preserve-libs.eclass
+++ b/eclass/preserve-libs.eclass
@@ -4,8 +4,8 @@
 # @ECLASS: preserve-libs.eclass
 # @MAINTAINER:
 # base-sys...@gentoo.org
-# @BLURB: preserve libraries after SONAME changes
 # @SUPPORTED_EAPIS: 5 6 7
+# @BLURB: preserve libraries after SONAME changes
 
 case ${EAPI:-0} in
[567]) ;;



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

2021-06-20 Thread Sam James
commit: 01e99376ce06fd33f3656595071f7385660011f5
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01e99376

prefix.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

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

diff --git a/eclass/prefix.eclass b/eclass/prefix.eclass
index febdb7afecc..da6f63bcc50 100644
--- a/eclass/prefix.eclass
+++ b/eclass/prefix.eclass
@@ -5,8 +5,8 @@
 # @MAINTAINER:
 # Feel free to contact the Prefix team through  if
 # you have problems, suggestions or questions.
-# @BLURB: Eclass to provide Prefix functionality
 # @SUPPORTED_EAPIS: 5 6 7
+# @BLURB: Eclass to provide Prefix functionality
 # @DESCRIPTION:
 # Gentoo Prefix allows users to install into a self defined offset
 # located somewhere in the filesystem.  Prefix ebuilds require



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

2021-06-20 Thread Sam James
commit: def9fbac43af265d5d73dc58dd0ad013f734d50e
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:39:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:39:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=def9fbac

user.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

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

diff --git a/eclass/user.eclass b/eclass/user.eclass
index 7c643252f6d..e1f87a383ad 100644
--- a/eclass/user.eclass
+++ b/eclass/user.eclass
@@ -5,8 +5,8 @@
 # @MAINTAINER:
 # base-sys...@gentoo.org (Linux)
 # Michał Górny  (NetBSD)
-# @BLURB: user management in ebuilds
 # @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7
+# @BLURB: user management in ebuilds
 # @DEPRECATED: acct-user/acct-group packages
 # @DESCRIPTION:
 # The user eclass contains a suite of functions that allow ebuilds



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

2021-06-20 Thread Sam James
commit: fea6527160bc8390ae4c6c43febb6f0e537cc263
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fea65271

php-ext-pecl-r3.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

 eclass/php-ext-pecl-r3.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/php-ext-pecl-r3.eclass b/eclass/php-ext-pecl-r3.eclass
index eaf20e026f9..f3977b225aa 100644
--- a/eclass/php-ext-pecl-r3.eclass
+++ b/eclass/php-ext-pecl-r3.eclass
@@ -4,8 +4,8 @@
 # @ECLASS: php-ext-pecl-r3.eclass
 # @MAINTAINER:
 # Gentoo PHP team 
-# @BLURB: A uniform way to install PECL extensions
 # @SUPPORTED_EAPIS: 6 7
+# @BLURB: A uniform way to install PECL extensions
 # @DESCRIPTION:
 # This eclass should be used by all dev-php/pecl-* ebuilds as a uniform
 # way of installing PECL extensions. For more information about PECL,



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

2021-06-20 Thread Sam James
commit: 06e3df3f19d439137061289f4234852b617aff1a
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06e3df3f

pam.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

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

diff --git a/eclass/pam.eclass b/eclass/pam.eclass
index 642595f9b2f..0b3421b5e7c 100644
--- a/eclass/pam.eclass
+++ b/eclass/pam.eclass
@@ -6,8 +6,8 @@
 # Mikle Kolyada 
 # @AUTHOR:
 # Diego Pettenò 
-# @BLURB: Handles pam related tasks
 # @SUPPORTED_EAPIS: 5 6 7
+# @BLURB: Handles pam related tasks
 # @DESCRIPTION:
 # This eclass contains functions to install pamd configuration files and
 # pam modules.



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

2021-06-20 Thread Sam James
commit: 4fd4c7ea897b610a9b0eab42826bf4b3554a4789
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:50 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fd4c7ea

rpm.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

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

diff --git a/eclass/rpm.eclass b/eclass/rpm.eclass
index 19a89a3c0cb..351d7974877 100644
--- a/eclass/rpm.eclass
+++ b/eclass/rpm.eclass
@@ -4,8 +4,8 @@
 # @ECLASS: rpm.eclass
 # @MAINTAINER:
 # base-sys...@gentoo.org
-# @BLURB: convenience class for extracting RPMs
 # @SUPPORTED_EAPIS: 5 6 7
+# @BLURB: convenience class for extracting RPMs
 
 case ${EAPI:-0} in
[567]) inherit eutils ;;



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

2021-06-20 Thread Sam James
commit: 5eae2995e46c6dc23f85bd0839eb9a1028ebea91
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eae2995

portability.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

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

diff --git a/eclass/portability.eclass b/eclass/portability.eclass
index 1b3c3952f83..1cc36757b62 100644
--- a/eclass/portability.eclass
+++ b/eclass/portability.eclass
@@ -6,8 +6,8 @@
 # base-sys...@gentoo.org
 # @AUTHOR:
 # Diego Pettenò 
-# @BLURB: This eclass is created to avoid using non-portable GNUisms inside 
ebuilds
 # @SUPPORTED_EAPIS: 5 6 7
+# @BLURB: This eclass is created to avoid using non-portable GNUisms inside 
ebuilds
 
 case ${EAPI:-0} in
[567]) ;;



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

2021-06-20 Thread Sam James
commit: a7e5810bcb1962534525500f412b7d3fd4700b12
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7e5810b

pax-utils.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

 eclass/pax-utils.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/pax-utils.eclass b/eclass/pax-utils.eclass
index 1b3fa65d131..9c4903d24b6 100644
--- a/eclass/pax-utils.eclass
+++ b/eclass/pax-utils.eclass
@@ -7,8 +7,8 @@
 # @AUTHOR:
 # Author: Kevin F. Quinn 
 # Author: Anthony G. Basile 
-# @BLURB: functions to provide PaX markings for hardened kernels
 # @SUPPORTED_EAPIS: 5 6 7
+# @BLURB: functions to provide PaX markings for hardened kernels
 # @DESCRIPTION:
 #
 # This eclass provides support for manipulating PaX markings on ELF binaries,



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

2021-06-20 Thread Sam James
commit: c3f59e498ad73b5ae95a35dcb759e4d1bdd864c8
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3f59e49

multilib.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

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

diff --git a/eclass/multilib.eclass b/eclass/multilib.eclass
index 4e3baa7188e..29acc7f5fba 100644
--- a/eclass/multilib.eclass
+++ b/eclass/multilib.eclass
@@ -4,8 +4,8 @@
 # @ECLASS: multilib.eclass
 # @MAINTAINER:
 # toolch...@gentoo.org
-# @BLURB: This eclass is for all functions pertaining to handling multilib 
configurations.
 # @SUPPORTED_EAPIS: 5 6 7
+# @BLURB: This eclass is for all functions pertaining to handling multilib 
configurations.
 # @DESCRIPTION:
 # This eclass is for all functions pertaining to handling multilib 
configurations.
 



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

2021-06-20 Thread Sam James
commit: 7cf470c09c52efe69239c9fe78235612aab3a014
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cf470c0

optfeature.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

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

diff --git a/eclass/optfeature.eclass b/eclass/optfeature.eclass
index ef69335d6a0..8fc346c3ac6 100644
--- a/eclass/optfeature.eclass
+++ b/eclass/optfeature.eclass
@@ -4,8 +4,8 @@
 # @ECLASS: optfeature.eclass
 # @MAINTAINER:
 # base-sys...@gentoo.org
-# @BLURB: Advertise optional functionality that might be useful to users
 # @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7
+# @BLURB: Advertise optional functionality that might be useful to users
 
 case ${EAPI:-0} in
[0-7]) ;;



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

2021-06-20 Thread Sam James
commit: bf83ab57cd12953781ec53672214fa3f736e1660
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf83ab57

openib.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

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

diff --git a/eclass/openib.eclass b/eclass/openib.eclass
index 8fb0c782ea4..e25418854c8 100644
--- a/eclass/openib.eclass
+++ b/eclass/openib.eclass
@@ -6,8 +6,8 @@
 # maintainer-nee...@gentoo.org
 # @AUTHOR:
 # Author: Alexey Shvetsov 
-# @BLURB: Simplify working with OFED packages
 # @SUPPORTED_EAPIS: 5 6
+# @BLURB: Simplify working with OFED packages
 
 case ${EAPI:-0} in
[56]) inherit eutils rpm versionator ;;



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

2021-06-20 Thread Sam James
commit: dbc4faf304995e2f20c4d98f714bb8cfde76a329
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbc4faf3

multiprocessing.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

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

diff --git a/eclass/multiprocessing.eclass b/eclass/multiprocessing.eclass
index 8363fa33bd1..c32bfaac2e6 100644
--- a/eclass/multiprocessing.eclass
+++ b/eclass/multiprocessing.eclass
@@ -7,8 +7,8 @@
 # @AUTHOR:
 # Brian Harring 
 # Mike Frysinger 
-# @BLURB: multiprocessing helper functions
 # @SUPPORTED_EAPIS: 5 6 7 8
+# @BLURB: multiprocessing helper functions
 # @DESCRIPTION:
 # The multiprocessing eclass contains a suite of utility functions
 # that could be helpful to controlling parallel multiple job execution.



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

2021-06-20 Thread Sam James
commit: 6c3caf144ca01d376bb73035f88ac9a36ff49ecb
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c3caf14

llvm.org.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

 eclass/llvm.org.eclass | 1 +
 1 file changed, 1 insertion(+)

diff --git a/eclass/llvm.org.eclass b/eclass/llvm.org.eclass
index 394df33df04..7f4aa723e0a 100644
--- a/eclass/llvm.org.eclass
+++ b/eclass/llvm.org.eclass
@@ -6,6 +6,7 @@
 # Michał Górny 
 # @AUTHOR:
 # Michał Górny 
+# @SUPPORTED_EAPIS: 7
 # @BLURB: Common bits for fetching & unpacking llvm.org projects
 # @DESCRIPTION:
 # The llvm.org eclass provides common code to fetch and unpack parts



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

2021-06-20 Thread Sam James
commit: 335d4545f1a37baf9acf072f8414224e685409fb
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=335d4545

java-pkg-simple.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

 eclass/java-pkg-simple.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/java-pkg-simple.eclass b/eclass/java-pkg-simple.eclass
index afd2f92f533..0c3e1af7036 100644
--- a/eclass/java-pkg-simple.eclass
+++ b/eclass/java-pkg-simple.eclass
@@ -6,8 +6,8 @@
 # j...@gentoo.org
 # @AUTHOR:
 # Java maintainers 
-# @BLURB: Eclass for packaging Java software with ease.
 # @SUPPORTED_EAPIS: 5 6 7
+# @BLURB: Eclass for packaging Java software with ease.
 # @DESCRIPTION:
 # This class is intended to build pure Java packages from Java sources
 # without the use of any build instructions shipped with the sources.



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

2021-06-20 Thread Sam James
commit: 863d801d303c04a7474aa8a691b6c18b45e4e604
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=863d801d

java-utils-2.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

 eclass/java-utils-2.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass
index da5f9150512..3368e6977f6 100644
--- a/eclass/java-utils-2.eclass
+++ b/eclass/java-utils-2.eclass
@@ -6,8 +6,8 @@
 # j...@gentoo.org
 # @AUTHOR:
 # Thomas Matthijs , Karl Trygve Kalleberg 
-# @BLURB: Base eclass for Java packages
 # @SUPPORTED_EAPIS: 5 6 7
+# @BLURB: Base eclass for Java packages
 # @DESCRIPTION:
 # This eclass provides functionality which is used by java-pkg-2.eclass,
 # java-pkg-opt-2.eclass and java-ant-2 eclass, as well as from ebuilds.



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

2021-06-20 Thread Sam James
commit: 5f1f870f36da4f0739058b1f36c939e7ec53f3b3
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f1f870f

mono-env.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

 eclass/mono-env.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/mono-env.eclass b/eclass/mono-env.eclass
index 46a25fb9889..8cec214e615 100644
--- a/eclass/mono-env.eclass
+++ b/eclass/mono-env.eclass
@@ -4,8 +4,8 @@
 # @ECLASS: mono-env.eclass
 # @MAINTAINER:
 # maintainer-nee...@gentoo.org
-# @BLURB: Set environment variables commonly used by dotnet packages.
 # @SUPPORTED_EAPIS: 5 6 7
+# @BLURB: Set environment variables commonly used by dotnet packages.
 # @DESCRIPTION:
 # Set environment variables commonly used by dotnet packages.
 



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

2021-06-20 Thread Sam James
commit: 1744fe92629acd512e54088a9dfaee69ab932a4c
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:27 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1744fe92

mono.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

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

diff --git a/eclass/mono.eclass b/eclass/mono.eclass
index 744b8099fe1..ea048574623 100644
--- a/eclass/mono.eclass
+++ b/eclass/mono.eclass
@@ -4,9 +4,9 @@
 # @ECLASS: mono.eclass
 # @MAINTAINER:
 # maintainer-nee...@gentoo.org
+# @SUPPORTED_EAPIS: 7
 # @BLURB: common settings and functions for mono and dotnet related packages
 # @DEPRECATED: mono-env
-# @SUPPORTED_EAPIS: 7
 # @DESCRIPTION:
 # The mono eclass contains common environment settings that are useful for
 # dotnet packages.  Currently, it provides no functions, just exports



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

2021-06-20 Thread Sam James
commit: 2b50442d59f3cff1ab1acd2ea8823a7be85f69ee
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b50442d

mercurial.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

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

diff --git a/eclass/mercurial.eclass b/eclass/mercurial.eclass
index 1f4ae2c3b48..b62ecdf102a 100644
--- a/eclass/mercurial.eclass
+++ b/eclass/mercurial.eclass
@@ -7,8 +7,8 @@
 # @AUTHOR:
 # Next gen author: Krzysztof Pawlik 
 # Original author: Aron Griffis 
-# @BLURB: This eclass provides generic mercurial fetching functions
 # @SUPPORTED_EAPIS: 7
+# @BLURB: This eclass provides generic mercurial fetching functions
 # @DESCRIPTION:
 # This eclass provides generic mercurial fetching functions. To fetch sources
 # from mercurial repository just set EHG_REPO_URI to correct repository URI. If



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

2021-06-20 Thread Sam James
commit: 49ceb1a3a959794a86a1d03ab4c27d1bd268bb2e
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49ceb1a3

java-virtuals-2.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

 eclass/java-virtuals-2.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/java-virtuals-2.eclass b/eclass/java-virtuals-2.eclass
index d511682c26a..27ed9157da5 100644
--- a/eclass/java-virtuals-2.eclass
+++ b/eclass/java-virtuals-2.eclass
@@ -6,8 +6,8 @@
 # j...@gentoo.org
 # @AUTHOR:
 # Original Author: Alistair John Bush 
-# @BLURB: Java virtuals eclass
 # @SUPPORTED_EAPIS: 5 6
+# @BLURB: Java virtuals eclass
 # @DESCRIPTION:
 # To provide a default (and only) src_install function for ebuilds in the
 # java-virtuals category.



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

2021-06-20 Thread Sam James
commit: ef55991a3adb15358e6d6748b8f037c175283b86
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef55991a

linux-mod.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

 eclass/linux-mod.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/linux-mod.eclass b/eclass/linux-mod.eclass
index 10a8413357a..e87c5ec0cdb 100644
--- a/eclass/linux-mod.eclass
+++ b/eclass/linux-mod.eclass
@@ -7,8 +7,8 @@
 # @AUTHOR:
 # John Mylchreest ,
 # Stefan Schweizer 
-# @BLURB: It provides the functionality required to install external modules 
against a kernel source tree.
 # @SUPPORTED_EAPIS: 5 6 7
+# @BLURB: It provides the functionality required to install external modules 
against a kernel source tree.
 # @DESCRIPTION:
 # This eclass is used to interface with linux-info.eclass in such a way
 # to provide the functionality and initial functions



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

2021-06-20 Thread Sam James
commit: 9a288649de7f9fadfa1ba8524ba754072f550cb4
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 05:38:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 05:38:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a288649

l10n.eclass: fix @SUPPORTED_EAPIS eclassdoc

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

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

diff --git a/eclass/l10n.eclass b/eclass/l10n.eclass
index 878879e5e57..5cf3931b7bf 100644
--- a/eclass/l10n.eclass
+++ b/eclass/l10n.eclass
@@ -6,8 +6,8 @@
 # Ulrich Müller 
 # @AUTHOR:
 # Ben de Groot 
-# @BLURB: convenience functions to handle localizations
 # @SUPPORTED_EAPIS: 5 6 7
+# @BLURB: convenience functions to handle localizations
 # @DESCRIPTION:
 # The l10n (localization) eclass offers a number of functions to more
 # conveniently handle localizations (translations) offered by packages.



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

2021-06-20 Thread Hans de Graaff
commit: 91781593c82ad1f59c55e305fa6715c8edbc157d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jun 21 05:26:52 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jun 21 05:26:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91781593

dev-ruby/ffi: add 1.15.3

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

 dev-ruby/ffi/Manifest  |  1 +
 dev-ruby/ffi/ffi-1.15.3.ebuild | 67 ++
 2 files changed, 68 insertions(+)

diff --git a/dev-ruby/ffi/Manifest b/dev-ruby/ffi/Manifest
index 9cfee2782cc..73361f3308a 100644
--- a/dev-ruby/ffi/Manifest
+++ b/dev-ruby/ffi/Manifest
@@ -5,3 +5,4 @@ DIST ffi-git-1.14.1.tgz 165025 BLAKE2B 
020b3954ac08fc9fe077cc9116b21e40de8458eb7
 DIST ffi-git-1.14.2.tgz 165100 BLAKE2B 
598d1771860a7884f8dc6a4cf0006cb42f741308bdd01720d7ea4b63690d42ff6e93f2d48de7132f5d82b275b30672b0bf1ac586b713994b68e98da4cf71a481
 SHA512 
20fffab047d810ddea1d4d2b66a563adf5787a0602a26cc59724090d393852ae57464a8c7b5a47ca0534efc453bb06d2f8fbf00a203a7060cd3ac78b683119f5
 DIST ffi-git-1.15.0.tgz 167263 BLAKE2B 
441b234ff8b5c65cb409451df60c8bfb5d4e071383e637b7864087ac144705d8f0dfdfb442971c4c98b0e1ed7c18b763c198f6d9c151b16de2a876a3466c369a
 SHA512 
be1c6d85b91ad3148fe79628596fb800d40c1e1efc6efb67ab78c88a71b6f978492f6e571a9c9768956e9d4f3b5940df0de1620f30d63a2dd76e0fe31d357e78
 DIST ffi-git-1.15.1.tgz 167429 BLAKE2B 
6012234f7145c5b291dd03f37d36c51b3ca0d14779b24c02da325b2075564a210566e64eb54caf4c32b4bbfe0c032f4d2c0a316c8c0cf559e14cbe6a922ebd7b
 SHA512 
1e2cd70a8b921c6840b8b990d79819e2bc12f82c2bbef9952a59026de093002d1356642f6637f6bd7b0c94a6205401d88db6b83d1a479b4591c1041ca76f8e5a
+DIST ffi-git-1.15.3.tgz 167804 BLAKE2B 
a0d040cd87a0606ebf618bb1e5bf5189e03fa30d2a3681c8dcf2b075b8cba40fbc5d130d78bae0f31d1c20319299f106653576cdb89f355090df5de0c10d916b
 SHA512 
25cf025aa51c5389c99f47043443d33859ce91e50d057dbd49b376b81b2d81c0d158785e9d7d8efba53b9ff450e49d43b475ad2c870822635d8350592f3bb3ce

diff --git a/dev-ruby/ffi/ffi-1.15.3.ebuild b/dev-ruby/ffi/ffi-1.15.3.ebuild
new file mode 100644
index 000..244b9737ea4
--- /dev/null
+++ b/dev-ruby/ffi/ffi-1.15.3.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby25 ruby26 ruby27 ruby30"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_GEMSPEC="ffi.gemspec"
+
+RUBY_FAKEGEM_EXTENSIONS=(ext/ffi_c/extconf.rb)
+
+inherit multilib ruby-fakegem toolchain-funcs
+
+DESCRIPTION="Ruby extension for programmatically loading dynamic libraries"
+HOMEPAGE="https://wiki.github.com/ffi/ffi;
+
+SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${PN}-git-${PV}.tgz"
+
+IUSE=""
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+
+RDEPEND+=" dev-libs/libffi:0="
+DEPEND+=" dev-libs/libffi"
+
+ruby_add_bdepend "dev-ruby/rake"
+
+all_ruby_prepare() {
+   sed -i -e '/tasks/ s:^:#:' \
+   -e '/Gem::Tasks/,/end/ s:^:#:' Rakefile || die
+
+   sed -e '/require/c\require "./lib/ffi/version"' \
+   -e 's/git ls-files -z/find * -print0/' \
+   -e '/^  lfs/,/^  end/ s:^:#:' \
+   -i ${RUBY_FAKEGEM_GEMSPEC} || die
+
+   # Fix Makefile for tests
+   sed -i -e '/CCACHE :=/ s:^:#:' \
+   -e 's/-O2//' \
+   -e 's/^CFLAGS =/CFLAGS +=/' spec/ffi/fixtures/GNUmakefile || die
+
+   # Remove bundled version of libffi.
+   rm -rf ext/ffi_c/libffi || die
+}
+
+each_ruby_compile() {
+   each_fakegem_compile
+
+   ${RUBY} -S rake -f gen/Rakefile || die "types.conf generation failed"
+}
+
+each_ruby_test() {
+   CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" ${RUBY} -S rspec 
spec || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc samples/*
+}



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

2021-06-20 Thread Hans de Graaff
commit: d87ea1091994031785d8a67ab7b0ce4e1fdabb85
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Jun 20 07:37:41 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jun 21 05:15:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d87ea109

dev-ruby/rcairo: amd64 stable

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

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

diff --git a/dev-ruby/rcairo/rcairo-1.16.6.ebuild 
b/dev-ruby/rcairo/rcairo-1.16.6.ebuild
index ff61e4edeb3..7b11ca38811 100644
--- a/dev-ruby/rcairo/rcairo-1.16.6.ebuild
+++ b/dev-ruby/rcairo/rcairo-1.16.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -22,7 +22,7 @@ IUSE=""
 
 SLOT="0"
 LICENSE="|| ( Ruby GPL-2 )"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 
 RDEPEND="${RDEPEND}
>=x11-libs/cairo-1.2.0[svg]"



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

2021-06-20 Thread Joonas Niilola
commit: c087ae48c1f88ef306f03a60c710a10e4f3fab88
Author: David Roman  gmail  com>
AuthorDate: Sun May 30 17:40:06 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Jun 21 05:11:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c087ae48

app-editors/ghostwriter: verbump to 2.0.1

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: David Roman  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/21055
Signed-off-by: Joonas Niilola  gentoo.org>

 app-editors/ghostwriter/Manifest |  1 +
 app-editors/ghostwriter/ghostwriter-2.0.1.ebuild | 58 
 2 files changed, 59 insertions(+)

diff --git a/app-editors/ghostwriter/Manifest b/app-editors/ghostwriter/Manifest
index db7161177b3..cd141eddf2b 100644
--- a/app-editors/ghostwriter/Manifest
+++ b/app-editors/ghostwriter/Manifest
@@ -1 +1,2 @@
 DIST ghostwriter-1.8.1.tar.gz 122 BLAKE2B 
3fa3d95ed819bc8f7b76b396e6634658a8bda23e9100cbb298d301fc382db451430a4a31fbd092326af198825c83d2c998172c90a7e318aeb57ef7799751995a
 SHA512 
9f60f81a594cf161edfeac8c75830e186ab4ec2c22859b2bad40768e1ecf64e6842b52a69024a1f014d24a2f1cbb38e15a7799101d7fd54ef7709e245f6ac521
+DIST ghostwriter-2.0.1.tar.gz 7802864 BLAKE2B 
387ce3b0fe58171d6c195b51bd5dfbdcd6f7cbe023aaba4962d311e4dd6c08066b4292467f4cf2941b9a28540b639d498057a66a4ca194e35ca32e17399d7d75
 SHA512 
e91631d51110a884ab68621ee2fe0f1c013d0c2413f0ee58135821f2539285e88dcdfca0f9d80e0313bdab4c02700faa87eae32d525e51eea82163bb1a6d5b1b

diff --git a/app-editors/ghostwriter/ghostwriter-2.0.1.ebuild 
b/app-editors/ghostwriter/ghostwriter-2.0.1.ebuild
new file mode 100644
index 000..9f9908a37a0
--- /dev/null
+++ b/app-editors/ghostwriter/ghostwriter-2.0.1.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit qmake-utils xdg-utils
+
+DESCRIPTION="Cross-platform, aesthetic, distraction-free markdown editor"
+HOMEPAGE="https://wereturtle.github.io/ghostwriter/;
+SRC_URI="https://github.com/wereturtle/ghostwriter/archive/refs/tags/${PV}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug"
+
+BDEPEND="dev-qt/linguist-tools:5"
+
+RDEPEND="
+   app-text/hunspell:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwebchannel:5
+   dev-qt/qtwebengine:5[widgets]
+   dev-qt/qtwidgets:5
+"
+DEPEND="${RDEPEND}"
+
+DOCS=( CREDITS.md README.md )
+
+src_prepare() {
+   default
+
+   sed -i -e "/^VERSION =/s/\$.*/${PV}/" ghostwriter.pro || die "failed to 
override version"
+}
+
+src_configure() {
+   eqmake5 \
+   CONFIG+=$(usex debug debug release) \
+   PREFIX="${EPREFIX}"/usr
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+   einstalldocs
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+}



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

2021-06-20 Thread Zac Medico
commit: deacd612699f378295b0347b4a12f03df726e0e5
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun 21 04:30:13 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 21 04:34:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=deacd612

dev-python/pytimeparse: Initial import

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

 dev-python/pytimeparse/Manifest |  1 +
 dev-python/pytimeparse/metadata.xml | 13 +
 dev-python/pytimeparse/pytimeparse-1.1.8.ebuild | 15 +++
 3 files changed, 29 insertions(+)

diff --git a/dev-python/pytimeparse/Manifest b/dev-python/pytimeparse/Manifest
new file mode 100644
index 000..b24782d5089
--- /dev/null
+++ b/dev-python/pytimeparse/Manifest
@@ -0,0 +1 @@
+DIST pytimeparse-1.1.8.tar.gz 9403 BLAKE2B 
671a96f0f7d517e6cd137b8ec7bda17976993a683ece5e06f857cb07063cd4d7fdd08a98f838dbf35251a8403b68f7dc538e5450db3abe644e8c7c4f6c76b645
 SHA512 
9eb4530d779b940d66412920eefa4f4d3c43719aa3e4104da4f337c05421bcbb6ad4cb2d6459ddfac770fc9f19960a9d8ce578e67f2513499a7bee8efe9541ec

diff --git a/dev-python/pytimeparse/metadata.xml 
b/dev-python/pytimeparse/metadata.xml
new file mode 100644
index 000..fae36623a4f
--- /dev/null
+++ b/dev-python/pytimeparse/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   zmed...@gentoo.org
+   
+   
+   
https://github.com/wroberts/pytimeparse/issues
+   
https://github.com/wroberts/pytimeparse/commits/master
+   pytimeparse
+   wroberts/pytimeparse
+   
+

diff --git a/dev-python/pytimeparse/pytimeparse-1.1.8.ebuild 
b/dev-python/pytimeparse/pytimeparse-1.1.8.ebuild
new file mode 100644
index 000..b49692b4aa6
--- /dev/null
+++ b/dev-python/pytimeparse/pytimeparse-1.1.8.ebuild
@@ -0,0 +1,15 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{8..10} )
+DISTUTILS_USE_SETUPTOOLS=bdepend
+
+inherit distutils-r1
+
+DESCRIPTION="A small Python module to parse various kinds of time expressions."
+HOMEPAGE="https://github.com/wroberts/pytimeparse 
https://pypi.org/project/pytimeparse/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/maxima/

2021-06-20 Thread Andrey Grozin
commit: 8cd70491439b3fed4437292b81c492a25d10be4a
Author: Andrey Grozin  gentoo  org>
AuthorDate: Mon Jun 21 04:09:04 2021 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Mon Jun 21 04:09:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cd70491

sci-mathematics/maxima: clean 5.45.0

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

 sci-mathematics/maxima/Manifest |   1 -
 sci-mathematics/maxima/maxima-5.45.0.ebuild | 235 
 2 files changed, 236 deletions(-)

diff --git a/sci-mathematics/maxima/Manifest b/sci-mathematics/maxima/Manifest
index 94e8ada3253..3a69a930b00 100644
--- a/sci-mathematics/maxima/Manifest
+++ b/sci-mathematics/maxima/Manifest
@@ -1,4 +1,3 @@
 DIST maxima-5.42.1.tar.gz 41865510 BLAKE2B 
d3b8a50594dc0cef0c354c42be1aee96df77a4e222dbe457edeb47d7fe77a8fe376b10ce8da9e4ff6c447242e9c53a32286d09a64d8600112f6feda92f1fb58d
 SHA512 
79c5e70119b0384d9dd8aa47c7e96a0ccb7e6367526b8a14d21f00137a1c2f0c8b7990bb7231d7c90ffa0090f67c1fa30a418d013d9c5982030ae68de9717f48
 DIST maxima-5.44.0.tar.gz 34976354 BLAKE2B 
d6870b6fb0581d9e60d6ed97c7daed8ce12b8b1ae49d0edb7b8d31dd723f9b879eb70440659ff958f53cee16d8d2a92f80dcaa3898d9f6dbabd79a5059073a65
 SHA512 
1e043bebb7c6d002c113d8de20a98d58d1a8e7bedfc9bcf52819e7c7554655991dc2f42f0333889706574249736db833a237b3e59b967e7e42ede28262e31f2f
-DIST maxima-5.45.0.tar.gz 39946933 BLAKE2B 
bdccb6cb88d458eec4359b7bc0b5337c9d1d0af9fe4cfeece9c80e840a2aa3963793cdf5c02437b72af647ef6c9306224c524f5a715860808d3b49ad5a85641f
 SHA512 
353d33a89e5fd1986e84698866cc9716307a5ab3c7a29908ed474b5d00f6f8869f616334ff068c2c5d175c4bbb95f892d6061b12e43686ee4813b9a16e5a4139
 DIST maxima-5.45.1.tar.gz 39951932 BLAKE2B 
b6d67aebf34c12567ec5d08581dc22d13a902d42074abc967f8e50e029845a52a2538da8cb4382e3e28163ce11a6d8c245cfc48150cc10768250de34368acf6c
 SHA512 
08e7a2b24324c0f0dda127d291b9d439125fa1324732b17c804c3eb68d35f87e3fc713c147472821a1781e6378b7afb0721d5da907826324ec3d24848251b7cf

diff --git a/sci-mathematics/maxima/maxima-5.45.0.ebuild 
b/sci-mathematics/maxima/maxima-5.45.0.ebuild
deleted file mode 100644
index d76b8b91037..000
--- a/sci-mathematics/maxima/maxima-5.45.0.ebuild
+++ /dev/null
@@ -1,235 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-
-inherit autotools elisp-common flag-o-matic python-single-r1 xdg-utils
-
-DESCRIPTION="Free computer algebra environment based on Macsyma"
-HOMEPAGE="http://maxima.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2 GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-
-IUSE="clisp clozurecl clozurecl64 cmucl ecls emacs gcl gui nls +sbcl unicode 
vtk X test"
-RESTRICT="!test? ( test )"
-
-# Languages
-LANGS="de es pt pt_BR"
-for lang in ${LANGS}; do
-   IUSE="${IUSE} l10n_${lang/_/-}"
-done
-
-LISP_DEPEND="
-   clisp? ( dev-lisp/clisp )
-   clozurecl? ( dev-lisp/clozurecl app-misc/rlwrap )
-   clozurecl64? ( dev-lisp/clozurecl app-misc/rlwrap )
-   cmucl? ( dev-lisp/cmucl app-misc/rlwrap )
-   ecls? ( dev-lisp/ecls app-misc/rlwrap )
-   gcl? ( dev-lisp/gcl[ansi,readline] )
-   sbcl? ( dev-lisp/sbcl app-misc/rlwrap )
-"
-
-# Python is used in e.g. doc/info/build_html.sh to build the docs.
-# LISP_DEPEND is included in both BDEPEND and DEPEND because the various
-# lisp engines are used to both compile and run maxima. It's possible
-# that they don't (all?) need to be listed in DEPEND; who knows.
-BDEPEND="
-   ${PYTHON_DEPS}
-   ${LISP_DEPEND}
-   test? ( sci-visualization/gnuplot )
-   sys-apps/texinfo
-"
-
-DEPEND="
-   ${LISP_DEPEND}
-   emacs? ( >=app-editors/emacs-26:* )
-   gui? ( dev-lang/tk:0 )
-"
-
-# texlive-latexrecommended needed by imaxima for breqn.sty
-#
-# VTK is an optional plotting backend that can be enabled by
-# running "draw_renderer: 'vtk;" within maxima.
-#
-# It's NON-optional for the scene() command, but that command is
-# currently useless since Tcl/Tk support was dropped in sci-libs/vtk.
-# Thus we include VTK only as an optional dependency.
-#
-# We require app-misc/rlwrap for any lisps that don't support readline
-# themselves.
-RDEPEND="
-   ${DEPEND}
-   X? (
-   x11-misc/xdg-utils
-   sci-visualization/gnuplot[gd]
-   vtk? (
-   ${PYTHON_DEPS}
-   sci-libs/vtk[python,rendering,${PYTHON_SINGLE_USEDEP}]
-   )
-   )
-   emacs? (
-   virtual/latex-base
-   app-emacs/auctex
-   app-text/ghostscript-gpl
-   dev-texlive/texlive-latexrecommended
-   )"
-
-# Maxima can make use of X features like plotting (and launching a PNG
-# viewer) from the console, but you can't use the xmaxima GUI without X.
-REQUIRED_USE="
-   

[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/maxima/

2021-06-20 Thread Andrey Grozin
commit: 30240deb6a7a23a55954da5a144397e11d95d84a
Author: Andrey Grozin  gentoo  org>
AuthorDate: Mon Jun 21 04:06:58 2021 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Mon Jun 21 04:06:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30240deb

sci-mathematics/maxima: bump to 5.45.1

Closes: https://bugs.gentoo.org/796386
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andrey Grozin  gentoo.org>

 sci-mathematics/maxima/Manifest |   1 +
 sci-mathematics/maxima/maxima-5.45.1.ebuild | 235 
 2 files changed, 236 insertions(+)

diff --git a/sci-mathematics/maxima/Manifest b/sci-mathematics/maxima/Manifest
index 8aabbfd7df5..94e8ada3253 100644
--- a/sci-mathematics/maxima/Manifest
+++ b/sci-mathematics/maxima/Manifest
@@ -1,3 +1,4 @@
 DIST maxima-5.42.1.tar.gz 41865510 BLAKE2B 
d3b8a50594dc0cef0c354c42be1aee96df77a4e222dbe457edeb47d7fe77a8fe376b10ce8da9e4ff6c447242e9c53a32286d09a64d8600112f6feda92f1fb58d
 SHA512 
79c5e70119b0384d9dd8aa47c7e96a0ccb7e6367526b8a14d21f00137a1c2f0c8b7990bb7231d7c90ffa0090f67c1fa30a418d013d9c5982030ae68de9717f48
 DIST maxima-5.44.0.tar.gz 34976354 BLAKE2B 
d6870b6fb0581d9e60d6ed97c7daed8ce12b8b1ae49d0edb7b8d31dd723f9b879eb70440659ff958f53cee16d8d2a92f80dcaa3898d9f6dbabd79a5059073a65
 SHA512 
1e043bebb7c6d002c113d8de20a98d58d1a8e7bedfc9bcf52819e7c7554655991dc2f42f0333889706574249736db833a237b3e59b967e7e42ede28262e31f2f
 DIST maxima-5.45.0.tar.gz 39946933 BLAKE2B 
bdccb6cb88d458eec4359b7bc0b5337c9d1d0af9fe4cfeece9c80e840a2aa3963793cdf5c02437b72af647ef6c9306224c524f5a715860808d3b49ad5a85641f
 SHA512 
353d33a89e5fd1986e84698866cc9716307a5ab3c7a29908ed474b5d00f6f8869f616334ff068c2c5d175c4bbb95f892d6061b12e43686ee4813b9a16e5a4139
+DIST maxima-5.45.1.tar.gz 39951932 BLAKE2B 
b6d67aebf34c12567ec5d08581dc22d13a902d42074abc967f8e50e029845a52a2538da8cb4382e3e28163ce11a6d8c245cfc48150cc10768250de34368acf6c
 SHA512 
08e7a2b24324c0f0dda127d291b9d439125fa1324732b17c804c3eb68d35f87e3fc713c147472821a1781e6378b7afb0721d5da907826324ec3d24848251b7cf

diff --git a/sci-mathematics/maxima/maxima-5.45.1.ebuild 
b/sci-mathematics/maxima/maxima-5.45.1.ebuild
new file mode 100644
index 000..02d33fe5db6
--- /dev/null
+++ b/sci-mathematics/maxima/maxima-5.45.1.ebuild
@@ -0,0 +1,235 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+
+inherit autotools elisp-common flag-o-matic python-single-r1 xdg-utils
+
+DESCRIPTION="Free computer algebra environment based on Macsyma"
+HOMEPAGE="http://maxima.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2 GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+IUSE="clisp clozurecl clozurecl64 cmucl ecls emacs gcl gui nls +sbcl unicode 
vtk X test"
+RESTRICT="!test? ( test )"
+
+# Languages
+LANGS="de es pt pt_BR"
+for lang in ${LANGS}; do
+   IUSE="${IUSE} l10n_${lang/_/-}"
+done
+
+LISP_DEPEND="
+   clisp? ( dev-lisp/clisp )
+   clozurecl? ( dev-lisp/clozurecl app-misc/rlwrap )
+   clozurecl64? ( dev-lisp/clozurecl app-misc/rlwrap )
+   cmucl? ( dev-lisp/cmucl app-misc/rlwrap )
+   ecls? ( dev-lisp/ecls app-misc/rlwrap )
+   gcl? ( dev-lisp/gcl[ansi,readline] )
+   sbcl? ( dev-lisp/sbcl app-misc/rlwrap )
+"
+
+# Python is used in e.g. doc/info/build_html.sh to build the docs.
+# LISP_DEPEND is included in both BDEPEND and DEPEND because the various
+# lisp engines are used to both compile and run maxima. It's possible
+# that they don't (all?) need to be listed in DEPEND; who knows.
+BDEPEND="
+   ${PYTHON_DEPS}
+   ${LISP_DEPEND}
+   test? ( sci-visualization/gnuplot )
+   sys-apps/texinfo
+"
+
+DEPEND="
+   ${LISP_DEPEND}
+   emacs? ( >=app-editors/emacs-26:* )
+   gui? ( dev-lang/tk:0 )
+"
+
+# texlive-latexrecommended needed by imaxima for breqn.sty
+#
+# VTK is an optional plotting backend that can be enabled by
+# running "draw_renderer: 'vtk;" within maxima.
+#
+# It's NON-optional for the scene() command, but that command is
+# currently useless since Tcl/Tk support was dropped in sci-libs/vtk.
+# Thus we include VTK only as an optional dependency.
+#
+# We require app-misc/rlwrap for any lisps that don't support readline
+# themselves.
+RDEPEND="
+   ${DEPEND}
+   X? (
+   x11-misc/xdg-utils
+   sci-visualization/gnuplot[gd]
+   vtk? (
+   ${PYTHON_DEPS}
+   sci-libs/vtk[python,rendering,${PYTHON_SINGLE_USEDEP}]
+   )
+   )
+   emacs? (
+   virtual/latex-base
+   app-emacs/auctex
+   app-text/ghostscript-gpl
+   dev-texlive/texlive-latexrecommended
+   )"
+
+# Maxima can make use of X features like plotting (and launching a PNG
+# viewer) from the console, but you can't use the xmaxima GUI 

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

2021-06-20 Thread Zac Medico
commit: 5ace8dcb975be031b52bcea11d329591d6908697
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun 21 03:26:53 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 21 03:33:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ace8dcb

sys-apps/portage: sys-apps/portage: 3.0.20-r6 revbump for EAPI 8 #796959

 #796959 Fix exposing evaluated PROPERTIES & RESTRICT in EAPI 8

Closes: https://bugs.gentoo.org/796959
Bug: https://bugs.gentoo.org/785484
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Zac Medico  gentoo.org>

 sys-apps/portage/Manifest   | 1 +
 .../portage/{portage-3.0.20-r5.ebuild => portage-3.0.20-r6.ebuild}  | 6 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest
index 7d638f43e89..e2172affcdc 100644
--- a/sys-apps/portage/Manifest
+++ b/sys-apps/portage/Manifest
@@ -4,4 +4,5 @@ DIST portage-3.0.20-bug-777492-209be9a.patch 1758 BLAKE2B 
9ed7b18ef8b73c59a08e5a
 DIST portage-3.0.20-bug-777492-a4d8829.patch 4549 BLAKE2B 
9023c7bd3d173b48e1bfcf6d48c87f6b01731d6ec154132797c820a4c24ffedcaaf2eabf380d08c43238b377cb33c1be090fe8d213f8aef39b813ba2fab25672
 SHA512 
5575015216534bc0ddc0aa79bd2c1a96180d40dd8b3df61bb95e49a2d86e60da10a5eb8d658bf616da3f3f15ff6f4377d82e72ceca770304d2d79f1f25a26a11
 DIST portage-3.0.20-bug-796584-693f6bf.patch 2335 BLAKE2B 
4922fad1fc34977b786555f1811e7b3b80e910bb940492eb735e95349f2ebb6c6f52642908fdc49e87c5f8b14f9171c8f32c627fe5ab472e645d5bc41c55bf33
 SHA512 
4032aef8de565e9ab166bf0f1b0fe4b4aec755eac4b8960dde57f89e08b00609a33cdce56f0f469292facb46aa088da4f3465cec935811cae4d00cca2254763b
 DIST portage-3.0.20-bug-796812-2ce11f0.patch 1292 BLAKE2B 
b7ca91f6d24e0eaf398ecdae8534ba19f88649ae91316a1cf074a04755a433038c04be49bce4d06306a03e25f7b83899205b971e40fba9248a56d5e65c48a2a8
 SHA512 
7de6d01d35e6e65be631a31e886b0b7d56d87211aeb1d5d3b8a60c3c6c510db368cca9280ea430675fd101434a15b3d1aef47d2a1d90a28fb634de46c2152768
+DIST portage-3.0.20-bug-796959-c8a52e1-c3e4919.patch 10306 BLAKE2B 
9ffcf396b983accef3263efa9f7a6d515cb5b669643abc5dfe610577abec80713d8a202950d37ed78625446f2db37559639002745dea7cc973d47f8befadca06
 SHA512 
f4cdf3dec98f7ba7da4d5454f4e75408b64934f59e4e1fc9f391a8fe4832b03c4598eef0affba01a415bcc2135d09d682fa612116ed1dbd753783268af243aa8
 DIST portage-3.0.20.tar.gz 1348818 BLAKE2B 
e8af0662d073110a921ef23865872b0440f5e549da92b828af3dc71010d0f49d98c429c52c90ed683407fcfee7bf17a504082166f2fcad9590d7435dd43dfb83
 SHA512 
69c1846dedf0cfa3f57b2748cf8e077ead05ab0185e785dfc6310439b8624cdd72449209a807f12f59a5175ba065f8cca1409d43bee6012900b2c8b1e7f9b7e9

diff --git a/sys-apps/portage/portage-3.0.20-r5.ebuild 
b/sys-apps/portage/portage-3.0.20-r6.ebuild
similarity index 96%
rename from sys-apps/portage/portage-3.0.20-r5.ebuild
rename to sys-apps/portage/portage-3.0.20-r6.ebuild
index 67f70e6bc45..e0104657fc2 100644
--- a/sys-apps/portage/portage-3.0.20-r5.ebuild
+++ b/sys-apps/portage/portage-3.0.20-r6.ebuild
@@ -77,7 +77,8 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

https://github.com/gentoo/portage/commit/a4d882964ee1931462f911d0c46a80e27e59fa48.patch
 -> portage-3.0.20-bug-777492-a4d8829.patch

https://github.com/gentoo/portage/commit/209be9a8bee13384dd04a4762436b4c2a5e35bc6.patch
 -> portage-3.0.20-bug-777492-209be9a.patch

https://github.com/gentoo/portage/compare/8e47286b7082aac21fe25402a1f9d03db968cd30...693f6bf5a54e2424e2ad49e1838b61f76bf78e40.patch
 -> portage-3.0.20-bug-796584-693f6bf.patch
-   
https://github.com/gentoo/portage/commit/2ce11f06e48290efb2d4b6743c8edf01c176b0fc.patch
 -> portage-3.0.20-bug-796812-2ce11f0.patch"
+   
https://github.com/gentoo/portage/commit/2ce11f06e48290efb2d4b6743c8edf01c176b0fc.patch
 -> portage-3.0.20-bug-796812-2ce11f0.patch
+   
https://github.com/gentoo/portage/compare/2ce11f06e48290efb2d4b6743c8edf01c176b0fc...c3e4919fd004ce0f5c91c67ea377bbda83558ca9.patch
 -> portage-3.0.20-bug-796959-c8a52e1-c3e4919.patch"
 
 pkg_pretend() {
local CONFIG_CHECK="~IPC_NS ~PID_NS ~NET_NS ~UTS_NS"
@@ -100,6 +101,9 @@ python_prepare_all() {
# Apply EAPI 8 fix for https://bugs.gentoo.org/796812.
eapply "${DISTDIR}/portage-3.0.20-bug-796812-2ce11f0.patch"
 
+   # Apply EAPI 8 fix for https://bugs.gentoo.org/796959
+   eapply "${DISTDIR}/portage-3.0.20-bug-796959-c8a52e1-c3e4919.patch"
+
sed -e "s:^VERSION = \"HEAD\"$:VERSION = \"${PV}\":" -i 
lib/portage/__init__.py || die
 
if use gentoo-dev; then



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

2021-06-20 Thread Zac Medico
commit: f1bf7b2ddbcf9439eb9c37e48a240c4e3a956111
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun 21 03:04:14 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 21 03:04:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1bf7b2d

app-admin/consul: Bump to version 1.9.6

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

 app-admin/consul/Manifest   |  6 +++---
 .../consul/{consul-1.9.5.ebuild => consul-1.9.6.ebuild} | 13 ++---
 2 files changed, 5 insertions(+), 14 deletions(-)

diff --git a/app-admin/consul/Manifest b/app-admin/consul/Manifest
index 315854c94f6..d5d9112d711 100644
--- a/app-admin/consul/Manifest
+++ b/app-admin/consul/Manifest
@@ -6,7 +6,7 @@ DIST cloud.google.com%2Fgo%2F@v%2Fv0.38.0.zip 2721920 BLAKE2B 
f3fde8f5cc53496dc3
 DIST consul-1.7.11.tar.gz 22803471 BLAKE2B 
05f839d4ca025600d56833534872dc2207b561c0b44643d788baa791b02137cbd7146223145d53697fa20e5ff707a3cfcc01fed993b7d6558b82579919667e6b
 SHA512 
82dab9baef3ff48dd83dd0fd3e7d5d989af8bdd142cf4e169e6de7610bd51d00cce5e76b60e6e6827ec606c2d6d2c1d46ac0502d493b13dd7fc4d42441fc1c79
 DIST consul-1.7.14.tar.gz 22795760 BLAKE2B 
dc99fc3597b4d48d3328097bf79df5e0783459278c443a1c557caec89287b16fd09769a943c5b0364b094c42e646aa66284d2ea6d833501268e926eead46cdb1
 SHA512 
641f0df322ee337614cf9cf3e6cf6a038923e068651ed1073b6097e5c4650378382fe2deac157e2f1e2762fbe30f0a8f6fc198504676ac2c06ad3bc5aadf156b
 DIST consul-1.8.12.tar.gz 28501714 BLAKE2B 
3a04ad2000debf34c53d66869a7654024a8bd164ce45971c5785cef012cf30cfbf16a7075eb5601642eccecc107589323edb3d106841515e630d670a4bcde26d
 SHA512 
0e34adbb88f26e1c26cddc7ba938284fd0954e9f79ecfc85edb3fbbeb796006529d09476beea6c1e3d2f373f47a68b9a8e6c1a31161829413d9729f3b29e1a03
-DIST consul-1.9.5.tar.gz 31056039 BLAKE2B 
591f8bc8403bd7a71dfb4bfaba4f2e6d112dff90c31c8bf4fe048259bd996216fe02331c1879cff081326f7e283dc9484ac1f6062b8fdf6cb6d743e5193d1ad7
 SHA512 
1d6c36e773287bbf52df733cf452026a4632c46036665701c82161c851ab1c800659deaacafc708bf9205a2bb26a83ad6ada22cf1ea99cf82db86b5673f08292
+DIST consul-1.9.6.tar.gz 29345700 BLAKE2B 
2a2f1ff8fb4c8d9381a89146e3c66534e6c2182c0a6da423103773376bfa35b28bca0e9257795a11fa4e26aa38417c4603de1ab3841ca2ee0c57b7d97f15d0b4
 SHA512 
a4e87899b048dca3898b22e171a0011656f6c1e54b8c1a5aa732b658ec3495b4f8ae78921ce138498cda066a302bd782c8854f092aa31c832ad0c921214990fc
 DIST github.com%2F!azure%2Fazure-sdk-for-go%2F@v%2Fv16.0.0+incompatible.mod 41 
BLAKE2B 
de145bd0fb63d51b475e0f5d293b9957a170a7c7c206f1cf2d8eb9abdb67a80051b25116b68c5f450bcc8163bb942d34d9bd4ed0b41f4e06d0d510d9b1aeff55
 SHA512 
be976846ed78cec5b19618c7364c47e66c3475519bed166ad1e6b666399ea08028fa621869ab4980981fc70256acc9a7dd1c1e52c8d3d44cb0ac75f9907b6d3e
 DIST github.com%2F!azure%2Fazure-sdk-for-go%2F@v%2Fv16.0.0+incompatible.zip 
16060635 BLAKE2B 
6c358031305d8c8245b52bc58ed08cea5cb07c3e80cb3043f369ac6faf893a95d66c31fec38f07fe9029f53239c509bc060cfdebda8ac8d5ae556dfa0d6851e3
 SHA512 
bfd8f9859e519d6e45f2324e3907f88a1e661ca597f8bb3b7ae772246ba9972e09d0883abc887346fed55928f5d8422cf4212e32377e9900137cd63f0f9a93b8
 DIST github.com%2F!azure%2Fazure-sdk-for-go%2F@v%2Fv40.3.0+incompatible.mod 41 
BLAKE2B 
de145bd0fb63d51b475e0f5d293b9957a170a7c7c206f1cf2d8eb9abdb67a80051b25116b68c5f450bcc8163bb942d34d9bd4ed0b41f4e06d0d510d9b1aeff55
 SHA512 
be976846ed78cec5b19618c7364c47e66c3475519bed166ad1e6b666399ea08028fa621869ab4980981fc70256acc9a7dd1c1e52c8d3d44cb0ac75f9907b6d3e
@@ -362,8 +362,8 @@ DIST github.com%2Fhashicorp%2Fraft%2F@v%2Fv1.1.2.mod 410 
BLAKE2B 192e571d096d665
 DIST github.com%2Fhashicorp%2Fraft%2F@v%2Fv1.1.2.zip 156422 BLAKE2B 
18071e2808ed442be205365d206d4f36042953663db3b219b4a54e90e723e42d753d465ba86614732495f0d3d06c6ae577cfc0ae8d0f715ad4a88c8bb340ec73
 SHA512 
dc554594229ea4caebdc7dfe34ddd5fc054ee59f8717a6afe2d32197ccf9b357a7f66c30d019c6d7b89685869e0e04c0dbcecbdaaf79e47c766c7573dad54d4d
 DIST github.com%2Fhashicorp%2Fraft%2F@v%2Fv1.2.0.mod 410 BLAKE2B 
192e571d096d665a55c29da1dc35ba17c52d6f5b0c3f522c80b355bf881ffe269b27a62fe44761143966aaa5bede99800918999a313869c1a81dba98b710a1ad
 SHA512 
e44c233e6bf407eac6a4eb6f7a72dc0118575b6dfe48a9d0afb95d99a847ad30f75b11e6d008238b7761965182df56e52ec183bb0905e054a638c76898368e6d
 DIST github.com%2Fhashicorp%2Fraft%2F@v%2Fv1.2.0.zip 157790 BLAKE2B 
29623bc436d2a1f1057532b98858f3e3309a0ae1cb209ca9e242d56eba97b84ac2b2f3533a542df9cbc8dd5521c5a09747adee1e38d3f3ec2b6a5517a0713684
 SHA512 
c689267a27346d83ac054c5202746c69bf79e5accc69a07c833ab00fe4f2a780ccbf41ed62d50e411322e62ba6603031134662c9e0dca18cd1ec3a52179a062b
-DIST github.com%2Fhashicorp%2Fraft-autopilot%2F@v%2Fv0.1.2.mod 256 BLAKE2B 
3011050c4c07a10c30d083c928a167fa6c7bcdad04d4591d23dd7f0e8e91d6c108e023da39c64664fa1c9edfd1cde9ee381fc136256e727cdb367e42b63d284c
 SHA512 
5446adc8997410fdc10c3f8dbd8562a0d36e9033165e54b71fcd2cf844324e69f8c324a8e1016656224a552699e01054cb2a70d439578067d8fd64d7366dedc9
-DIST 

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

2021-06-20 Thread Zac Medico
commit: 70d4f2f45d12ccac6f2f82b8a60bd6eda8a284ca
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun 21 02:59:40 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 21 02:59:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70d4f2f4

app-admin/consul: Bump to version 1.8.12

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

 app-admin/consul/Manifest   | 2 +-
 app-admin/consul/{consul-1.8.10.ebuild => consul-1.8.12.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/consul/Manifest b/app-admin/consul/Manifest
index 2082dbfa410..315854c94f6 100644
--- a/app-admin/consul/Manifest
+++ b/app-admin/consul/Manifest
@@ -5,7 +5,7 @@ DIST cloud.google.com%2Fgo%2F@v%2Fv0.38.0.mod 1006 BLAKE2B 
9d321b9bad7e881795f02
 DIST cloud.google.com%2Fgo%2F@v%2Fv0.38.0.zip 2721920 BLAKE2B 
f3fde8f5cc53496dc314bcae822a415cf00950da0a03b968de00685371e7a2e84ffa304fb176e791c85c930728859687e768ff785829f0751ae919546bd3326d
 SHA512 
8981a08b1ba0226854567b0977d8a349abe2b58420421ab1dccdaf9c98e7657cb2140ad1a38767d25cb54249b61f162ecd51d401374a29f7368a550b19196595
 DIST consul-1.7.11.tar.gz 22803471 BLAKE2B 
05f839d4ca025600d56833534872dc2207b561c0b44643d788baa791b02137cbd7146223145d53697fa20e5ff707a3cfcc01fed993b7d6558b82579919667e6b
 SHA512 
82dab9baef3ff48dd83dd0fd3e7d5d989af8bdd142cf4e169e6de7610bd51d00cce5e76b60e6e6827ec606c2d6d2c1d46ac0502d493b13dd7fc4d42441fc1c79
 DIST consul-1.7.14.tar.gz 22795760 BLAKE2B 
dc99fc3597b4d48d3328097bf79df5e0783459278c443a1c557caec89287b16fd09769a943c5b0364b094c42e646aa66284d2ea6d833501268e926eead46cdb1
 SHA512 
641f0df322ee337614cf9cf3e6cf6a038923e068651ed1073b6097e5c4650378382fe2deac157e2f1e2762fbe30f0a8f6fc198504676ac2c06ad3bc5aadf156b
-DIST consul-1.8.10.tar.gz 28495166 BLAKE2B 
c5925d794493232095ff0b99a84110070a17e7f04c105b7bb73ba669a5617c64278641b61b87f3f782d045f599c4a8c52620efe0f4ccd5c21613d4cc07cb849b
 SHA512 
941fe63c36c0f6692ddad85992dc11151bb2595d6bdd78230d0c107488aab0493a1562b95f83ff18f728ab05fc57902b1e5835a7f3e784ef0e604731b1e73595
+DIST consul-1.8.12.tar.gz 28501714 BLAKE2B 
3a04ad2000debf34c53d66869a7654024a8bd164ce45971c5785cef012cf30cfbf16a7075eb5601642eccecc107589323edb3d106841515e630d670a4bcde26d
 SHA512 
0e34adbb88f26e1c26cddc7ba938284fd0954e9f79ecfc85edb3fbbeb796006529d09476beea6c1e3d2f373f47a68b9a8e6c1a31161829413d9729f3b29e1a03
 DIST consul-1.9.5.tar.gz 31056039 BLAKE2B 
591f8bc8403bd7a71dfb4bfaba4f2e6d112dff90c31c8bf4fe048259bd996216fe02331c1879cff081326f7e283dc9484ac1f6062b8fdf6cb6d743e5193d1ad7
 SHA512 
1d6c36e773287bbf52df733cf452026a4632c46036665701c82161c851ab1c800659deaacafc708bf9205a2bb26a83ad6ada22cf1ea99cf82db86b5673f08292
 DIST github.com%2F!azure%2Fazure-sdk-for-go%2F@v%2Fv16.0.0+incompatible.mod 41 
BLAKE2B 
de145bd0fb63d51b475e0f5d293b9957a170a7c7c206f1cf2d8eb9abdb67a80051b25116b68c5f450bcc8163bb942d34d9bd4ed0b41f4e06d0d510d9b1aeff55
 SHA512 
be976846ed78cec5b19618c7364c47e66c3475519bed166ad1e6b666399ea08028fa621869ab4980981fc70256acc9a7dd1c1e52c8d3d44cb0ac75f9907b6d3e
 DIST github.com%2F!azure%2Fazure-sdk-for-go%2F@v%2Fv16.0.0+incompatible.zip 
16060635 BLAKE2B 
6c358031305d8c8245b52bc58ed08cea5cb07c3e80cb3043f369ac6faf893a95d66c31fec38f07fe9029f53239c509bc060cfdebda8ac8d5ae556dfa0d6851e3
 SHA512 
bfd8f9859e519d6e45f2324e3907f88a1e661ca597f8bb3b7ae772246ba9972e09d0883abc887346fed55928f5d8422cf4212e32377e9900137cd63f0f9a93b8

diff --git a/app-admin/consul/consul-1.8.10.ebuild 
b/app-admin/consul/consul-1.8.12.ebuild
similarity index 100%
rename from app-admin/consul/consul-1.8.10.ebuild
rename to app-admin/consul/consul-1.8.12.ebuild



[gentoo-commits] repo/proj/guru:dev commit in: dev-util/gftools/

2021-06-20 Thread Alessandro Barbieri
commit: 51f8cfc567c4dc1a1fef9c27878b360072d74d68
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon Jun 21 02:50:45 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon Jun 21 02:50:45 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=51f8cfc5

dev-util/gftools: fix distutils setuptools

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-util/gftools/gftools-0.6.2.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-util/gftools/gftools-0.6.2.ebuild 
b/dev-util/gftools/gftools-0.6.2.ebuild
index 580240739..55dbb3697 100644
--- a/dev-util/gftools/gftools-0.6.2.ebuild
+++ b/dev-util/gftools/gftools-0.6.2.ebuild
@@ -4,6 +4,7 @@
 EAPI=7
 
 COMMIT="0fe81a08dee6e7614c0f196e6668a9aafaad0d3e"
+DISTUTILS_USE_SETUPTOOLS=rdepend
 DISTUTILS_SINGLE_IMPL=1
 PYTHON_COMPAT=( python3_{8..9} )
 



[gentoo-commits] repo/proj/guru:dev commit in: media-fonts/3270font/, media-fonts/3270font/files/

2021-06-20 Thread Alessandro Barbieri
commit: c373af08d88b6489310560f57cde99465b7fbb04
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon Jun 21 02:51:45 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon Jun 21 02:51:45 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c373af08

media-fonts/3270font: add 2.3.0, drop 2.2.1-r1

Signed-off-by: Alessandro Barbieri  gmail.com>

 .../{3270font-2.2.1-r1.ebuild => 3270font-2.3.0.ebuild}| 14 +++---
 media-fonts/3270font/Manifest  |  2 +-
 media-fonts/3270font/files/remove-useless-tests.patch  |  4 ++--
 3 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/media-fonts/3270font/3270font-2.2.1-r1.ebuild 
b/media-fonts/3270font/3270font-2.3.0.ebuild
similarity index 86%
rename from media-fonts/3270font/3270font-2.2.1-r1.ebuild
rename to media-fonts/3270font/3270font-2.3.0.ebuild
index 1ed424368..c1ccd1dac 100644
--- a/media-fonts/3270font/3270font-2.2.1-r1.ebuild
+++ b/media-fonts/3270font/3270font-2.3.0.ebuild
@@ -3,7 +3,8 @@
 
 EAPI="7"
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{8..9} )
+
 inherit font python-any-r1
 
 DESCRIPTION="A IBM 3270 Terminal font in a modern format"
@@ -19,18 +20,17 @@ RESTRICT="!test? ( test )"
 
 DOCS=( CHANGELOG.md README.md  )
 HTML_DOCS=( "DESCRIPTION.en_us.html" )
-
 PATCHES=( "${FILESDIR}/remove-useless-tests.patch" )
-RDEPEND="
-   media-gfx/fontforge
-"
+
+RDEPEND=""
 DEPEND="
${PYTHON_DEPS}
-   ${RDEPEND}
+   media-gfx/fontforge
test? (
$(python_gen_any_dep '
dev-python/ipdb[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]
+   dev-util/gftools[${PYTHON_SINGLE_USEDEP}]
')
)
 "
@@ -39,7 +39,7 @@ FONT_S="${S}/build"
 FONT_SUFFIX="otf ttf pfm woff"
 
 python_check_deps() {
-   has_version -d "dev-python/ipdb[${PYTHON_USEDEP}]" &&
+   has_version -d "dev-python/ipdb[${PYTHON_USEDEP}]" && \
has_version -d "dev-python/pillow[${PYTHON_USEDEP}]"
 }
 

diff --git a/media-fonts/3270font/Manifest b/media-fonts/3270font/Manifest
index d18511b7b..28b5cd17c 100644
--- a/media-fonts/3270font/Manifest
+++ b/media-fonts/3270font/Manifest
@@ -1 +1 @@
-DIST 3270font-2.2.1.tar.gz 518982 BLAKE2B 
43cb01f569ff51ac250609fe0788025ed9cdb8dcbc09b090ed0ea74c3d77f07e2c42c123f9f7c82b0beadd6f8c486901727dad668893450916d2adabb7769012
 SHA512 
055e126eecdd190c425d84e0656170057a900a40475d357a52287ea87759d842808085be6fec14fdee6a5fccdf446422cc115d60aa5b2892e8e787f6fcc83c92
+DIST 3270font-2.3.0.tar.gz 520106 BLAKE2B 
e3ece6a0f476d20bf4135057739a73deee49050b6be9b4bd3731b228729f622d059c53a122a266332e02e71af08dc6b13f215358dc275edd91247e3119d249be
 SHA512 
26d1a32990b0ea8395959ed37d7acc76f1f1d160488ff6e96bb39fc8ca952339c09ed06cb0783a69b6ef6545be72ed63665af3584f79852fe0a813301f77ea7d

diff --git a/media-fonts/3270font/files/remove-useless-tests.patch 
b/media-fonts/3270font/files/remove-useless-tests.patch
index 56fed49f7..c8a860d97 100644
--- a/media-fonts/3270font/files/remove-useless-tests.patch
+++ b/media-fonts/3270font/files/remove-useless-tests.patch
@@ -1,5 +1,5 @@
 a/Makefile 2021-04-17 04:14:57.220030609 +0200
-+++ b/Makefile 2021-04-17 04:15:23.615508374 +0200
+--- a/Makefile
 b/Makefile
 @@ -73,17 +73,11 @@
@./fontbakery_checks.sh
  



[gentoo-commits] repo/proj/guru:dev commit in: dev-util/gftools/

2021-06-20 Thread Alessandro Barbieri
commit: ed7fe83466f61e7b073069f7dd6a44b6f7ca7d2c
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon Jun 21 02:34:11 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon Jun 21 02:34:11 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ed7fe834

dev-util/gftools: enable py3.9

Signed-off-by: Alessandro Barbieri  gmail.com>

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

diff --git a/dev-util/gftools/gftools-0.6.2.ebuild 
b/dev-util/gftools/gftools-0.6.2.ebuild
index e9947f613..580240739 100644
--- a/dev-util/gftools/gftools-0.6.2.ebuild
+++ b/dev-util/gftools/gftools-0.6.2.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 COMMIT="0fe81a08dee6e7614c0f196e6668a9aafaad0d3e"
 DISTUTILS_SINGLE_IMPL=1
-PYTHON_COMPAT=( python3_8 )
+PYTHON_COMPAT=( python3_{8..9} )
 
 inherit distutils-r1
 



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

2021-06-20 Thread Zac Medico
commit: 15d71ae611ff977d103562a49598c3c239cfca45
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun 21 02:47:39 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 21 02:47:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15d71ae6

app-admin/consul: Remove old versions

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

 app-admin/consul/Manifest |  13 -
 app-admin/consul/consul-1.7.12.ebuild | 586 -
 app-admin/consul/consul-1.8.8.ebuild  | 801 --
 app-admin/consul/consul-1.9.3.ebuild  | 780 -
 4 files changed, 2180 deletions(-)

diff --git a/app-admin/consul/Manifest b/app-admin/consul/Manifest
index b680770b91b..2082dbfa410 100644
--- a/app-admin/consul/Manifest
+++ b/app-admin/consul/Manifest
@@ -4,11 +4,8 @@ DIST cloud.google.com%2Fgo%2F@v%2Fv0.34.0.mod 27 BLAKE2B 
814b0fa8f12d5ce6171fa62
 DIST cloud.google.com%2Fgo%2F@v%2Fv0.38.0.mod 1006 BLAKE2B 
9d321b9bad7e881795f0215828ca23ff5753b8ca9cbe64ca085bcd2f64d36d0d5bdd5c3e80eb64e19e067748b6b23eb7837827cede0e75a840ed1cfa2b00c1a8
 SHA512 
8aa90e6ce7d50af3db56c8a7abdd16822f6351cabb96e6b75ac0cdefa15bb4a2d402aa84e6212fec4d599ec6f13cb1891bb37f41200e6a05a27642375a89a959
 DIST cloud.google.com%2Fgo%2F@v%2Fv0.38.0.zip 2721920 BLAKE2B 
f3fde8f5cc53496dc314bcae822a415cf00950da0a03b968de00685371e7a2e84ffa304fb176e791c85c930728859687e768ff785829f0751ae919546bd3326d
 SHA512 
8981a08b1ba0226854567b0977d8a349abe2b58420421ab1dccdaf9c98e7657cb2140ad1a38767d25cb54249b61f162ecd51d401374a29f7368a550b19196595
 DIST consul-1.7.11.tar.gz 22803471 BLAKE2B 
05f839d4ca025600d56833534872dc2207b561c0b44643d788baa791b02137cbd7146223145d53697fa20e5ff707a3cfcc01fed993b7d6558b82579919667e6b
 SHA512 
82dab9baef3ff48dd83dd0fd3e7d5d989af8bdd142cf4e169e6de7610bd51d00cce5e76b60e6e6827ec606c2d6d2c1d46ac0502d493b13dd7fc4d42441fc1c79
-DIST consul-1.7.12.tar.gz 22804943 BLAKE2B 
22e2189e51bbbf5190a22d5cfc0bff899a67cfd6985a0164c6e47f801d1aca6eb548d612f584ba500bfd4d09dfdd406ca4ada79eec8e3602ab450218832da083
 SHA512 
fca8d80cf8100025652c73bdaa93cd0dcd2af5a3231bcd664b79f8b30c93fdf4b0688cb004764ee0579ca86708585e8f913916df7ef0c5055d9c19d29cedf77a
 DIST consul-1.7.14.tar.gz 22795760 BLAKE2B 
dc99fc3597b4d48d3328097bf79df5e0783459278c443a1c557caec89287b16fd09769a943c5b0364b094c42e646aa66284d2ea6d833501268e926eead46cdb1
 SHA512 
641f0df322ee337614cf9cf3e6cf6a038923e068651ed1073b6097e5c4650378382fe2deac157e2f1e2762fbe30f0a8f6fc198504676ac2c06ad3bc5aadf156b
 DIST consul-1.8.10.tar.gz 28495166 BLAKE2B 
c5925d794493232095ff0b99a84110070a17e7f04c105b7bb73ba669a5617c64278641b61b87f3f782d045f599c4a8c52620efe0f4ccd5c21613d4cc07cb849b
 SHA512 
941fe63c36c0f6692ddad85992dc11151bb2595d6bdd78230d0c107488aab0493a1562b95f83ff18f728ab05fc57902b1e5835a7f3e784ef0e604731b1e73595
-DIST consul-1.8.8.tar.gz 28520274 BLAKE2B 
9acb6dd6e33db960f039cf655a5791d439eede2ab09c980de1c2f43a26d0fa19c1ebd9ef30db71644460e5df45d90dc61bfea41a5858b03fa9bb0e3baa0b49eb
 SHA512 
2a9b9537f101821351865dcd295c142db0f02792f5ae722d5013cb35649f9d10b910ddc802a5deae9a9ef4e9ca84e92ce51c372988c1a6b786983d60c4c5050c
-DIST consul-1.9.3.tar.gz 30367669 BLAKE2B 
a353499d25a7375bf8c36f80369b8759e5569a1b4ad3e6094827006a8cb7ed35144c2f154c475fbde48be1304e162161fd29fd435196a0497653b8667d953c22
 SHA512 
449bbff2a66b0e3a45b577d6a79a27af538c1087797eab2014fde7f59bf505e08dfe81841c36509c75d2ca4a0418ddd3b50c64f0371778ac43e69bedb1a2faab
 DIST consul-1.9.5.tar.gz 31056039 BLAKE2B 
591f8bc8403bd7a71dfb4bfaba4f2e6d112dff90c31c8bf4fe048259bd996216fe02331c1879cff081326f7e283dc9484ac1f6062b8fdf6cb6d743e5193d1ad7
 SHA512 
1d6c36e773287bbf52df733cf452026a4632c46036665701c82161c851ab1c800659deaacafc708bf9205a2bb26a83ad6ada22cf1ea99cf82db86b5673f08292
 DIST github.com%2F!azure%2Fazure-sdk-for-go%2F@v%2Fv16.0.0+incompatible.mod 41 
BLAKE2B 
de145bd0fb63d51b475e0f5d293b9957a170a7c7c206f1cf2d8eb9abdb67a80051b25116b68c5f450bcc8163bb942d34d9bd4ed0b41f4e06d0d510d9b1aeff55
 SHA512 
be976846ed78cec5b19618c7364c47e66c3475519bed166ad1e6b666399ea08028fa621869ab4980981fc70256acc9a7dd1c1e52c8d3d44cb0ac75f9907b6d3e
 DIST github.com%2F!azure%2Fazure-sdk-for-go%2F@v%2Fv16.0.0+incompatible.zip 
16060635 BLAKE2B 
6c358031305d8c8245b52bc58ed08cea5cb07c3e80cb3043f369ac6faf893a95d66c31fec38f07fe9029f53239c509bc060cfdebda8ac8d5ae556dfa0d6851e3
 SHA512 
bfd8f9859e519d6e45f2324e3907f88a1e661ca597f8bb3b7ae772246ba9972e09d0883abc887346fed55928f5d8422cf4212e32377e9900137cd63f0f9a93b8
@@ -354,8 +351,6 @@ DIST github.com%2Fhashicorp%2Flogutils%2F@v%2Fv1.0.0.mod 37 
BLAKE2B b9e2cfa29511
 DIST github.com%2Fhashicorp%2Fmdns%2F@v%2Fv1.0.0.mod 376 BLAKE2B 
dd92d033685d65d1876a52156317b2f1196028c035f6ef039849df4066b93fc518e9f9c06a666b4fb1fb803d984266f57fd9eecd891e241bc50f8b54ed6a9952
 SHA512 
541dffe3beadcf5eeebe266671462e3827262ae700a146c4a08700b325018b183252650b50a7d4e539e872c0b6e5d7e35de4f1abdd955dcad51543ea6b22acc1
 DIST 

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

2021-06-20 Thread Zac Medico
commit: 0c5e6e9773bf8f60cd469d13e6f0f25257ad9239
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun 21 02:39:13 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 21 02:43:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c5e6e97

app-admin/vault: Bump to version 1.7.3

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

 app-admin/vault/Manifest   | 4 ++--
 app-admin/vault/{vault-1.7.0.ebuild => vault-1.7.3.ebuild} | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/vault/Manifest b/app-admin/vault/Manifest
index 7c9f5e972e5..f192b54a80c 100644
--- a/app-admin/vault/Manifest
+++ b/app-admin/vault/Manifest
@@ -4,5 +4,5 @@ DIST vault-1.5.9-webui.tar.xz 1244124 BLAKE2B 
bdd56f3ffc3c1733f9ba3c76be2e696903
 DIST vault-1.5.9.tar.gz 35127251 BLAKE2B 
7b2c24f797f0c54672b49a28989e0e465d9a0054f26cfcaf22d030a9f3b25d79b496044bb65a6d4c363b7478a3ca6d8dac1520169d6c347fe75bac3ff6001df6
 SHA512 
de5dfa9cb0ca41514fa5652d2cd3dacc312b1a6d9f2311823a1634dadb6bc4430d8124ac9089dd93f7277ff44f3fee37354b3ae48f8ece839ba859c89655510b
 DIST vault-1.6.5-webui.tar.xz 1273364 BLAKE2B 
3fd23a322f435cc1151c7c7321bd48ddbf5a06e260e77cb51353e5df940a7e7932b7043e914da149664d20e7a10b24771c6c3f1cad0cae035b654f4e206212aa
 SHA512 
cbc433bf101996ff1f800b023664f1a6b9e3473fb2220986724f2019801cbe758a0889f1e9ab8a4fbcda3a6d75e453251a24f1c81228616f6a377100c4e7ae7a
 DIST vault-1.6.5.tar.gz 39136426 BLAKE2B 
ed977f7035b37b801c785c0f63c7338e6ad829de27d50fcc2078bbc008f9cdb0fb399786af62b16d9e85fab57d8a6c22417581b84e902fc3829144548cb41634
 SHA512 
0f5640d376f21d57bf25db0865b4509ef819dd82e950f8c9192188ab3ef1c2477c369049b69a5194e27051b5d8dc523b9760b01eda6568f7348bb782cf6f97c6
-DIST vault-1.7.0-webui.tar.xz 1331492 BLAKE2B 
97c5255b9c8a3ee5814224f236bb7a1ea45200cbbe57996d56bb700c256edcc83d738e2814a02e205a6317d6adbb373565fb4cbe5d01c0592291ac0484b55389
 SHA512 
82b095a40b0fedb7c59ff45fe589f9ec1dbffc0536a3a1bf56b35e1223f9bedb0fdcb75777d27aabcc3bd01e458889b045f766693114d8c989f2ac7dd732aa8b
-DIST vault-1.7.0.tar.gz 39285782 BLAKE2B 
539c138625a2a8861e32f65f4da6b566427884ef1ef5d1850efcb9d8176d34c1b2e51a7fe68c70737e451a2bef9cd493c695c1b200c1ebc83826ecd566d34550
 SHA512 
08a0cc7762b83218a38dc741121771a3c58c9914bef3fee70a76cd773aea352402aa9f8eaad39a8b1695bdd900ea53d00c1535d27d3d8f39036293751fe48521
+DIST vault-1.7.3-webui.tar.xz 1331416 BLAKE2B 
81a3e70086ef4aa1a4761188d8d8b294593cf26ffe8e697d556a3bc27319c0ea149ba3f652ff3fc9f552252354a86e7923ecd87a81ecc2b9d29d6ff25180e50e
 SHA512 
a9f2aa9ed9e4303054a8c7c97a49daab8e2c6142ddff18ec0f38fd68383af10a644e47c02b3ef6e2d4f74e68a6a9d3324f58c7b7725b990c7c290649134f90d3
+DIST vault-1.7.3.tar.gz 39626087 BLAKE2B 
54e777c0703c2b3ae32012507579079a97c19aee9b8488af71b863ab2f0b536417470441c68c5ace40069559485c9f2fa108d3f2e3cbbd9a44e1baffd812ed13
 SHA512 
06929599eb03373489da87bc63577b10b92080212fd090d5f95e29007a03c7e70c40148219415f252ac2acc7a8c46afe03fb5d034812fe379c79b7dd01d172e5

diff --git a/app-admin/vault/vault-1.7.0.ebuild 
b/app-admin/vault/vault-1.7.3.ebuild
similarity index 100%
rename from app-admin/vault/vault-1.7.0.ebuild
rename to app-admin/vault/vault-1.7.3.ebuild



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

2021-06-20 Thread Sam James
commit: 1020616ff7e0b4c9d9ea3bd3a439713e247a0ba9
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 02:29:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 02:31:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1020616f

app-admin/salt: drop network test (test_network.py) which needs 'dig'

FAILED tests/unit/modules/test_network.py::NetworkTestCase::test_dig - 
FileNotFoundError: [Errno 2] No such file or directory: 'dig'

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

 app-admin/salt/salt-3003-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/salt/salt-3003-r1.ebuild 
b/app-admin/salt/salt-3003-r1.ebuild
index 67d0e862d78..19b06ebd022 100644
--- a/app-admin/salt/salt-3003-r1.ebuild
+++ b/app-admin/salt/salt-3003-r1.ebuild
@@ -120,13 +120,13 @@ python_prepare_all() {
rm -r tests/integration/cloud || die
rm -r tests/kitchen/tests/wordpress/tests || die
rm tests/kitchen/test_kitchen.py || die
+   rm tests/unit/modules/test_network.py || die
 
# tests require root access
rm tests/integration/pillar/test_git_pillar.py || die
rm tests/integration/states/test_supervisord.py || die
rm tests/pytests/unit/client/test_ssh.py || die
 
-   # make sure pkg_resources doesn't bomb because pycrypto isn't installed
# make sure pkg_resources doesn't bomb because pycrypto isn't installed
find "${S}" -name '*.txt' -print0 | xargs -0 sed -e '/pycrypto>/ d ; 
/pycryptodomex/ d' -i || die
# pycryptodome rather than pycryptodomex



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

2021-06-20 Thread Sam James
commit: 20697afbe9875d95feeaecf41df48b54fa1601e6
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 02:27:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 02:31:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20697afb

app-admin/salt: add missing dev-python/genshi (test) dependency

Drops ~arm keyword for now.

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

 app-admin/salt/salt-3003-r1.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-admin/salt/salt-3003-r1.ebuild 
b/app-admin/salt/salt-3003-r1.ebuild
index a8e7f850448..67d0e862d78 100644
--- a/app-admin/salt/salt-3003-r1.ebuild
+++ b/app-admin/salt/salt-3003-r1.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == * ]]; then
SRC_URI=""
 else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-   KEYWORDS="amd64 ~arm x86"
+   KEYWORDS="amd64 x86"
 fi
 
 LICENSE="Apache-2.0"
@@ -56,6 +56,7 @@ RDEPEND="
)
cherrypy? ( >=dev-python/cherrypy-3.2.2[${PYTHON_USEDEP}] )
cheetah? ( dev-python/cheetah3[${PYTHON_USEDEP}] )
+   genshi? ( dev-python/genshi[${PYTHON_USEDEP}] )
mongodb? ( dev-python/pymongo[${PYTHON_USEDEP}] )
portage? ( sys-apps/portage[${PYTHON_USEDEP}] )
keyring? ( dev-python/keyring[${PYTHON_USEDEP}] )



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

2021-06-20 Thread Sam James
commit: 87bed92e3958fa42b9f575955294326d168c0ae9
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 02:24:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 02:24:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87bed92e

dev-python/raet: Stabilize 0.6.8-r2 amd64, #795108

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

 dev-python/raet/raet-0.6.8-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/raet/raet-0.6.8-r2.ebuild 
b/dev-python/raet/raet-0.6.8-r2.ebuild
index 67c9fc4dbd5..bd9f9feb3a4 100644
--- a/dev-python/raet/raet-0.6.8-r2.ebuild
+++ b/dev-python/raet/raet-0.6.8-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-06-20 Thread Sam James
commit: 7e676debcaee3e3305053683fb326ffae482c513
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 02:24:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 02:24:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e676deb

dev-python/ioflo: Stabilize 2.0.2 amd64, #795108

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

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

diff --git a/dev-python/ioflo/ioflo-2.0.2.ebuild 
b/dev-python/ioflo/ioflo-2.0.2.ebuild
index 55d71a53548..368df270f7b 100644
--- a/dev-python/ioflo/ioflo-2.0.2.ebuild
+++ b/dev-python/ioflo/ioflo-2.0.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="test"
 
 RDEPEND="



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

2021-06-20 Thread Sam James
commit: d1b0c43a6f00d6d1912809c7c9da1dd2df8c25e6
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 02:24:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 02:24:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1b0c43a

app-admin/salt: Stabilize 3003-r1 amd64, #795108

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

 app-admin/salt/salt-3003-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/salt/salt-3003-r1.ebuild 
b/app-admin/salt/salt-3003-r1.ebuild
index 0c3832ff8ad..a8e7f850448 100644
--- a/app-admin/salt/salt-3003-r1.ebuild
+++ b/app-admin/salt/salt-3003-r1.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == * ]]; then
SRC_URI=""
 else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm x86"
+   KEYWORDS="amd64 ~arm x86"
 fi
 
 LICENSE="Apache-2.0"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-salt-factories/

2021-06-20 Thread Sam James
commit: e1d57e1b1612b22026fbaa7605bb419846fb33e8
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 02:24:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 02:24:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1d57e1b

dev-python/pytest-salt-factories: Stabilize 0.121.1 amd64, #795108

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

 dev-python/pytest-salt-factories/pytest-salt-factories-0.121.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/pytest-salt-factories/pytest-salt-factories-0.121.1.ebuild 
b/dev-python/pytest-salt-factories/pytest-salt-factories-0.121.1.ebuild
index d65999e3b7b..9242c977555 100644
--- a/dev-python/pytest-salt-factories/pytest-salt-factories-0.121.1.ebuild
+++ b/dev-python/pytest-salt-factories/pytest-salt-factories-0.121.1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/saltstack/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="test"
 
 RDEPEND="



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

2021-06-20 Thread Zac Medico
commit: 89944abc38073112f3f255bb4cd7d9cc8213bf5d
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun 21 02:22:52 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 21 02:23:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89944abc

app-admin/vault: Remove vulnerable version 1.6.1

See: https://bugs.gentoo.org/797244
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Zac Medico  gentoo.org>

 app-admin/vault/Manifest   |  2 -
 app-admin/vault/vault-1.6.1.ebuild | 78 --
 2 files changed, 80 deletions(-)

diff --git a/app-admin/vault/Manifest b/app-admin/vault/Manifest
index 006f485682a..7c9f5e972e5 100644
--- a/app-admin/vault/Manifest
+++ b/app-admin/vault/Manifest
@@ -2,8 +2,6 @@ DIST vault-1.5.6-webui.tar.xz 1237168 BLAKE2B 
997a3ef1e297e288d2abf14647667fd07e
 DIST vault-1.5.6.tar.gz 35110596 BLAKE2B 
6e2581b82dfc98f0fd4c807dd24c9e17b4e4c3252ab5744388e17a076d8ed613ea2360f8bf5b975ee5b15d6c7f96100f2b814e290ab47e33c565525ffe1eeda3
 SHA512 
1da2a6f1307583f03298a4199d301536783787ae1d9b16a8b0a4cce55d29a1fd8a1631366a55aa4671d5b7f6fb9108ffe55d9ec9575e887e495a512b00cf9cb3
 DIST vault-1.5.9-webui.tar.xz 1244124 BLAKE2B 
bdd56f3ffc3c1733f9ba3c76be2e6969039dfbf03ba3ced1f9fa69b2622b51d09e18c5a2c1127a5056db54a2a034549d40e3edbba23849276ce15360e3859afb
 SHA512 
5abac5ccaf0c3010327eb79e78b3fe37de89202e998c19457d8782d138e826e2c6e319dca221419977ecc6dbe7477e7778c9d5011ecef5eaa49e53a4485f586e
 DIST vault-1.5.9.tar.gz 35127251 BLAKE2B 
7b2c24f797f0c54672b49a28989e0e465d9a0054f26cfcaf22d030a9f3b25d79b496044bb65a6d4c363b7478a3ca6d8dac1520169d6c347fe75bac3ff6001df6
 SHA512 
de5dfa9cb0ca41514fa5652d2cd3dacc312b1a6d9f2311823a1634dadb6bc4430d8124ac9089dd93f7277ff44f3fee37354b3ae48f8ece839ba859c89655510b
-DIST vault-1.6.1-webui.tar.xz 1277456 BLAKE2B 
7a63f676e4138c9ac0a9e550f5c195a68169c9214c4f232368356ed31e6a873242f069291fa6f56770bd84598333b9d9933da8544651836b04cf91b9c0d6e818
 SHA512 
0ce4fc98c8134d9ce39ce0bf7634b76cad8508d3f19480f32052dd6040a299b80406586d5c7c6d9571a4cced303dbab010b0761599c0fc4fe0d0556365564dc4
-DIST vault-1.6.1.tar.gz 39080880 BLAKE2B 
a66f48c0e7a4edbe9765f7f3e9349ee318415d42ebac9763d48fed4060a3a81613246528339e5cce091dc3ba3ad70062dc5e3b13fce29611a37729a81cf31bc7
 SHA512 
3dd272b5ca6b2858ab9c65a1abcf25bfd01d554c8f8c380ab1384c216bf14f9719ae0947f764cd7a08688899b7e5805e3ce2a96086772035abe54012b5f4ea72
 DIST vault-1.6.5-webui.tar.xz 1273364 BLAKE2B 
3fd23a322f435cc1151c7c7321bd48ddbf5a06e260e77cb51353e5df940a7e7932b7043e914da149664d20e7a10b24771c6c3f1cad0cae035b654f4e206212aa
 SHA512 
cbc433bf101996ff1f800b023664f1a6b9e3473fb2220986724f2019801cbe758a0889f1e9ab8a4fbcda3a6d75e453251a24f1c81228616f6a377100c4e7ae7a
 DIST vault-1.6.5.tar.gz 39136426 BLAKE2B 
ed977f7035b37b801c785c0f63c7338e6ad829de27d50fcc2078bbc008f9cdb0fb399786af62b16d9e85fab57d8a6c22417581b84e902fc3829144548cb41634
 SHA512 
0f5640d376f21d57bf25db0865b4509ef819dd82e950f8c9192188ab3ef1c2477c369049b69a5194e27051b5d8dc523b9760b01eda6568f7348bb782cf6f97c6
 DIST vault-1.7.0-webui.tar.xz 1331492 BLAKE2B 
97c5255b9c8a3ee5814224f236bb7a1ea45200cbbe57996d56bb700c256edcc83d738e2814a02e205a6317d6adbb373565fb4cbe5d01c0592291ac0484b55389
 SHA512 
82b095a40b0fedb7c59ff45fe589f9ec1dbffc0536a3a1bf56b35e1223f9bedb0fdcb75777d27aabcc3bd01e458889b045f766693114d8c989f2ac7dd732aa8b

diff --git a/app-admin/vault/vault-1.6.1.ebuild 
b/app-admin/vault/vault-1.6.1.ebuild
deleted file mode 100644
index d339b69b89e..000
--- a/app-admin/vault/vault-1.6.1.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit fcaps go-module systemd
-
-DESCRIPTION="A tool for managing secrets"
-HOMEPAGE="https://vaultproject.io/;
-VAULT_WEBUI_ARCHIVE="${P}-webui.tar.xz"
-SRC_URI="https://github.com/hashicorp/vault/archive/v${PV}.tar.gz -> 
${P}.tar.gz
-   webui? (
-   https://dev.gentoo.org/~zmedico/dist/${VAULT_WEBUI_ARCHIVE}
-   )"
-
-LICENSE="MPL-2.0 Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+webui"
-
-BDEPEND="dev-go/gox
-   >=dev-lang/go-1.15.3"
-COMMON_DEPEND="acct-group/vault
-   acct-user/vault"
-   DEPEND="${COMMON_DEPEND}"
-   RDEPEND="${COMMON_DEPEND}"
-
-FILECAPS=(
-   -m 755 'cap_ipc_lock=+ep' usr/bin/${PN}
-)
-
-RESTRICT+=" test"
-
-src_prepare() {
-   default
-   # Avoid the need to have a git checkout
-   sed -e 's:^\(GIT_COMMIT=\).*:\1:' \
-   -e 's:^\(GIT_DIRTY=\).*:\1:' \
-   -e s:\'\${GIT_COMMIT}\${GIT_DIRTY}\':: \
-   -i scripts/build.sh || die
-   sed -e "/hooks/d" \
-   -e 's|^\([[:space:]]*\)goimports .*)|\1true|' \
-   -i Makefile || die
-   if [[ -f "${WORKDIR}/http/bindata_assetfs.go" ]]; then
-   mv "${WORKDIR}/http/bindata_assetfs.go" "${S}/http" ||
-   die "mv 

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

2021-06-20 Thread Zac Medico
commit: ac25ddf461c172ba4d9621be08a76106dc66bb0a
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun 21 02:10:16 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 21 02:18:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac25ddf4

app-admin/vault: Bump to version 1.6.5

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

 app-admin/vault/Manifest   | 4 ++--
 app-admin/vault/{vault-1.6.3.ebuild => vault-1.6.5.ebuild} | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/vault/Manifest b/app-admin/vault/Manifest
index e0653ed6d9b..006f485682a 100644
--- a/app-admin/vault/Manifest
+++ b/app-admin/vault/Manifest
@@ -4,7 +4,7 @@ DIST vault-1.5.9-webui.tar.xz 1244124 BLAKE2B 
bdd56f3ffc3c1733f9ba3c76be2e696903
 DIST vault-1.5.9.tar.gz 35127251 BLAKE2B 
7b2c24f797f0c54672b49a28989e0e465d9a0054f26cfcaf22d030a9f3b25d79b496044bb65a6d4c363b7478a3ca6d8dac1520169d6c347fe75bac3ff6001df6
 SHA512 
de5dfa9cb0ca41514fa5652d2cd3dacc312b1a6d9f2311823a1634dadb6bc4430d8124ac9089dd93f7277ff44f3fee37354b3ae48f8ece839ba859c89655510b
 DIST vault-1.6.1-webui.tar.xz 1277456 BLAKE2B 
7a63f676e4138c9ac0a9e550f5c195a68169c9214c4f232368356ed31e6a873242f069291fa6f56770bd84598333b9d9933da8544651836b04cf91b9c0d6e818
 SHA512 
0ce4fc98c8134d9ce39ce0bf7634b76cad8508d3f19480f32052dd6040a299b80406586d5c7c6d9571a4cced303dbab010b0761599c0fc4fe0d0556365564dc4
 DIST vault-1.6.1.tar.gz 39080880 BLAKE2B 
a66f48c0e7a4edbe9765f7f3e9349ee318415d42ebac9763d48fed4060a3a81613246528339e5cce091dc3ba3ad70062dc5e3b13fce29611a37729a81cf31bc7
 SHA512 
3dd272b5ca6b2858ab9c65a1abcf25bfd01d554c8f8c380ab1384c216bf14f9719ae0947f764cd7a08688899b7e5805e3ce2a96086772035abe54012b5f4ea72
-DIST vault-1.6.3-webui.tar.xz 1273812 BLAKE2B 
e86d36c98919c5a33b3a9a58bd6a5c042c62c1e12a62762e22928b516b200b7e2e3f4a394cf80d65b1c6a847f70b5b80ff042d6a55a3753df9e0471183a80e3a
 SHA512 
f113bbab76799791b0c64bf8cf169a9da4841377ea38589044ad022e564c2e2a3b5a0233b9ab14c06b8a92747ac36d1f91f77b484e49b953519760d743ab6482
-DIST vault-1.6.3.tar.gz 39092957 BLAKE2B 
8b421f5d8f81d00ed7bf3380ec6192984ad7a3cd8f3f98bfcd76729874b2a2121785cfd2b27497e54414ebe1481cef35f1cf2be8472bc50aa0a3278a2f7747ff
 SHA512 
ff8e1aa43ea0703327ab0a175460304c95a172512763cf63d8f1fe584d31e90650ff254e572a6a6b8e230ff181d85a2f042f4f7e1881ba9e1d5897c6de8e8dee
+DIST vault-1.6.5-webui.tar.xz 1273364 BLAKE2B 
3fd23a322f435cc1151c7c7321bd48ddbf5a06e260e77cb51353e5df940a7e7932b7043e914da149664d20e7a10b24771c6c3f1cad0cae035b654f4e206212aa
 SHA512 
cbc433bf101996ff1f800b023664f1a6b9e3473fb2220986724f2019801cbe758a0889f1e9ab8a4fbcda3a6d75e453251a24f1c81228616f6a377100c4e7ae7a
+DIST vault-1.6.5.tar.gz 39136426 BLAKE2B 
ed977f7035b37b801c785c0f63c7338e6ad829de27d50fcc2078bbc008f9cdb0fb399786af62b16d9e85fab57d8a6c22417581b84e902fc3829144548cb41634
 SHA512 
0f5640d376f21d57bf25db0865b4509ef819dd82e950f8c9192188ab3ef1c2477c369049b69a5194e27051b5d8dc523b9760b01eda6568f7348bb782cf6f97c6
 DIST vault-1.7.0-webui.tar.xz 1331492 BLAKE2B 
97c5255b9c8a3ee5814224f236bb7a1ea45200cbbe57996d56bb700c256edcc83d738e2814a02e205a6317d6adbb373565fb4cbe5d01c0592291ac0484b55389
 SHA512 
82b095a40b0fedb7c59ff45fe589f9ec1dbffc0536a3a1bf56b35e1223f9bedb0fdcb75777d27aabcc3bd01e458889b045f766693114d8c989f2ac7dd732aa8b
 DIST vault-1.7.0.tar.gz 39285782 BLAKE2B 
539c138625a2a8861e32f65f4da6b566427884ef1ef5d1850efcb9d8176d34c1b2e51a7fe68c70737e451a2bef9cd493c695c1b200c1ebc83826ecd566d34550
 SHA512 
08a0cc7762b83218a38dc741121771a3c58c9914bef3fee70a76cd773aea352402aa9f8eaad39a8b1695bdd900ea53d00c1535d27d3d8f39036293751fe48521

diff --git a/app-admin/vault/vault-1.6.3.ebuild 
b/app-admin/vault/vault-1.6.5.ebuild
similarity index 100%
rename from app-admin/vault/vault-1.6.3.ebuild
rename to app-admin/vault/vault-1.6.5.ebuild



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

2021-06-20 Thread Zac Medico
commit: 5922a1dcfd112a6afbc0e2959f229d887534e81b
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun 21 01:42:53 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 21 02:07:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5922a1dc

app-admin/vault: Bump to version 1.5.9

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

 app-admin/vault/Manifest   | 4 ++--
 app-admin/vault/{vault-1.5.7.ebuild => vault-1.5.9.ebuild} | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/vault/Manifest b/app-admin/vault/Manifest
index a7fee8c3969..e0653ed6d9b 100644
--- a/app-admin/vault/Manifest
+++ b/app-admin/vault/Manifest
@@ -1,7 +1,7 @@
 DIST vault-1.5.6-webui.tar.xz 1237168 BLAKE2B 
997a3ef1e297e288d2abf14647667fd07ebd2e9c6389aad90e3c8fe4d66b5e77004ad07575c6a48d38eb1a4e4040af6cf341edc17bbe87a575a31e06f91449aa
 SHA512 
afed06fe9866dd24ea925e49e2ebdb477ef40dd8ea0137fec1f8a86e17cbe5679ef23a9d9a248ce4de8a21392c96d50f47487c5a866f45ad7317c6cbfc1a5fda
 DIST vault-1.5.6.tar.gz 35110596 BLAKE2B 
6e2581b82dfc98f0fd4c807dd24c9e17b4e4c3252ab5744388e17a076d8ed613ea2360f8bf5b975ee5b15d6c7f96100f2b814e290ab47e33c565525ffe1eeda3
 SHA512 
1da2a6f1307583f03298a4199d301536783787ae1d9b16a8b0a4cce55d29a1fd8a1631366a55aa4671d5b7f6fb9108ffe55d9ec9575e887e495a512b00cf9cb3
-DIST vault-1.5.7-webui.tar.xz 1233708 BLAKE2B 
f270871593b0c205d336efd886f7019c36099ab2e3e3a1a85bff6143a22a71b15c0350ffcd26f602ffc391f266bc5484a3948f9621c50b7aacfcd268436da752
 SHA512 
1047de18678215cceef8da5b07e5625a85f343ef23ef77b159624a1a12b2ae08552f59dbe43941177b3734a534e7cd44755ce42009d35cbdccca52fb2ec7e861
-DIST vault-1.5.7.tar.gz 35115545 BLAKE2B 
659388d1d923dc7c36a2d88b0f061f8b8a94a9944efd159f63f870ff6935cab1fd5230ed9e05043dbf649f7d1c0b999bcd3741d59f3b2a1576713d86d6e5d639
 SHA512 
06e8fc86e2930d032b44764f6b7e4540d466513e4f99411a1a1b70b8906bad26454619622778d369b8b7325d797566d07591eafbe839523151e96e05689c158c
+DIST vault-1.5.9-webui.tar.xz 1244124 BLAKE2B 
bdd56f3ffc3c1733f9ba3c76be2e6969039dfbf03ba3ced1f9fa69b2622b51d09e18c5a2c1127a5056db54a2a034549d40e3edbba23849276ce15360e3859afb
 SHA512 
5abac5ccaf0c3010327eb79e78b3fe37de89202e998c19457d8782d138e826e2c6e319dca221419977ecc6dbe7477e7778c9d5011ecef5eaa49e53a4485f586e
+DIST vault-1.5.9.tar.gz 35127251 BLAKE2B 
7b2c24f797f0c54672b49a28989e0e465d9a0054f26cfcaf22d030a9f3b25d79b496044bb65a6d4c363b7478a3ca6d8dac1520169d6c347fe75bac3ff6001df6
 SHA512 
de5dfa9cb0ca41514fa5652d2cd3dacc312b1a6d9f2311823a1634dadb6bc4430d8124ac9089dd93f7277ff44f3fee37354b3ae48f8ece839ba859c89655510b
 DIST vault-1.6.1-webui.tar.xz 1277456 BLAKE2B 
7a63f676e4138c9ac0a9e550f5c195a68169c9214c4f232368356ed31e6a873242f069291fa6f56770bd84598333b9d9933da8544651836b04cf91b9c0d6e818
 SHA512 
0ce4fc98c8134d9ce39ce0bf7634b76cad8508d3f19480f32052dd6040a299b80406586d5c7c6d9571a4cced303dbab010b0761599c0fc4fe0d0556365564dc4
 DIST vault-1.6.1.tar.gz 39080880 BLAKE2B 
a66f48c0e7a4edbe9765f7f3e9349ee318415d42ebac9763d48fed4060a3a81613246528339e5cce091dc3ba3ad70062dc5e3b13fce29611a37729a81cf31bc7
 SHA512 
3dd272b5ca6b2858ab9c65a1abcf25bfd01d554c8f8c380ab1384c216bf14f9719ae0947f764cd7a08688899b7e5805e3ce2a96086772035abe54012b5f4ea72
 DIST vault-1.6.3-webui.tar.xz 1273812 BLAKE2B 
e86d36c98919c5a33b3a9a58bd6a5c042c62c1e12a62762e22928b516b200b7e2e3f4a394cf80d65b1c6a847f70b5b80ff042d6a55a3753df9e0471183a80e3a
 SHA512 
f113bbab76799791b0c64bf8cf169a9da4841377ea38589044ad022e564c2e2a3b5a0233b9ab14c06b8a92747ac36d1f91f77b484e49b953519760d743ab6482

diff --git a/app-admin/vault/vault-1.5.7.ebuild 
b/app-admin/vault/vault-1.5.9.ebuild
similarity index 100%
rename from app-admin/vault/vault-1.5.7.ebuild
rename to app-admin/vault/vault-1.5.9.ebuild



[gentoo-commits] repo/proj/guru:dev commit in: dev-R/dplyr/

2021-06-20 Thread Alessandro Barbieri
commit: fccd73ca2c42f0726b404947687c3369500fe9c6
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon Jun 21 01:59:05 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon Jun 21 01:59:05 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fccd73ca

dev-R/dplyr: add 1.0.7, drop 1.0.6

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-R/dplyr/Manifest   | 2 +-
 dev-R/dplyr/{dplyr-1.0.6.ebuild => dplyr-1.0.7.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-R/dplyr/Manifest b/dev-R/dplyr/Manifest
index e11698a2b..b88ac88db 100644
--- a/dev-R/dplyr/Manifest
+++ b/dev-R/dplyr/Manifest
@@ -1 +1 @@
-DIST dplyr_1.0.6.tar.gz 954401 BLAKE2B 
02b5fd32ead06504ad69b074bdc0ed6d105d3655a16420aec6a0397e9a4ef77e7d0318af199ca98a333fcd3d3a6cbe37e55be651023fcc130d1affbc47a09aa5
 SHA512 
e09f5c3b5e215926f7c96eeb705e79db73eae147f557c386bc18e47f0407bac4c1c795c842aa1e152707ae3f2d7de21f8e9984ea9fc9a59addb1cb04a6f65d89
+DIST dplyr_1.0.7.tar.gz 852103 BLAKE2B 
ac55fe28188e5e5e8abc1a4a282af889be0e0df6b3a372f0b22bbbeda2f913ba87a13a5d9e0087135fa58975f524bb3248c71cb6887cb5c2c7611304f888f78e
 SHA512 
a81765c414476fdf8a991b487ec0bbd98aaee6f2fd082e3969eb04b7ee4c658a3eb0997dcfef9c743343ade6220f2ea102887cc058c881da249480a5203cde57

diff --git a/dev-R/dplyr/dplyr-1.0.6.ebuild b/dev-R/dplyr/dplyr-1.0.7.ebuild
similarity index 100%
rename from dev-R/dplyr/dplyr-1.0.6.ebuild
rename to dev-R/dplyr/dplyr-1.0.7.ebuild



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

2021-06-20 Thread Sam James
commit: a08c8635572f9b5dd90a4a83af02740687731e43
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 21 00:10:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 21 00:41:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a08c8635

media-libs/portaudio: add 19.07.00

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

 media-libs/portaudio/portaudio-19.07.00.ebuild | 75 ++
 1 file changed, 75 insertions(+)

diff --git a/media-libs/portaudio/portaudio-19.07.00.ebuild 
b/media-libs/portaudio/portaudio-19.07.00.ebuild
new file mode 100644
index 000..7555dcdbcff
--- /dev/null
+++ b/media-libs/portaudio/portaudio-19.07.00.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools multilib-minimal
+
+DESCRIPTION="A free, cross-platform, open-source, audio I/O library"
+HOMEPAGE="http://www.portaudio.com/;
+SRC_URI="http://www.portaudio.com/archives/pa_stable_v190600_20161030.tgz
+   
https://sources.debian.org/data/main/p/portaudio19/19.6.0-1/debian/patches/audacity-portmixer.patch
 -> ${PN}-19.06.00-audacity-portmixer.patch"
+S="${WORKDIR}/${PN}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+IUSE="alsa +cxx debug doc jack oss static-libs"
+
+RDEPEND="alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )
+   jack? ( virtual/jack[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   doc? ( app-doc/doxygen )
+   virtual/pkgconfig
+"
+
+DOCS=( README.txt )
+
+PATCHES=(
+   "${DISTDIR}/${PN}-19.06.00-audacity-portmixer.patch"
+   "${FILESDIR}"/${PN}-19.06.00-AR.patch # bug #720966, trigger reconf
+   "${FILESDIR}"/${PN}-19.06.00-slibtool.patch
+)
+
+src_prepare() {
+   default
+
+   eautoconf
+}
+
+multilib_src_configure() {
+   local myeconfargs=(
+   $(use_enable debug debug-output)
+   $(use_enable cxx)
+   $(use_enable static-libs static)
+   $(use_with alsa)
+   $(use_with jack)
+   $(use_with oss)
+   )
+
+   ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_compile() {
+   # workaround parallel build issue
+   emake lib/libportaudio.la
+   emake
+}
+
+src_compile() {
+   multilib-minimal_src_compile
+
+   if use doc; then
+   doxygen -u Doxyfile || die
+   doxygen Doxyfile || die
+   fi
+}
+
+multilib_src_install_all() {
+   default
+
+   use doc && dodoc -r doc/html
+
+   find "${ED}" -name "*.la" -delete || die
+}



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

2021-06-20 Thread Zac Medico
commit: 59f7e91792a8e19d80d70b5d82c388ef26151fe0
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun 21 00:37:48 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 21 00:37:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59f7e917

dev-lang/starlark-rust: Remove unnecessary unset from src_test

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

 dev-lang/starlark-rust/starlark-rust-0.4.0.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-lang/starlark-rust/starlark-rust-0.4.0.ebuild 
b/dev-lang/starlark-rust/starlark-rust-0.4.0.ebuild
index 9b5109aeab2..6edd58cd132 100644
--- a/dev-lang/starlark-rust/starlark-rust-0.4.0.ebuild
+++ b/dev-lang/starlark-rust/starlark-rust-0.4.0.ebuild
@@ -185,7 +185,6 @@ src_prepare() {
 
 src_test() {
source "${FILESDIR}/test/features.bash" || die
-   unset -f test_features
test-features_main "${PWD}/target/release/starlark" || die
 }
 



[gentoo-commits] repo/gentoo:master commit in: dev-lang/starlark-rust/, dev-lang/starlark-rust/files/test/

2021-06-20 Thread Zac Medico
commit: 372d3fe6ab0afb0248190a23b6a1bd270617978d
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Jun 20 21:17:50 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 21 00:35:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=372d3fe6

dev-lang/starlark-rust: Add feature tests to src_test

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

 dev-lang/starlark-rust/files/test/features.bash   | 193 ++
 dev-lang/starlark-rust/starlark-rust-0.4.0.ebuild |   7 +-
 2 files changed, 199 insertions(+), 1 deletion(-)

diff --git a/dev-lang/starlark-rust/files/test/features.bash 
b/dev-lang/starlark-rust/files/test/features.bash
new file mode 100644
index 000..1fd74e3326e
--- /dev/null
+++ b/dev-lang/starlark-rust/files/test/features.bash
@@ -0,0 +1,193 @@
+#!/usr/bin/env bash
+
+# shellcheck disable=SC2034
+STARLARK_RUST_EXPECTED_functions=(
+   any
+   dir
+   fail
+   getattr
+   hasattr
+   hash
+   len
+   max
+   min
+   print
+   range
+   repr
+   reversed
+   sorted
+   type
+   zip
+)
+
+# shellcheck disable=SC2034
+STARLARK_RUST_EXPECTED_types=(
+   bool
+   int
+   list
+   str
+   tuple
+   dict
+)
+
+# shellcheck disable=SC2034
+STARLARK_RUST_EXPECTED_dict_methods=(
+   clear
+   get
+   items
+   keys
+   pop
+   popitem
+   setdefault
+   update
+   values
+)
+
+# shellcheck disable=SC2034
+STARLARK_RUST_EXPECTED_list_methods=(
+   append
+   clear
+   extend
+   index
+   insert
+   pop
+   remove
+)
+
+# shellcheck disable=SC2034
+STARLARK_RUST_EXPECTED_str_methods=(
+   capitalize
+   count
+   elems
+   endswith
+   find
+   format
+   index
+   isalnum
+   isalpha
+   isdigit
+   islower
+   isspace
+   istitle
+   isupper
+   join
+   lower
+   lstrip
+   partition
+   replace
+   rfind
+   rindex
+   rpartition
+   rsplit
+   rstrip
+   split
+   splitlines
+   startswith
+   strip
+   title
+   upper
+)
+
+_test-features_execute-test() {
+   local error_msg test_title=$1 test_stdin=$2 exp_stdout=$3 exp_stderr=$4 
exp_exitcode=$5
+   ebegin "$test_title"
+   error_msg=$(
+   stderr_file=$(mktemp) || exit
+   cleanup() { rm -f "$stderr_file"; }
+   trap cleanup EXIT
+
+   test_stdout=$("$starlark_binary" -i --json <<< "$test_stdin" 
2>"$stderr_file")
+   test_exitcode=$?
+
+   if (( test_exitcode != exp_exitcode )); then
+   echo "unexpected exit code \"$test_exitcode\", expected 
exit code \"$exp_exitcode\" for test_stdin: $test_stdin"
+   exit 1
+   elif [[ "$test_stdout" != "$exp_stdout" ]]; then
+   echo "unexpected stdout \"$test_stdout\", expected 
stdout \"$exp_stdout\" for test_stdin: $test_stdin"
+   exit 1
+   elif [[ $(< "$stderr_file") != "$exp_stderr" ]]; then
+   echo "unexpected stderr \"$(< "$stderr_file")\", 
expected stderr \"$exp_stderr\" for test_stdin: $test_stdin"
+   exit 1
+   fi
+   exit 0
+   )
+   eend $? "$error_msg"
+
+   # shellcheck disable=SC2015
+   [[ $error_msg ]] && failures+=("$error_msg") || (( successes += 1 ))
+}
+
+test-features_main() {
+   local starlark_binary=$1
+   local failures=() successes=0
+   local banner_width=45
+
+   local attr attr_type test_case
+   for attr_type in function type; do
+   printf -- '\n\n' >&2
+   printf -- '%s\n' "Checking for existence of expected 
${attr_type}s" >&2
+   eval "printf -- '=%.0s' {1..${banner_width}}" >&2
+   echo >&2
+   while read -r attr; do
+   test_case=(
+   "$attr"
+   "$attr and print('$attr exists')"
+   "$attr exists"
+   ""
+   0
+   )
+   _test-features_execute-test "${test_case[@]}"
+   done < <(eval "printf -- '%s\n' 
\"\${STARLARK_RUST_EXPECTED_${attr_type}s[@]}\"")
+   done
+
+   local attr attr_type test_case type_literal
+   for attr_type in dict list str; do
+   printf -- '\n\n' >&2
+   printf -- '%s\n' "Checking ${attr_type} built-in methods" >&2
+   eval "printf -- '=%.0s' {1..${banner_width}}" >&2
+   echo >&2
+
+   case $attr_type in
+   str)
+   type_literal='""'
+   ;;
+   *)
+

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

2021-06-20 Thread Thomas Deutschmann
commit: 5484b21ca35d648b6c92b4f6cbf5f460268ae3c3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jun 21 00:26:33 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jun 21 00:26:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5484b21c

media-sound/pulseaudio: fix building with USE=-glib

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

 ...dio-14.99.2-require-GIO-for-RTP-GStreamer.patch | 36 ++
 .../pulseaudio/pulseaudio-14.99.2_pre.ebuild   |  2 ++
 2 files changed, 38 insertions(+)

diff --git 
a/media-sound/pulseaudio/files/pulseaudio-14.99.2-require-GIO-for-RTP-GStreamer.patch
 
b/media-sound/pulseaudio/files/pulseaudio-14.99.2-require-GIO-for-RTP-GStreamer.patch
new file mode 100644
index 000..dfce2488156
--- /dev/null
+++ 
b/media-sound/pulseaudio/files/pulseaudio-14.99.2-require-GIO-for-RTP-GStreamer.patch
@@ -0,0 +1,36 @@
+From fe25df45d5742f20a225e9d9cd790156a7f05943 Mon Sep 17 00:00:00 2001
+From: "Igor V. Kovalenko" 
+Date: Mon, 21 Jun 2021 02:32:41 +0300
+Subject: [PATCH] build-sys: meson: require GIO dependency for RTP-GStreamer
+
+---
+ meson.build | 6 --
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/meson.build b/meson.build
+index fdd8bf655..61660b981 100644
+--- a/meson.build
 b/meson.build
+@@ -614,8 +614,9 @@ if dbus_dep.found()
+   cdata.set('HAVE_DBUS', 1)
+ endif
+ 
+-gio_dep = dependency('gio-2.0', version : '>= 2.26.0', required : 
get_option('gsettings'))
+-if gio_dep.found()
++gio_dep = dependency('gio-2.0', version : '>= 2.26.0')
++if get_option('gsettings').enabled()
++  assert(gio_dep.found(), 'GSettings support needs glib I/O library (GIO)')
+   cdata.set('HAVE_GSETTINGS', 1)
+ endif
+ 
+@@ -760,6 +761,7 @@ gstrtp_dep = dependency('gstreamer-rtp-1.0', required : 
get_option('gstreamer'))
+ 
+ have_gstreamer = false
+ if gst_dep.found() and gstapp_dep.found() and gstrtp_dep.found()
++  assert(gio_dep.found(), 'GStreamer-based RTP needs glib I/O library (GIO)')
+   have_gstreamer = true
+ endif
+ 
+-- 
+GitLab
+

diff --git a/media-sound/pulseaudio/pulseaudio-14.99.2_pre.ebuild 
b/media-sound/pulseaudio/pulseaudio-14.99.2_pre.ebuild
index aa307be1068..203ebb43b87 100644
--- a/media-sound/pulseaudio/pulseaudio-14.99.2_pre.ebuild
+++ b/media-sound/pulseaudio/pulseaudio-14.99.2_pre.ebuild
@@ -164,6 +164,8 @@ DOCS=( NEWS README )
 
 S="${WORKDIR}/${MY_P}"
 
+PATCHES=( "${FILESDIR}"/${MY_P}-require-GIO-for-RTP-GStreamer.patch )
+
 src_prepare() {
default
 



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

2021-06-20 Thread Sam James
commit: 48fee3364f18941d087ecc2a459ff319a35463b2
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 23:17:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 23:39:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48fee336

dev-ml/facile: add github upstream metadata

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

 dev-ml/facile/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-ml/facile/metadata.xml b/dev-ml/facile/metadata.xml
index e1aa4cafa57..c3a9509486b 100644
--- a/dev-ml/facile/metadata.xml
+++ b/dev-ml/facile/metadata.xml
@@ -9,4 +9,7 @@
k...@gentoo.org
Gentoo KDE Project

+   
+   Emmanuel-PLF/facile
+   
 



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

2021-06-20 Thread Sam James
commit: 9e9ebb72b90be8076aae25554e56644b1086
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 23:14:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 23:39:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e9ebb72

dev-ml/facile: update maintainers (add ml@)

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

 dev-ml/facile/metadata.xml | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-ml/facile/metadata.xml b/dev-ml/facile/metadata.xml
index c4773834c0e..e1aa4cafa57 100644
--- a/dev-ml/facile/metadata.xml
+++ b/dev-ml/facile/metadata.xml
@@ -1,8 +1,12 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+   
+   m...@gentoo.org
+   ML
+   

k...@gentoo.org
Gentoo KDE Project

-   
+



[gentoo-commits] repo/gentoo:master commit in: app-text/lowdown/

2021-06-20 Thread Sam James
commit: f1f6145e622d38cca82e285187b1a3ba311dd511
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 23:39:08 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 23:39:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1f6145e

app-text/lowdown: add missing virtual/libcrypt subslot operator

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

 app-text/lowdown/{lowdown-0.8.4.ebuild => lowdown-0.8.4-r1.ebuild} | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/app-text/lowdown/lowdown-0.8.4.ebuild 
b/app-text/lowdown/lowdown-0.8.4-r1.ebuild
similarity index 96%
rename from app-text/lowdown/lowdown-0.8.4.ebuild
rename to app-text/lowdown/lowdown-0.8.4-r1.ebuild
index dd0f98fee37..b517049ebd4 100644
--- a/app-text/lowdown/lowdown-0.8.4.ebuild
+++ b/app-text/lowdown/lowdown-0.8.4-r1.ebuild
@@ -15,9 +15,7 @@ LICENSE="ISC"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
-DEPEND="
-   virtual/libcrypt
-"
+DEPEND="virtual/libcrypt:="
 RDEPEND="${DEPEND}"
 
 PATCHES=(



[gentoo-commits] repo/gentoo:master commit in: mail-mta/notqmail/

2021-06-20 Thread Joshua Kinard
commit: b710266473145644ef29e96248e974af90ffce22
Author: Joshua Kinard  gentoo  org>
AuthorDate: Sun Jun 20 23:33:40 2021 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Sun Jun 20 23:33:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7102664

mail-mta/notqmail: Added ~mips to KEYWORDS

Bug: https://bugs.gentoo.org/727256
Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.20, Repoman-3.0.3

 mail-mta/notqmail/notqmail-1.08-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-mta/notqmail/notqmail-1.08-r3.ebuild 
b/mail-mta/notqmail/notqmail-1.08-r3.ebuild
index e2dc2632e8d..2e22ea16b1d 100644
--- a/mail-mta/notqmail/notqmail-1.08-r3.ebuild
+++ b/mail-mta/notqmail/notqmail-1.08-r3.ebuild
@@ -19,7 +19,7 @@ if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="https://github.com/notqmail/notqmail.git;
inherit git-r3
 else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 
~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86"

SRC_URI="https://github.com/notqmail/notqmail/releases/download/${P}/${P}.tar.xz;
 fi
 



[gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/heat/, dev-python/ldappool/, dev-python/python-manilaclient/, ...

2021-06-20 Thread Alessandro Barbieri
commit: 71b2c3bba3868b0048215ebc50ebafbd0dfe5f32
Author: Alessandro-Barbieri  gmail  com>
AuthorDate: Sun Jun 20 16:54:58 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Sun Jun 20 23:17:24 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=71b2c3bb

*/*: unstable keywording

Signed-off-by: Alessandro Barbieri  gmail.com>

 app-admin/glance/glance-21.0.0.ebuild | 2 +-
 app-emulation/spice-html5/spice-html5-0.2.1.ebuild| 2 +-
 dev-python/WSME/WSME-0.10.0.ebuild| 2 +-
 dev-python/aodhclient/aodhclient-2.1.1.ebuild | 2 +-
 dev-python/automaton/automaton-2.2.0.ebuild   | 2 +-
 dev-python/castellan/castellan-3.6.0.ebuild   | 2 +-
 dev-python/cursive/cursive-0.2.2-r1.ebuild| 2 +-
 dev-python/futurist/futurist-2.3.0.ebuild | 2 +-
 dev-python/glance_store/glance_store-2.3.0.ebuild | 2 +-
 dev-python/keystonemiddleware/keystonemiddleware-9.1.0.ebuild | 2 +-
 dev-python/ldappool/ldappool-2.4.1.ebuild | 2 +-
 dev-python/microversion-parse/microversion-parse-1.0.1.ebuild | 2 +-
 dev-python/neutron-lib/neutron-lib-2.6.1.ebuild   | 2 +-
 dev-python/os-brick/os-brick-4.0.1-r1.ebuild  | 2 +-
 dev-python/os-ken/os-ken-1.2.0.ebuild | 2 +-
 dev-python/os-resource-classes/os-resource-classes-1.0.0.ebuild   | 2 +-
 dev-python/os-traits/os-traits-2.4.0.ebuild   | 2 +-
 dev-python/os-vif/os-vif-2.2.0.ebuild | 2 +-
 dev-python/os-win/os-win-5.1.0.ebuild | 2 +-
 dev-python/os-xenapi/os-xenapi-0.3.4-r1.ebuild| 2 +-
 dev-python/oslo-cache/oslo-cache-2.6.1.ebuild | 2 +-
 dev-python/oslo-concurrency/oslo-concurrency-4.3.1.ebuild | 2 +-
 dev-python/oslo-db/oslo-db-8.4.0.ebuild   | 2 +-
 dev-python/oslo-messaging/oslo-messaging-12.5.1.ebuild| 2 +-
 dev-python/oslo-middleware/oslo-middleware-4.1.1.ebuild   | 2 +-
 dev-python/oslo-policy/oslo-policy-3.5.0.ebuild   | 2 +-
 dev-python/oslo-privsep/oslo-privsep-2.4.0.ebuild | 2 +-
 dev-python/oslo-reports/oslo-reports-2.2.0.ebuild | 2 +-
 dev-python/oslo-rootwrap/oslo-rootwrap-6.2.0.ebuild   | 2 +-
 dev-python/oslo-service/oslo-service-2.4.0.ebuild | 2 +-
 dev-python/oslo-upgradecheck/oslo-upgradecheck-1.1.1.ebuild   | 2 +-
 dev-python/oslo-versionedobjects/oslo-versionedobjects-2.3.0.ebuild   | 2 +-
 dev-python/oslo-vmware/oslo-vmware-3.7.0.ebuild   | 2 +-
 dev-python/osprofiler/osprofiler-3.4.0.ebuild | 2 +-
 dev-python/ovsdbapp/ovsdbapp-1.5.0.ebuild | 2 +-
 dev-python/pycadf/pycadf-3.1.1.ebuild | 2 +-
 dev-python/pypowervm/pypowervm-1.1.24.ebuild  | 2 +-
 dev-python/pysaml2/pysaml2-6.1.0.ebuild   | 2 +-
 dev-python/python-barbicanclient/python-barbicanclient-5.0.1.ebuild   | 2 +-
 dev-python/python-blazarclient/python-blazarclient-3.1.1.ebuild   | 2 +-
 dev-python/python-designateclient/python-designateclient-4.1.0.ebuild | 2 +-
 dev-python/python-heatclient/python-heatclient-2.2.1.ebuild   | 2 +-
 dev-python/python-magnumclient/python-magnumclient-3.2.1.ebuild   | 2 +-
 dev-python/python-manilaclient/python-manilaclient-2.3.0.ebuild   | 2 +-
 dev-python/python-mistralclient/python-mistralclient-4.1.1.ebuild | 2 +-
 dev-python/python-monascaclient/python-monascaclient-2.2.1.ebuild | 2 +-
 dev-python/python-octaviaclient/python-octaviaclient-2.2.0.ebuild | 2 +-
 dev-python/python-saharaclient/python-saharaclient-3.2.1.ebuild   | 2 +-
 dev-python/python-senlinclient/python-senlinclient-2.1.1.ebuild   | 2 +-
 dev-python/python-troveclient/python-troveclient-5.1.1.ebuild | 2 +-
 dev-python/python-vitrageclient/python-vitrageclient-4.1.1.ebuild | 2 +-
 dev-python/python-zaqarclient/python-zaqarclient-2.0.1.ebuild | 2 +-
 dev-python/python-zunclient/python-zunclient-4.1.1.ebuild | 2 +-
 dev-python/ryu/ryu-4.34.ebuild| 2 +-
 dev-python/taskflow/taskflow-4.5.0.ebuild | 2 +-
 dev-python/tinyrpc/tinyrpc-1.0.1.ebuild   | 2 +-
 dev-python/tooz/tooz-2.7.1.ebuild | 2 +-
 dev-python/yaql/yaql-1.1.3.ebuild | 2 +-
 dev-python/zVMCloudConnector/zVMCloudConnector-1.4.1.ebuild   | 2 +-
 

[gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/openstack-meta/

2021-06-20 Thread Alessandro Barbieri
commit: 2f00d862cd483ab8d0dfef2759aa374fb6190be5
Author: Alessandro-Barbieri  gmail  com>
AuthorDate: Sun Jun 20 03:17:05 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Sun Jun 20 23:17:24 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2f00d862

sys-cluster/openstack-meta: treeclean

Signed-off-by: Alessandro Barbieri  gmail.com>

 sys-cluster/openstack-meta/metadata.xml| 19 
 .../openstack-meta/openstack-meta-2020.1.1.ebuild  | 35 --
 .../openstack-meta/openstack-meta-2020.2.0.ebuild  | 35 --
 3 files changed, 89 deletions(-)

diff --git a/sys-cluster/openstack-meta/metadata.xml 
b/sys-cluster/openstack-meta/metadata.xml
deleted file mode 100644
index c025fe896..0
--- a/sys-cluster/openstack-meta/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-prometheanf...@gentoo.org
-Matthew Thode
-  
-  
-Installs Openstack Keystone
-Installs Openstack Swift
-Installs Openstack Glance
-Installs Openstack Cinder
-Installs Openstack Neutron
-Installs Openstack Nova
-Installs Openstack Heat
-Installs Openstack Placement
-
-  
-

diff --git a/sys-cluster/openstack-meta/openstack-meta-2020.1.1.ebuild 
b/sys-cluster/openstack-meta/openstack-meta-2020.1.1.ebuild
deleted file mode 100644
index d025763fa..0
--- a/sys-cluster/openstack-meta/openstack-meta-2020.1.1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A openstack meta-package for installing the various openstack 
pieces"
-HOMEPAGE="https://openstack.org;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="cinder glance heat keystone neutron nova placement swift"
-
-if [[ ${PV} != * ]];then
-   KEYWORDS="~amd64 ~arm64 ~x86"
-fi
-
-DEPEND=""
-RDEPEND="
-   keystone? ( >=sys-auth/keystone-17.0.0
-   
=sys-cluster/swift-2.25.0
-   =sys-cluster/neutron-16.0.0
-   =app-admin/glance-20.0.0
-   =sys-cluster/cinder-16.0.0
-   =sys-cluster/nova-21.0.0
-   =sys-cluster/heat-14.0.0
-   =sys-cluster/placement-3.0.0
-   
https://openstack.org;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="cinder glance heat keystone neutron nova placement swift"
-
-if [[ ${PV} != * ]];then
-   KEYWORDS="~amd64 ~arm64 ~x86"
-fi
-
-DEPEND=""
-RDEPEND="
-   keystone? ( >=sys-auth/keystone-18.0.0
-   
=sys-cluster/swift-2.26.0
-   =sys-cluster/neutron-17.0.0
-   =app-admin/glance-21.0.0
-   =sys-cluster/cinder-17.0.0
-   =sys-cluster/nova-22.0.0
-   =sys-cluster/heat-15.0.0
-   =sys-cluster/placement-4.0.0
-   


[gentoo-commits] repo/proj/guru:dev commit in: dev-python/microversion-parse/, dev-python/futurist/, ...

2021-06-20 Thread Alessandro Barbieri
commit: 92e5ebb222a367cf87b875f1cd14d15683e9872d
Author: Alessandro-Barbieri  gmail  com>
AuthorDate: Sun Jun 20 16:43:40 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Sun Jun 20 23:17:24 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=92e5ebb2

*/*: remove old maintainers from metadata

Signed-off-by: Alessandro Barbieri  gmail.com>

 app-emulation/spice-html5/metadata.xml | 13 +
 dev-python/aodhclient/metadata.xml |  9 +
 dev-python/automaton/metadata.xml  |  5 +
 dev-python/castellan/metadata.xml  |  5 +
 dev-python/futurist/metadata.xml   |  5 +
 dev-python/glance_store/metadata.xml   |  9 +
 dev-python/ldappool/metadata.xml   |  9 +
 dev-python/microversion-parse/metadata.xml |  9 +
 dev-python/neutron-lib/metadata.xml|  5 +
 dev-python/os-brick/metadata.xml   |  5 +
 dev-python/os-ken/metadata.xml |  5 +
 dev-python/os-resource-classes/metadata.xml|  5 +
 dev-python/os-traits/metadata.xml  |  5 +
 dev-python/os-vif/metadata.xml |  5 +
 dev-python/os-win/metadata.xml |  5 +
 dev-python/os-xenapi/metadata.xml  |  5 +
 dev-python/oslo-cache/metadata.xml |  5 +
 dev-python/oslo-db/metadata.xml|  9 +
 dev-python/oslo-reports/metadata.xml   |  5 +
 dev-python/oslo-service/metadata.xml   |  5 +
 dev-python/oslo-upgradecheck/metadata.xml  |  9 +
 dev-python/oslo-versionedobjects/metadata.xml  |  5 +
 dev-python/osprofiler/metadata.xml |  9 +
 dev-python/ovsdbapp/metadata.xml   |  8 +---
 dev-python/pypowervm/metadata.xml  |  5 +
 dev-python/pysaml2/metadata.xml|  9 +
 dev-python/python-barbicanclient/metadata.xml  |  9 +
 dev-python/python-blazarclient/metadata.xml|  8 +---
 dev-python/python-designateclient/metadata.xml |  5 +
 dev-python/python-magnumclient/metadata.xml|  9 +
 dev-python/python-manilaclient/metadata.xml|  9 +
 dev-python/python-octaviaclient/metadata.xml   |  8 +---
 dev-python/python-senlinclient/metadata.xml|  9 +
 dev-python/python-vitrageclient/metadata.xml   |  8 +---
 dev-python/python-zaqarclient/metadata.xml |  9 +
 dev-python/python-zunclient/metadata.xml   |  8 +---
 dev-python/ryu/metadata.xml|  5 +
 dev-python/tinyrpc/metadata.xml|  8 +---
 dev-python/yaql/metadata.xml   |  9 +
 dev-python/zVMCloudConnector/metadata.xml  |  8 +---
 sys-cluster/heat/metadata.xml  |  5 +
 41 files changed, 41 insertions(+), 249 deletions(-)

diff --git a/app-emulation/spice-html5/metadata.xml 
b/app-emulation/spice-html5/metadata.xml
index 4567d53b9..7a38bb900 100644
--- a/app-emulation/spice-html5/metadata.xml
+++ b/app-emulation/spice-html5/metadata.xml
@@ -1,16 +1,5 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   prometheanf...@gentoo.org
-   Matthew Thode
-   
-   
-   openst...@gentoo.org
-   Openstack
-   
-   
-   virtualizat...@gentoo.org
-   Gentoo Virtualization Project
-   
+   
 

diff --git a/dev-python/aodhclient/metadata.xml 
b/dev-python/aodhclient/metadata.xml
index 1397f01bd..3556abe57 100644
--- a/dev-python/aodhclient/metadata.xml
+++ b/dev-python/aodhclient/metadata.xml
@@ -1,14 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   prometheanf...@gentoo.org
-   Matthew Thode
-   
-   
-   openst...@gentoo.org
-   Openstack
-   
+   


python-aodhclient

diff --git a/dev-python/automaton/metadata.xml 
b/dev-python/automaton/metadata.xml
index f3a974768..11c234fbd 100644
--- a/dev-python/automaton/metadata.xml
+++ b/dev-python/automaton/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   prometheanf...@gentoo.org
-   Matthew Thode
-   
+   


automaton

diff --git a/dev-python/castellan/metadata.xml 
b/dev-python/castellan/metadata.xml
index d2f19faab..6fe3a0f7e 100644
--- a/dev-python/castellan/metadata.xml
+++ b/dev-python/castellan/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   prometheanf...@gentoo.org
-   Matthew Thode
-   
+   


castellan

diff --git a/dev-python/futurist/metadata.xml b/dev-python/futurist/metadata.xml
index b289e4ecf..5b3339b66 100644
--- a/dev-python/futurist/metadata.xml
+++ 

[gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/heat/, dev-python/python-blazarclient/, dev-python/futurist/, ...

2021-06-20 Thread Alessandro Barbieri
commit: 0f35e5e83a2b36c4d10078d7893727fa5f62834a
Author: Alessandro-Barbieri  gmail  com>
AuthorDate: Sun Jun 20 16:47:32 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Sun Jun 20 23:17:24 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0f35e5e8

*/*: remove python3_7

Signed-off-by: Alessandro Barbieri  gmail.com>

 app-admin/glance/glance-21.0.0.ebuild | 2 +-
 dev-python/WSME/WSME-0.10.0.ebuild| 2 +-
 dev-python/automaton/automaton-2.2.0.ebuild   | 2 +-
 dev-python/futurist/futurist-2.3.0.ebuild | 2 +-
 dev-python/neutron-lib/neutron-lib-2.6.1.ebuild   | 2 +-
 dev-python/os-brick/os-brick-4.0.1-r1.ebuild  | 2 +-
 dev-python/os-traits/os-traits-2.4.0.ebuild   | 2 +-
 dev-python/oslo-concurrency/oslo-concurrency-4.3.1.ebuild | 2 +-
 dev-python/oslo-messaging/oslo-messaging-12.5.1.ebuild| 2 +-
 dev-python/oslo-policy/oslo-policy-3.5.0.ebuild   | 2 +-
 dev-python/oslo-vmware/oslo-vmware-3.7.0.ebuild   | 2 +-
 dev-python/ovsdbapp/ovsdbapp-1.5.0.ebuild | 2 +-
 dev-python/python-blazarclient/python-blazarclient-3.1.1.ebuild   | 2 +-
 dev-python/python-senlinclient/python-senlinclient-2.1.1.ebuild   | 2 +-
 dev-python/python-vitrageclient/python-vitrageclient-4.1.1.ebuild | 2 +-
 dev-python/python-zunclient/python-zunclient-4.1.1.ebuild | 2 +-
 dev-python/tinyrpc/tinyrpc-1.0.1.ebuild   | 2 +-
 dev-python/zVMCloudConnector/zVMCloudConnector-1.4.1.ebuild   | 2 +-
 sys-auth/keystone/keystone-18.0.0.ebuild  | 2 +-
 sys-cluster/cinder/cinder-17.1.0.ebuild   | 2 +-
 sys-cluster/heat/heat-15.0.0.ebuild   | 2 +-
 sys-cluster/neutron/neutron-17.1.1.ebuild | 2 +-
 sys-cluster/neutron/neutron-17.1.2.ebuild | 2 +-
 sys-cluster/nova/nova-22.2.0.ebuild   | 2 +-
 sys-cluster/nova/nova-22.2.1.ebuild   | 2 +-
 sys-cluster/placement/placement-4.0.0.ebuild  | 2 +-
 sys-cluster/swift/swift-2.26.0.ebuild | 2 +-
 27 files changed, 27 insertions(+), 27 deletions(-)

diff --git a/app-admin/glance/glance-21.0.0.ebuild 
b/app-admin/glance/glance-21.0.0.ebuild
index dc9478899..d270d959e 100644
--- a/app-admin/glance/glance-21.0.0.ebuild
+++ b/app-admin/glance/glance-21.0.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_7 python3_8 )
+PYTHON_COMPAT=( python3_8 )
 DISTUTILS_USE_SETUPTOOLS=rdepend
 inherit distutils-r1
 

diff --git a/dev-python/WSME/WSME-0.10.0.ebuild 
b/dev-python/WSME/WSME-0.10.0.ebuild
index a712fee52..0018a4cfd 100644
--- a/dev-python/WSME/WSME-0.10.0.ebuild
+++ b/dev-python/WSME/WSME-0.10.0.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_7 python3_8 )
+PYTHON_COMPAT=( python3_8 )
 
 inherit distutils-r1
 

diff --git a/dev-python/automaton/automaton-2.2.0.ebuild 
b/dev-python/automaton/automaton-2.2.0.ebuild
index e98047b21..05f42d49c 100644
--- a/dev-python/automaton/automaton-2.2.0.ebuild
+++ b/dev-python/automaton/automaton-2.2.0.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_7 python3_8 )
+PYTHON_COMPAT=( python3_8 )
 
 inherit distutils-r1
 

diff --git a/dev-python/futurist/futurist-2.3.0.ebuild 
b/dev-python/futurist/futurist-2.3.0.ebuild
index 78c48e4fd..caf9c1864 100644
--- a/dev-python/futurist/futurist-2.3.0.ebuild
+++ b/dev-python/futurist/futurist-2.3.0.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_7 python3_8 )
+PYTHON_COMPAT=( python3_8 )
 DISTUTILS_USE_SETUPTOOLS=bdepend
 
 inherit distutils-r1

diff --git a/dev-python/neutron-lib/neutron-lib-2.6.1.ebuild 
b/dev-python/neutron-lib/neutron-lib-2.6.1.ebuild
index 5b7271263..ea3e45e86 100644
--- a/dev-python/neutron-lib/neutron-lib-2.6.1.ebuild
+++ b/dev-python/neutron-lib/neutron-lib-2.6.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_7 python3_8 )
+PYTHON_COMPAT=( python3_8 )
 
 inherit distutils-r1
 

diff --git a/dev-python/os-brick/os-brick-4.0.1-r1.ebuild 
b/dev-python/os-brick/os-brick-4.0.1-r1.ebuild
index dfc56644f..feb532ddc 100644
--- a/dev-python/os-brick/os-brick-4.0.1-r1.ebuild
+++ b/dev-python/os-brick/os-brick-4.0.1-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_7 python3_8 )
+PYTHON_COMPAT=( python3_8 )
 
 inherit distutils-r1
 

diff --git a/dev-python/os-traits/os-traits-2.4.0.ebuild 

[gentoo-commits] repo/proj/guru:dev commit in: dev-R/RcppEnsmallen/

2021-06-20 Thread Alessandro Barbieri
commit: 2c2a87bd3af9346b11fb2dbca3d9fd978cc98dd8
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Sun Jun 20 21:34:53 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Sun Jun 20 23:17:24 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2c2a87bd

dev-R/RcppEnsmallen: unbundle ensmallen

Signed-off-by: Alessandro Barbieri  gmail.com>

 .../RcppEnsmallen/RcppEnsmallen-0.2.15.0.1.ebuild  | 16 +
 dev-R/RcppEnsmallen/metadata.xml   | 42 +++---
 2 files changed, 37 insertions(+), 21 deletions(-)

diff --git a/dev-R/RcppEnsmallen/RcppEnsmallen-0.2.15.0.1.ebuild 
b/dev-R/RcppEnsmallen/RcppEnsmallen-0.2.15.0.1.ebuild
index 5b357cc94..8fc973685 100644
--- a/dev-R/RcppEnsmallen/RcppEnsmallen-0.2.15.0.1.ebuild
+++ b/dev-R/RcppEnsmallen/RcppEnsmallen-0.2.15.0.1.ebuild
@@ -22,3 +22,19 @@ RDEPEND="
dev-R/Rcpp
>=dev-R/RcppArmadillo-0.8.400.0.0
 "
+
+src_prepare() {
+   default
+   #remove bundled
+   rm -r inst/include/ensmallen_bits || die
+   rm inst/include/ensmallen.hpp || die
+   #link to sci-libs/ensmallen
+   dosym /usr/include/ensmallen_bits inst/include/ensmallen_bits
+   dosym /usr/include/ensmallen.hpp inst/include/ensmallen.hpp
+}
+
+src_install() {
+   R-packages_src_install
+   dosym /usr/include/ensmallen_bits 
"/usr/$(get_libdir)/R/site-library/${PN}/include/ensmallen_bits"
+   dosym /usr/include/ensmallen.hpp 
"/usr/$(get_libdir)/R/site-library/${PN}/include/ensmallen.hpp"
+}

diff --git a/dev-R/RcppEnsmallen/metadata.xml b/dev-R/RcppEnsmallen/metadata.xml
index b666d2f18..c3fb57f8e 100644
--- a/dev-R/RcppEnsmallen/metadata.xml
+++ b/dev-R/RcppEnsmallen/metadata.xml
@@ -1,25 +1,25 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   Header-Only C++ Mathematical Optimization Library for 
'Armadillo'
-   // 'Ensmallen' is a templated C++ mathematical optimization
-   library (by the 'MLPACK' team) that provides a simple set of
-   abstractions for writing an objective function to optimize.
-   Provided within are various standard and cutting-edge
-   optimizers that include full-batch gradient descent techniques,
-   small-batch techniques, gradient-free optimizers, and
-   constrained optimization. The 'RcppEnsmallen' package includes
-   the header files from the 'Ensmallen' library and pairs the
-   appropriate header files from 'armadillo' through the
-   'RcppArmadillo' package. Therefore, users do not need to
-   install 'Ensmallen' nor 'Armadillo' to use 'RcppEnsmallen'.
-   Note that 'Ensmallen' is licensed under 3-Clause BSD,
-   'Armadillo' starting from 7.800.0 is licensed under Apache
-   License 2, 'RcppArmadillo' (the 'Rcpp' bindings/bridge to
-   'Armadillo') is licensed under the GNU GPL version 2 or later.
-   Thus, 'RcppEnsmallen' is also licensed under similar terms.
-   Note that 'Ensmallen' requires a compiler that supports 'C++11'
-   and 'Armadillo' 8.400 or later.
-   
+  
+  
+https://github.com/coatless/rcppensmallen/issues
+https://cran.r-project.org/web/packages/RcppEnsmallen/RcppEnsmallen.pdf
+
https://cran.r-project.org/web/packages/RcppEnsmallen/ChangeLog
+
+  James Joseph Balamuta
+  balam...@illinois.edu
+
+coatless/rcppensmallen
+  
+  
+Header-Only C++ Mathematical Optimization Library for 'Armadillo'
+// 'Ensmallen' is a templated C++ mathematical optimization
+library (by the 'MLPACK' team) that provides a simple set of
+abstractions for writing an objective function to optimize.
+Provided within are various standard and cutting-edge
+optimizers that include full-batch gradient descent techniques,
+small-batch techniques, gradient-free optimizers, and
+constrained optimization.
+  
 



[gentoo-commits] repo/proj/guru:dev commit in: dev-R/jsonlite/, dev-R/hunspell/, dev-R/yaml/

2021-06-20 Thread Alessandro Barbieri
commit: ee388108296f52e81543fab0aedca2def4eeb854
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Sun Jun 20 23:13:38 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Sun Jun 20 23:17:24 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ee388108

dev-R/*: add unbundling status

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-R/hunspell/hunspell-3.0.1.ebuild | 2 ++
 dev-R/jsonlite/jsonlite-1.7.2.ebuild | 2 ++
 dev-R/yaml/yaml-2.2.1.ebuild | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/dev-R/hunspell/hunspell-3.0.1.ebuild 
b/dev-R/hunspell/hunspell-3.0.1.ebuild
index e28e606ef..8f3a101c9 100644
--- a/dev-R/hunspell/hunspell-3.0.1.ebuild
+++ b/dev-R/hunspell/hunspell-3.0.1.ebuild
@@ -18,3 +18,5 @@ RDEPEND="
${DEPEND}
>=dev-R/Rcpp-0.12.12
 "
+
+#bundling status: https://github.com/ropensci/hunspell/issues/34

diff --git a/dev-R/jsonlite/jsonlite-1.7.2.ebuild 
b/dev-R/jsonlite/jsonlite-1.7.2.ebuild
index 73feeb6c6..cd51418f9 100644
--- a/dev-R/jsonlite/jsonlite-1.7.2.ebuild
+++ b/dev-R/jsonlite/jsonlite-1.7.2.ebuild
@@ -8,3 +8,5 @@ inherit R-packages
 DESCRIPTION='A Simple and Robust JSON Parser and generator for R'
 KEYWORDS="~amd64"
 LICENSE='MIT'
+
+#unbundling status: https://github.com/jeroen/jsonlite/issues/201

diff --git a/dev-R/yaml/yaml-2.2.1.ebuild b/dev-R/yaml/yaml-2.2.1.ebuild
index 366e634f1..01c4e016c 100644
--- a/dev-R/yaml/yaml-2.2.1.ebuild
+++ b/dev-R/yaml/yaml-2.2.1.ebuild
@@ -9,3 +9,5 @@ DESCRIPTION='Methods to Convert R Data to YAML and Back'
 KEYWORDS="~amd64"
 LICENSE='BSD'
 #TODO: unbundle libyaml
+#status: https://github.com/viking/r-yaml/issues/102
+#https://github.com/viking/r-yaml/commit/b4579dc42cb3bc6c78fedc46b6fa2acfc79932f3



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

2021-06-20 Thread Michał Górny
commit: 256338ad272dfadc771e583d2eb1696adf6f06e6
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun 20 23:00:29 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun 20 23:00:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=256338ad

dev-python/pyproject2setuppy: Remove old

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

 dev-python/pyproject2setuppy/Manifest  |  1 -
 .../pyproject2setuppy/pyproject2setuppy-14.ebuild  | 30 --
 2 files changed, 31 deletions(-)

diff --git a/dev-python/pyproject2setuppy/Manifest 
b/dev-python/pyproject2setuppy/Manifest
index 597740ea3a8..c995193ce3c 100644
--- a/dev-python/pyproject2setuppy/Manifest
+++ b/dev-python/pyproject2setuppy/Manifest
@@ -1,3 +1,2 @@
-DIST pyproject2setuppy-14.tar.gz 10669 BLAKE2B 
ee4fac31546455ac3144f4989dd4260d876a7b8bd749bb34b210e5fc0194fb6347f9b5e7ebc9aa1374b4e4e5e4f22d260923097a58b47b5b940c69ec77f3b5b1
 SHA512 
46bbe31460195ca7df2c7e707772a430ccdbabf264a26f54d98101d08031d302343a6299a8e20d7be3d7984c48ad095dae942bf4da085285f61e2900a501245a
 DIST pyproject2setuppy-15.tar.gz 11796 BLAKE2B 
7fd7176fa611e293d35db0cb91a029c0896921947252ffba51ba25599fab5ebe7d4a5c2f65593ec83bfcc180983de6e2022053bcaa3583c3f6cce9640e57c5f6
 SHA512 
dee048eed352ebf178981fdf9fd69143a72658d9161e2d65257001b3ee6773bb7040d12145e79496cf141cdf86aa5e5eeaf4de7023c4e721a3d978f9eb267374
 DIST pyproject2setuppy-16.tar.gz 11902 BLAKE2B 
13b9188d46064644ec5c549bdfaceef1a3df2da0d333cec37e593231cdcbf9277c81b32a95a2d2355a995feaec605bb0bb4610e51b1c06c1c3b50b3c9a73e1ca
 SHA512 
e8e13644e5c88cfcc9f06ee9ece5c715ac1917d1eac9ba0d7a68a71d78ce84f50229890442c5c41e766083c302ae59f67bd20736e502615006cf35c41c2d3a9c

diff --git a/dev-python/pyproject2setuppy/pyproject2setuppy-14.ebuild 
b/dev-python/pyproject2setuppy/pyproject2setuppy-14.ebuild
deleted file mode 100644
index c8e912120f4..000
--- a/dev-python/pyproject2setuppy/pyproject2setuppy-14.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=manual
-PYTHON_COMPAT=( python3_{7..10} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Cheap setup.py hack to install flit & poetry-based projects"
-HOMEPAGE="https://github.com/mgorny/pyproject2setuppy;
-SRC_URI="
-   https://github.com/mgorny/pyproject2setuppy/archive/v${PV}.tar.gz
-   -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~x64-macos"
-
-RDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/toml[${PYTHON_USEDEP}]"
-BDEPEND="${RDEPEND}
-   test? (
-   dev-python/pytest-forked[${PYTHON_USEDEP}]
-   dev-python/wheel[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/, profiles/base/

2021-06-20 Thread Michał Górny
commit: 076467c485c711d11e65793d22e6a924257a87c0
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun 20 21:23:28 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun 20 22:59:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=076467c4

dev-python/patsy: Disable broken USE=doc (requires py2)

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

 dev-python/patsy/patsy-0.5.1.ebuild | 23 +++
 profiles/base/package.use.mask  |  1 -
 2 files changed, 3 insertions(+), 21 deletions(-)

diff --git a/dev-python/patsy/patsy-0.5.1.ebuild 
b/dev-python/patsy/patsy-0.5.1.ebuild
index a652931b88a..39d9848be72 100644
--- a/dev-python/patsy/patsy-0.5.1.ebuild
+++ b/dev-python/patsy/patsy-0.5.1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_COMPAT=( python3_{8..9} )
 
 inherit distutils-r1
 
@@ -13,28 +13,11 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc"
 
 RDEPEND="
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
dev-python/scipy[${PYTHON_USEDEP}]
-   "
-BDEPEND="
-   doc? (
-   dev-python/ipython[${PYTHON_USEDEP}]
-   dev-python/matplotlib[${PYTHON_USEDEP}]
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/pandas[${PYTHON_USEDEP}]
-   )"
+"
 
 distutils_enable_tests nose
-
-python_compile_all() {
-   use doc && emake -C doc html
-}
-
-python_install_all() {
-   use doc && HTML_DOCS=( doc/_build/html/. )
-   distutils-r1_python_install_all
-}

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 4e160ad986a..70aee46139c 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -261,7 +261,6 @@ app-emulation/aranym jit
 dev-python/matplotlib doc
 dev-python/pandas doc
 dev-python/pandas-datareader doc
-dev-python/patsy doc
 dev-python/statsmodels doc
 
 # Haelwenn (lanodan) Monnier  (2019-12-01)



[gentoo-commits] repo/gentoo:master commit in: dev-python/toolz/, dev-python/toolz/files/

2021-06-20 Thread Michał Górny
commit: d79035bd10b11df363568d9b6d01ed87157ec385
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun 20 21:13:12 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun 20 22:59:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d79035bd

dev-python/toolz: Enable py3.10

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

 dev-python/toolz/files/toolz-0.11.1-py310.patch | 25 +
 dev-python/toolz/toolz-0.11.1.ebuild|  8 ++--
 2 files changed, 31 insertions(+), 2 deletions(-)

diff --git a/dev-python/toolz/files/toolz-0.11.1-py310.patch 
b/dev-python/toolz/files/toolz-0.11.1-py310.patch
new file mode 100644
index 000..d926f3457ab
--- /dev/null
+++ b/dev-python/toolz/files/toolz-0.11.1-py310.patch
@@ -0,0 +1,25 @@
+From da81b1e8ab96b22ed81e6414099aba066633f3ff Mon Sep 17 00:00:00 2001
+From: Erik Welch 
+Date: Thu, 22 Apr 2021 00:20:24 -0500
+Subject: [PATCH] Support Python 3.10 by adding `anext` signature.
+
+Fixes #512
+---
+ .travis.yml  | 3 ++-
+ toolz/_signatures.py | 3 +++
+ 2 files changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/toolz/_signatures.py b/toolz/_signatures.py
+index 328cea91..3ce1616a 100644
+--- a/toolz/_signatures.py
 b/toolz/_signatures.py
+@@ -45,6 +45,9 @@
+ lambda x: None],
+ all=[
+ lambda iterable: None],
++anext=[
++lambda aiterator: None,
++lambda aiterator, default: None],
+ any=[
+ lambda iterable: None],
+ apply=[

diff --git a/dev-python/toolz/toolz-0.11.1.ebuild 
b/dev-python/toolz/toolz-0.11.1.ebuild
index 5e86ca53155..5ba2982613f 100644
--- a/dev-python/toolz/toolz-0.11.1.ebuild
+++ b/dev-python/toolz/toolz-0.11.1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1
 
@@ -18,3 +18,7 @@ BDEPEND="
dev-python/versioneer[${PYTHON_USEDEP}]"
 
 distutils_enable_tests pytest
+
+PATCHES=(
+   "${FILESDIR}"/${P}-py310.patch
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/, dev-python/patsy/files/

2021-06-20 Thread Michał Górny
commit: 6f4144fd5147726b242b24daddab66fd72c9146d
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun 20 21:29:39 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun 20 22:59:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f4144fd

dev-python/patsy: Enable py3.10

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

 dev-python/patsy/files/patsy-0.5.1-py310.patch | 39 ++
 dev-python/patsy/patsy-0.5.1.ebuild|  6 +++-
 2 files changed, 44 insertions(+), 1 deletion(-)

diff --git a/dev-python/patsy/files/patsy-0.5.1-py310.patch 
b/dev-python/patsy/files/patsy-0.5.1-py310.patch
new file mode 100644
index 000..04a712e7e42
--- /dev/null
+++ b/dev-python/patsy/files/patsy-0.5.1-py310.patch
@@ -0,0 +1,39 @@
+From 6328c7652e4d7fda9872a555d31658e54b7b0e6e Mon Sep 17 00:00:00 2001
+From: thequackdaddy 
+Date: Sun, 28 Oct 2018 19:38:08 -0500
+Subject: [PATCH] MAINT: A few python 3.7 fixes
+
+---
+ patsy/constraint.py | 5 -
+ tools/check-API-refs.py | 2 +-
+ 3 files changed, 6 insertions(+), 2 deletions(-)
+
+diff --git a/patsy/constraint.py b/patsy/constraint.py
+index ca9f6e2..d710a94 100644
+--- a/patsy/constraint.py
 b/patsy/constraint.py
+@@ -10,7 +10,10 @@
+ __all__ = ["LinearConstraint"]
+ 
+ import re
+-from collections import Mapping
++try:
++from collections.abc import Mapping
++except ImportError:
++from collections import Mapping
+ import six
+ import numpy as np
+ from patsy import PatsyError
+diff --git a/tools/check-API-refs.py b/tools/check-API-refs.py
+index 8e9e8a1..9349028 100644
+--- a/tools/check-API-refs.py
 b/tools/check-API-refs.py
+@@ -9,7 +9,7 @@
+ root = dirname(dirname(abspath(__file__)))
+ patsy_ref = root + "/doc/API-reference.rst"
+ 
+-doc_re = re.compile("^\.\. (.*):: ([^\(]*)")
++doc_re = re.compile("^\\.\\. (.*):: ([^\\(]*)")
+ def _documented(rst_path):
+ documented = set()
+ for line in open(rst_path):

diff --git a/dev-python/patsy/patsy-0.5.1.ebuild 
b/dev-python/patsy/patsy-0.5.1.ebuild
index 39d9848be72..78b6a5d4cd6 100644
--- a/dev-python/patsy/patsy-0.5.1.ebuild
+++ b/dev-python/patsy/patsy-0.5.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1
 
@@ -21,3 +21,7 @@ RDEPEND="
 "
 
 distutils_enable_tests nose
+
+PATCHES=(
+   "${FILESDIR}"/${P}-py310.patch
+)



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

2021-06-20 Thread Sam James
commit: 5e7a82dfa4b2d38cf7b62de33bf6090a6faa8521
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:57:27 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:57:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e7a82df

dev-libs/nsync: Stabilize 1.24.0 x86, #770580

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

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

diff --git a/dev-libs/nsync/nsync-1.24.0.ebuild 
b/dev-libs/nsync/nsync-1.24.0.ebuild
index 28d51059b6e..f71c5b73ae1 100644
--- a/dev-libs/nsync/nsync-1.24.0.ebuild
+++ b/dev-libs/nsync/nsync-1.24.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/google/nsync/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 
 RESTRICT="!test? ( test )"



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

2021-06-20 Thread Sam James
commit: daf4b515cfc0a2fcfecd17f650af33a78be7a319
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:57:01 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:57:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daf4b515

dev-libs/nsync: Stabilize 1.24.0 amd64, #770580

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

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

diff --git a/dev-libs/nsync/nsync-1.24.0.ebuild 
b/dev-libs/nsync/nsync-1.24.0.ebuild
index ef961974705..28d51059b6e 100644
--- a/dev-libs/nsync/nsync-1.24.0.ebuild
+++ b/dev-libs/nsync/nsync-1.24.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/google/nsync/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-games/aseprite/

2021-06-20 Thread Sam James
commit: 7dbb14b810f1f50ed5acbab9447f375982ee013c
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:57:07 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:57:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dbb14b8

dev-games/aseprite: Stabilize 1.1.9 amd64, #770664

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

 dev-games/aseprite/aseprite-1.1.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-games/aseprite/aseprite-1.1.9.ebuild 
b/dev-games/aseprite/aseprite-1.1.9.ebuild
index c96e7c87576..b01a38a17c3 100644
--- a/dev-games/aseprite/aseprite-1.1.9.ebuild
+++ b/dev-games/aseprite/aseprite-1.1.9.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/aseprite/aseprite/releases/download/v${PV}/Aseprite-
 # gtest duktape modp_b64 simpleini
 LICENSE="Aseprite-EULA"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 IUSE="bundled-libs debug kde gtk3 test webp"
 RESTRICT="bindist mirror !test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-games/aseprite/

2021-06-20 Thread Sam James
commit: 332b857996d4bc6b8476f4af767d464a6cdb3b14
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:57:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:57:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=332b8579

dev-games/aseprite: Stabilize 1.1.9 x86, #770664

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

 dev-games/aseprite/aseprite-1.1.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-games/aseprite/aseprite-1.1.9.ebuild 
b/dev-games/aseprite/aseprite-1.1.9.ebuild
index b01a38a17c3..61608ae8db1 100644
--- a/dev-games/aseprite/aseprite-1.1.9.ebuild
+++ b/dev-games/aseprite/aseprite-1.1.9.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/aseprite/aseprite/releases/download/v${PV}/Aseprite-
 # gtest duktape modp_b64 simpleini
 LICENSE="Aseprite-EULA"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 IUSE="bundled-libs debug kde gtk3 test webp"
 RESTRICT="bindist mirror !test? ( test )"



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

2021-06-20 Thread Sam James
commit: 0f02ac58897ab87f5a09437a8d83d8e449c346f7
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:54:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:54:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f02ac58

dev-util/lldb: Stabilize 12.0.0 arm, #796215

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

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

diff --git a/dev-util/lldb/lldb-12.0.0.ebuild b/dev-util/lldb/lldb-12.0.0.ebuild
index e6667673c26..70becffa642 100644
--- a/dev-util/lldb/lldb-12.0.0.ebuild
+++ b/dev-util/lldb/lldb-12.0.0.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 arm ~arm64 x86"
 IUSE="+libedit lzma ncurses +python test"
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 RESTRICT="test"



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

2021-06-20 Thread Sam James
commit: 476e3334f103d617d6dc89ccaa731e359a36f9fb
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:54:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:54:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=476e3334

sys-libs/libcxx: Stabilize 12.0.0 arm, #796215

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

 sys-libs/libcxx/libcxx-12.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/libcxx/libcxx-12.0.0.ebuild 
b/sys-libs/libcxx/libcxx-12.0.0.ebuild
index 65dcec6a526..cedf8f01ef0 100644
--- a/sys-libs/libcxx/libcxx-12.0.0.ebuild
+++ b/sys-libs/libcxx/libcxx-12.0.0.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://libcxx.llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~riscv x86 ~x64-macos"
+KEYWORDS="amd64 arm ~arm64 ~riscv x86 ~x64-macos"
 IUSE="elibc_glibc elibc_musl +libcxxabi +libunwind static-libs test"
 REQUIRED_USE="libunwind? ( libcxxabi )"
 RESTRICT="!test? ( test )"



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

2021-06-20 Thread Sam James
commit: 7b2af66772dfb03950e7e9aad26206e9ad37c6f5
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:54:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:54:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b2af667

sys-libs/libomp: Stabilize 12.0.0 arm, #796215

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

 sys-libs/libomp/libomp-12.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/libomp/libomp-12.0.0.ebuild 
b/sys-libs/libomp/libomp-12.0.0.ebuild
index d210d2abfbc..78add4042bb 100644
--- a/sys-libs/libomp/libomp-12.0.0.ebuild
+++ b/sys-libs/libomp/libomp-12.0.0.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://openmp.llvm.org;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x64-macos"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x64-macos"
 IUSE="cuda hwloc kernel_linux offload ompt test"
 # CUDA works only with the x86_64 ABI
 REQUIRED_USE="offload? ( cuda? ( abi_x86_64 ) )"



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

2021-06-20 Thread Sam James
commit: 8ba96d6027fd0bc8a170ed1aea2c31824faf56f5
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:54:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:54:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ba96d60

sys-libs/llvm-libunwind: Stabilize 12.0.0 arm, #796215

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

 sys-libs/llvm-libunwind/llvm-libunwind-12.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-12.0.0.ebuild 
b/sys-libs/llvm-libunwind/llvm-libunwind-12.0.0.ebuild
index 366bde47ad2..85a98a3385e 100644
--- a/sys-libs/llvm-libunwind/llvm-libunwind-12.0.0.ebuild
+++ b/sys-libs/llvm-libunwind/llvm-libunwind-12.0.0.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://github.com/llvm-mirror/libunwind;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86 ~x64-macos"
+KEYWORDS="amd64 arm ~arm64 ~ppc64 ~riscv x86 ~x64-macos"
 IUSE="debug static-libs test"
 RESTRICT="!test? ( test )"
 



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

2021-06-20 Thread Sam James
commit: ef47c6c6aae4d1a3ccd045ccab2abd18ac68df07
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:54:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:54:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef47c6c6

sys-libs/libcxxabi: Stabilize 12.0.0 arm, #796215

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

 sys-libs/libcxxabi/libcxxabi-12.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/libcxxabi/libcxxabi-12.0.0.ebuild 
b/sys-libs/libcxxabi/libcxxabi-12.0.0.ebuild
index b85c9911b67..fad775121a1 100644
--- a/sys-libs/libcxxabi/libcxxabi-12.0.0.ebuild
+++ b/sys-libs/libcxxabi/libcxxabi-12.0.0.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://libcxxabi.llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~riscv x86 ~x64-macos"
+KEYWORDS="amd64 arm ~arm64 ~riscv x86 ~x64-macos"
 IUSE="+libunwind static-libs test elibc_musl"
 RESTRICT="!test? ( test )"
 



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

2021-06-20 Thread Sam James
commit: ebe6b67b003bfa11a699ce4f3fa06e8d1d04c720
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:54:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:54:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebe6b67b

sys-libs/compiler-rt: Stabilize 12.0.0 arm, #796215

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

 sys-libs/compiler-rt/compiler-rt-12.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/compiler-rt/compiler-rt-12.0.0.ebuild 
b/sys-libs/compiler-rt/compiler-rt-12.0.0.ebuild
index 72eb67bd40b..5e53ba5987b 100644
--- a/sys-libs/compiler-rt/compiler-rt-12.0.0.ebuild
+++ b/sys-libs/compiler-rt/compiler-rt-12.0.0.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="$(ver_cut 1-3)"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86 ~amd64-linux ~ppc-macos 
~x64-macos"
+KEYWORDS="amd64 arm ~arm64 ~ppc64 ~riscv x86 ~amd64-linux ~ppc-macos 
~x64-macos"
 IUSE="+clang test"
 RESTRICT="!test? ( test ) !clang? ( test )"
 



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

2021-06-20 Thread Sam James
commit: 87a5b0fe85d0f8c11d4106b3337b9ab0892c5d1b
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:54:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:54:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87a5b0fe

sys-devel/lld: Stabilize 12.0.0 arm, #796215

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

 sys-devel/lld/lld-12.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/lld/lld-12.0.0.ebuild b/sys-devel/lld/lld-12.0.0.ebuild
index 1176c41394d..2d3d89553a6 100644
--- a/sys-devel/lld/lld-12.0.0.ebuild
+++ b/sys-devel/lld/lld-12.0.0.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~riscv x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-06-20 Thread Sam James
commit: 92765ed3fae0725c6c33960e5d6d54df498a383f
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:54:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:54:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92765ed3

sys-devel/clang-common: Stabilize 12.0.0 arm, #796215

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

 sys-devel/clang-common/clang-common-12.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/clang-common/clang-common-12.0.0.ebuild 
b/sys-devel/clang-common/clang-common-12.0.0.ebuild
index e71c31a1b36..52e7df7b34f 100644
--- a/sys-devel/clang-common/clang-common-12.0.0.ebuild
+++ b/sys-devel/clang-common/clang-common-12.0.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
 IUSE=""
 
 PDEPEND="sys-devel/clang:*"



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

2021-06-20 Thread Sam James
commit: 860620795ae42c8510e7f758b91a9292308538f4
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:54:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:54:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86062079

sys-devel/clang-runtime: Stabilize 12.0.0 arm, #796215

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

 sys-devel/clang-runtime/clang-runtime-12.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/clang-runtime/clang-runtime-12.0.0.ebuild 
b/sys-devel/clang-runtime/clang-runtime-12.0.0.ebuild
index b7cc543743d..14895b0ac77 100644
--- a/sys-devel/clang-runtime/clang-runtime-12.0.0.ebuild
+++ b/sys-devel/clang-runtime/clang-runtime-12.0.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI=""
 
 LICENSE="metapackage"
 SLOT="$(ver_cut 1-3)"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
 IUSE="+compiler-rt libcxx openmp +sanitize"
 REQUIRED_USE="sanitize? ( compiler-rt )"
 



[gentoo-commits] repo/gentoo:master commit in: sys-libs/compiler-rt-sanitizers/

2021-06-20 Thread Sam James
commit: 2a3a1417733e5adf319885820e063a5c6171bf91
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:54:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:54:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a3a1417

sys-libs/compiler-rt-sanitizers: Stabilize 12.0.0 arm, #796215

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

 sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-12.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-12.0.0.ebuild 
b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-12.0.0.ebuild
index 342f66b7bca..8671a2ad987 100644
--- a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-12.0.0.ebuild
+++ b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-12.0.0.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="$(ver_cut 1-3)"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86 ~amd64-linux ~ppc-macos 
~x64-macos"
+KEYWORDS="amd64 arm ~arm64 ~ppc64 ~riscv x86 ~amd64-linux ~ppc-macos 
~x64-macos"
 IUSE="+clang test elibc_glibc"
 # base targets
 IUSE+=" +libfuzzer +memprof +profile +xray"



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

2021-06-20 Thread Sam James
commit: 928245cd74921a2bf6cbe3b6eef79b6f456843da
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:54:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:54:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=928245cd

dev-python/lit: Stabilize 12.0.0 arm, #796215

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

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

diff --git a/dev-python/lit/lit-12.0.0.ebuild b/dev-python/lit/lit-12.0.0.ebuild
index a36692346a6..47f27eee5a7 100644
--- a/dev-python/lit/lit-12.0.0.ebuild
+++ b/dev-python/lit/lit-12.0.0.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~riscv x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-06-20 Thread Sam James
commit: 3e2142c5c53915dfbb4139240dec35b5d71c20d0
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:54:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:54:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e2142c5

sys-devel/llvmgold: Stabilize 12 arm, #796215

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

 sys-devel/llvmgold/llvmgold-12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/llvmgold/llvmgold-12.ebuild 
b/sys-devel/llvmgold/llvmgold-12.ebuild
index e6a405a2d2f..a0a98b5d15e 100644
--- a/sys-devel/llvmgold/llvmgold-12.ebuild
+++ b/sys-devel/llvmgold/llvmgold-12.ebuild
@@ -9,7 +9,7 @@ SRC_URI=""
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86 ~amd64-linux"
+KEYWORDS="amd64 arm ~arm64 ~ppc64 ~riscv x86 ~amd64-linux"
 
 RDEPEND="sys-devel/llvm:${PV}[gold]
!sys-devel/llvm:0"



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

2021-06-20 Thread Sam James
commit: 6987dd71d3553f6cf3f398114fa98ad6fbf0811c
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:54:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:54:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6987dd71

sys-devel/llvm-common: Stabilize 12.0.0 arm, #796215

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

 sys-devel/llvm-common/llvm-common-12.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/llvm-common/llvm-common-12.0.0.ebuild 
b/sys-devel/llvm-common/llvm-common-12.0.0.ebuild
index a2cdddf6e83..8821a89f649 100644
--- a/sys-devel/llvm-common/llvm-common-12.0.0.ebuild
+++ b/sys-devel/llvm-common/llvm-common-12.0.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
 IUSE=""
 
 RDEPEND="!sys-devel/llvm:0"



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

2021-06-20 Thread Sam James
commit: 485cc3f4943e42c5d9e90f3957139a9040bdc719
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:54:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:54:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=485cc3f4

sys-devel/clang: Stabilize 12.0.0-r1 arm, #796215

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

 sys-devel/clang/clang-12.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/clang/clang-12.0.0-r1.ebuild 
b/sys-devel/clang/clang-12.0.0-r1.ebuild
index ffa71f432a2..3158286f9b4 100644
--- a/sys-devel/clang/clang-12.0.0-r1.ebuild
+++ b/sys-devel/clang/clang-12.0.0-r1.ebuild
@@ -22,7 +22,7 @@ ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" )
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA MIT"
 SLOT="$(ver_cut 1)"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x64-macos"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x64-macos"
 IUSE="debug default-compiler-rt default-libcxx default-lld
doc llvm-libunwind +static-analyzer test xml kernel_FreeBSD 
${ALL_LLVM_TARGETS[*]}"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}



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

2021-06-20 Thread Sam James
commit: 645e44da3bf48d824ad6ed37346a0fdc5a4498b5
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 22:54:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 22:54:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=645e44da

sys-devel/llvm: Stabilize 12.0.0 arm, #796215

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

 sys-devel/llvm/llvm-12.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/llvm/llvm-12.0.0.ebuild 
b/sys-devel/llvm/llvm-12.0.0.ebuild
index de457f3e41d..1ea57372b56 100644
--- a/sys-devel/llvm/llvm-12.0.0.ebuild
+++ b/sys-devel/llvm/llvm-12.0.0.ebuild
@@ -26,7 +26,7 @@ ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" )
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA BSD public-domain rc"
 SLOT="$(ver_cut 1)"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
 IUSE="debug doc exegesis gold libedit +libffi ncurses test xar xml z3
kernel_Darwin ${ALL_LLVM_TARGETS[*]}"
 REQUIRED_USE="|| ( ${ALL_LLVM_TARGETS[*]} )"



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

2021-06-20 Thread Thomas Deutschmann
commit: ee9c817d4380a2651dda1955b6a352c3eb0ac6a4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 20 22:47:37 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 20 22:53:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee9c817d

media-sound/pulseaudio: minor fixes

- Make doxygen optional

- dev-libs/libpcre is a DEPEND

- dev-libs/check is a DEPEND

- USE=tcpd is native feature

- Add $EPREFIX to udevrulesdir option

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

 media-sound/pulseaudio/pulseaudio-14.99.2_pre.ebuild | 16 ++--
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/media-sound/pulseaudio/pulseaudio-14.99.2_pre.ebuild 
b/media-sound/pulseaudio/pulseaudio-14.99.2_pre.ebuild
index 032227d4dc9..aa307be1068 100644
--- a/media-sound/pulseaudio/pulseaudio-14.99.2_pre.ebuild
+++ b/media-sound/pulseaudio/pulseaudio-14.99.2_pre.ebuild
@@ -72,22 +72,15 @@ REQUIRED_USE="
zeroconf? ( dbus )
 "
 
-# NOTE:
-# - dev-libs/libpcre header will be used if found but no linking is done
-#   on non-Windows
-# - meson is currently always checking for doxygen,
-#   see https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/issues/1226
 BDEPEND="
-   app-doc/doxygen
-   dev-libs/libpcre
sys-devel/gettext
sys-devel/m4
virtual/libiconv
virtual/libintl
virtual/pkgconfig
+   doc? ( app-doc/doxygen )
orc? ( >=dev-lang/orc-0.4.15 )
system-wide? ( dev-util/unifdef )
-   test? ( >=dev-libs/check-0.9.10 )
 "
 
 # NOTE:
@@ -145,6 +138,8 @@ COMMON_DEPEND="
 DEPEND="
${COMMON_DEPEND}
dev-libs/libatomic_ops
+   dev-libs/libpcre:*
+   test? ( >=dev-libs/check-0.9.10 )
X? ( x11-base/xorg-proto )
 "
 
@@ -181,11 +176,12 @@ multilib_src_configure() {
--localstatedir="${EPREFIX}"/var
-Dmodlibexecdir="${EPREFIX}/usr/$(get_libdir)/${PN}/modules" # 
Was $(get_libdir)/${P}
-Dsystemduserunitdir=$(systemd_get_userunitdir)
-   -Dudevrulesdir="$(get_udevdir)"/rules.d
+   -Dudevrulesdir="${EPREFIX}$(get_udevdir)/rules.d"
-Dbashcompletiondir="$(get_bashcompdir)" # Alternatively DEPEND 
on app-shells/bash-completion for pkg-config to provide the value
$(meson_native_use_feature alsa)
$(meson_native_use_bool bluetooth bluez5)
$(meson_native_use_bool daemon)
+   $(meson_native_use_bool doc doxygen)
$(meson_native_use_bool native-headset bluez5-native-headset)
$(meson_native_use_bool ofono-headset bluez5-ofono-headset)
$(meson_native_use_feature glib gsettings) # Supposedly correct?
@@ -209,7 +205,7 @@ multilib_src_configure() {
$(meson_feature glib) # WARNING: toggling this likely changes 
ABI
$(meson_feature asyncns)
#$(meson_use cpu_flags_arm_neon neon-opt)
-   $(meson_feature tcpd tcpwrap) # TODO: system-wide specific?
+   $(meson_native_use_feature tcpd tcpwrap)
$(meson_feature dbus)
$(meson_feature elogind)
$(meson_feature X x11)



  1   2   3   4   >