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

2020-02-12 Thread Sergei Trofimovich
commit: 8548546604a5dc0289879b2b5b3a384af6483269
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Feb 12 20:30:24 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Feb 12 20:32:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85485466

media-libs/aalib: drop old

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

 media-libs/aalib/aalib-1.4_rc5-r8.ebuild | 70 
 1 file changed, 70 deletions(-)

diff --git a/media-libs/aalib/aalib-1.4_rc5-r8.ebuild 
b/media-libs/aalib/aalib-1.4_rc5-r8.ebuild
deleted file mode 100644
index c88fa397f8e..000
--- a/media-libs/aalib/aalib-1.4_rc5-r8.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools-multilib eutils toolchain-funcs
-
-MY_P="${P/_/}"
-S="${WORKDIR}/${PN}-1.4.0"
-
-DESCRIPTION="A ASCII-Graphics Library"
-HOMEPAGE="http://aa-project.sourceforge.net/aalib/;
-SRC_URI="mirror://sourceforge/aa-project/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
-IUSE="X slang gpm static-libs"
-
-RDEPEND="
-   X? ( >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] )
-   gpm? ( >=sys-libs/gpm-1.20.7-r2[${MULTILIB_USEDEP}] )
-   slang? ( >=sys-libs/slang-2.2.4-r1[${MULTILIB_USEDEP}] )
-   >=sys-libs/ncurses-5.9-r3:0=[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   X? ( x11-base/xorg-proto )
-"
-
-DOCS="ANNOUNCE AUTHORS ChangeLog NEWS README*"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-1.4_rc4-gentoo.patch
-   epatch "${FILESDIR}"/${PN}-1.4_rc4-m4.patch
-   epatch "${FILESDIR}"/${PN}-1.4_rc5-fix-protos.patch #224267
-   epatch "${FILESDIR}"/${PN}-1.4_rc5-fix-aarender.patch #214142
-   epatch "${FILESDIR}"/${PN}-1.4_rc5-tinfo.patch #468566
-   epatch "${FILESDIR}"/${PN}-1.4_rc5-key-down-OOB.patch
-   epatch "${FILESDIR}"/${PN}-1.4_rc5-more-protos.patch
-
-   sed -i -e 's:#include :#include :g' "${S}"/src/*.c
-
-   # Fix bug #165617.
-   use gpm || sed -i \
-   's/gpm_mousedriver_test=yes/gpm_mousedriver_test=no/' 
"${S}/configure.in"
-
-   #467988 automake-1.13
-   mv configure.{in,ac} || die
-   sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac || die
-
-   epatch_user
-   eautoreconf
-}
-
-src_configure() {
-   local myeconfargs=(
-   $(use_with slang slang-driver)
-   $(use_with X x11-driver)
-   $(use_enable static-libs static)
-   )
-
-   PKG_CONFIG=$(tc-getPKG_CONFIG) \
-   autotools-multilib_src_configure
-}
-
-src_install() {
-   autotools-multilib_src_install
-   use static-libs || prune_libtool_files --all
-}



[gentoo-commits] repo/gentoo:master commit in: net-misc/proxytunnel/files/, net-misc/proxytunnel/

2020-02-12 Thread Craig Andrews
commit: fb5c1f37eaf25007d39f8bb30d4fde8db9564af1
Author: Craig Andrews  gentoo  org>
AuthorDate: Wed Feb 12 20:22:39 2020 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Wed Feb 12 20:23:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb5c1f37

net-misc/proxytunnel: Fix building with -fno-common or gcc-10

Closes: https://bugs.gentoo.org/709404
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Craig Andrews  gentoo.org>

 .../files/proxytunnel-1.9.1-gcc-10.patch   | 128 +
 net-misc/proxytunnel/proxytunnel-1.9.1-r2.ebuild   |   3 +-
 2 files changed, 130 insertions(+), 1 deletion(-)

diff --git a/net-misc/proxytunnel/files/proxytunnel-1.9.1-gcc-10.patch 
b/net-misc/proxytunnel/files/proxytunnel-1.9.1-gcc-10.patch
new file mode 100644
index 000..a42b8424cca
--- /dev/null
+++ b/net-misc/proxytunnel/files/proxytunnel-1.9.1-gcc-10.patch
@@ -0,0 +1,128 @@
+https://github.com/proxytunnel/proxytunnel/pull/43
+
+From 517650724dc478dd35ac7c7953b4eb700ccb7273 Mon Sep 17 00:00:00 2001
+From: Paul Howarth 
+Date: Wed, 22 Jan 2020 21:44:01 +
+Subject: [PATCH] Fix global variable declarations/definitions for GCC 10
+ compatibility
+
+This boils down to declaring global variables as "extern" in header files
+and defining them in just one place.
+
+See https://www.gnu.org/software/gcc/gcc-10/porting_to.html
+---
+ Makefile  |  1 +
+ globals.c | 41 +
+ ntlm.h|  4 ++--
+ proxytunnel.h | 16 
+ 4 files changed, 52 insertions(+), 10 deletions(-)
+ create mode 100644 globals.c
+
+diff --git a/Makefile b/Makefile
+index 57328e8..ecdaa5f 100644
+--- a/Makefile
 b/Makefile
+@@ -63,6 +63,7 @@ OBJ = proxytunnel.o  \
+   readpassphrase.o\
+   messages.o  \
+   cmdline.o   \
++  globals.o   \
+   ntlm.o  \
+   ptstream.o
+ 
+diff --git a/globals.c b/globals.c
+new file mode 100644
+index 000..fe19db4
+--- /dev/null
 b/globals.c
+@@ -0,0 +1,41 @@
++/* Proxytunnel - (C) 2001-2008 Jos Visser / Mark Janssen*/
++/* Contact:  j...@osp.nl / man...@maniac.nl */
++
++/*
++ * This program is free software; you can redistribute it and/or modify
++ * it under the terms of the GNU General Public License as published by
++ * the Free Software Foundation; either version 2 of the License, or
++ * (at your option) any later version.
++ *
++ * This program is distributed in the hope that it will be useful,
++ * but WITHOUT ANY WARRANTY; without even the implied warranty of
++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++ * GNU General Public License for more details.
++ *
++ * You should have received a copy of the GNU General Public License
++ * along with this program; if not, write to the Free Software
++ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
++ */
++
++/* globals.c */
++
++#include "proxytunnel.h"
++
++/* Globals */
++char *program_name; /* Guess what? */
++int i_am_daemon;/* Also... */
++
++PTSTREAM *stunnel;/* stream representing the socket from us to proxy */
++PTSTREAM *std;/* stream representing stdin/stdout */
++
++/*
++ * All the command line options
++ */
++struct gengetopt_args_info args_info;
++
++char buf[SIZE]; /* Data transfer buffer */
++
++char ntlm_type1_buf[160];
++char ntlm_type3_buf[4096];
++
++// vim:noexpandtab:ts=4
+diff --git a/ntlm.h b/ntlm.h
+index f919368..01a6434 100644
+--- a/ntlm.h
 b/ntlm.h
+@@ -26,8 +26,8 @@ void build_ntlm2_response();
+ 
+ extern int ntlm_challenge;
+ 
+-char ntlm_type1_buf[160];
+-char ntlm_type3_buf[4096];
++extern char ntlm_type1_buf[160];
++extern char ntlm_type3_buf[4096];
+ 
+ 
+ // Below are the flag definitions.
+diff --git a/proxytunnel.h b/proxytunnel.h
+index 593cd7e..aa09a4b 100644
+--- a/proxytunnel.h
 b/proxytunnel.h
+@@ -46,21 +46,21 @@ char * readpassphrase(const char *, char *, size_t, int);
+ char * getpass_x(const char *format, ...);
+ 
+ /* Globals */
+-int read_fd;/* The file descriptor to read from */
+-int write_fd;   /* The file destriptor to write to */
+-char *program_name; /* Guess what? */
+-int i_am_daemon;/* Also... */
++extern int read_fd;/* The file descriptor to read from */
++extern int write_fd;   /* The file descriptor to write to */
++extern char *program_name; /* Guess what? */
++extern int i_am_daemon;/* Also... */
+ 
+-PTSTREAM *stunnel;/* stream representing the socket from us to proxy */
+-PTSTREAM *std;/* stream representing stdin/stdout */
++extern PTSTREAM *stunnel; /* stream representing the socket from us to 
proxy */
++extern PTSTREAM *std; /* stream representing stdin/stdout */
+ 
+ /*
+  * All the command line options
+  

[gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-mailbox/, media-plugins/vdr-mailbox/files/

2020-02-12 Thread Jörg Bornkessel
commit: 698f4706f28c7a537447462da81cf10c03fd15ef
Author: Joerg Bornkessel  gentoo  org>
AuthorDate: Wed Feb 12 20:12:02 2020 +
Commit: Jörg Bornkessel  gentoo  org>
CommitDate: Wed Feb 12 20:12:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=698f4706

media-plugins/vdr-mailbox: delet media-plugins/vdr-mailbox from tree

package has open bugs,
upstream has give up the project

Closes: https://bugs.gentoo.org/704004
Signed-off-by: Joerg Bornkessel  gentoo.org>

 media-plugins/vdr-mailbox/Manifest |  1 -
 .../files/vdr-mailbox-0.7.0_gcc-6.patch| 29 --
 media-plugins/vdr-mailbox/metadata.xml |  8 --
 .../vdr-mailbox/vdr-mailbox-0.7.0-r1.ebuild| 21 
 4 files changed, 59 deletions(-)

diff --git a/media-plugins/vdr-mailbox/Manifest 
b/media-plugins/vdr-mailbox/Manifest
deleted file mode 100644
index 3833ad2fddc..000
--- a/media-plugins/vdr-mailbox/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST vdr-mailbox-0.7.0.tgz 171886 BLAKE2B 
37f731b1dcab7bb53ff2e0792af1f2947a3429521de8e4ffdc155cc1d059b33a980b3c49d24151a4a162964bbb7d3c0c1805ec109c2852c0d4ac6d96552ed4ec
 SHA512 
ec20b675e9c92fd2e8dda1e2bb1799a6b725e0a8a879e9f45f3876bf2ef2a85fab3303c94db669e6f259cf6ef83cd417260fcbca5290c74c59f5585a1c28be3e

diff --git a/media-plugins/vdr-mailbox/files/vdr-mailbox-0.7.0_gcc-6.patch 
b/media-plugins/vdr-mailbox/files/vdr-mailbox-0.7.0_gcc-6.patch
deleted file mode 100644
index 9647ccb09bb..000
--- a/media-plugins/vdr-mailbox/files/vdr-mailbox-0.7.0_gcc-6.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-compile fix gcc-6
-https://bugs.gentoo.org/show_bug.cgi?id=593946
-Signed-of-by: Joerg Bornkessel  (2016/Oct/16)
 mailbox-0.7.0/Makefile.old 2016-09-21 20:42:01.505376511 -0400
-+++ mailbox-0.7.0/Makefile 2016-09-21 20:42:06.071280736 -0400
-@@ -149,7 +149,7 @@
- 
- INCLUDES +=
- 
--DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
-+DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"' -D__STL_CONFIG_H
- 
- ### The object files (add further files here):
- 
 mailbox-0.7.0/AxLib/include/Ax/Tools/Trace.h.old   2016-09-21 
20:35:30.849775089 -0400
-+++ mailbox-0.7.0/AxLib/include/Ax/Tools/Trace.h   2016-09-21 
20:35:35.926564690 -0400
-@@ -40,9 +40,9 @@
- 
//-
- // define macros for users
- 
//-
--#define wsdebugsyslog(Y...) dsyslog("mailbox: "Y)
--#define wswarnsyslog(Y...)  isyslog("mailbox: "Y)
--#define wserrorsyslog(Y...) esyslog("mailbox: "Y)
-+#define wsdebugsyslog(Y...) dsyslog("mailbox: " Y)
-+#define wswarnsyslog(Y...)  isyslog("mailbox: " Y)
-+#define wserrorsyslog(Y...) esyslog("mailbox: " Y)
- 
- #define wsdebug(X) do { } while(0);
- #define wsinfo(X)  do { wsdebugsyslog X ;} while(0);

diff --git a/media-plugins/vdr-mailbox/metadata.xml 
b/media-plugins/vdr-mailbox/metadata.xml
deleted file mode 100644
index 27f419c289c..000
--- a/media-plugins/vdr-mailbox/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-
-v...@gentoo.org
-Gentoo VDR Project
-
-

diff --git a/media-plugins/vdr-mailbox/vdr-mailbox-0.7.0-r1.ebuild 
b/media-plugins/vdr-mailbox/vdr-mailbox-0.7.0-r1.ebuild
deleted file mode 100644
index 2e3678691a9..000
--- a/media-plugins/vdr-mailbox/vdr-mailbox-0.7.0-r1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit vdr-plugin-2
-
-DESCRIPTION="VDR plugin: MailBox provides access to multiple e-mail accounts"
-HOMEPAGE="http://alex.vdr-developer.org;
-SRC_URI="http://alex.vdr-developer.org/download/${P}.tgz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=">=media-video/vdr-1.7.41
-   >=net-libs/c-client-2002e-r1"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${P}_gcc-6.patch" )



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

2020-02-12 Thread Sergei Trofimovich
commit: 8e44bb026a3061152ba9a66f2fbd637bb65afc53
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Feb 12 19:57:07 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Feb 12 20:05:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e44bb02

dev-python/pytest: keyworded 4.6.9 for hppa, bug #707350

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-python/pytest/pytest-4.6.9.ebuild 
b/dev-python/pytest/pytest-4.6.9.ebuild
index 19a7dd3c633..b20aeccb93d 100644
--- a/dev-python/pytest/pytest-4.6.9.ebuild
+++ b/dev-python/pytest/pytest-4.6.9.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~hppa x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-02-12 Thread Sergei Trofimovich
commit: 1a62538cb8d0d70fdf74dcef5b73ef9baae600b9
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Feb 12 20:01:58 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Feb 12 20:05:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a62538c

sys-fs/e2fsprogs: stable 1.45.5 for sparc, bug #709374

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/sys-fs/e2fsprogs/e2fsprogs-1.45.5.ebuild 
b/sys-fs/e2fsprogs/e2fsprogs-1.45.5.ebuild
index a96959d0b63..5c589750482 100644
--- a/sys-fs/e2fsprogs/e2fsprogs-1.45.5.ebuild
+++ b/sys-fs/e2fsprogs/e2fsprogs-1.45.5.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/e2fsprogs/${P}.tar.xz
 
 LICENSE="GPL-2 BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~m68k-mint"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~m68k-mint"
 IUSE="cron fuse nls static-libs elibc_FreeBSD"
 
 RDEPEND="~sys-libs/${PN}-libs-${PV}



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

2020-02-12 Thread Sergei Trofimovich
commit: 290c03b45cb29b9b3246ba9e1763c2a8c66b43ee
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Feb 12 19:59:00 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Feb 12 20:05:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=290c03b4

sys-libs/e2fsprogs-libs: stable 1.45.5 for sparc, bug #709374

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.45.5.ebuild 
b/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.45.5.ebuild
index 18069777bc3..0541706fe69 100644
--- a/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.45.5.ebuild
+++ b/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.45.5.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/e2fsprogs/${MY_P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~m68k-mint ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~m68k-mint ~x86-solaris"
 IUSE="static-libs"
 
 RDEPEND="!sys-libs/com_err



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

2020-02-12 Thread Sergei Trofimovich
commit: a5cf1c52be3428e6c98cf0aaec2ba98d60afadbf
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Feb 12 20:02:54 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Feb 12 20:05:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5cf1c52

dev-python/python-systemd: stable 234 for sparc, bug #708766

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-python/python-systemd/python-systemd-234.ebuild 
b/dev-python/python-systemd/python-systemd-234.ebuild
index d28e4d5108c..3cb95a71a38 100644
--- a/dev-python/python-systemd/python-systemd-234.ebuild
+++ b/dev-python/python-systemd/python-systemd-234.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/systemd/python-systemd/archive/v${PV}.tar.gz -> ${P}
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 sparc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/cvsps/

2020-02-12 Thread Sergei Trofimovich
commit: 17b8c2b32ec4523e286f80c2d602f56656cc4896
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Feb 12 19:48:56 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Feb 12 19:57:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17b8c2b3

dev-vcs/cvsps: stable 3.13-r2 for hppa, bug #708906

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-vcs/cvsps/cvsps-3.13-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/cvsps/cvsps-3.13-r2.ebuild 
b/dev-vcs/cvsps/cvsps-3.13-r2.ebuild
index d247e668326..ae42f902f4f 100644
--- a/dev-vcs/cvsps/cvsps-3.13-r2.ebuild
+++ b/dev-vcs/cvsps/cvsps-3.13-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.catb.org/~esr/${PN}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="3"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 RDEPEND="sys-libs/zlib"



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

2020-02-12 Thread Sergei Trofimovich
commit: 7b9a15320fb4e2ff7a810edd07fc3ad8849470d0
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Feb 12 19:52:59 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Feb 12 19:57:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b9a1532

dev-util/re2c: stable 1.3 for hppa, bug #708878

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-util/re2c/re2c-1.3.ebuild b/dev-util/re2c/re2c-1.3.ebuild
index 054bafdef70..f9ae144b836 100644
--- a/dev-util/re2c/re2c-1.3.ebuild
+++ b/dev-util/re2c/re2c-1.3.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/skvadrik/re2c/releases/download/${PV}/${P}.tar.xz;
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sh sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
~sh sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
 IUSE="debug"
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: net-ftp/proftpd/

2020-02-12 Thread Sergei Trofimovich
commit: 27c34c4a336e214fc7a202a36ef98f741ef066c2
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Feb 12 19:50:57 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Feb 12 19:57:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27c34c4a

net-ftp/proftpd: stable 1.3.6b-r1 for hppa, bug #708904

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 net-ftp/proftpd/proftpd-1.3.6b-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-ftp/proftpd/proftpd-1.3.6b-r1.ebuild 
b/net-ftp/proftpd/proftpd-1.3.6b-r1.ebuild
index 78fa89395bc..154eef3fbc4 100644
--- a/net-ftp/proftpd/proftpd-1.3.6b-r1.ebuild
+++ b/net-ftp/proftpd/proftpd-1.3.6b-r1.ebuild
@@ -26,7 +26,7 @@ SRC_URI="ftp://ftp.proftpd.org/distrib/source/${P/_/}.tar.gz
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86"
 IUSE="acl authfile ban +caps case clamav copy ctrls deflate diskuse dso 
dynmasq exec ifsession ifversion ident ipv6
kerberos ldap libressl log-forensic memcache msg mysql ncurses nls pam 
+pcre postgres qos radius
ratio readme rewrite selinux sftp shaper sitemisc snmp sodium softquota 
sqlite ssl tcpd test unique-id vroot"



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

2020-02-12 Thread Sergei Trofimovich
commit: e09f7ec9e7c3ea3f2938a3fb27e92d45a3376c53
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Feb 12 19:52:34 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Feb 12 19:57:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e09f7ec9

app-misc/mc: stable 4.8.23-r2 for hppa, bug #708896

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-misc/mc/mc-4.8.23-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/mc/mc-4.8.23-r2.ebuild b/app-misc/mc/mc-4.8.23-r2.ebuild
index d09aa99664d..aa470284435 100644
--- a/app-misc/mc/mc-4.8.23-r2.ebuild
+++ b/app-misc/mc/mc-4.8.23-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://ftp.midnight-commander.org/${MY_P}.tar.xz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
 IUSE="+edit gpm nls samba sftp +slang spell test unicode X +xdg"
 
 REQUIRED_USE="spell? ( edit )"



[gentoo-commits] repo/gentoo:master commit in: acct-user/geneweb/

2020-02-12 Thread Alfredo Tupone
commit: 2c87f2fa87ec3c323a48075fa2dc70b04b5492f1
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Wed Feb 12 19:39:48 2020 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Wed Feb 12 19:39:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c87f2fa

acct-user/geneweb: remove KEYWORDS

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 acct-user/geneweb/geneweb-0.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/acct-user/geneweb/geneweb-0.ebuild 
b/acct-user/geneweb/geneweb-0.ebuild
index af07282eea3..ddb7933984a 100644
--- a/acct-user/geneweb/geneweb-0.ebuild
+++ b/acct-user/geneweb/geneweb-0.ebuild
@@ -7,8 +7,6 @@ inherit acct-user
 
 DESCRIPTION="user id for geneweb daemon"
 
-KEYWORDS="~amd64 ~x86"
-
 ACCT_USER_ID=467
 ACCT_USER_HOME=/var/lib/geneweb
 ACCT_USER_GROUPS=( geneweb )



[gentoo-commits] repo/gentoo:master commit in: acct-group/geneweb/

2020-02-12 Thread Alfredo Tupone
commit: f12b7b47e0bfee31ab07b43c8bdff5556304f5f3
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Wed Feb 12 19:39:05 2020 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Wed Feb 12 19:39:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f12b7b47

acct-group/geneweb: remove KEYWORDS

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 acct-group/geneweb/geneweb-0.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/acct-group/geneweb/geneweb-0.ebuild 
b/acct-group/geneweb/geneweb-0.ebuild
index 1708abc4199..e68d95f8c29 100644
--- a/acct-group/geneweb/geneweb-0.ebuild
+++ b/acct-group/geneweb/geneweb-0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019 Gentoo Authors
+# Copyright 2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -7,6 +7,4 @@ inherit acct-group
 
 DESCRIPTION="Group for geneweb daemon"
 
-KEYWORDS="~amd64 ~x86"
-
 ACCT_GROUP_ID=467



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

2020-02-12 Thread Matthias Schwarzott
commit: 2dc3d56c52d3e69216f10ec915f4eb10f294af89
Author: Matthias Schwarzott  gentoo  org>
AuthorDate: Wed Feb 12 19:27:28 2020 +
Commit: Matthias Schwarzott  gentoo  org>
CommitDate: Wed Feb 12 19:30:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dc3d56c

dev-util/dwarves: Remove elfutils patch from live-ebuild

The patch got applied upstream.

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Matthias Schwarzott  gentoo.org>

 dev-util/dwarves/dwarves-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-util/dwarves/dwarves-.ebuild 
b/dev-util/dwarves/dwarves-.ebuild
index f9e4f9feeb3..7eb6207bcb2 100644
--- a/dev-util/dwarves/dwarves-.ebuild
+++ b/dev-util/dwarves/dwarves-.ebuild
@@ -26,7 +26,6 @@ DOCS=( README README.ctracer NEWS )
 
 PATCHES=(
"${FILESDIR}"/${PN}-1.10-python-import.patch
-   "${FILESDIR}"/${PN}-1.16-no-libebl.patch
 )
 
 src_configure() {



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

2020-02-12 Thread Patrick McLean
commit: 4e86f682a3f6c7d11d28aafef42206197f97351c
Author: Patrick McLean  sony  com>
AuthorDate: Wed Feb 12 19:26:00 2020 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Feb 12 19:26:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e86f682

sys-apps/util-linux: Add a dep on virtual/libcrypt:=

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Patrick McLean  gentoo.org>

 sys-apps/util-linux/util-linux-2.35.1.ebuild | 1 +
 sys-apps/util-linux/util-linux-.ebuild   | 1 +
 2 files changed, 2 insertions(+)

diff --git a/sys-apps/util-linux/util-linux-2.35.1.ebuild 
b/sys-apps/util-linux/util-linux-2.35.1.ebuild
index ab6222dd681..a09fd2b785a 100644
--- a/sys-apps/util-linux/util-linux-2.35.1.ebuild
+++ b/sys-apps/util-linux/util-linux-2.35.1.ebuild
@@ -30,6 +30,7 @@ IUSE="build caps +cramfs cryptsetup fdformat hardlink kill 
+logger ncurses nls p
 # Most lib deps here are related to programs rather than our libs,
 # so we rarely need to specify ${MULTILIB_USEDEP}.
 DEPEND="
+   virtual/libcrypt:=
virtual/os-headers
caps? ( sys-libs/libcap-ng )
cramfs? ( sys-libs/zlib:= )

diff --git a/sys-apps/util-linux/util-linux-.ebuild 
b/sys-apps/util-linux/util-linux-.ebuild
index e6f64360d13..a1318667ad6 100644
--- a/sys-apps/util-linux/util-linux-.ebuild
+++ b/sys-apps/util-linux/util-linux-.ebuild
@@ -30,6 +30,7 @@ IUSE="build caps +cramfs cryptsetup fdformat hardlink kill 
+logger ncurses nls p
 # Most lib deps here are related to programs rather than our libs,
 # so we rarely need to specify ${MULTILIB_USEDEP}.
 DEPEND="
+   virtual/libcrypt:=
virtual/os-headers
caps? ( sys-libs/libcap-ng )
cramfs? ( sys-libs/zlib:= )



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

2020-02-12 Thread Patrick McLean
commit: 96103a514eb93fd511ae15ec260ab9a577b8c72b
Author: Patrick McLean  sony  com>
AuthorDate: Wed Feb 12 19:21:37 2020 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Feb 12 19:21:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96103a51

sys-libs/pam: Add a dep on virtual/libcrypt:=

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Patrick McLean  gentoo.org>

 sys-libs/pam/pam-1.3.1-r1.ebuild| 1 +
 sys-libs/pam/pam-1.3.1_p20200128.ebuild | 1 +
 2 files changed, 2 insertions(+)

diff --git a/sys-libs/pam/pam-1.3.1-r1.ebuild b/sys-libs/pam/pam-1.3.1-r1.ebuild
index ee93946e860..9a130da7496 100644
--- a/sys-libs/pam/pam-1.3.1-r1.ebuild
+++ b/sys-libs/pam/pam-1.3.1-r1.ebuild
@@ -24,6 +24,7 @@ BDEPEND="app-text/docbook-xml-dtd:4.1.2
nls? ( sys-devel/gettext )"
 
 DEPEND="
+   virtual/libcrypt:=
audit? ( >=sys-process/audit-2.2.2[${MULTILIB_USEDEP}] )
berkdb? ( >=sys-libs/db-4.8.30-r1:=[${MULTILIB_USEDEP}] )
cracklib? ( >=sys-libs/cracklib-2.9.1-r1[${MULTILIB_USEDEP}] )

diff --git a/sys-libs/pam/pam-1.3.1_p20200128.ebuild 
b/sys-libs/pam/pam-1.3.1_p20200128.ebuild
index 85f03158420..5cb6d859ed7 100644
--- a/sys-libs/pam/pam-1.3.1_p20200128.ebuild
+++ b/sys-libs/pam/pam-1.3.1_p20200128.ebuild
@@ -26,6 +26,7 @@ BDEPEND="app-text/docbook-xml-dtd:4.1.2
nls? ( sys-devel/gettext )"
 
 DEPEND="
+   virtual/libcrypt:=
audit? ( >=sys-process/audit-2.2.2[${MULTILIB_USEDEP}] )
berkdb? ( >=sys-libs/db-4.8.30-r1:=[${MULTILIB_USEDEP}] )
cracklib? ( >=sys-libs/cracklib-2.9.1-r1[${MULTILIB_USEDEP}] )



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

2020-02-12 Thread Patrick McLean
commit: 983d19d7d1a42eafa5248d1f61a259b76468cddb
Author: Patrick McLean  sony  com>
AuthorDate: Wed Feb 12 19:09:56 2020 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Feb 12 19:09:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=983d19d7

dev-lang/python: Add deps on virtual/libcrypt:=

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Patrick McLean  gentoo.org>

 dev-lang/python/python-2.7.17-r1.ebuild| 3 ++-
 dev-lang/python/python-3.6.10.ebuild   | 3 ++-
 dev-lang/python/python-3.7.6.ebuild| 3 ++-
 dev-lang/python/python-3.8.1.ebuild| 1 +
 dev-lang/python/python-3.9.0_alpha2.ebuild | 1 +
 5 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/dev-lang/python/python-2.7.17-r1.ebuild 
b/dev-lang/python/python-2.7.17-r1.ebuild
index cadc834964d..912858618a1 100644
--- a/dev-lang/python/python-2.7.17-r1.ebuild
+++ b/dev-lang/python/python-2.7.17-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -28,6 +28,7 @@ IUSE="-berkdb bluetooth build elibc_uclibc examples gdbm 
hardened ipv6 libressl
 
 RDEPEND="app-arch/bzip2:=
>=sys-libs/zlib-1.1.3:=
+   virtual/libcrypt:=
virtual/libffi:=
virtual/libintl
berkdb? ( || (

diff --git a/dev-lang/python/python-3.6.10.ebuild 
b/dev-lang/python/python-3.6.10.ebuild
index 43dc80e812f..df29d36f4f4 100644
--- a/dev-lang/python/python-3.6.10.ebuild
+++ b/dev-lang/python/python-3.6.10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -30,6 +30,7 @@ RESTRICT="!test? ( test )"
 RDEPEND="app-arch/bzip2:=
app-arch/xz-utils:=
>=sys-libs/zlib-1.1.3:=
+   virtual/libcrypt:=
virtual/libffi:=
virtual/libintl
gdbm? ( sys-libs/gdbm:=[berkdb] )

diff --git a/dev-lang/python/python-3.7.6.ebuild 
b/dev-lang/python/python-3.7.6.ebuild
index df19e80b7cb..64583600c82 100644
--- a/dev-lang/python/python-3.7.6.ebuild
+++ b/dev-lang/python/python-3.7.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -31,6 +31,7 @@ RDEPEND="app-arch/bzip2:=
app-arch/xz-utils:=
sys-apps/util-linux:=
>=sys-libs/zlib-1.1.3:=
+   virtual/libcrypt:=
virtual/libffi:=
virtual/libintl
gdbm? ( sys-libs/gdbm:=[berkdb] )

diff --git a/dev-lang/python/python-3.8.1.ebuild 
b/dev-lang/python/python-3.8.1.ebuild
index cc9a3439c5b..e91a356a27b 100644
--- a/dev-lang/python/python-3.8.1.ebuild
+++ b/dev-lang/python/python-3.8.1.ebuild
@@ -31,6 +31,7 @@ RDEPEND="app-arch/bzip2:=
app-arch/xz-utils:=
sys-apps/util-linux:=
>=sys-libs/zlib-1.1.3:=
+   virtual/libcrypt:=
virtual/libffi:=
virtual/libintl
gdbm? ( sys-libs/gdbm:=[berkdb] )

diff --git a/dev-lang/python/python-3.9.0_alpha2.ebuild 
b/dev-lang/python/python-3.9.0_alpha2.ebuild
index d27153afa53..8ed8cafbc9e 100644
--- a/dev-lang/python/python-3.9.0_alpha2.ebuild
+++ b/dev-lang/python/python-3.9.0_alpha2.ebuild
@@ -32,6 +32,7 @@ RDEPEND="app-arch/bzip2:=
app-arch/xz-utils:=
sys-apps/util-linux:=
>=sys-libs/zlib-1.1.3:=
+   virtual/libcrypt:=
virtual/libffi:=
virtual/libintl
gdbm? ( sys-libs/gdbm:=[berkdb] )



[gentoo-commits] repo/gentoo:master commit in: net-nds/openldap/

2020-02-12 Thread Mikle Kolyada
commit: 0e011a3d8d82660823bc1b0be32a937ea38a970c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Feb 12 19:10:45 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Feb 12 19:10:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e011a3d

net-nds/openldap: fix UnnecessarySlashStrip

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mikle Kolyada  gentoo.org>

 net-nds/openldap/openldap-2.4.49.ebuild | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/net-nds/openldap/openldap-2.4.49.ebuild 
b/net-nds/openldap/openldap-2.4.49.ebuild
index 6b4c5ba2ad9..065d0375a0b 100644
--- a/net-nds/openldap/openldap-2.4.49.ebuild
+++ b/net-nds/openldap/openldap-2.4.49.ebuild
@@ -738,19 +738,19 @@ multilib_src_install() {
use prefix || fowners ldap:ldap /var/lib/openldap-data
fperms 0700 /var/lib/openldap-data
 
-   echo "OLDPF='${PF}'" > 
"${ED%/}${OPENLDAP_DEFAULTDIR_VERSIONTAG}/${OPENLDAP_VERSIONTAG}"
-   echo "# do NOT delete this. it is used" >> 
"${ED%/}${OPENLDAP_DEFAULTDIR_VERSIONTAG}/${OPENLDAP_VERSIONTAG}"
-   echo "# to track versions for upgrading." >> 
"${ED%/}${OPENLDAP_DEFAULTDIR_VERSIONTAG}/${OPENLDAP_VERSIONTAG}"
+   echo "OLDPF='${PF}'" > 
"${ED}${OPENLDAP_DEFAULTDIR_VERSIONTAG}/${OPENLDAP_VERSIONTAG}"
+   echo "# do NOT delete this. it is used" >> 
"${ED}${OPENLDAP_DEFAULTDIR_VERSIONTAG}/${OPENLDAP_VERSIONTAG}"
+   echo "# to track versions for upgrading." >> 
"${ED}${OPENLDAP_DEFAULTDIR_VERSIONTAG}/${OPENLDAP_VERSIONTAG}"
 
# use our config
-   rm "${ED%/}"/etc/openldap/slapd.conf
+   rm "${ED}"/etc/openldap/slapd.conf
insinto /etc/openldap
newins "${FILESDIR}"/${PN}-2.4.40-slapd-conf slapd.conf
-   configfile="${ED%/}"/etc/openldap/slapd.conf
+   configfile="${ED}"/etc/openldap/slapd.conf
 
# populate with built backends
ebegin "populate config with built backends"
-   for x in 
"${ED%/}"/usr/$(get_libdir)/openldap/openldap/back_*.so; do
+   for x in "${ED}"/usr/$(get_libdir)/openldap/openldap/back_*.so; 
do
einfo "Adding $(basename ${x})"
sed -e "/###INSERTDYNAMICMODULESHERE###$/a# 
moduleload\t$(basename ${x})" -i "${configfile}" || die
done
@@ -775,7 +775,7 @@ multilib_src_install() {
# If built without SLP, we don't need to be before avahi
sed -i \
-e '/before/{s/avahi-daemon//g}' \
-   "${ED%/}"/etc/init.d/slapd \
+   "${ED}"/etc/init.d/slapd \
|| die
 
if use cxx ; then
@@ -809,7 +809,7 @@ multilib_src_install() {
for l in */*.la */*/*.la; do
[[ -e ${l} ]] || continue
"${lt}" --mode=install cp ${l} \
-   "${ED%/}"/usr/$(get_libdir)/openldap/openldap 
|| \
+   "${ED}"/usr/$(get_libdir)/openldap/openldap || \
die "installing ${l} failed"
done
 



[gentoo-commits] repo/gentoo:master commit in: net-nds/openldap/

2020-02-12 Thread Mikle Kolyada
commit: 08af5d112cc3044e4068dddef1b40d8ba26c7ae8
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Feb 12 19:06:29 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Feb 12 19:06:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08af5d11

net-nds/openldap: fix MissingSlash

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mikle Kolyada  gentoo.org>

 net-nds/openldap/openldap-2.4.49.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-nds/openldap/openldap-2.4.49.ebuild 
b/net-nds/openldap/openldap-2.4.49.ebuild
index d7df0d817e0..6b4c5ba2ad9 100644
--- a/net-nds/openldap/openldap-2.4.49.ebuild
+++ b/net-nds/openldap/openldap-2.4.49.ebuild
@@ -866,7 +866,7 @@ pkg_postinst() {
# and a misconfiguration if multiple machines use the same key 
and cert.
if use ssl; then
install_cert /etc/openldap/ssl/ldap
-   use prefix || chown ldap:ldap 
"${EROOT}"etc/openldap/ssl/ldap.*
+   use prefix || chown ldap:ldap 
"${EROOT}"/etc/openldap/ssl/ldap.*
ewarn "Self-signed SSL certificates are treated harshly 
by OpenLDAP 2.[12]"
ewarn "Self-signed SSL certificates are treated harshly 
by OpenLDAP 2.[12]"
ewarn "add 'TLS_REQCERT allow' if you want to use them."
@@ -881,11 +881,11 @@ pkg_postinst() {
fi
 
# These lines force the permissions of various content to be 
correct
-   use prefix || chown ldap:ldap "${EROOT}"var/run/openldap
+   use prefix || chown ldap:ldap "${EROOT}"/var/run/openldap
chmod 0755 "${EROOT}"var/run/openldap
-   use prefix || chown root:ldap 
"${EROOT}"etc/openldap/slapd.conf{,.default}
+   use prefix || chown root:ldap 
"${EROOT}"/etc/openldap/slapd.conf{,.default}
chmod 0640 "${EROOT}"etc/openldap/slapd.conf{,.default}
-   use prefix || chown ldap:ldap "${EROOT}"var/lib/openldap-data
+   use prefix || chown ldap:ldap "${EROOT}"/var/lib/openldap-data
fi
 
if has_version 'net-nds/openldap[-minimal]' && 
((${OPENLDAP_PRINT_MESSAGES})); then



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

2020-02-12 Thread Conrad Kostecki
commit: 9bc88fe74513d8cae9a58e2f2d50ae196292179e
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Wed Feb 12 18:33:33 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Feb 12 18:33:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bc88fe7

net-vpn/networkmanager-strongswan: drop old version

Package-Manager: Portage-2.3.87, Repoman-2.3.20
Signed-off-by: Conrad Kostecki  gentoo.org>

 net-vpn/networkmanager-strongswan/Manifest |  1 -
 .../networkmanager-strongswan-1.4.4-r1.ebuild  | 50 --
 2 files changed, 51 deletions(-)

diff --git a/net-vpn/networkmanager-strongswan/Manifest 
b/net-vpn/networkmanager-strongswan/Manifest
index 737051011c4..a3b829ecb52 100644
--- a/net-vpn/networkmanager-strongswan/Manifest
+++ b/net-vpn/networkmanager-strongswan/Manifest
@@ -1,2 +1 @@
-DIST NetworkManager-strongswan-1.4.4.tar.bz2 305677 BLAKE2B 
24d99cd3f3844b6ffd47d076153ff8f80a92e575ca7f8da01141be2a48c39a759ee60e17ccdd4928e3c625fa9caae39d8f3cf2c76481adbcdda91fd00ee9e8a2
 SHA512 
e3e2dd9f5b961255f897ca1912f9deb34ac62628ff40289ff0f8f3900746482f2f32d390c64b88c10f10b8a99388e27099abedb7157d77c173524dc763a32155
 DIST NetworkManager-strongswan-1.4.5.tar.bz2 306689 BLAKE2B 
c00a45eede846b927ea63c97d8fec75ceae296fe0f32aa61c87438adbb4bb0108c61c5b6e056dc8973f8bab6a51f8c63443695816a03b9c360565cb880b2d6f5
 SHA512 
b1c8958ec40065ec251f625ac69707d3e86e2d3b0466bd33a23edbdabefa952582ee066fc7e61bfd5921ed8340a7233353a219cff50fdc279a67c8269920cb86

diff --git 
a/net-vpn/networkmanager-strongswan/networkmanager-strongswan-1.4.4-r1.ebuild 
b/net-vpn/networkmanager-strongswan/networkmanager-strongswan-1.4.4-r1.ebuild
deleted file mode 100644
index 931f582aa93..000
--- 
a/net-vpn/networkmanager-strongswan/networkmanager-strongswan-1.4.4-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="NetworkManager"
-MY_P="${P/networkmanager/${MY_PN}}"
-
-DESCRIPTION="NetworkManager StrongSwan plugin"
-HOMEPAGE="https://www.strongswan.org/;
-SRC_URI="https://download.strongswan.org/${MY_PN}/${MY_P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+glib"
-
-RDEPEND="
-   app-crypt/libsecret
-   gnome-extra/nm-applet
-   net-misc/networkmanager
-   net-vpn/strongswan[networkmanager]
-   x11-libs/gtk+:3
-"
-
-DEPEND="
-   ${RDEPEND}
-   dev-util/intltool
-"
-
-BDEPEND="virtual/pkgconfig"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
-   local myeconfargs=(
-   # Don't enable all warnings, as some are treated as errors and 
the compilation will fail
-   --disable-more-warnings
-   --disable-static
-   $(usex glib '' --without-libnm-glib)
-   )
-
-   econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   default
-
-   find "${D}" -name '*.la' -delete || die
-}



[gentoo-commits] data/api:master commit in: files/overlays/

2020-02-12 Thread Michał Górny
commit: ff955e51b258d32f348d41c137fa180c8ec3ac7e
Author: Tiago Macedo  gmail  com>
AuthorDate: Wed Feb 12 18:16:19 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 12 18:32:48 2020 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=ff955e51

repositories: add back the tmacedo overlay

Closes: https://github.com/gentoo/api-gentoo-org/pull/249
Signed-off-by: Michał Górny  gentoo.org>

 files/overlays/repositories.xml | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index e53cd22..15a50ca 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -4546,6 +4546,17 @@
 git://github.com/timboudreau/gentoo.git
 g...@github.com:timboudreau/gentoo.git
 https://github.com/timboudreau/gentoo/commits/master.atom
+  
+
+tmacedo
+User Overlay
+https://github.com/tmacedo/portage
+
+  tftfmac...@gmail.com
+  Tiago Macedo
+
+git://github.com/tmacedo/portage.git
+https://github.com/tmacedo/portage/commits/master.atom
   
   
 tocaro



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

2020-02-12 Thread Agostino Sarubbo
commit: cd9be494e759473f31f30dafdf8e2beddaf164da
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 18:22:14 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 18:22:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd9be494

sys-fs/e2fsprogs: x86 stable wrt bug #709374

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/sys-fs/e2fsprogs/e2fsprogs-1.45.5.ebuild 
b/sys-fs/e2fsprogs/e2fsprogs-1.45.5.ebuild
index 8f3adb4257e..a96959d0b63 100644
--- a/sys-fs/e2fsprogs/e2fsprogs-1.45.5.ebuild
+++ b/sys-fs/e2fsprogs/e2fsprogs-1.45.5.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/e2fsprogs/${P}.tar.xz
 
 LICENSE="GPL-2 BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~m68k-mint"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~m68k-mint"
 IUSE="cron fuse nls static-libs elibc_FreeBSD"
 
 RDEPEND="~sys-libs/${PN}-libs-${PV}



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

2020-02-12 Thread Agostino Sarubbo
commit: 153430c5c2505b322a5d4e53702505ca285f079b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 18:22:18 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 18:22:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=153430c5

sys-libs/e2fsprogs-libs: x86 stable wrt bug #709374

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.45.5.ebuild 
b/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.45.5.ebuild
index 9738c13dce7..18069777bc3 100644
--- a/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.45.5.ebuild
+++ b/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.45.5.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/e2fsprogs/${MY_P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~m68k-mint ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~m68k-mint ~x86-solaris"
 IUSE="static-libs"
 
 RDEPEND="!sys-libs/com_err



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

2020-02-12 Thread Agostino Sarubbo
commit: 4bbcf4d538e4f94fc1ed072bee1ae938aa2d4863
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 18:22:04 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 18:22:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bbcf4d5

app-misc/gramps: x86 stable wrt bug #709364

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-misc/gramps/gramps-5.1.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/gramps/gramps-5.1.2-r1.ebuild 
b/app-misc/gramps/gramps-5.1.2-r1.ebuild
index ce968ed57b5..b05f6a7ce78 100644
--- a/app-misc/gramps/gramps-5.1.2-r1.ebuild
+++ b/app-misc/gramps/gramps-5.1.2-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/gramps-project/${PN}/archive/v${PV}.tar.gz
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+rcs +reports exif geo postscript spell"
 
 RDEPEND="



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

2020-02-12 Thread Agostino Sarubbo
commit: 5f935ca54b9ac2b7104fc6cb4764668ea5768833
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 18:21:14 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 18:21:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f935ca5

dev-python/importlib_metadata: s390 stable wrt bug #707062

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/importlib_metadata/importlib_metadata-1.4.0.ebuild 
b/dev-python/importlib_metadata/importlib_metadata-1.4.0.ebuild
index 5380bcd1ddf..f5089be4b05 100644
--- a/dev-python/importlib_metadata/importlib_metadata-1.4.0.ebuild
+++ b/dev-python/importlib_metadata/importlib_metadata-1.4.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 sparc x86"
 
 RDEPEND="
dev-python/zipp[${PYTHON_USEDEP}]



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

2020-02-12 Thread William Hubbs
commit: 69eb824f228af7c9d920668ed4c96c66f16dc144
Author: William Hubbs  sony  com>
AuthorDate: Wed Feb 12 18:09:13 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Feb 12 18:20:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69eb824f

app-admin/helm: 3.0.3 bump

Signed-off-by: William Hubbs  gentoo.org>

 app-admin/helm/Manifest  |   1 +
 app-admin/helm/helm-3.0.3.ebuild | 175 +++
 2 files changed, 176 insertions(+)

diff --git a/app-admin/helm/Manifest b/app-admin/helm/Manifest
index e307816ada6..4a16b2cbfc4 100644
--- a/app-admin/helm/Manifest
+++ b/app-admin/helm/Manifest
@@ -238,3 +238,4 @@ DIST helm-2.16.1.tar.gz 1283836 BLAKE2B 
f0a2cfb05adea2b0a98341962753e777e9329b66
 DIST helm-3.0.0.tar.gz 498488 BLAKE2B 
e55b64d9547744118f35b83ed8ed3f1db168c491dff7d73c9871b7a5af36505b7be2ae861fbe3439463ae8459c71aa30e16fb49858ac9be09516a6e905ed8a51
 SHA512 
924df23cea78d91062f15156c989a84b223eda5b1e291f8a781c0be2334a6f2436936e88b7c800c3fc7f68b8d3ddb1f8be78573f014d17024b68f35f7e11b153
 DIST helm-3.0.1.tar.gz 498975 BLAKE2B 
802b49eccef988571c9469be2dc039bb58373346a9d75284480b61971435774fcfffa42c1ffbc9d94d6f39fc1bc742c296aed2ba2676872bb50128d6333c
 SHA512 
0fae3334e1c5c5a5e35c25a42d37bfdbbfcb40b6c1dc7a7b13dec4357ee0c538b619a2fd965921126ff8a652e1250fb158a502a99bf7da4ea697dff2e905d32b
 DIST helm-3.0.2.tar.gz 499904 BLAKE2B 
0a3fb3912a1cca4c2539922ad5759196de5d4d7e61acb9370017a5053a519ebfd2eaa7bfa3514a05c28e40ba2d0d8bf55b7651fffdc2f32e69d0e0db50bfdb17
 SHA512 
c45ca39603e14c75812c695ffd1d67b070144c5311de369a53fbe10d2935ae616d5fd8e79fb81bbc8485061f649b63446b4f081152c3de0a3a0b4bafac7104a3
+DIST helm-3.0.3.tar.gz 499874 BLAKE2B 
eda691d2b02fb5aaee7e09dd846c19650c3fc0e5d46e703a768b3db5a9966c8bb5548beb1699c5c8771e8e39f8fe35558e601a961d900cd6ebd2e813dec1e6b7
 SHA512 
9dc776f0638350ba09f7a1af383160a56b0badd3c353f57173ea2540625eb36afe2c0cc1a203b6bcef738d32e4d914028a9b0495d2b652a8cbee4317bca47f0b

diff --git a/app-admin/helm/helm-3.0.3.ebuild b/app-admin/helm/helm-3.0.3.ebuild
new file mode 100644
index 000..d1661c568d7
--- /dev/null
+++ b/app-admin/helm/helm-3.0.3.ebuild
@@ -0,0 +1,175 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit go-module bash-completion-r1
+
+DESCRIPTION="Kubernetes Package Manager"
+HOMEPAGE="https://github.com/helm/helm https://helm.sh;
+
+EGO_VENDOR=(
+   "github.com/Nvveen/Gotty a8b993ba6abdb0e0c12b0125c603323a71c7790c 
github.com/ijc25/Gotty"
+   "cloud.google.com/go v0.38.0 
github.com/GoogleCloudPlatform/gcloud-golang"
+   "github.com/Azure/go-ansiterm d6e3b3328b78"
+   "github.com/Azure/go-autorest v13.0.0"
+   "github.com/BurntSushi/toml v0.3.1"
+   "github.com/MakeNowJust/heredoc e9091a26100e"
+   "github.com/Masterminds/goutils v1.1.0"
+   "github.com/Masterminds/semver/v3 v3.0.3 github.com/Masterminds/semver"
+   "github.com/Masterminds/sprig/v3 v3.0.2 github.com/Masterminds/sprig"
+   "github.com/Masterminds/vcs v1.13.0"
+   "github.com/Microsoft/go-winio v0.4.12"
+   "github.com/Microsoft/hcsshim v0.8.6"
+   "github.com/PuerkitoBio/purell v1.1.1"
+   "github.com/PuerkitoBio/urlesc de5bf2ad4578"
+   "github.com/Shopify/logrus-bugsnag 577dee27f20d"
+   "github.com/asaskevich/govalidator f61b66f89f4a"
+   "github.com/beorn7/perks v1.0.1"
+   "github.com/bshuster-repo/logrus-logstash-hook v0.4.1"
+   "github.com/bugsnag/bugsnag-go v1.5.0"
+   "github.com/bugsnag/panicwrap v1.2.0"
+   "github.com/cespare/xxhash/v2 v2.1.0 github.com/cespare/xxhash"
+   "github.com/containerd/containerd v1.3.0"
+   "github.com/containerd/continuity 004b46473808"
+   "github.com/cpuguy83/go-md2man v1.0.10"
+   "github.com/cyphar/filepath-securejoin v0.2.2"
+   "github.com/davecgh/go-spew v1.1.1"
+   "github.com/deislabs/oras v0.7.0"
+   "github.com/dgrijalva/jwt-go v3.2.0"
+   "github.com/docker/cli d88565df0c2d"
+   "github.com/docker/distribution v2.7.1"
+   "github.com/docker/docker 2cb26cfe9cbf"
+   "github.com/docker/docker-credential-helpers v0.6.1"
+   "github.com/docker/go-connections v0.4.0"
+   "github.com/docker/go-metrics b84716841b82"
+   "github.com/docker/go-units v0.4.0"
+   "github.com/docker/libtrust aabc10ec26b7"
+   "github.com/docker/spdystream 6480d4af844c"
+   "github.com/emicklei/go-restful v2.11.1"
+   "github.com/evanphx/json-patch v4.5.0"
+   "github.com/exponent-io/jsonpath d6023ce2651d"
+   "github.com/garyburd/redigo v1.6.0"
+   "github.com/ghodss/yaml v1.0.0"
+   "github.com/go-openapi/jsonpointer v0.19.3"
+   "github.com/go-openapi/jsonreference v0.19.3"
+   "github.com/go-openapi/spec v0.19.4"
+   "github.com/go-openapi/swag v0.19.5"
+   "github.com/gobwas/glob v0.2.3"
+   "github.com/gofrs/flock v0.7.1"

[gentoo-commits] repo/gentoo:master commit in: app-misc/geneweb/files/, app-misc/geneweb/

2020-02-12 Thread Alfredo Tupone
commit: 16ede39343aeead19a64b86967da3401faf66018
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Wed Feb 12 18:15:10 2020 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Wed Feb 12 18:15:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16ede393

app-misc/geneweb: fix build with ocaml-4.09

Bugs: https://bugs.gentoo.org/707312
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 app-misc/geneweb/Manifest  |  1 +
 .../geneweb/files/geneweb-6.08.01-gentoo.patch | 30 
 app-misc/geneweb/geneweb-6.08.01.ebuild| 79 ++
 3 files changed, 110 insertions(+)

diff --git a/app-misc/geneweb/Manifest b/app-misc/geneweb/Manifest
index ce02b368b59..70d8a86db7c 100644
--- a/app-misc/geneweb/Manifest
+++ b/app-misc/geneweb/Manifest
@@ -1,2 +1,3 @@
 DIST geneweb-6.08-ocaml-4.patch.gz 22259 BLAKE2B 
c3471b44bae06db04f51f4fbfacaf5d93388f79673686d0fdd988df482f836bd49f853c5acb3b94c39f890b7d9bd8d118b4042100c466a06a2e57227da9eee3b
 SHA512 
333a9ca899bf454e1c534f6c890b5cbe842821573b39e9d0e432cfbdf30dbe3a495a5ecb5a9b4a00882ee51bbb3ec1ca4b417e34050a7f84e434d0424c126def
+DIST geneweb-6.08.01.tar.gz 1796215 BLAKE2B 
4b7d05126d244984b62ebadda3419ba8cf97326ac3103c73ca5433a8f9edeab8acd968d05942d299e70127bcf75efe5cb9a9af9f7d97ec08fd9a8a6a5aae100d
 SHA512 
54e1ed05e540f1de167c66dee46976a8324a37ca36a9dfd6ab03105fe925053c570842e1a263499fd8bd7aecfebac8f9596b1573fcec1e104e3892337376f84d
 DIST geneweb-6.08.tar.gz 1791450 BLAKE2B 
35fcd0a4087892b992b87dd4fb54b458be0e300042a237458fdeea9a4a9b8649f93261d896d6b7ad19b681b95b343013d99d99027d86b1796f74cab916178d32
 SHA512 
7f1d552342e8a5b05961be75c1afb768853f22cc7eb4477fa63d6a3af29ea852862ce043ae89cd1589ede20fe561ad7d77ab757cc1ecb26ce1473f0e3621b835

diff --git a/app-misc/geneweb/files/geneweb-6.08.01-gentoo.patch 
b/app-misc/geneweb/files/geneweb-6.08.01-gentoo.patch
new file mode 100644
index 000..0226a05904a
--- /dev/null
+++ b/app-misc/geneweb/files/geneweb-6.08.01-gentoo.patch
@@ -0,0 +1,30 @@
+--- a/setup/setup.ml   2007-08-07 19:25:13.0 +0200
 b/setup/setup.ml   2007-08-07 19:24:59.0 +0200
+@@ -5,8 +5,8 @@
+ 
+ value port = ref 2316;
+ value default_lang = ref "en";
+-value setup_dir = ref ".";
+-value bin_dir = ref "";
++value setup_dir = ref "/usr/share/geneweb";
++value bin_dir = ref "/usr/bin";
+ value lang_param = ref "";
+ value only_file = ref "";
+ 
+--- a/tools/Makefile.inc.unix  2017-03-06 08:15:45.334667626 +0100
 b/tools/Makefile.inc.unix  2017-03-06 08:16:10.162223399 +0100
+@@ -6,11 +6,11 @@
+ CAMLP5F=-DUNIX
+ CAMLP5D=+camlp5
+ LIBUNIX=-cclib -lunix
+-OCAMLC=ocamlc.opt -w -3 -warn-error +a-52 -safe-string
+-OCAMLOPT=ocamlopt.opt -w -3 -warn-error +a-52 -safe-string
++OCAMLC=ocamlc.opt -w -3 -safe-string
++OCAMLOPT=ocamlopt.opt -w -3 -safe-string
+ OCAMLI=
+ OCAMLD=
+-STRIP=strip
++STRIP=true
+ RM=/bin/rm -f
+ EXE=
+ STATIC=-ccopt -static

diff --git a/app-misc/geneweb/geneweb-6.08.01.ebuild 
b/app-misc/geneweb/geneweb-6.08.01.ebuild
new file mode 100644
index 000..70389b658f0
--- /dev/null
+++ b/app-misc/geneweb/geneweb-6.08.01.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit eutils
+
+GITID=9641e494cd85fb1b7baba32412d120da38234ba2
+
+DESCRIPTION="Genealogy software program with a Web interface"
+HOMEPAGE="https://github.com/geneanet/geneweb;
+SRC_URI="https://github.com/geneweb/geneweb/archive/${GITID}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ocamlopt"
+RESTRICT="strip"
+
+RDEPEND="dev-lang/ocaml[ocamlopt?]
+   dev-ml/camlp5[ocamlopt?]
+   acct-user/geneweb
+   acct-group/geneweb"
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-gentoo.patch
+   "${FILESDIR}"/${PN}-6.08-parallellbuild.patch )
+
+S="${WORKDIR}"/${PN}-${GITID}
+
+src_compile() {
+   if use ocamlopt; then
+   emake
+   else
+   emake OCAMLC=ocamlc OCAMLOPT=ocamlopt out
+   # If using bytecode we dont want to strip the binary as it 
would remove
+   # the bytecode and only leave ocamlrun...
+   fi
+}
+
+src_install() {
+   dodoc ICHANGES
+   emake new_distrib
+   emake wrappers
+   # Install doc
+   cd distribution
+   dodoc CHANGES.txt
+   # Install binaries
+   cd gw
+   dobin gwc gwc1 gwc2 consang gwd gwu update_nldb ged2gwb ged2gwb2 
gwb2ged gwsetup
+   insinto /usr/lib/${PN}
+   doins -r gwtp_tmp/*
+   dodoc a.gwf
+   insinto /usr/share/${PN}
+   doins -r etc images lang setup gwd.arg only.txt
+
+   cd ../..
+
+   # Install binaries
+   dobin src/check_base
+   # Install manpages
+   doman man/*
+
+   # Install doc
+   dodoc -r contrib
+   docompress -x /usr/share/doc/${PF}/contrib
+
+   newinitd 

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

2020-02-12 Thread David Seifert
commit: fd6d61b2da89062a0c77ce953307611333c2e73b
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:09 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd6d61b2

app-text/xlhtml: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 app-text/xlhtml/xlhtml-0.5.1_p6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xlhtml/xlhtml-0.5.1_p6.ebuild 
b/app-text/xlhtml/xlhtml-0.5.1_p6.ebuild
index 455462deef3..e7b9c2b7218 100644
--- a/app-text/xlhtml/xlhtml-0.5.1_p6.ebuild
+++ b/app-text/xlhtml/xlhtml-0.5.1_p6.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-inherit autotools eutils
+inherit autotools eutils vcs-clean
 
 MY_PV=${PV/_p*/}
 DEB_PR=${PV/*_p/}



[gentoo-commits] repo/gentoo:master commit in: x11-themes/gnustep-neos-theme/

2020-02-12 Thread David Seifert
commit: 63ed49778badc25d0f9866fa94b2bef319bdfd81
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:03:20 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:03:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63ed4977

x11-themes/gnustep-neos-theme: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Closes: https://github.com/gentoo/gentoo/pull/14641
Signed-off-by: David Seifert  gentoo.org>

 x11-themes/gnustep-neos-theme/gnustep-neos-theme-0.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-themes/gnustep-neos-theme/gnustep-neos-theme-0.1.ebuild 
b/x11-themes/gnustep-neos-theme/gnustep-neos-theme-0.1.ebuild
index c7ff7f33808..37f68eabdf9 100644
--- a/x11-themes/gnustep-neos-theme/gnustep-neos-theme-0.1.ebuild
+++ b/x11-themes/gnustep-neos-theme/gnustep-neos-theme-0.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-inherit eutils gnustep-2
+inherit eutils gnustep-2 vcs-clean
 
 DESCRIPTION="GNUstep theme closely following the original NeXT look and feel"
 HOMEPAGE="http://gap.nongnu.org/themes/index.html;



[gentoo-commits] repo/gentoo:master commit in: games-fps/sauerbraten/

2020-02-12 Thread David Seifert
commit: 7e39f169c0bf4a8d57d3df856b1f4b96228a0952
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:41 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e39f169

games-fps/sauerbraten: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 games-fps/sauerbraten/sauerbraten-2013.02.03.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-fps/sauerbraten/sauerbraten-2013.02.03.ebuild 
b/games-fps/sauerbraten/sauerbraten-2013.02.03.ebuild
index 4bb7c3603b5..6671f8f3e87 100644
--- a/games-fps/sauerbraten/sauerbraten-2013.02.03.ebuild
+++ b/games-fps/sauerbraten/sauerbraten-2013.02.03.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-inherit eutils flag-o-matic gnome2-utils games
+inherit eutils flag-o-matic gnome2-utils games vcs-clean
 
 EDITION="collect_edition"
 DESCRIPTION="Sauerbraten is a FOSS game engine (Cube 2) with freeware game 
data (Sauerbraten)"



[gentoo-commits] repo/gentoo:master commit in: games-sports/ultimatestunts/

2020-02-12 Thread David Seifert
commit: 63640ccc5ba4e5835f42a7e53f481b5bc49f38d8
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:50 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63640ccc

games-sports/ultimatestunts: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 games-sports/ultimatestunts/ultimatestunts-0.7.7-r1.ebuild | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/games-sports/ultimatestunts/ultimatestunts-0.7.7-r1.ebuild 
b/games-sports/ultimatestunts/ultimatestunts-0.7.7-r1.ebuild
index 53a8f0c1a68..7870bc36b08 100644
--- a/games-sports/ultimatestunts/ultimatestunts-0.7.7-r1.ebuild
+++ b/games-sports/ultimatestunts/ultimatestunts-0.7.7-r1.ebuild
@@ -1,10 +1,12 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-inherit eutils flag-o-matic versionator
+
+inherit eutils flag-o-matic vcs-clean versionator
 
 MY_P=${PN}-srcdata-$(replace_all_version_separators)1
+
 DESCRIPTION="Remake of the famous Stunts game"
 HOMEPAGE="http://www.ultimatestunts.nl/;
 SRC_URI="mirror://sourceforge/ultimatestunts/${MY_P}.tar.gz"



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

2020-02-12 Thread David Seifert
commit: 0af737e519c6a8e792e0b22f27a62df7d06c6e19
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:53 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0af737e5

net-analyzer/snortsam: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

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

diff --git a/net-analyzer/snortsam/snortsam-2.70.ebuild 
b/net-analyzer/snortsam/snortsam-2.70.ebuild
index 4a04baa7aea..800c7f6f08e 100644
--- a/net-analyzer/snortsam/snortsam-2.70.ebuild
+++ b/net-analyzer/snortsam/snortsam-2.70.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-inherit eutils flag-o-matic toolchain-funcs
+inherit eutils flag-o-matic toolchain-funcs vcs-clean
 
 DESCRIPTION="Snort plugin that allows automated blocking of IP addresses on 
several firewalls"
 HOMEPAGE="http://www.snortsam.net/;



[gentoo-commits] repo/gentoo:master commit in: games-sports/torcs/

2020-02-12 Thread David Seifert
commit: 95b273d22c923c5c220600a1e96ce996529bca91
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:47 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95b273d2

games-sports/torcs: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 games-sports/torcs/torcs-1.3.6-r1.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/games-sports/torcs/torcs-1.3.6-r1.ebuild 
b/games-sports/torcs/torcs-1.3.6-r1.ebuild
index 77612fb8eaa..1ecccdb449b 100644
--- a/games-sports/torcs/torcs-1.3.6-r1.ebuild
+++ b/games-sports/torcs/torcs-1.3.6-r1.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-inherit autotools eutils multilib
+
+inherit autotools eutils multilib vcs-clean
 
 DESCRIPTION="The Open Racing Car Simulator"
 HOMEPAGE="http://torcs.sourceforge.net/;



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

2020-02-12 Thread David Seifert
commit: e7b8e108a41fdbf5ae7b637c28419935dd8957ca
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:35 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7b8e108

dev-python/cheetah-docs: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 dev-python/cheetah-docs/cheetah-docs-0.9.16_alpha1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/cheetah-docs/cheetah-docs-0.9.16_alpha1.ebuild 
b/dev-python/cheetah-docs/cheetah-docs-0.9.16_alpha1.ebuild
index 608379b1d81..fbb30d45f63 100644
--- a/dev-python/cheetah-docs/cheetah-docs-0.9.16_alpha1.ebuild
+++ b/dev-python/cheetah-docs/cheetah-docs-0.9.16_alpha1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-inherit eutils
+inherit eutils vcs-clean
 
 DESCRIPTION="Documentation for Cheetah templates"
 HOMEPAGE="http://www.cheetahtemplate.org/;



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/clozurecl/

2020-02-12 Thread David Seifert
commit: 0991ff0cf1212213f1d5bda92f491715c4d6437b
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:32 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0991ff0c

dev-lisp/clozurecl: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 dev-lisp/clozurecl/clozurecl-1.11.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/clozurecl/clozurecl-1.11.5.ebuild 
b/dev-lisp/clozurecl/clozurecl-1.11.5.ebuild
index 0abff0b04ef..5c3a3d5125c 100644
--- a/dev-lisp/clozurecl/clozurecl-1.11.5.ebuild
+++ b/dev-lisp/clozurecl/clozurecl-1.11.5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit eutils flag-o-matic multilib toolchain-funcs
+inherit eutils flag-o-matic multilib toolchain-funcs vcs-clean
 
 MY_PN=ccl
 MY_P=${MY_PN}-${PV}



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

2020-02-12 Thread David Seifert
commit: 2d380333dafe26b4e4595e9737d63de57d675335
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:15 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d380333

dev-db/go-etcd: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 dev-db/go-etcd/go-etcd-0_p20141013-r1.ebuild | 6 --
 dev-db/go-etcd/go-etcd-2.0.0-r1.ebuild   | 4 +++-
 dev-db/go-etcd/go-etcd-2.0.0.ebuild  | 4 ++--
 3 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/dev-db/go-etcd/go-etcd-0_p20141013-r1.ebuild 
b/dev-db/go-etcd/go-etcd-0_p20141013-r1.ebuild
index 798b7e5544c..e7ea9c19b91 100644
--- a/dev-db/go-etcd/go-etcd-0_p20141013-r1.ebuild
+++ b/dev-db/go-etcd/go-etcd-0_p20141013-r1.ebuild
@@ -1,11 +1,13 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-inherit eutils
+inherit eutils vcs-clean
+
 GO_PN=github.com/coreos/${PN}
 DESCRIPTION="Go client library for etcd"
+
 HOMEPAGE="https://github.com/coreos/go-etcd;
 EGIT_COMMIT="25e2c63be8e8ab405014a78879e0992ae5ff55e8"
 SRC_URI="https://${GO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"

diff --git a/dev-db/go-etcd/go-etcd-2.0.0-r1.ebuild 
b/dev-db/go-etcd/go-etcd-2.0.0-r1.ebuild
index 78e82a0d677..8080eefda57 100644
--- a/dev-db/go-etcd/go-etcd-2.0.0-r1.ebuild
+++ b/dev-db/go-etcd/go-etcd-2.0.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -6,6 +6,8 @@ EAPI=5
 GO_PN=github.com/coreos/${PN}
 EGIT_COMMIT="25e2c63be8e8ab405014a78879e0992ae5ff55e8"
 
+inherit vcs-clean
+
 DESCRIPTION="Go client library for etcd"
 HOMEPAGE="https://github.com/coreos/go-etcd;
 SRC_URI="https://${GO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"

diff --git a/dev-db/go-etcd/go-etcd-2.0.0.ebuild 
b/dev-db/go-etcd/go-etcd-2.0.0.ebuild
index cec9a8d3286..b47229902f4 100644
--- a/dev-db/go-etcd/go-etcd-2.0.0.ebuild
+++ b/dev-db/go-etcd/go-etcd-2.0.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-inherit eutils
+inherit eutils vcs-clean
 
 GO_PN=github.com/coreos/${PN}
 EGIT_COMMIT="25e2c63be8e8ab405014a78879e0992ae5ff55e8"



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

2020-02-12 Thread David Seifert
commit: e4918e96e842736d339f32df7b08ce1685c06b4e
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:03:02 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:03:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4918e96

net-misc/linux-eoip: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 net-misc/linux-eoip/linux-eoip-0.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/linux-eoip/linux-eoip-0.5.ebuild 
b/net-misc/linux-eoip/linux-eoip-0.5.ebuild
index 89b53995b2a..715474cb94c 100644
--- a/net-misc/linux-eoip/linux-eoip-0.5.ebuild
+++ b/net-misc/linux-eoip/linux-eoip-0.5.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=4
 AUTOTOOLS_AUTORECONF=1
 AUTOTOOLS_IN_SOURCE_BUILD=1
 
-inherit eutils autotools-utils
+inherit eutils autotools-utils vcs-clean
 
 DESCRIPTION="Linux support for proprietary MIkrotik EoIP protocol"
 HOMEPAGE="https://code.google.com/p/linux-eoip/;



[gentoo-commits] repo/gentoo:master commit in: sci-chemistry/hollow/

2020-02-12 Thread David Seifert
commit: ba2db1a09d27da61fb450eda1751e0b1f9a0e95c
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:03:08 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:03:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba2db1a0

sci-chemistry/hollow: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 sci-chemistry/hollow/hollow-1.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-chemistry/hollow/hollow-1.2-r1.ebuild 
b/sci-chemistry/hollow/hollow-1.2-r1.ebuild
index 9c421e26b2b..d1db2c19db3 100644
--- a/sci-chemistry/hollow/hollow-1.2-r1.ebuild
+++ b/sci-chemistry/hollow/hollow-1.2-r1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
 PYTHON_COMPAT=( python2_7 )
 
-inherit python-r1
+inherit python-r1 vcs-clean
 
 DESCRIPTION="Production of surface images of proteins"
 HOMEPAGE="http://hollow.sourceforge.net/;



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

2020-02-12 Thread David Seifert
commit: f85454a13b11c5d2595cccf892594015ec9530d7
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:24 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f85454a1

dev-lang/srf: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 dev-lang/srf/srf-1.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/srf/srf-1.0-r2.ebuild b/dev-lang/srf/srf-1.0-r2.ebuild
index c5871b6fe37..75e62c66f6f 100644
--- a/dev-lang/srf/srf-1.0-r2.ebuild
+++ b/dev-lang/srf/srf-1.0-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit eutils
+inherit eutils vcs-clean
 
 DESCRIPTION="The Simple Recursive Functions programming language"
 HOMEPAGE="http://www.stratigery.com/srf.html;



[gentoo-commits] repo/gentoo:master commit in: games-sports/bygfoot/

2020-02-12 Thread David Seifert
commit: 4fbf825c3bf247c1c0f5f630024ffcbe27eaf2bf
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:44 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fbf825c

games-sports/bygfoot: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 games-sports/bygfoot/bygfoot-2.3.2-r1.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/games-sports/bygfoot/bygfoot-2.3.2-r1.ebuild 
b/games-sports/bygfoot/bygfoot-2.3.2-r1.ebuild
index ea344fe4a07..9ed990aea67 100644
--- a/games-sports/bygfoot/bygfoot-2.3.2-r1.ebuild
+++ b/games-sports/bygfoot/bygfoot-2.3.2-r1.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-inherit eutils
+
+inherit eutils vcs-clean
 
 DESCRIPTION="GTK+2 Soccer Management Game"
 HOMEPAGE="http://bygfoot.sourceforge.net/;



[gentoo-commits] repo/gentoo:master commit in: net-irc/ptlink-ircd/

2020-02-12 Thread David Seifert
commit: 18145cac29dcfa3f8101f91a37b31157a38f80bf
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:59 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18145cac

net-irc/ptlink-ircd: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r3.ebuild 
b/net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r3.ebuild
index 6b9f9a8ccdc..b608a84138e 100644
--- a/net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r3.ebuild
+++ b/net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit eutils ssl-cert user
+inherit eutils ssl-cert user vcs-clean
 
 MY_P="PTlink${PV}"
 



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

2020-02-12 Thread David Seifert
commit: 70eca3492789c0b6db4fde8a03167a23ff554580
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:27 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70eca349

dev-libs/go-fuse: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 dev-libs/go-fuse/go-fuse-0_p20140812-r1.ebuild | 2 +-
 dev-libs/go-fuse/go-fuse-0_p20150422.ebuild| 2 +-
 dev-libs/go-fuse/go-fuse-.ebuild   | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-libs/go-fuse/go-fuse-0_p20140812-r1.ebuild 
b/dev-libs/go-fuse/go-fuse-0_p20140812-r1.ebuild
index 81e6776158e..b962c085f6b 100644
--- a/dev-libs/go-fuse/go-fuse-0_p20140812-r1.ebuild
+++ b/dev-libs/go-fuse/go-fuse-0_p20140812-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-inherit eutils
+inherit eutils vcs-clean
 
 GO_PN=github.com/hanwen/${PN}
 EGIT_COMMIT="8c85ded140ac1889372a0e22d8d21e3d10a303bd"

diff --git a/dev-libs/go-fuse/go-fuse-0_p20150422.ebuild 
b/dev-libs/go-fuse/go-fuse-0_p20150422.ebuild
index 78fd3a9d465..d432b751b89 100644
--- a/dev-libs/go-fuse/go-fuse-0_p20150422.ebuild
+++ b/dev-libs/go-fuse/go-fuse-0_p20150422.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-inherit eutils
+inherit eutils vcs-clean
 
 GO_PN=github.com/hanwen/${PN}
 EGIT_COMMIT="ffed29ec8b88f61c1b8954134cc48ef03bb26ce1"

diff --git a/dev-libs/go-fuse/go-fuse-.ebuild 
b/dev-libs/go-fuse/go-fuse-.ebuild
index 2627a21a5a4..6e408999381 100644
--- a/dev-libs/go-fuse/go-fuse-.ebuild
+++ b/dev-libs/go-fuse/go-fuse-.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-inherit git-r3
+inherit git-r3 vcs-clean
 
 DESCRIPTION="native bindings for the FUSE kernel module"
 HOMEPAGE="https://github.com/hanwen/go-fuse;



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

2020-02-12 Thread David Seifert
commit: e3c6d5b5c689e2ccb738b9ee08c7240fc98e0795
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:03:17 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:03:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3c6d5b5

sci-mathematics/rstudio: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 sci-mathematics/rstudio/rstudio-1.1.463-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-mathematics/rstudio/rstudio-1.1.463-r1.ebuild 
b/sci-mathematics/rstudio/rstudio-1.1.463-r1.ebuild
index 09f22605f33..8b60b2efe5b 100644
--- a/sci-mathematics/rstudio/rstudio-1.1.463-r1.ebuild
+++ b/sci-mathematics/rstudio/rstudio-1.1.463-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit eutils user cmake-utils gnome2-utils pam xdg-utils java-pkg-2 
pax-utils qmake-utils
+inherit eutils user cmake-utils gnome2-utils pam xdg-utils java-pkg-2 
pax-utils qmake-utils vcs-clean
 
 # TODO
 # * package gin and gwt



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

2020-02-12 Thread David Seifert
commit: 57e609cfaf7d0d13ae986d6660b6df59a7cf514a
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:21 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57e609cf

dev-lang/mercury: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 dev-lang/mercury/mercury-14.01.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/mercury/mercury-14.01.1-r1.ebuild 
b/dev-lang/mercury/mercury-14.01.1-r1.ebuild
index 595078fd7f7..9ba41fae06f 100644
--- a/dev-lang/mercury/mercury-14.01.1-r1.ebuild
+++ b/dev-lang/mercury/mercury-14.01.1-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-inherit autotools elisp-common eutils flag-o-matic java-pkg-opt-2 multilib 
xdg-utils
+inherit autotools elisp-common eutils flag-o-matic java-pkg-opt-2 multilib 
vcs-clean xdg-utils
 
 PATCHSET_VER="4"
 MY_P=${PN}-srcdist-${PV}



[gentoo-commits] repo/gentoo:master commit in: sci-libs/rosetta-fragments/

2020-02-12 Thread David Seifert
commit: 0cf1a85b67d63a03fb36329879beb35cd700fa38
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:03:14 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:03:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cf1a85b

sci-libs/rosetta-fragments: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 sci-libs/rosetta-fragments/rosetta-fragments-3.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/rosetta-fragments/rosetta-fragments-3.1-r1.ebuild 
b/sci-libs/rosetta-fragments/rosetta-fragments-3.1-r1.ebuild
index 3dff9b7585b..2e5c7afd21c 100644
--- a/sci-libs/rosetta-fragments/rosetta-fragments-3.1-r1.ebuild
+++ b/sci-libs/rosetta-fragments/rosetta-fragments-3.1-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit eutils flag-o-matic prefix toolchain-funcs
+inherit eutils flag-o-matic prefix toolchain-funcs vcs-clean
 
 DESCRIPTION="Fragment library for rosetta"
 HOMEPAGE="http://www.rosettacommons.org;



[gentoo-commits] repo/gentoo:master commit in: net-wireless/airpwn/

2020-02-12 Thread David Seifert
commit: 8bbf92be2d92f6afa7c25d776f7eb07051fbd32c
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:03:05 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:03:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bbf92be

net-wireless/airpwn: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 net-wireless/airpwn/airpwn-1.4-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-wireless/airpwn/airpwn-1.4-r2.ebuild 
b/net-wireless/airpwn/airpwn-1.4-r2.ebuild
index 1bfc79c5085..4c695a11a24 100644
--- a/net-wireless/airpwn/airpwn-1.4-r2.ebuild
+++ b/net-wireless/airpwn/airpwn-1.4-r2.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 
 PYTHON_COMPAT=( python2_7 )
 
-inherit eutils flag-o-matic python-single-r1
+inherit eutils flag-o-matic python-single-r1 vcs-clean
 
 DESCRIPTION="Tool for generic packet injection on 802.11"
 HOMEPAGE="http://airpwn.sf.net;



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

2020-02-12 Thread David Seifert
commit: 9c7fb90a28224f06b459483d4d74d3085521f7e3
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:30 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c7fb90a

dev-libs/mathjax: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 dev-libs/mathjax/mathjax-2.7.0.ebuild | 4 ++--
 dev-libs/mathjax/mathjax-2.7.4.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-libs/mathjax/mathjax-2.7.0.ebuild 
b/dev-libs/mathjax/mathjax-2.7.0.ebuild
index e7c89b829bf..7a926467c50 100644
--- a/dev-libs/mathjax/mathjax-2.7.0.ebuild
+++ b/dev-libs/mathjax/mathjax-2.7.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit eutils
+inherit eutils vcs-clean
 
 DESCRIPTION="JavaScript display engine for LaTeX, MathML and AsciiMath"
 HOMEPAGE="http://www.mathjax.org/;

diff --git a/dev-libs/mathjax/mathjax-2.7.4.ebuild 
b/dev-libs/mathjax/mathjax-2.7.4.ebuild
index cd23b2b8e94..7a926467c50 100644
--- a/dev-libs/mathjax/mathjax-2.7.4.ebuild
+++ b/dev-libs/mathjax/mathjax-2.7.4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit eutils
+inherit eutils vcs-clean
 
 DESCRIPTION="JavaScript display engine for LaTeX, MathML and AsciiMath"
 HOMEPAGE="http://www.mathjax.org/;



[gentoo-commits] repo/gentoo:master commit in: sci-libs/rosetta-db/

2020-02-12 Thread David Seifert
commit: b420c9348179a1af0f05900fac1064000ab895d7
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:03:11 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:03:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b420c934

sci-libs/rosetta-db: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 sci-libs/rosetta-db/rosetta-db-3.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/rosetta-db/rosetta-db-3.4.ebuild 
b/sci-libs/rosetta-db/rosetta-db-3.4.ebuild
index 5854fc6b1d7..0264e523005 100644
--- a/sci-libs/rosetta-db/rosetta-db-3.4.ebuild
+++ b/sci-libs/rosetta-db/rosetta-db-3.4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit eutils
+inherit eutils vcs-clean
 
 MY_PN="${PN%-db}"
 MY_P="${MY_PN}${PV}_database"



[gentoo-commits] repo/gentoo:master commit in: app-vim/youcompleteme/

2020-02-12 Thread David Seifert
commit: d7108bde6166590ddb0e8a2ab77e43744c7ed4e2
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:12 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7108bde

app-vim/youcompleteme: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 app-vim/youcompleteme/youcompleteme-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-vim/youcompleteme/youcompleteme-.ebuild 
b/app-vim/youcompleteme/youcompleteme-.ebuild
index c5e133ef743..54e1ec4e106 100644
--- a/app-vim/youcompleteme/youcompleteme-.ebuild
+++ b/app-vim/youcompleteme/youcompleteme-.ebuild
@@ -5,7 +5,7 @@ EAPI=5
 
 PYTHON_COMPAT=( python2_7 )
 
-inherit eutils multilib python-single-r1 cmake-utils vim-plugin
+inherit eutils multilib python-single-r1 cmake-utils vcs-clean vim-plugin
 
 if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://github.com/Valloric/YouCompleteMe.git;



[gentoo-commits] repo/gentoo:master commit in: net-irc/cgiirc/

2020-02-12 Thread David Seifert
commit: 9e7378c7f06bc3df3945bca18fbe67b8dcb43af1
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:56 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e7378c7

net-irc/cgiirc: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 net-irc/cgiirc/cgiirc-0.5.10.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-irc/cgiirc/cgiirc-0.5.10.ebuild 
b/net-irc/cgiirc/cgiirc-0.5.10.ebuild
index 0116a26679d..72da20317ce 100644
--- a/net-irc/cgiirc/cgiirc-0.5.10.ebuild
+++ b/net-irc/cgiirc/cgiirc-0.5.10.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-inherit webapp eutils
+inherit webapp eutils vcs-clean
 
 DESCRIPTION="A perl/CGI program to use IRC from a web browser"
 HOMEPAGE="http://cgiirc.org/;



[gentoo-commits] repo/gentoo:master commit in: games-engines/nazghul/

2020-02-12 Thread David Seifert
commit: f272d1279082e28367d3e0cdba44eccf433f0f14
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:38 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f272d127

games-engines/nazghul: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 games-engines/nazghul/nazghul-0.7.1-r1.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/games-engines/nazghul/nazghul-0.7.1-r1.ebuild 
b/games-engines/nazghul/nazghul-0.7.1-r1.ebuild
index 14be63f70af..3bcc845864d 100644
--- a/games-engines/nazghul/nazghul-0.7.1-r1.ebuild
+++ b/games-engines/nazghul/nazghul-0.7.1-r1.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-inherit eutils
+
+inherit eutils vcs-clean
 
 DESCRIPTION="A computer role-playing game (CRPG) engine with game called 
HaximA"
 HOMEPAGE="http://myweb.cableone.net/gmcnutt/nazghul.html;



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

2020-02-12 Thread David Seifert
commit: 7077c5e3dca25a9984b4854a6910ab6602d7efac
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 18:02:18 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 18:02:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7077c5e3

dev-lang/mercury-extras: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 dev-lang/mercury-extras/mercury-extras-14.01.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/mercury-extras/mercury-extras-14.01.1.ebuild 
b/dev-lang/mercury-extras/mercury-extras-14.01.1.ebuild
index 11bd6cc09b4..6fc2a533fc9 100644
--- a/dev-lang/mercury-extras/mercury-extras-14.01.1.ebuild
+++ b/dev-lang/mercury-extras/mercury-extras-14.01.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-inherit eutils multilib
+inherit eutils multilib vcs-clean
 
 PATCHSET_VER="2"
 MY_P=mercury-srcdist-${PV}



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

2020-02-12 Thread Zac Medico
commit: 5ecd273b83326b2163b5c3bf9d48dc9e26abc0b9
Author: Zac Medico  gentoo  org>
AuthorDate: Wed Feb 12 17:57:41 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed Feb 12 18:01:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ecd273b

app-admin/consul: Bump to version 1.7.0

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

 app-admin/consul/Manifest|  1 +
 app-admin/consul/consul-1.7.0.ebuild | 75 
 2 files changed, 76 insertions(+)

diff --git a/app-admin/consul/Manifest b/app-admin/consul/Manifest
index 426ed0b13b5..9ffce1f6e60 100644
--- a/app-admin/consul/Manifest
+++ b/app-admin/consul/Manifest
@@ -1,2 +1,3 @@
 DIST consul-1.6.2.tar.gz 22041280 BLAKE2B 
0b2edcd68fa166c178587a1ed3ca0445847d34510cd4e341f85a370257958a155ef6f976b045fc8e87af39107a3930ccb6d7a798ad142e87362f82d68ece4c3c
 SHA512 
2df67854b85fa27600bf2cd57c913669f784019ee5a25b20a950ab00a403ca0562d74cb73c3402ebcec6cd951d7b9b4eb80c926746bcc27050db85f31192f826
 DIST consul-1.6.3.tar.gz 22065994 BLAKE2B 
4d37a8141c097182c66a8ba7ab8f7031125e71b7a1b7dc8c419630504896634d797f4d733ddeb71555a2a988a2418548f40a12f333202833527483cbc8a590f6
 SHA512 
16a3fb3584d273ca178b213c9f314577d9473c39a5e436108bcae42f8b68803a548a5cc62d0c8426aa82e2b86dd6355f3d86f833ee6ec6fe1a4955589daf039f
+DIST consul-1.7.0.tar.gz 22791558 BLAKE2B 
005c6c74d7808183b362286f98a2f5cc301c9aabb9afc4db1cd5f160ac0a0bdf9b868ad96b28bd3f1503e6fc2951720c69b5f9e4f888d0c4fb5f9fa534c322af
 SHA512 
ea368335b34498ea92d80240d71424deceb903eab6fb7a22fca2bf6e7a509526c86899b501ac8045ad69b0fa102be6db0a11fa50917fc15ca17f889f948af4e6

diff --git a/app-admin/consul/consul-1.7.0.ebuild 
b/app-admin/consul/consul-1.7.0.ebuild
new file mode 100644
index 000..b721d4f0ca3
--- /dev/null
+++ b/app-admin/consul/consul-1.7.0.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit golang-vcs-snapshot systemd user
+GIT_COMMIT="95fb95b"
+KEYWORDS="~amd64"
+EGO_PN="github.com/hashicorp/consul"
+DESCRIPTION="A tool for service discovery, monitoring and configuration"
+HOMEPAGE="https://www.consul.io;
+SRC_URI="https://github.com/hashicorp/consul/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MPL-2.0 Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT"
+IUSE=""
+
+RESTRICT="test"
+
+DEPEND="dev-go/gox
+   >=dev-lang/go-1.11:=
+   >=dev-go/go-tools-0_pre20160121"
+RDEPEND=""
+
+pkg_setup() {
+   enewgroup consul
+   enewuser consul -1 -1 /var/lib/${PN} consul
+}
+
+src_prepare() {
+   default
+
+   # avoid network-sandbox violations since go-1.13
+   rm src/${EGO_PN}/go.mod || die
+   grep -rlZ '_ "github.com/envoyproxy/protoc-gen-validate/validate"' . | \
+   xargs -0 sed -i '/_ 
"github.com\/envoyproxy\/protoc-gen-validate\/validate"/d' || die
+
+   sed -e 's:go get -u -v $(GOTOOLS)::' \
+   -e 's:vendorfmt dev-build:dev-build:' \
+   -e '/^GIT.*?=/d' \
+   -i "src/${EGO_PN}/GNUmakefile" || die
+}
+
+src_compile() {
+   # The dev target sets causes build.sh to set appropriate XC_OS
+   # and XC_ARCH, and skips generation of an unused zip file,
+   # avoiding a dependency on app-arch/zip.
+   GOPATH="${S}" \
+   GOBIN="${S}/bin" \
+   GIT_DESCRIBE="v${PV}" \
+   GIT_DIRTY="" \
+   GIT_COMMIT="${GIT_COMMIT}" \
+   emake -C "src/${EGO_PN}" dev-build
+}
+
+src_install() {
+   local x
+
+   dobin bin/consul
+
+   keepdir /etc/consul.d
+   insinto /etc/consul.d
+   doins "${FILESDIR}/"*.json.example
+
+   for x in /var/{lib,log}/${PN}; do
+   keepdir "${x}"
+   fowners consul:consul "${x}"
+   done
+
+   newinitd "${FILESDIR}/consul.initd" "${PN}"
+   newconfd "${FILESDIR}/consul.confd" "${PN}"
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}/${PN}.logrotated" "${PN}"
+   systemd_dounit "${FILESDIR}/consul.service"
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/lastpass-binary-component/

2020-02-12 Thread Göktürk Yüksek
commit: deccaea109bb0b09cf67ce85a3bfdbdcf6a769d2
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Wed Feb 12 17:38:06 2020 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Wed Feb 12 17:38:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=deccaea1

app-admin/lastpass-binary-component: remove old

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Göktürk Yüksek  gentoo.org>

 .../lastpass-binary-component-4.19.0.ebuild| 114 -
 1 file changed, 114 deletions(-)

diff --git 
a/app-admin/lastpass-binary-component/lastpass-binary-component-4.19.0.ebuild 
b/app-admin/lastpass-binary-component/lastpass-binary-component-4.19.0.ebuild
deleted file mode 100644
index ac0969132cf..000
--- 
a/app-admin/lastpass-binary-component/lastpass-binary-component-4.19.0.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Binary component required by the LastPass Password Manager 
browser extension"
-HOMEPAGE="https://helpdesk.lastpass.com/downloading-and-installing/#h5;
-# sadly, upstream has no versioned distfiles
-SRC_URI="https://download.cloud.lastpass.com/linux/lplinux.tar.bz2 -> 
${P}.tar.bz2"
-
-LICENSE="LastPass"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-RESTRICT="bindist strip mirror" # We can't mirror it, but we can fetch it
-
-LASTPASS_EXEDIR=/opt/lastpass/
-
-QA_PREBUILT="
-   ${LASTPASS_EXEDIR}nplastpass*
-"
-
-S="${WORKDIR}"
-
-src_install() {
-   # This is based on the upstream installer script that's in the tarball
-   bin=nplastpass
-   use amd64 && bin="${bin}64"
-   exeinto ${LASTPASS_EXEDIR}
-   doexe "${S}"/${bin}
-
-   # Generate the policy file for Chrome/Chromium/Opera
-   cat >"${T}"/lastpass_policy.json <<-EOF || die
-   {
-   "ExtensionInstallSources": [
-   "https://lastpass.com/*;,
-   "https://*.lastpass.com/*;,
-   "https://d1jxck0p3rkj0.cloudfront.net/lastpass/*;
-   ]
-   }
-   EOF
-   # Install the policy file for Chrome/Chromium/Opera
-   for d in /etc/chromium /etc/opt/chrome; do
-   insinto ${d}/policies/managed
-   doins "${T}"/lastpass_policy.json
-   done
-
-   # Generate the app manifest for Chrome/Opera
-   cat >"${T}"/com.lastpass.nplastpass.json <<-EOF || die
-   {
-   "name": "com.lastpass.nplastpass",
-   "description": "LastPass",
-   "path": "${LASTPASS_EXEDIR}${bin}",
-   "type": "stdio",
-   "allowed_origins": [
-   "chrome-extension://hdokiejnpimakedhajhdlcegeplioahd/",
-   "chrome-extension://debgaelkhoipmbjnhpoblmbacnmmgbeg/",
-   "chrome-extension://hnjalnkldgigidggphhmacmimbdlafdo/",
-   "chrome-extension://hgnkdfamjgnljokmokheijphenjjhkjc/"
-   ]
-   }
-   EOF
-   # Install the app manifest for Chrome/Opera
-   # https://developer.chrome.com/apps/nativeMessaging
-   # https://dev.opera.com/extensions/message-passing/
-   insinto /etc/opt/chrome/native-messaging-hosts
-   doins "${T}"/com.lastpass.nplastpass.json
-
-   # Generate the app manifest for Chromium
-   cat >"${T}"/com.lastpass.nplastpass.json <<-EOF || die
-   {
-   "name": "com.lastpass.nplastpass",
-   "description": "LastPass",
-   "path": "${LASTPASS_EXEDIR}${bin}",
-   "type": "stdio",
-   "allowed_origins": [
-   "chrome-extension://hdokiejnpimakedhajhdlcegeplioahd/",
-   "chrome-extension://debgaelkhoipmbjnhpoblmbacnmmgbeg/",
-   "chrome-extension://hgnkdfamjgnljokmokheijphenjjhkjc/"
-   ]
-   }
-   EOF
-   # Install the app manifest for Chromium
-   # https://developer.chrome.com/apps/nativeMessaging
-   insinto /etc/chromium/native-messaging-hosts/
-   doins "${T}"/com.lastpass.nplastpass.json
-
-   # Generate the app manifest for Firefox
-   cat >"${T}"/com.lastpass.nplastpass.json <<-EOF || die
-   {
-   "name": "com.lastpass.nplastpass",
-   "description": "LastPass",
-   "path": "${LASTPASS_EXEDIR}${bin}",
-   "type": "stdio",
-   "allowed_extensions": [
-   "supp...@lastpass.com"
-   ]
-   }
-   EOF
-   # Install the app manifest for Firefox
-   # 
https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Native_manifests#Manifest_location
-   insinto /usr/lib/mozilla/native-messaging-hosts/
-   doins "${T}"/com.lastpass.nplastpass.json
-}
-
-pkg_postinst() {
-   einfo "This package only installs the components required by the 
browser extension."
-  

[gentoo-commits] repo/gentoo:master commit in: app-admin/lastpass-binary-component/

2020-02-12 Thread Göktürk Yüksek
commit: e536cb3322bc9fd988349e8f1dcf169b3160c85b
Author: Lucian Poston  pm  me>
AuthorDate: Wed Feb 12 10:51:41 2020 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Wed Feb 12 17:37:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e536cb33

app-admin/lastpass-binary-component: Install to both firefox dirs

Firefox's directory for native messaging hosts is a compile-time
variable. www-client/firefox-bin is set to a directory under /usr/lib/,
while www-client/firefox varies. This -r1 bump will install to both
locations so that both firefox and firefox-bin are able to locate the
plugin.

Closes: https://bugs.gentoo.org/688104
Closes: https://github.com/gentoo/gentoo/pull/14636
Bug: https://bugs.gentoo.org/687746
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Lucian Poston  pm.me>
Signed-off-by: Göktürk Yüksek  gentoo.org>

 .../lastpass-binary-component-4.19.0-r1.ebuild | 116 +
 1 file changed, 116 insertions(+)

diff --git 
a/app-admin/lastpass-binary-component/lastpass-binary-component-4.19.0-r1.ebuild
 
b/app-admin/lastpass-binary-component/lastpass-binary-component-4.19.0-r1.ebuild
new file mode 100644
index 000..0913632e723
--- /dev/null
+++ 
b/app-admin/lastpass-binary-component/lastpass-binary-component-4.19.0-r1.ebuild
@@ -0,0 +1,116 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Binary component required by the LastPass Password Manager 
browser extension"
+HOMEPAGE="https://helpdesk.lastpass.com/downloading-and-installing/#h5;
+# sadly, upstream has no versioned distfiles
+SRC_URI="https://download.cloud.lastpass.com/linux/lplinux.tar.bz2 -> 
${P}.tar.bz2"
+
+LICENSE="LastPass"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+RESTRICT="bindist strip mirror" # We can't mirror it, but we can fetch it
+
+LASTPASS_EXEDIR=/opt/lastpass/
+
+QA_PREBUILT="
+   ${LASTPASS_EXEDIR}nplastpass*
+"
+
+S="${WORKDIR}"
+
+src_install() {
+   # This is based on the upstream installer script that's in the tarball
+   bin=nplastpass
+   use amd64 && bin="${bin}64"
+   exeinto ${LASTPASS_EXEDIR}
+   doexe "${S}"/${bin}
+
+   # Generate the policy file for Chrome/Chromium/Opera
+   cat >"${T}"/lastpass_policy.json <<-EOF || die
+   {
+   "ExtensionInstallSources": [
+   "https://lastpass.com/*;,
+   "https://*.lastpass.com/*;,
+   "https://d1jxck0p3rkj0.cloudfront.net/lastpass/*;
+   ]
+   }
+   EOF
+   # Install the policy file for Chrome/Chromium/Opera
+   for d in /etc/chromium /etc/opt/chrome; do
+   insinto ${d}/policies/managed
+   doins "${T}"/lastpass_policy.json
+   done
+
+   # Generate the app manifest for Chrome/Opera
+   cat >"${T}"/com.lastpass.nplastpass.json <<-EOF || die
+   {
+   "name": "com.lastpass.nplastpass",
+   "description": "LastPass",
+   "path": "${LASTPASS_EXEDIR}${bin}",
+   "type": "stdio",
+   "allowed_origins": [
+   "chrome-extension://hdokiejnpimakedhajhdlcegeplioahd/",
+   "chrome-extension://debgaelkhoipmbjnhpoblmbacnmmgbeg/",
+   "chrome-extension://hnjalnkldgigidggphhmacmimbdlafdo/",
+   "chrome-extension://hgnkdfamjgnljokmokheijphenjjhkjc/"
+   ]
+   }
+   EOF
+   # Install the app manifest for Chrome/Opera
+   # https://developer.chrome.com/apps/nativeMessaging
+   # https://dev.opera.com/extensions/message-passing/
+   insinto /etc/opt/chrome/native-messaging-hosts
+   doins "${T}"/com.lastpass.nplastpass.json
+
+   # Generate the app manifest for Chromium
+   cat >"${T}"/com.lastpass.nplastpass.json <<-EOF || die
+   {
+   "name": "com.lastpass.nplastpass",
+   "description": "LastPass",
+   "path": "${LASTPASS_EXEDIR}${bin}",
+   "type": "stdio",
+   "allowed_origins": [
+   "chrome-extension://hdokiejnpimakedhajhdlcegeplioahd/",
+   "chrome-extension://debgaelkhoipmbjnhpoblmbacnmmgbeg/",
+   "chrome-extension://hgnkdfamjgnljokmokheijphenjjhkjc/"
+   ]
+   }
+   EOF
+   # Install the app manifest for Chromium
+   # https://developer.chrome.com/apps/nativeMessaging
+   insinto /etc/chromium/native-messaging-hosts/
+   doins "${T}"/com.lastpass.nplastpass.json
+
+   # Generate the app manifest for Firefox
+   cat >"${T}"/com.lastpass.nplastpass.json <<-EOF || die
+   {
+   "name": "com.lastpass.nplastpass",
+   "description": "LastPass",
+   "path": "${LASTPASS_EXEDIR}${bin}",
+   "type": "stdio",
+   "allowed_extensions": 

[gentoo-commits] repo/gentoo:master commit in: x11-misc/polybar/

2020-02-12 Thread Johannes Huber
commit: 519ce6bc173d6880a409ddbeb0b44247336bbe1a
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Feb 12 17:20:44 2020 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Feb 12 17:20:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=519ce6bc

x11-misc/polybar: Fix use dep on xcb-proto

Closes: https://bugs.gentoo.org/708158
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Johannes Huber  gentoo.org>

 x11-misc/polybar/polybar-3.4.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/polybar/polybar-3.4.2-r1.ebuild 
b/x11-misc/polybar/polybar-3.4.2-r1.ebuild
index 0c63677028c..70111d6c06d 100644
--- a/x11-misc/polybar/polybar-3.4.2-r1.ebuild
+++ b/x11-misc/polybar/polybar-3.4.2-r1.ebuild
@@ -23,7 +23,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 DEPEND="
${PYTHON_DEPS}
-   x11-base/xcb-proto
+   $(python_gen_cond_dep 'x11-base/xcb-proto[${PYTHON_MULTI_USEDEP}]')
x11-libs/cairo[X,xcb(+)]
x11-libs/libxcb[xkb]
x11-libs/xcb-util-image



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

2020-02-12 Thread Johannes Huber
commit: d25a304cfc73a36f295c5c36ccd14709ebee9d72
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Feb 12 16:56:47 2020 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Feb 12 16:58:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d25a304c

media-libs/qtav: Remove 1.12.0-r1

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Johannes Huber  gentoo.org>

 media-libs/qtav/qtav-1.12.0-r1.ebuild | 64 ---
 1 file changed, 64 deletions(-)

diff --git a/media-libs/qtav/qtav-1.12.0-r1.ebuild 
b/media-libs/qtav/qtav-1.12.0-r1.ebuild
deleted file mode 100644
index cac2cb20460..000
--- a/media-libs/qtav/qtav-1.12.0-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="QtAV"
-CAPI_HASH="b43aa93"
-inherit cmake
-
-DESCRIPTION="Multimedia playback framework based on Qt + FFmpeg"
-HOMEPAGE="https://www.qtav.org;
-SRC_URI="https://github.com/wang-bin/${MY_PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz
-https://dev.gentoo.org/~johu/distfiles/${P}-capi.h-${CAPI_HASH}.xz;
-
-LICENSE="GPL-3+ LGPL-2.1+"
-SLOT="0/1"
-KEYWORDS="~amd64"
-IUSE="gui libav opengl portaudio pulseaudio vaapi"
-REQUIRED_USE="gui? ( opengl )"
-
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtdeclarative:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   gui? ( dev-qt/qtsql:5 )
-   libav? (
-   media-video/libav:=
-   x11-libs/libX11
-   )
-   !libav? ( media-video/ffmpeg:= )
-   opengl? ( dev-qt/qtopengl:5 )
-   portaudio? ( media-libs/portaudio )
-   pulseaudio? ( media-sound/pulseaudio )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-PATCHES=(
-   "${FILESDIR}"/${P}-multilib.patch
-   "${FILESDIR}"/${P}-ffmpeg4-{1,2}.patch # bugs 660852, 670765
-   "${FILESDIR}"/${P}-qt5.14.patch
-)
-
-src_prepare() {
-   cmake_src_prepare
-   cp "${WORKDIR}/${P}-capi.h-${CAPI_HASH}" contrib/capi/capi.h \
-   || die "Failed to add missing header"
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_TESTS=OFF
-   -DBUILD_EXAMPLES=OFF
-   -DBUILD_PLAYERS=$(usex gui)
-   -DBUILD_QT5OPENGL=$(usex opengl)
-   -DHAVE_PORTAUDIO=$(usex portaudio)
-   -DHAVE_PULSE=$(usex pulseaudio)
-   -DHAVE_VAAPI=$(usex vaapi)
-   )
-
-   cmake_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: net-nds/openldap/

2020-02-12 Thread Mikle Kolyada
commit: d68d4b6c21cf023d7c6a2544bb36fc9a41ab7440
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Feb 12 16:46:25 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Feb 12 16:46:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d68d4b6c

net-nds/openldap: Drop old

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mikle Kolyada  gentoo.org>

 net-nds/openldap/Manifest   |   1 -
 net-nds/openldap/openldap-2.4.45.ebuild | 882 
 2 files changed, 883 deletions(-)

diff --git a/net-nds/openldap/Manifest b/net-nds/openldap/Manifest
index ed0cf9a5574..097a02925b8 100644
--- a/net-nds/openldap/Manifest
+++ b/net-nds/openldap/Manifest
@@ -1,4 +1,3 @@
-DIST openldap-2.4.45.tgz 5672845 BLAKE2B 
e1f97553482a2e8630b62bc0f439af2484f1a2349a1a077382a124354424fe510ab55f32c073565b142d0c9318870fe31a2652268ebabd97d3afd8c833bc7aab
 SHA512 
1c9fc84efed8998f107ce6e1c6be3f5466388241afdca0cb3847720c9def0bc263a2dbc15bf0f9112d1b4c391fd01e8531a4fb08c5532c30fb86924c08daedab
 DIST openldap-2.4.48.tgz 5704883 BLAKE2B 
ef856ff0b22c9187e68e9c09583a176fe4c2ee1f5bfe6b169f03bc0058294170ec4d1aa1b164e28eecd2ef6bafab539c1b942b0bd74e93852205beeaff39aeef
 SHA512 
cf694a415be0bd55cc7f606099da2ed461748efd276561944cd29d7f5a8252a9be799d8778fac2d4fa9f382731eb4ca48c6b85630cb58a3b8249843561ae8feb
 DIST openldap-2.4.49.tgz 5704723 BLAKE2B 
ee777588d758f6704b0d38b90feb85b27e2307510a05d1d147324e9958a6f6fc5bc7dd521a1462971c3f707429ad38fab734f508d71fd88b447770e112e844a2
 SHA512 
99d1943d126b06e62865e31e5825fcff2cb15415f7f85ae4962fa0e7425bc3b58db5b9639150d7b09e3642c80257724c745e47c25ab4fcb1bba0ba771011dd49
 DIST rfc2307bis.schema-20140524 12262 BLAKE2B 
98031f49e9bde1e4821e637af3382364d8344ed7017649686a088070d96a632dffa6c661552352656b1b159c0fd962965580069a64c7f3d5bb6a3ed75f60fd99
 SHA512 
83b89a1deeefc8566b97e7e865b9b6d04541099cbdf719e24538a7d27d61b6209e87ab9003a9f140bd9afd018ec569e71721e3a24090e1902c8b6659d2ba103e

diff --git a/net-nds/openldap/openldap-2.4.45.ebuild 
b/net-nds/openldap/openldap-2.4.45.ebuild
deleted file mode 100644
index 4d11c27b76e..000
--- a/net-nds/openldap/openldap-2.4.45.ebuild
+++ /dev/null
@@ -1,882 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit db-use eutils flag-o-matic multilib multilib-minimal preserve-libs 
ssl-cert versionator toolchain-funcs autotools user systemd
-
-BIS_PN=rfc2307bis.schema
-BIS_PV=20140524
-BIS_P="${BIS_PN}-${BIS_PV}"
-
-DESCRIPTION="LDAP suite of application and development tools"
-HOMEPAGE="http://www.OpenLDAP.org/;
-
-# mirrors are mostly not working, using canonical URI
-SRC_URI="ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/${P}.tgz
-mirror://gentoo/${BIS_P}"
-
-LICENSE="OPENLDAP GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~ppc-aix ~amd64-linux ~x86-linux ~x86-solaris"
-
-IUSE_DAEMON="crypt samba slp tcpd experimental minimal"
-IUSE_BACKEND="+berkdb"
-IUSE_OVERLAY="overlays perl"
-IUSE_OPTIONAL="gnutls iodbc sasl ssl odbc debug ipv6 libressl +syslog selinux 
static-libs"
-IUSE_CONTRIB="smbkrb5passwd kerberos kinit pbkdf2 sha2"
-IUSE_CONTRIB="${IUSE_CONTRIB} -cxx"
-IUSE="${IUSE_DAEMON} ${IUSE_BACKEND} ${IUSE_OVERLAY} ${IUSE_OPTIONAL} 
${IUSE_CONTRIB}"
-
-REQUIRED_USE="cxx? ( sasl )
-   pbkdf2? ( ssl )"
-
-# always list newer first
-# Do not add any AGPL-3 BDB here!
-# See bug 525110, comment 15.
-# Advanced usage: OPENLDAP_BDB_SLOTS in the environment can be used to force a 
slot during build.
-BDB_SLOTS="${OPENLDAP_BDB_SLOTS:=5.3 5.1 4.8 4.7 4.6 4.5 4.4}"
-BDB_PKGS=''
-for _slot in $BDB_SLOTS; do BDB_PKGS="${BDB_PKGS} sys-libs/db:${_slot}" ; done
-
-# openssl is needed to generate lanman-passwords required by samba
-CDEPEND="
-   ssl? (
-   !gnutls? (
-   !libressl? ( 
>=dev-libs/openssl-1.0.1h-r2:0=[${MULTILIB_USEDEP}] )
-   libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] )
-   )
-   gnutls? (
-   >=net-libs/gnutls-2.12.23-r6:=[${MULTILIB_USEDEP}]
-   >=dev-libs/libgcrypt-1.5.3:0=[${MULTILIB_USEDEP}]
-   )
-   )
-   sasl? ( dev-libs/cyrus-sasl:= )
-   !minimal? (
-   sys-devel/libtool
-   sys-libs/e2fsprogs-libs
-   >=dev-db/lmdb-0.9.18:=
-   tcpd? ( sys-apps/tcp-wrappers )
-   odbc? ( !iodbc? ( dev-db/unixODBC )
-   iodbc? ( dev-db/libiodbc ) )
-   slp? ( net-libs/openslp )
-   perl? ( dev-lang/perl:=[-build(-)] )
-   samba? (
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl )
-   )
-   berkdb? (
-   ${l}"
-   eerror " 4. mv 

[gentoo-commits] repo/gentoo:master commit in: net-nds/openldap/

2020-02-12 Thread Mikle Kolyada
commit: 79afa36ff4994a224a4750bac21e31c718282e0d
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Feb 12 16:24:56 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Feb 12 16:38:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79afa36f

net-nds/openldap: Version bump (v2.4.49)

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mikle Kolyada  gentoo.org>

 net-nds/openldap/Manifest   |   1 +
 net-nds/openldap/openldap-2.4.49.ebuild | 901 
 2 files changed, 902 insertions(+)

diff --git a/net-nds/openldap/Manifest b/net-nds/openldap/Manifest
index 0aba7c48052..ed0cf9a5574 100644
--- a/net-nds/openldap/Manifest
+++ b/net-nds/openldap/Manifest
@@ -1,3 +1,4 @@
 DIST openldap-2.4.45.tgz 5672845 BLAKE2B 
e1f97553482a2e8630b62bc0f439af2484f1a2349a1a077382a124354424fe510ab55f32c073565b142d0c9318870fe31a2652268ebabd97d3afd8c833bc7aab
 SHA512 
1c9fc84efed8998f107ce6e1c6be3f5466388241afdca0cb3847720c9def0bc263a2dbc15bf0f9112d1b4c391fd01e8531a4fb08c5532c30fb86924c08daedab
 DIST openldap-2.4.48.tgz 5704883 BLAKE2B 
ef856ff0b22c9187e68e9c09583a176fe4c2ee1f5bfe6b169f03bc0058294170ec4d1aa1b164e28eecd2ef6bafab539c1b942b0bd74e93852205beeaff39aeef
 SHA512 
cf694a415be0bd55cc7f606099da2ed461748efd276561944cd29d7f5a8252a9be799d8778fac2d4fa9f382731eb4ca48c6b85630cb58a3b8249843561ae8feb
+DIST openldap-2.4.49.tgz 5704723 BLAKE2B 
ee777588d758f6704b0d38b90feb85b27e2307510a05d1d147324e9958a6f6fc5bc7dd521a1462971c3f707429ad38fab734f508d71fd88b447770e112e844a2
 SHA512 
99d1943d126b06e62865e31e5825fcff2cb15415f7f85ae4962fa0e7425bc3b58db5b9639150d7b09e3642c80257724c745e47c25ab4fcb1bba0ba771011dd49
 DIST rfc2307bis.schema-20140524 12262 BLAKE2B 
98031f49e9bde1e4821e637af3382364d8344ed7017649686a088070d96a632dffa6c661552352656b1b159c0fd962965580069a64c7f3d5bb6a3ed75f60fd99
 SHA512 
83b89a1deeefc8566b97e7e865b9b6d04541099cbdf719e24538a7d27d61b6209e87ab9003a9f140bd9afd018ec569e71721e3a24090e1902c8b6659d2ba103e

diff --git a/net-nds/openldap/openldap-2.4.49.ebuild 
b/net-nds/openldap/openldap-2.4.49.ebuild
new file mode 100644
index 000..d7df0d817e0
--- /dev/null
+++ b/net-nds/openldap/openldap-2.4.49.ebuild
@@ -0,0 +1,901 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools db-use flag-o-matic multilib-minimal ssl-cert 
toolchain-funcs user systemd
+
+BIS_PN=rfc2307bis.schema
+BIS_PV=20140524
+BIS_P="${BIS_PN}-${BIS_PV}"
+
+DESCRIPTION="LDAP suite of application and development tools"
+HOMEPAGE="http://www.OpenLDAP.org/;
+
+# mirrors are mostly not working, using canonical URI
+SRC_URI="ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/${P}.tgz
+mirror://gentoo/${BIS_P}"
+
+LICENSE="OPENLDAP GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~x86-solaris"
+
+IUSE_DAEMON="crypt samba tcpd experimental minimal"
+IUSE_BACKEND="+berkdb"
+IUSE_OVERLAY="overlays perl"
+IUSE_OPTIONAL="gnutls iodbc sasl ssl odbc debug ipv6 libressl +syslog selinux 
static-libs test"
+IUSE_CONTRIB="smbkrb5passwd kerberos kinit pbkdf2 sha2"
+IUSE_CONTRIB="${IUSE_CONTRIB} -cxx"
+IUSE="${IUSE_DAEMON} ${IUSE_BACKEND} ${IUSE_OVERLAY} ${IUSE_OPTIONAL} 
${IUSE_CONTRIB}"
+
+RESTRICT="!test? ( test )"
+REQUIRED_USE="cxx? ( sasl )
+   pbkdf2? ( ssl )
+   test? ( berkdb )
+   ?? ( test minimal )"
+
+# always list newer first
+# Do not add any AGPL-3 BDB here!
+# See bug 525110, comment 15.
+# Advanced usage: OPENLDAP_BDB_SLOTS in the environment can be used to force a 
slot during build.
+BDB_SLOTS="${OPENLDAP_BDB_SLOTS:=5.3 5.1 4.8 4.7 4.6 4.5 4.4}"
+BDB_PKGS=''
+for _slot in $BDB_SLOTS; do BDB_PKGS="${BDB_PKGS} sys-libs/db:${_slot}" ; done
+
+# openssl is needed to generate lanman-passwords required by samba
+COMMON_DEPEND="
+   ssl? (
+   !gnutls? (
+   !libressl? ( 
>=dev-libs/openssl-1.0.1h-r2:0=[${MULTILIB_USEDEP}] )
+   libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] )
+   )
+   gnutls? (
+   >=net-libs/gnutls-2.12.23-r6:=[${MULTILIB_USEDEP}]
+   >=dev-libs/libgcrypt-1.5.3:0=[${MULTILIB_USEDEP}]
+   )
+   )
+   sasl? ( dev-libs/cyrus-sasl:= )
+   !minimal? (
+   sys-devel/libtool
+   sys-libs/e2fsprogs-libs
+   >=dev-db/lmdb-0.9.18:=
+   tcpd? ( sys-apps/tcp-wrappers )
+   odbc? ( !iodbc? ( dev-db/unixODBC )
+   iodbc? ( dev-db/libiodbc ) )
+   perl? ( dev-lang/perl:=[-build(-)] )
+   samba? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )
+   berkdb? (
+dash
+   

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

2020-02-12 Thread Ulrich Müller
commit: 9156695ec0f85fc30bbf5293732c425cbdc7012d
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Feb 12 16:21:44 2020 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Feb 12 16:27:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9156695e

Revert "epatch.eclass: drop 'estack.eclass' usage"

estack.eclass is needed for evar_push/evar_pop. The issue mentioned
in bug 662586 was fixed indenpendently in estack.eclass, so there is
no longer any need for the workaround (see comment #27 of that bug).

This reverts commit b21e386a064e1ed49981d9527f968ddc5e1eeb86.

Signed-off-by: Ulrich Müller  gentoo.org>

 eclass/epatch.eclass | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/eclass/epatch.eclass b/eclass/epatch.eclass
index 1ea657a3b6f..da936413677 100644
--- a/eclass/epatch.eclass
+++ b/eclass/epatch.eclass
@@ -19,6 +19,8 @@ case ${EAPI:-0} in
die "${ECLASS}: banned in EAPI=${EAPI}; use eapply* instead";;
 esac
 
+inherit estack
+
 # @VARIABLE: EPATCH_SOURCE
 # @DESCRIPTION:
 # Default directory to search for patches.
@@ -209,14 +211,13 @@ epatch() {
# Let people filter things dynamically
if [[ -n ${EPATCH_EXCLUDE}${EPATCH_USER_EXCLUDE} ]] ; then
# let people use globs in the exclude
-   local prev_noglob=$(shopt -p -o noglob)
-   set -o noglob
+   eshopts_push -o noglob
 
local ex
for ex in ${EPATCH_EXCLUDE} ; do
if [[ ${patchname} == ${ex} ]] ; then
einfo "  Skipping ${patchname} due to 
EPATCH_EXCLUDE ..."
-   ${prev_noglob}
+   eshopts_pop
continue 2
fi
done
@@ -224,12 +225,12 @@ epatch() {
for ex in ${EPATCH_USER_EXCLUDE} ; do
if [[ ${patchname} == ${ex} ]] ; then
einfo "  Skipping ${patchname} due to 
EPATCH_USER_EXCLUDE ..."
-   ${prev_noglob}
+   eshopts_pop
continue 2
fi
done
 
-   ${prev_noglob}
+   eshopts_pop
fi
 
if [[ ${SINGLE_PATCH} == "yes" ]] ; then



[gentoo-commits] repo/gentoo:master commit in: media-tv/kodi/

2020-02-12 Thread Craig Andrews
commit: 5ba383c00629c9843e36420ae2a6b4375d192bc8
Author: Craig Andrews  gentoo  org>
AuthorDate: Wed Feb 12 16:21:16 2020 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Wed Feb 12 16:21:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ba383c0

media-tv/kodi-: require libfmt 6.1.2

See: https://github.com/xbmc/xbmc/pull/17362
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Craig Andrews  gentoo.org>

 media-tv/kodi/kodi-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-tv/kodi/kodi-.ebuild b/media-tv/kodi/kodi-.ebuild
index c78d67f3d62..b75aaa12504 100644
--- a/media-tv/kodi/kodi-.ebuild
+++ b/media-tv/kodi/kodi-.ebuild
@@ -76,7 +76,7 @@ COMMON_DEPEND="${PYTHON_DEPS}
dev-python/pycryptodome[${PYTHON_MULTI_USEDEP}]
')
>=dev-libs/libcdio-0.94
-   >=dev-libs/libfmt-3.0.1
+   >=dev-libs/libfmt-6.1.2
dev-libs/libfstrcmp
gbm? (  media-libs/mesa[gbm] )
gles? (



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

2020-02-12 Thread Agostino Sarubbo
commit: 3f7e71bab13d0e617f5c580adb41c09a1b6da49e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 16:14:05 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 16:14:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f7e71ba

sys-apps/sed: s390 stable wrt bug #705466

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/sys-apps/sed/sed-4.7.ebuild b/sys-apps/sed/sed-4.7.ebuild
index cab8f59e13b..60bb169a708 100644
--- a/sys-apps/sed/sed-4.7.ebuild
+++ b/sys-apps/sed/sed-4.7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/sed/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
~sh sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86"
 IUSE="acl nls selinux static"
 
 RDEPEND="



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

2020-02-12 Thread Agostino Sarubbo
commit: c39c2aba19164bbdc7e7f621934492a8b84b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 16:13:33 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 16:13:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c39c2aba

dev-python/waitress: s390 stable wrt bug #706146

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/waitress/waitress-1.3.1.ebuild 
b/dev-python/waitress/waitress-1.3.1.ebuild
index 0b6e922fbbe..f736eea3db3 100644
--- a/dev-python/waitress/waitress-1.3.1.ebuild
+++ b/dev-python/waitress/waitress-1.3.1.ebuild
@@ -16,6 +16,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="ZPL"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~s390 ~sh sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 s390 ~sh sparc x86"
 
 distutils_enable_tests nose



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

2020-02-12 Thread Agostino Sarubbo
commit: fff759ac4d712ab2214b7530f210cca5718db17c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 16:13:56 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 16:13:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fff759ac

dev-python/hypothesis: s390 stable wrt bug #704906

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/hypothesis/hypothesis-4.50.8.ebuild 
b/dev-python/hypothesis/hypothesis-4.50.8.ebuild
index ed9f59113c7..9ef46441156 100644
--- a/dev-python/hypothesis/hypothesis-4.50.8.ebuild
+++ b/dev-python/hypothesis/hypothesis-4.50.8.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/HypothesisWorks/${PN}/archive/${PN}-python-${PV}.tar
 
 LICENSE="MPL-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-02-12 Thread Agostino Sarubbo
commit: 049aa9fea8593b154bf7dfef0d493bc43fb831e5
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 16:13:46 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 16:13:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=049aa9fe

app-text/libpaper: s390 stable wrt bug #704422

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-text/libpaper/libpaper-1.1.24_p5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/libpaper/libpaper-1.1.24_p5.ebuild 
b/app-text/libpaper/libpaper-1.1.24_p5.ebuild
index 0c18fff8d81..4ed44d96c20 100644
--- a/app-text/libpaper/libpaper-1.1.24_p5.ebuild
+++ b/app-text/libpaper/libpaper-1.1.24_p5.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="mirror://debian/pool/main/libp/libpaper/${PN}_${MY_PV}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 S="${WORKDIR}/${PN}-${MY_PV}"



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

2020-02-12 Thread Agostino Sarubbo
commit: 73de94c09b832648243cd2c95a17535d58db77cc
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 16:13:49 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 16:13:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73de94c0

dev-python/pyflakes: s390 stable wrt bug #704472

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/pyflakes/pyflakes-2.1.1.ebuild 
b/dev-python/pyflakes/pyflakes-2.1.1.ebuild
index c7b4f8fcfbc..6dc370b19cc 100644
--- a/dev-python/pyflakes/pyflakes-2.1.1.ebuild
+++ b/dev-python/pyflakes/pyflakes-2.1.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="${BDEPEND}"



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

2020-02-12 Thread Agostino Sarubbo
commit: a12f822e648a592e9044676f5986b0a34c0ffa7b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 16:14:02 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 16:14:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a12f822e

dev-python/cryptography: s390 stable wrt bug #705048

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/cryptography/cryptography-2.8-r1.ebuild 
b/dev-python/cryptography/cryptography-2.8-r1.ebuild
index 65d300d2eed..c3f6e3e4bf4 100644
--- a/dev-python/cryptography/cryptography-2.8-r1.ebuild
+++ b/dev-python/cryptography/cryptography-2.8-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
 
 LICENSE="|| ( Apache-2.0 BSD )"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
 IUSE="libressl idna test"
 RESTRICT="!test? ( test )"
 



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

2020-02-12 Thread Agostino Sarubbo
commit: c95b5b4bdab4330a6daf5d1172562061cc38d8d6
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 16:13:35 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 16:13:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c95b5b4b

dev-python/wsgiproxy2: s390 stable wrt bug #706146

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/wsgiproxy2/wsgiproxy2-0.4.6.ebuild 
b/dev-python/wsgiproxy2/wsgiproxy2-0.4.6.ebuild
index 754f35e07a4..4bb43a0c8fb 100644
--- a/dev-python/wsgiproxy2/wsgiproxy2-0.4.6.ebuild
+++ b/dev-python/wsgiproxy2/wsgiproxy2-0.4.6.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ppc64 s390 ~sh ~sparc x86"
 
 RDEPEND="
dev-python/requests[${PYTHON_USEDEP}]



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

2020-02-12 Thread Agostino Sarubbo
commit: 2b192dd9c04da38b824d09496a6b358ddfc95339
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 16:13:27 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 16:13:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b192dd9

dev-python/freezegun: s390 stable wrt bug #706138

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/freezegun/freezegun-0.3.12-r1.ebuild 
b/dev-python/freezegun/freezegun-0.3.12-r1.ebuild
index b5a2e5c2ed4..c5960eec32a 100644
--- a/dev-python/freezegun/freezegun-0.3.12-r1.ebuild
+++ b/dev-python/freezegun/freezegun-0.3.12-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="test"
 
 RDEPEND="



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

2020-02-12 Thread Agostino Sarubbo
commit: 3834ae55070543905b38dcd3f2929bb757c32dc1
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 16:13:40 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 16:13:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3834ae55

dev-python/future: s390 stable wrt bug #704270

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/future/future-0.18.2.ebuild 
b/dev-python/future/future-0.18.2.ebuild
index ea0650f6ce9..5847b6ad6b6 100644
--- a/dev-python/future/future-0.18.2.ebuild
+++ b/dev-python/future/future-0.18.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc"
 
 distutils_enable_tests pytest



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

2020-02-12 Thread Agostino Sarubbo
commit: 3671a8dc11573d8c32b6cc03f1517e5e3ec60ed6
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 16:13:10 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 16:13:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3671a8dc

dev-libs/zziplib: s390 stable wrt bug #614040

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/zziplib/zziplib-0.13.69-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/zziplib/zziplib-0.13.69-r1.ebuild 
b/dev-libs/zziplib/zziplib-0.13.69-r1.ebuild
index b46e8d037fb..b87be22ddb1 100644
--- a/dev-libs/zziplib/zziplib-0.13.69-r1.ebuild
+++ b/dev-libs/zziplib/zziplib-0.13.69-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/gdraheim/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="|| ( LGPL-2.1 MPL-1.1 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc sdl static-libs test"
 
 RESTRICT="!test? ( test )"



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

2020-02-12 Thread Agostino Sarubbo
commit: d780a9468c932e512ac48485ab363f45ab33938f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 16:13:18 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 16:13:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d780a946

sys-apps/portage: s390 stable wrt bug #705698

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-apps/portage/portage-2.3.84-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/portage/portage-2.3.84-r1.ebuild 
b/sys-apps/portage/portage-2.3.84-r1.ebuild
index cb0201998af..0e07eb5927e 100644
--- a/sys-apps/portage/portage-2.3.84-r1.ebuild
+++ b/sys-apps/portage/portage-2.3.84-r1.ebuild
@@ -17,7 +17,7 @@ DESCRIPTION="Portage is the package management and 
distribution system for Gento
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
 
 LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
~sh sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86"
 SLOT="0"
 IUSE="build doc epydoc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux xattr"
 



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

2020-02-12 Thread Agostino Sarubbo
commit: 55dd1a4c0fd00ef5c9c80d6fe39690099c0b0a9b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 16:13:37 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 16:13:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55dd1a4c

dev-python/simplejson: s390 stable wrt bug #706506

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/simplejson/simplejson-3.17.0.ebuild 
b/dev-python/simplejson/simplejson-3.17.0.ebuild
index dda17d0ac1e..571b50bafff 100644
--- a/dev-python/simplejson/simplejson-3.17.0.ebuild
+++ b/dev-python/simplejson/simplejson-3.17.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( MIT AFL-2.1 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 
 BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 



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

2020-02-12 Thread Agostino Sarubbo
commit: d4754bbc98f27b0df90dabe390ecd2e2fd149265
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 16:13:53 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 16:13:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4754bbc

dev-util/ccache: s390 stable wrt bug #704890

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-util/ccache/ccache-3.7.6.ebuild 
b/dev-util/ccache/ccache-3.7.6.ebuild
index 6cfc30082f6..d516baace6e 100644
--- a/dev-util/ccache/ccache-3.7.6.ebuild
+++ b/dev-util/ccache/ccache-3.7.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/ccache/ccache/releases/download/v${PV}/ccache-${PV}.
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
~sh sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86"
 IUSE="test"
 
 DEPEND="app-arch/xz-utils



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

2020-02-12 Thread Agostino Sarubbo
commit: 41e718022297ced54273d3af4814723c852237df
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 16:13:20 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 16:13:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41e71802

sys-apps/less: s390 stable wrt bug #706004

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/sys-apps/less/less-551.ebuild b/sys-apps/less/less-551.ebuild
index ae12c5a3815..161f495c55a 100644
--- a/sys-apps/less/less-551.ebuild
+++ b/sys-apps/less/less-551.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://www.greenwoodsoftware.com/less/${P}.tar.gz;
 
 LICENSE="|| ( GPL-3 BSD-2 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="pcre unicode"
 
 DEPEND=">=app-misc/editor-wrapper-3



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

2020-02-12 Thread Agostino Sarubbo
commit: e74ba2adfb4eb12702cda3a71b5f27813af3a526
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 16:13:44 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 16:13:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e74ba2ad

dev-db/libdbi-drivers: s390 stable wrt bug #704418

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-db/libdbi-drivers/libdbi-drivers-0.9.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/libdbi-drivers/libdbi-drivers-0.9.0-r1.ebuild 
b/dev-db/libdbi-drivers/libdbi-drivers-0.9.0-r1.ebuild
index 01cb2381a23..02765abf279 100644
--- a/dev-db/libdbi-drivers/libdbi-drivers-0.9.0-r1.ebuild
+++ b/dev-db/libdbi-drivers/libdbi-drivers-0.9.0-r1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="http://libdbi-drivers.sourceforge.net/;
 LICENSE="LGPL-2.1"
 
 IUSE="doc firebird mysql oci8 postgres +sqlite static-libs"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86"
 SLOT=0
 REQUIRED_USE="|| ( mysql postgres sqlite firebird oci8 )"
 RESTRICT="firebird? ( bindist )"



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

2020-02-12 Thread Agostino Sarubbo
commit: 3e9c78216b39588e6b1d2a29fc04387928e2f4a5
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 16:13:24 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 16:13:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e9c7821

dev-python/python-dateutil: s390 stable wrt bug #706124

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/python-dateutil/python-dateutil-2.8.1-r1.ebuild 
b/dev-python/python-dateutil/python-dateutil-2.8.1-r1.ebuild
index 2043c8454c4..a3d41b6b2ff 100644
--- a/dev-python/python-dateutil/python-dateutil-2.8.1-r1.ebuild
+++ b/dev-python/python-dateutil/python-dateutil-2.8.1-r1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 
 RDEPEND="
>=dev-python/six-1.5[${PYTHON_USEDEP}]



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

2020-02-12 Thread Agostino Sarubbo
commit: b1dd81644de72de01c9e6c3c4330c20039da2317
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 16:13:31 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 16:13:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1dd8164

dev-python/certifi: s390 stable wrt bug #706146

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/certifi/certifi-2019.11.28.ebuild 
b/dev-python/certifi/certifi-2019.11.28.ebuild
index 75aa11e0c60..9e0bd47de22 100644
--- a/dev-python/certifi/certifi-2019.11.28.ebuild
+++ b/dev-python/certifi/certifi-2019.11.28.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MPL-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sh ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 RDEPEND="app-misc/ca-certificates"



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

2020-02-12 Thread Mart Raudsepp
commit: e2279af1734ef1b57e79315a504738ebf1ccd700
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Wed Feb 12 15:51:03 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Wed Feb 12 15:51:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2279af1

dev-libs/libgee: bump to 0.20.3

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-libs/libgee/Manifest |  1 +
 dev-libs/libgee/libgee-0.20.3.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/dev-libs/libgee/Manifest b/dev-libs/libgee/Manifest
index dad9d38e077..67bafc4fded 100644
--- a/dev-libs/libgee/Manifest
+++ b/dev-libs/libgee/Manifest
@@ -1,2 +1,3 @@
 DIST libgee-0.20.2.tar.xz 675684 BLAKE2B 
197eea5f1c4babf203e58c65a3419407c7657f4fb92e4e921afa2408cbe3dcba3f8e554a898766c83d3318a4a7fddc47b17f21daf04d79b5635e3363749cb035
 SHA512 
4ea312f73046fee5d0ad1d5d1942c9f4aecbec22509ce7f00b51352039b9643d65d2f37d4c0de550f0165ff7f6058cf88ecb55d7c5963706a1b63d5ec14c7d7d
+DIST libgee-0.20.3.tar.xz 678488 BLAKE2B 
b35dbad89ebac58ab382a1733d7add2e6fcf1e1ba3a194f20ceb6c33b5cd01d18251147af0e7879e12951bda308597ef64776a9ba4eb3d2b86309136fc709713
 SHA512 
c7dd32bc02ea9f0f70e7593bc5625139802a52674e5aa07fe6fc815a78517f25590419b2da00e194bf7bf5f1505a138ba133d6dba67c44f9cdcb38389825adf7
 DIST libgee-0.6.8.tar.xz 443060 BLAKE2B 
b11275dd27492c0ae80fc354f1167e96def9b7c126089509f83b6d291eb48155224f5449e1b22a2549c6e3f2cb5d5daf5daa3ccc425723b7a203762e09ada091
 SHA512 
b26d36ee9fc0c5c214521ad97bc20f11f1191a3dab72a5f1af2f6435f51ff2f28e81ccb26fac399939c1a7eaad519db98032d3bc593a4052463acd91bb12902a

diff --git a/dev-libs/libgee/libgee-0.20.3.ebuild 
b/dev-libs/libgee/libgee-0.20.3.ebuild
new file mode 100644
index 000..45b254a5fe7
--- /dev/null
+++ b/dev-libs/libgee/libgee-0.20.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2
+
+DESCRIPTION="GObject-based interfaces and classes for commonly used data 
structures"
+HOMEPAGE="https://wiki.gnome.org/Projects/Libgee;
+
+LICENSE="LGPL-2.1+"
+SLOT="0.8/2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-linux"
+IUSE="+introspection"
+
+# FIXME: add doc support, requires valadoc
+RDEPEND="
+   >=dev-libs/glib-2.36:2
+   introspection? ( >=dev-libs/gobject-introspection-0.9.6:= )
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+
+src_configure() {
+   gnome2_src_configure \
+   $(use_enable introspection) \
+   VALAC="$(type -P false)"
+}



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

2020-02-12 Thread Mart Raudsepp
commit: 5d069f01bfec239c94b46844563d550e3b77e134
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Wed Feb 12 15:46:42 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Wed Feb 12 15:48:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d069f01

dev-lang/vala: bump p.masked to 0.47.4

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-lang/vala/Manifest   |  1 +
 dev-lang/vala/vala-0.47.4.ebuild | 49 
 2 files changed, 50 insertions(+)

diff --git a/dev-lang/vala/Manifest b/dev-lang/vala/Manifest
index 7887fee2131..d410f23aef4 100644
--- a/dev-lang/vala/Manifest
+++ b/dev-lang/vala/Manifest
@@ -6,3 +6,4 @@ DIST vala-0.44.11.tar.xz 3370248 BLAKE2B 
c111b6175e6339148e30bedc77f62a9ef3ec912
 DIST vala-0.44.9.tar.xz 3363004 BLAKE2B 
b87f8f7d9cda5a77486720b8c542c42ed448cfbb6a1bae899591a799dcf25882a0539c3acef282d0ba42a7ea78d68e7a5d99aa4daa306a70afe6938732d03c25
 SHA512 
9af559a6cb1680013886a4d425e619503d60394f2c7b1ab897cc7830ee566f8122dcd4380b78b551fbf556cead623c245adc1f7f3357b8315be8c120412a3e9f
 DIST vala-0.46.5.tar.xz 3375148 BLAKE2B 
22bf169159d4f4e23398789e46c39d98a7727cd02e6539104963d34bfe569bad25338b3455ffd32413a36f5cd6061a29bdbbdb275f225f1408d6b34967b64a6c
 SHA512 
eb1763d9c4bfe74441640f7228d44ff7cfd9a379b24b8aa906bc59be4514b319598ffee616d3de1db101134bb163715f33dd1d7a0a10ec03246c7ccf62a4778b
 DIST vala-0.46.6.tar.xz 3383032 BLAKE2B 
c7f38cf617f3a0d5a5915ebedd320ef6a5c3714e21618e95756529e1fb09abc12417f31aeefc0111e828da5c2dabd6195b07bb1cc69c6e74f73d72fe7403637a
 SHA512 
ab24c3ad37af62e38289fd085a33f72e178e0b58c1f24c27c58c1010270a4b0e5cb4cc510b6147c51e5796a7ae63aed3a4ac219b24ff985f2546e25c9ad48992
+DIST vala-0.47.4.tar.xz 3408516 BLAKE2B 
a531bc4698aa40ef413bc0a139225130f8d82bfa2b890ed33e1993203c9c48c345e10dc15bf8b86a0542814a8a41cad330ce15322e68936b6e6b8c31a3516824
 SHA512 
96d2453ababcb64db7db754a33e0f2e9d60f831a52c39bd086191659efa5941989bdc35b677b992524860f129d28fbbe8e3071e893991b8c8c21d6948d32377f

diff --git a/dev-lang/vala/vala-0.47.4.ebuild b/dev-lang/vala/vala-0.47.4.ebuild
new file mode 100644
index 000..e7477d18c54
--- /dev/null
+++ b/dev-lang/vala/vala-0.47.4.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2
+
+DESCRIPTION="Compiler for the GObject type system"
+HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
+
+LICENSE="LGPL-2.1+"
+SLOT="0.48"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-linux"
+IUSE="test valadoc"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-libs/glib-2.48.0:2
+   >=dev-libs/vala-common-${PV}
+   valadoc? ( >=media-gfx/graphviz-2.16 )
+   != it, which 
would be bad
+# as the newer is not required with older vala when those are picked instead 
of 0.46.
+# vala-0.45.91 ships a broken libsoup-2.4.vapi copy too, but that'll be fixed 
by 0.45.92
+DEPEND="${RDEPEND}
+   dev-libs/libxslt
+   sys-devel/flex
+   virtual/pkgconfig
+   virtual/yacc
+   test? (
+   dev-libs/dbus-glib
+   >=dev-libs/glib-2.26:2
+   dev-libs/gobject-introspection )
+"
+
+src_configure() {
+   # weasyprint enables generation of PDF from HTML
+   gnome2_src_configure \
+   --disable-unversioned \
+   $(use_enable valadoc) \
+   VALAC=: \
+   WEASYPRINT=:
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



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

2020-02-12 Thread Mart Raudsepp
commit: ab8b5ad99897ed07fda64ed815e25ebc3d4c
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Wed Feb 12 13:22:23 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Wed Feb 12 15:48:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab8b5ad9

dev-lang/vala: bump to 0.40.19

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-lang/vala/Manifest|  1 +
 dev-lang/vala/vala-0.40.19.ebuild | 54 +++
 2 files changed, 55 insertions(+)

diff --git a/dev-lang/vala/Manifest b/dev-lang/vala/Manifest
index 7c862906fbb..7887fee2131 100644
--- a/dev-lang/vala/Manifest
+++ b/dev-lang/vala/Manifest
@@ -1,6 +1,7 @@
 DIST vala-0.36.20.tar.xz 2918672 BLAKE2B 
9c2c46992444fafd173f767a4a10ac185b0c49db0ede3cb52dec10da08ab3370adb4445087b24c91c9126e8586418a149ac783b3de92cac6c4badd488f3dc56f
 SHA512 
21ca0573a2f9d945a362f7f15da7db25532fd7b19a0aa0442243b95df0568b7a88ae94d0659af44f6f57e364f4370de361102e7e46a070487985e7cb5d81277c
 DIST vala-0.40.16.tar.xz 3412776 BLAKE2B 
0cfe072ce3dfd8b95e804582899ff002869bc005b93ad1ba68e9b085e12444a3ef967c6282d65bab7f8302018edc075077ae8de65182b9123f8f74a91ea062bf
 SHA512 
e37c8573fe6104c0ad6f29748cd28564638d62ebe499ce084481c74d2601a19334c431575904fbbed490b44ea117246516580a5d658dfba30c63de7e7c3fa3e0
 DIST vala-0.40.18.tar.xz 3429060 BLAKE2B 
113cebedfefec3a510085e6562012cefedcc6879f4a21eed835e779d850c39ea0c5d9ce5e5e036fa5d849c28f803fd80f1b4e55d4eb3db0fb0fa8f2706824823
 SHA512 
a58afc4ecf5a7c5c35d3f32d06947ed656f66672fd496d4963b5267d8be9ffecbbc0415af8ef15d35c92f986cb7861dc09d2ec35c2b6f77f3decc4adba24ced2
+DIST vala-0.40.19.tar.xz 3435688 BLAKE2B 
caacacd0ed33a5a1fd465c7494d326941225f4cca052cdeda103430a6313d1f5bf30f254d1f7451663988b1303dc564923ab5717d796673b0af71912c49196ff
 SHA512 
a1ef798ed754192da8677d9dd9627b24c0addd658d38e217ace6889c462a70d1d19c029cd7f660c82b97a48f77eba3b03758ab625ad6ccf4fe20dfd627ecd30a
 DIST vala-0.44.11.tar.xz 3370248 BLAKE2B 
c111b6175e6339148e30bedc77f62a9ef3ec912ad0621c9303fc5dba31694173b49ccc433d3681303d64a1e442ed9b7b064f27931369cb13fa028bfc25ffa3c9
 SHA512 
6111699039ed37084426d7603b82dfa9bd497c66ba7353ee22e8541bf15a2cbb634d315593c093f18c20bac877ae34884e5b570cd25237ce12aa73e941c4c540
 DIST vala-0.44.9.tar.xz 3363004 BLAKE2B 
b87f8f7d9cda5a77486720b8c542c42ed448cfbb6a1bae899591a799dcf25882a0539c3acef282d0ba42a7ea78d68e7a5d99aa4daa306a70afe6938732d03c25
 SHA512 
9af559a6cb1680013886a4d425e619503d60394f2c7b1ab897cc7830ee566f8122dcd4380b78b551fbf556cead623c245adc1f7f3357b8315be8c120412a3e9f
 DIST vala-0.46.5.tar.xz 3375148 BLAKE2B 
22bf169159d4f4e23398789e46c39d98a7727cd02e6539104963d34bfe569bad25338b3455ffd32413a36f5cd6061a29bdbbdb275f225f1408d6b34967b64a6c
 SHA512 
eb1763d9c4bfe74441640f7228d44ff7cfd9a379b24b8aa906bc59be4514b319598ffee616d3de1db101134bb163715f33dd1d7a0a10ec03246c7ccf62a4778b

diff --git a/dev-lang/vala/vala-0.40.19.ebuild 
b/dev-lang/vala/vala-0.40.19.ebuild
new file mode 100644
index 000..7c2127f2ddb
--- /dev/null
+++ b/dev-lang/vala/vala-0.40.19.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_EAUTORECONF="yes"
+
+inherit gnome2
+
+DESCRIPTION="Compiler for the GObject type system"
+HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
+
+LICENSE="LGPL-2.1"
+SLOT="0.40"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-linux"
+IUSE="test valadoc"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-libs/glib-2.40.0:2
+   >=dev-libs/vala-common-${PV}
+   valadoc? ( >=media-gfx/graphviz-2.16 )
+"
+DEPEND="${RDEPEND}
+   !${CATEGORY}/${PN}:0
+   dev-libs/libxslt
+   sys-devel/flex
+   virtual/pkgconfig
+   virtual/yacc
+   test? (
+   dev-libs/dbus-glib
+   >=dev-libs/glib-2.26:2
+   dev-libs/gobject-introspection )
+"
+
+PATCHES=(
+   # From master
+   "${FILESDIR}"/0.40-Allow-disabling-the-build-of-valadoc.patch
+   # Add missing bits to make valadoc parallel installable
+   "${FILESDIR}"/0.40-valadoc-doclets-data-parallel-installable.patch
+)
+
+src_configure() {
+   # weasyprint enables generation of PDF from HTML
+   gnome2_src_configure \
+   --disable-unversioned \
+   $(use_enable valadoc) \
+   VALAC=: \
+   WEASYPRINT=:
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



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

2020-02-12 Thread Mart Raudsepp
commit: 7d37cef879d491d16bc83f85f8ca2459d38d6f30
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Wed Feb 12 13:17:25 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Wed Feb 12 15:48:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d37cef8

dev-lang/vala: bump to 0.46.6

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-lang/vala/Manifest   |  1 +
 dev-lang/vala/vala-0.46.6.ebuild | 49 
 2 files changed, 50 insertions(+)

diff --git a/dev-lang/vala/Manifest b/dev-lang/vala/Manifest
index 18c8e5ed676..7c862906fbb 100644
--- a/dev-lang/vala/Manifest
+++ b/dev-lang/vala/Manifest
@@ -4,3 +4,4 @@ DIST vala-0.40.18.tar.xz 3429060 BLAKE2B 
113cebedfefec3a510085e6562012cefedcc687
 DIST vala-0.44.11.tar.xz 3370248 BLAKE2B 
c111b6175e6339148e30bedc77f62a9ef3ec912ad0621c9303fc5dba31694173b49ccc433d3681303d64a1e442ed9b7b064f27931369cb13fa028bfc25ffa3c9
 SHA512 
6111699039ed37084426d7603b82dfa9bd497c66ba7353ee22e8541bf15a2cbb634d315593c093f18c20bac877ae34884e5b570cd25237ce12aa73e941c4c540
 DIST vala-0.44.9.tar.xz 3363004 BLAKE2B 
b87f8f7d9cda5a77486720b8c542c42ed448cfbb6a1bae899591a799dcf25882a0539c3acef282d0ba42a7ea78d68e7a5d99aa4daa306a70afe6938732d03c25
 SHA512 
9af559a6cb1680013886a4d425e619503d60394f2c7b1ab897cc7830ee566f8122dcd4380b78b551fbf556cead623c245adc1f7f3357b8315be8c120412a3e9f
 DIST vala-0.46.5.tar.xz 3375148 BLAKE2B 
22bf169159d4f4e23398789e46c39d98a7727cd02e6539104963d34bfe569bad25338b3455ffd32413a36f5cd6061a29bdbbdb275f225f1408d6b34967b64a6c
 SHA512 
eb1763d9c4bfe74441640f7228d44ff7cfd9a379b24b8aa906bc59be4514b319598ffee616d3de1db101134bb163715f33dd1d7a0a10ec03246c7ccf62a4778b
+DIST vala-0.46.6.tar.xz 3383032 BLAKE2B 
c7f38cf617f3a0d5a5915ebedd320ef6a5c3714e21618e95756529e1fb09abc12417f31aeefc0111e828da5c2dabd6195b07bb1cc69c6e74f73d72fe7403637a
 SHA512 
ab24c3ad37af62e38289fd085a33f72e178e0b58c1f24c27c58c1010270a4b0e5cb4cc510b6147c51e5796a7ae63aed3a4ac219b24ff985f2546e25c9ad48992

diff --git a/dev-lang/vala/vala-0.46.6.ebuild b/dev-lang/vala/vala-0.46.6.ebuild
new file mode 100644
index 000..2a72c15ce37
--- /dev/null
+++ b/dev-lang/vala/vala-0.46.6.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2
+
+DESCRIPTION="Compiler for the GObject type system"
+HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
+
+LICENSE="LGPL-2.1+"
+SLOT="0.46"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-linux"
+IUSE="test valadoc"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-libs/glib-2.48.0:2
+   >=dev-libs/vala-common-${PV}
+   valadoc? ( >=media-gfx/graphviz-2.16 )
+   != it, which 
would be bad
+# as the newer is not required with older vala when those are picked instead 
of 0.46.
+# vala-0.45.91 ships a broken libsoup-2.4.vapi copy too, but that'll be fixed 
by 0.45.92
+DEPEND="${RDEPEND}
+   dev-libs/libxslt
+   sys-devel/flex
+   virtual/pkgconfig
+   virtual/yacc
+   test? (
+   dev-libs/dbus-glib
+   >=dev-libs/glib-2.26:2
+   dev-libs/gobject-introspection )
+"
+
+src_configure() {
+   # weasyprint enables generation of PDF from HTML
+   gnome2_src_configure \
+   --disable-unversioned \
+   $(use_enable valadoc) \
+   VALAC=: \
+   WEASYPRINT=:
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



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

2020-02-12 Thread Mart Raudsepp
commit: cf84f5f2ec43468f080513821b83220a79801ecf
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Wed Feb 12 15:47:54 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Wed Feb 12 15:48:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf84f5f2

vala.eclass: raise VALA_MAX_API_VERSION to 0.48

Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/eclass/vala.eclass b/eclass/vala.eclass
index ac7cd2cb862..c0620dbaa0b 100644
--- a/eclass/vala.eclass
+++ b/eclass/vala.eclass
@@ -32,7 +32,7 @@ VALA_MIN_API_VERSION=${VALA_MIN_API_VERSION:-0.36}
 # @ECLASS-VARIABLE: VALA_MAX_API_VERSION
 # @DESCRIPTION:
 # Maximum vala API version (e.g. 0.36).
-VALA_MAX_API_VERSION=${VALA_MAX_API_VERSION:-0.46}
+VALA_MAX_API_VERSION=${VALA_MAX_API_VERSION:-0.48}
 
 # @ECLASS-VARIABLE: VALA_USE_DEPEND
 # @DEFAULT_UNSET



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

2020-02-12 Thread Mart Raudsepp
commit: fedb4f645e2aecc61cbf604e3e606faa3192da0d
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Wed Feb 12 13:07:49 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Wed Feb 12 15:48:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fedb4f64

dev-libs/vala-common: bump to 0.46.6

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-libs/vala-common/Manifest  |  1 +
 dev-libs/vala-common/vala-common-0.46.6.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-libs/vala-common/Manifest b/dev-libs/vala-common/Manifest
index 98ca2d0f442..bfa64006630 100644
--- a/dev-libs/vala-common/Manifest
+++ b/dev-libs/vala-common/Manifest
@@ -1,3 +1,4 @@
 DIST vala-0.44.11.tar.xz 3370248 BLAKE2B 
c111b6175e6339148e30bedc77f62a9ef3ec912ad0621c9303fc5dba31694173b49ccc433d3681303d64a1e442ed9b7b064f27931369cb13fa028bfc25ffa3c9
 SHA512 
6111699039ed37084426d7603b82dfa9bd497c66ba7353ee22e8541bf15a2cbb634d315593c093f18c20bac877ae34884e5b570cd25237ce12aa73e941c4c540
 DIST vala-0.44.9.tar.xz 3363004 BLAKE2B 
b87f8f7d9cda5a77486720b8c542c42ed448cfbb6a1bae899591a799dcf25882a0539c3acef282d0ba42a7ea78d68e7a5d99aa4daa306a70afe6938732d03c25
 SHA512 
9af559a6cb1680013886a4d425e619503d60394f2c7b1ab897cc7830ee566f8122dcd4380b78b551fbf556cead623c245adc1f7f3357b8315be8c120412a3e9f
 DIST vala-0.46.5.tar.xz 3375148 BLAKE2B 
22bf169159d4f4e23398789e46c39d98a7727cd02e6539104963d34bfe569bad25338b3455ffd32413a36f5cd6061a29bdbbdb275f225f1408d6b34967b64a6c
 SHA512 
eb1763d9c4bfe74441640f7228d44ff7cfd9a379b24b8aa906bc59be4514b319598ffee616d3de1db101134bb163715f33dd1d7a0a10ec03246c7ccf62a4778b
+DIST vala-0.46.6.tar.xz 3383032 BLAKE2B 
c7f38cf617f3a0d5a5915ebedd320ef6a5c3714e21618e95756529e1fb09abc12417f31aeefc0111e828da5c2dabd6195b07bb1cc69c6e74f73d72fe7403637a
 SHA512 
ab24c3ad37af62e38289fd085a33f72e178e0b58c1f24c27c58c1010270a4b0e5cb4cc510b6147c51e5796a7ae63aed3a4ac219b24ff985f2546e25c9ad48992

diff --git a/dev-libs/vala-common/vala-common-0.46.6.ebuild 
b/dev-libs/vala-common/vala-common-0.46.6.ebuild
new file mode 100644
index 000..d55cd027cf5
--- /dev/null
+++ b/dev-libs/vala-common/vala-common-0.46.6.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+GNOME_ORG_MODULE="vala"
+
+inherit gnome.org
+
+DESCRIPTION="Build infrastructure for packages that use Vala"
+HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
+IUSE=""
+
+RDEPEND=""
+DEPEND=""
+BDEPEND=""
+
+src_configure() { :; }
+
+src_compile() { :; }
+
+src_install() {
+   insinto /usr/share/aclocal
+   doins vala.m4 vapigen/vapigen.m4
+   insinto /usr/share/vala
+   doins vapigen/Makefile.vapigen
+}



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

2020-02-12 Thread Mart Raudsepp
commit: 46bdfa980a7416eec747a9872e068a07ac0a5d73
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Wed Feb 12 15:43:55 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Wed Feb 12 15:48:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46bdfa98

package.mask: add dev-lang/vala development slot from GNOME 3.35

Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 6ef4337df89..2c973a4cf16 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Mart Raudsepp  (2020-02-12)
+# GNOME 3.35 development release packages
+>=dev-libs/vala-common-0.47
+dev-lang/vala:0.48
+
 # Stefan Strogin  (2020-02-12)
 # Mask for testing revdeps.
 >=dev-games/mygui-3.4.0



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

2020-02-12 Thread Mart Raudsepp
commit: f4d01a40f14726a9805ad78ba665c70f4517500c
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Wed Feb 12 15:45:54 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Wed Feb 12 15:48:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4d01a40

dev-libs/vala-common: bump p.masked to 0.47.4

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-libs/vala-common/Manifest  |  1 +
 dev-libs/vala-common/vala-common-0.47.4.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-libs/vala-common/Manifest b/dev-libs/vala-common/Manifest
index bfa64006630..94ad7723ce2 100644
--- a/dev-libs/vala-common/Manifest
+++ b/dev-libs/vala-common/Manifest
@@ -2,3 +2,4 @@ DIST vala-0.44.11.tar.xz 3370248 BLAKE2B 
c111b6175e6339148e30bedc77f62a9ef3ec912
 DIST vala-0.44.9.tar.xz 3363004 BLAKE2B 
b87f8f7d9cda5a77486720b8c542c42ed448cfbb6a1bae899591a799dcf25882a0539c3acef282d0ba42a7ea78d68e7a5d99aa4daa306a70afe6938732d03c25
 SHA512 
9af559a6cb1680013886a4d425e619503d60394f2c7b1ab897cc7830ee566f8122dcd4380b78b551fbf556cead623c245adc1f7f3357b8315be8c120412a3e9f
 DIST vala-0.46.5.tar.xz 3375148 BLAKE2B 
22bf169159d4f4e23398789e46c39d98a7727cd02e6539104963d34bfe569bad25338b3455ffd32413a36f5cd6061a29bdbbdb275f225f1408d6b34967b64a6c
 SHA512 
eb1763d9c4bfe74441640f7228d44ff7cfd9a379b24b8aa906bc59be4514b319598ffee616d3de1db101134bb163715f33dd1d7a0a10ec03246c7ccf62a4778b
 DIST vala-0.46.6.tar.xz 3383032 BLAKE2B 
c7f38cf617f3a0d5a5915ebedd320ef6a5c3714e21618e95756529e1fb09abc12417f31aeefc0111e828da5c2dabd6195b07bb1cc69c6e74f73d72fe7403637a
 SHA512 
ab24c3ad37af62e38289fd085a33f72e178e0b58c1f24c27c58c1010270a4b0e5cb4cc510b6147c51e5796a7ae63aed3a4ac219b24ff985f2546e25c9ad48992
+DIST vala-0.47.4.tar.xz 3408516 BLAKE2B 
a531bc4698aa40ef413bc0a139225130f8d82bfa2b890ed33e1993203c9c48c345e10dc15bf8b86a0542814a8a41cad330ce15322e68936b6e6b8c31a3516824
 SHA512 
96d2453ababcb64db7db754a33e0f2e9d60f831a52c39bd086191659efa5941989bdc35b677b992524860f129d28fbbe8e3071e893991b8c8c21d6948d32377f

diff --git a/dev-libs/vala-common/vala-common-0.47.4.ebuild 
b/dev-libs/vala-common/vala-common-0.47.4.ebuild
new file mode 100644
index 000..d55cd027cf5
--- /dev/null
+++ b/dev-libs/vala-common/vala-common-0.47.4.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+GNOME_ORG_MODULE="vala"
+
+inherit gnome.org
+
+DESCRIPTION="Build infrastructure for packages that use Vala"
+HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
+IUSE=""
+
+RDEPEND=""
+DEPEND=""
+BDEPEND=""
+
+src_configure() { :; }
+
+src_compile() { :; }
+
+src_install() {
+   insinto /usr/share/aclocal
+   doins vala.m4 vapigen/vapigen.m4
+   insinto /usr/share/vala
+   doins vapigen/Makefile.vapigen
+}



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

2020-02-12 Thread Michał Górny
commit: 4d92441182c33c4b7f2043eb6b2746b338e95849
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 12 06:03:01 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 12 15:47:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d924411

sys-kernel/vanilla-kernel: Bump to 5.4.19

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

 sys-kernel/vanilla-kernel/Manifest |  1 +
 .../vanilla-kernel/vanilla-kernel-5.4.19.ebuild| 65 ++
 2 files changed, 66 insertions(+)

diff --git a/sys-kernel/vanilla-kernel/Manifest 
b/sys-kernel/vanilla-kernel/Manifest
index 90f489bda59..4b1557682da 100644
--- a/sys-kernel/vanilla-kernel/Manifest
+++ b/sys-kernel/vanilla-kernel/Manifest
@@ -9,5 +9,6 @@ DIST linux-5.4.13.arch1.amd64.config 241498 BLAKE2B 
3c6d13d84ea75247fae4f4474648
 DIST linux-5.4.16.tar.xz 109474712 BLAKE2B 
cf99bbd992d8e90c4255c0ce81fd27793663fb2b300ea1bf686ca21933e6ec6cd2ce7a2bea7b59e235ad70bc05519fd06e033baa0d6e881df732d3a85bc6a17c
 SHA512 
994d0884230c258c97af8c9b1857241d34c780bc61271102707e7bd861270306b1f4c51a00d48826786d1544e8647de8c1e72fa74bf3e9a498a32b7db428337d
 DIST linux-5.4.17.tar.xz 109469504 BLAKE2B 
e03e9b5564320ea60d69db06b6a282d332718269bd8ed694e126e6aca83215de183b52ad331d7af80fee1b4682625a3489373894c4100d38943c097c6958bf06
 SHA512 
b909cc5fa383ca25496851cd8d0af0efbe1613ee6c3579abb122285fcdcd28f4736fbb26675d741474388a63d1a312cc70a6b0aa8f25c1cd62b9f95b99462628
 DIST linux-5.4.18.tar.xz 109470980 BLAKE2B 
4345598577f39644b00693c95a8402d70c7aba94614bd9a61f5e212768c6e58ffbaa0d8392c129010e77d6c9770182d4967635c797a2d86e11ecad417df87a27
 SHA512 
ec4568bfb816b3645bbe6c709343b4cc058068500948c10e9da191d2556ab1bd66a90674880e5be2dbf169afe416fe88c48ed5bd9fc1a55739ea94f8f0cb62b2
+DIST linux-5.4.19.tar.xz 109480508 BLAKE2B 
8e51c7f13cf328bd93444ea27898e789f2d6a1bc85be6d95e6300c44a1d6b8c5e0e35c6c1f3a9da3acea748e63e5bf4bcc08154d2ae0944e594fefef07e82fde
 SHA512 
f122ee2baf31c4af6e6c727116558ef535d824fd893b80944f3272a32aa33c699be692c19b6a7333a4fbe93e706dca1f1b5ab3c918d9c9fa690daee42e2185e6
 DIST tinycorelinux-10.1-amd64.qcow2 16842752 BLAKE2B 
e013e76503c335739a9623c0901ca791937a0e6b177854535cadec1e2c2cd2df588283ed3128cf652595f32264fbfe5b3bd3a8c97665fd4da344e308535be366
 SHA512 
c3aeb20ff8769da9211694b7f701907cc7ae7582cdfad2c2fdc008d97ebcbd9dc08245b4e8f8450e1cb304bd705345a11fe79f901a47979fee91443841d55641
 DIST tinycorelinux-10.1-x86.qcow2 14876672 BLAKE2B 
3c760eb7438b13261e52ecfaa33a53649ced95f1ab40aae52134b8cdc31a16d7aa0d6a6dd716e268ed148e9d77a10b7c700b141b61d70c82d271ffe88e8e2a3c
 SHA512 
9964538dc42f232a11949f74b61d46422ea5da3bdc253a217119bd0b8a750c40fd2da0b07157067be9ac0226472614f210a1248114df0d331df390979867a895

diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.19.ebuild 
b/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.19.ebuild
new file mode 100644
index 000..92992f98790
--- /dev/null
+++ b/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.19.ebuild
@@ -0,0 +1,65 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-build
+
+MY_P=linux-${PV}
+# 
https://git.archlinux.org/svntogit/packages.git/log/trunk/config?h=packages/linux
+AMD64_CONFIG_VER=5.4.13.arch1
+AMD64_CONFIG_HASH=9eed969590614a38d370a9fe04a4f5d38ba5e06e
+# https://git.archlinux32.org/packages/log/core/linux/config.i686
+I686_CONFIG_VER=5.4.13-arch1
+I686_CONFIG_HASH=95f890a9f9131e7a0e01a4f3e9c5ee423756a233
+
+DESCRIPTION="Linux kernel built from vanilla upstream sources"
+HOMEPAGE="https://www.kernel.org/;
+SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 
1).x/${MY_P}.tar.xz
+   amd64? (
+   
https://git.archlinux.org/svntogit/packages.git/plain/trunk/config?h=packages/linux=${AMD64_CONFIG_HASH}
+   -> linux-${AMD64_CONFIG_VER}.amd64.config
+   )
+   x86? (
+   
https://git.archlinux32.org/packages/plain/core/linux/config.i686?id=${I686_CONFIG_HASH}
+   -> linux-${I686_CONFIG_VER}.i686.config
+   )"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   !sys-kernel/vanilla-kernel-bin:${SLOT}"
+
+src_prepare() {
+   default
+
+   # prepare the default config
+   case ${ARCH} in
+   amd64)
+   cp "${DISTDIR}"/linux-${AMD64_CONFIG_VER}.amd64.config 
.config || die
+   ;;
+   x86)
+   cp "${DISTDIR}"/linux-${I686_CONFIG_VER}.i686.config 
.config || die
+   ;;
+   *)
+   die "Unsupported arch ${ARCH}"
+   ;;
+   esac
+
+   local config_tweaks=(
+   # shove arch under the carpet!
+   -e 's:^CONFIG_DEFAULT_HOSTNAME=:&"gentoo":'
+   # we do support x32
+   -e '/CONFIG_X86_X32/s:.*:CONFIG_X86_X32=y:'
+   # disable signatures

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

2020-02-12 Thread Michał Górny
commit: 14fb88fae00029e94680c149eeea99ca34286d69
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 12 06:03:10 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 12 15:47:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14fb88fa

sys-kernel/gentoo-kernel: Bump to 5.4.19

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

 sys-kernel/gentoo-kernel/Manifest  |  2 +
 .../gentoo-kernel/gentoo-kernel-5.4.19.ebuild  | 73 ++
 2 files changed, 75 insertions(+)

diff --git a/sys-kernel/gentoo-kernel/Manifest 
b/sys-kernel/gentoo-kernel/Manifest
index 0eeae8c7194..28716c801fa 100644
--- a/sys-kernel/gentoo-kernel/Manifest
+++ b/sys-kernel/gentoo-kernel/Manifest
@@ -12,6 +12,8 @@ DIST genpatches-5.4-17.base.tar.xz 649680 BLAKE2B 
787d9e9285a69a7f8de8c82375c42a
 DIST genpatches-5.4-17.extras.tar.xz 1744 BLAKE2B 
8a871ac738bba4aec50fd972c9a6f9233ca4a187b6e612dbdb32721fa1e5a7fd0169dd4c31658a124c8933518b05a9f4c2ba417d471e9922809a518cabdcb0f2
 SHA512 
b76cb8c9f6bc0aa640014c0377bb39cf8686d3733322b8e7ca92791e7dffe3117f32a537682ae1b516ad1c4e1e275b0fc7d7bf280daf2426bea0703e735b920a
 DIST genpatches-5.4-18.base.tar.xz 676844 BLAKE2B 
a4edc187e5ca93823c553f783cede3814ded47c984b417b9654904cc67a4b52818bfedc0997b452ebc7317fee7d72736dbd555976c37c334b3e1eeb6ea09
 SHA512 
49d362d9347370e2d4385a7947b502b3786e71dfa30b6edca2967418b940f25f978bc8d7db25a1c87b84d22de4082adc12aca7d0abe5a797e796f6680770ec62
 DIST genpatches-5.4-18.extras.tar.xz 1744 BLAKE2B 
eb75009e3a3c9fce962971e512a4c142ae5a61b6547e41faea87087ed7826b60087ab3dfceb32d0fc27adefca40b93afcb40a1225ac88ff2bd608ee5cf52e768
 SHA512 
5a3328b447eb12b077c8db6c3e3518585b963575cf52691691504c28d935a30d12ddbe786e99f0a42ec1625714c1c064ac60b7c8845247cd981f709a65a478bd
+DIST genpatches-5.4-19.base.tar.xz 782808 BLAKE2B 
9b0b3e6090e33f5852c3fdd2ee58110f909beea9aac3c2591709fe97ba24003b9c923085f1577309052f94a934dc36be0937ded1df05828b69ddbc6ae31c158c
 SHA512 
866aa0b06f8198739cabd54fcf09308629d00139f9068c255cdf61d96bb0288a5dfea7a46562ed51cfad2e682c29195e0304c442d659f50238cdc38e9e885fbb
+DIST genpatches-5.4-19.extras.tar.xz 1740 BLAKE2B 
85acc37c0b0087ca198bb168a18b764e0b2061c9d41bb1902308c517b1760031258cd7221725b7fa3145fc7b802b8bd8bb10c241ac5ddb6f1b4436ae92d4c783
 SHA512 
59701650a902e708c98d9e6ef3c5528be0831d8ead28ef2d46f1c4cdb386336ad36a137a4d77d0193c7acc10b1448dc54a18dc4177365d56069c7c3fb5143ae2
 DIST linux-4.19.85-arch1.i686.config 222183 BLAKE2B 
03eac77940db0ee6b4f2a006edc600ef34141bbca849f5be4de9b961301a8fc987da6d0e21344aa5d80c29bb7793d56cf5441abb6c8e4057d94e2601c174c1be
 SHA512 
6bd45c9dfd96b1afb8c1ca1ca72722baee6c91894e454d7af937de02242d3bb9d3b6870f5976aa96245c753c6bc1ac637a6356125b0d4c596aadef643b8c3d8d
 DIST linux-4.19.92-arch1.amd64.config 222487 BLAKE2B 
a658d80d85525287a1df9053ca2ddfe423ab423bcc3b9ea8bd9cda65cc7ffa4b1be782c48c867c13e46070af4016f446860f5cf71351f239da1eff6c45a5aa6a
 SHA512 
a5658c8e8464516dffd6f624344e739784cb315d334b2c5105bd5d16022b6366ad4ec00d3692a7b78e2458514175522bc85e834bf19593feff6363b616860258
 DIST linux-4.19.94.tar.xz 103389152 BLAKE2B 
291db6f448606a4ba288295b4b1c0b813e736534e4749a152baa1d07fcf52bba2b59e7b4b261594a2deb9ad961afec50a28b4ec126f97033f1c0a36aba9f2961
 SHA512 
c6017e854ec06054c658042c2e8227d79284ecdadf0a2e1c5da799ca2ac165a266e7d33aa52361d0036ddb3059e3b24f0a68b45ffd84d87394d3f41492f6f9a4

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.19.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.19.ebuild
new file mode 100644
index 000..0041d89b83f
--- /dev/null
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.19.ebuild
@@ -0,0 +1,73 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-build
+
+MY_P=linux-${PV%.*}
+GENPATCHES_P=genpatches-${PV%.*}-${PV##*.}
+# 
https://git.archlinux.org/svntogit/packages.git/log/trunk/config?h=packages/linux
+AMD64_CONFIG_VER=5.4.13.arch1
+AMD64_CONFIG_HASH=9eed969590614a38d370a9fe04a4f5d38ba5e06e
+# https://git.archlinux32.org/packages/log/core/linux/config.i686
+I686_CONFIG_VER=5.4.13-arch1
+I686_CONFIG_HASH=95f890a9f9131e7a0e01a4f3e9c5ee423756a233
+
+DESCRIPTION="Linux kernel built with Gentoo patches"
+HOMEPAGE="https://www.kernel.org/;
+SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 
1).x/${MY_P}.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   amd64? (
+   
https://git.archlinux.org/svntogit/packages.git/plain/trunk/config?h=packages/linux=${AMD64_CONFIG_HASH}
+   -> linux-${AMD64_CONFIG_VER}.amd64.config
+   )
+   x86? (
+   
https://git.archlinux32.org/packages/plain/core/linux/config.i686?id=${I686_CONFIG_HASH}
+   -> linux-${I686_CONFIG_VER}.i686.config
+   )"
+S=${WORKDIR}/${MY_P}
+

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

2020-02-12 Thread Michał Górny
commit: 86143188909a84ec3fddfdefc1620ee7a79b4d69
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 12 15:24:08 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 12 15:47:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86143188

sys-kernel/vanilla-kernel-bin: Bump to 5.4.19

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

 sys-kernel/vanilla-kernel-bin/Manifest |  2 +
 .../vanilla-kernel-bin-5.4.19.ebuild   | 44 ++
 2 files changed, 46 insertions(+)

diff --git a/sys-kernel/vanilla-kernel-bin/Manifest 
b/sys-kernel/vanilla-kernel-bin/Manifest
index 5550d59418b..d1cf8b5cbab 100644
--- a/sys-kernel/vanilla-kernel-bin/Manifest
+++ b/sys-kernel/vanilla-kernel-bin/Manifest
@@ -12,3 +12,5 @@ DIST vanilla-kernel-5.4.17-1.amd64.xpak 64951575 BLAKE2B 
56264df30ae0e030e18200b
 DIST vanilla-kernel-5.4.17-1.x86.xpak 56404018 BLAKE2B 
aad8c6e7e6bc792542583eb8c0639a4011eafde7bb1d48b870b6ed56ad54beda4bab8a5717e29d53b90dfe7b7b7fd45ce55b17bd41bb6d3f50f25f83d629eb53
 SHA512 
2f7e7f57d585e6b67ae2d985e0f93b1c1f60d479c2c7c587bc8e73729bc552ef09fd38513b8af3582779ac354742246d5e68ae10464c9ab2c21e75f91fe91dde
 DIST vanilla-kernel-5.4.18-1.amd64.xpak 64977098 BLAKE2B 
4f3e4437c707fbff285b09655c5e066957d4666138525187f6f60c4801ae45613046a370f6d54812d053c09e45278084d44557f1f6d940b84ede4c2f62dd626b
 SHA512 
95a34058ee7bc3958ecfdf399b8bcfa80d42dd17ef67b6f4258d93f36e2420295ea3da4af9a3d2444a98ad7bce185d1820efa0242ef28b949d239b4c02cce82b
 DIST vanilla-kernel-5.4.18-1.x86.xpak 56405323 BLAKE2B 
5c5895d5b97b8e59063dd17cfe3a812336f2706fcb7551788e95ada41e196f2a1c26acdf67f1eaa87f6fbda8c9d7da4451c08ed72f15f1e41e4dca116425b076
 SHA512 
1bd56cc2787d80a40ba53533db3eb7510a44d8791609b79bed1dc7a0bd5f5542ac032c97b3eeca14a75a70da0adf4fa2499c4b180b6c71c7950a1cf49a7aa644
+DIST vanilla-kernel-5.4.19-1.amd64.xpak 64968132 BLAKE2B 
e85270119e243f56287da092ea4d9fb41f0e5eea6b07c521f29637198c37d8cc5ede760d14f6b79c2e5ca9c2329f73c574fd7095b0c61d9a4102cb1f17c53dd9
 SHA512 
ae33c5230d3089387a11e32a256059615eb8382ae0e92561044fb7359c52c7a4ff5e9d37194a527e8d8ee367dcadeb58ed990504e1f161be78b7dfdf540f561d
+DIST vanilla-kernel-5.4.19-1.x86.xpak 56400278 BLAKE2B 
d00081982bfbc8c1e9d170d0b74a4568b2aa2746e336602a4a1f8a47db68ab0cb286058da9577afd624608580330d151516d4bdba45d74fccfe3bf628b9b6f64
 SHA512 
59aa5de2aafbb686161fae7bff5cb2f9a18968b6579ac10342fb2583a85c78ad732cda2c464bb8f1c8347c13af95c45f48ff2fbb0e4edf2835073b8189c06a98

diff --git a/sys-kernel/vanilla-kernel-bin/vanilla-kernel-bin-5.4.19.ebuild 
b/sys-kernel/vanilla-kernel-bin/vanilla-kernel-bin-5.4.19.ebuild
new file mode 100644
index 000..c80f6f1ab4d
--- /dev/null
+++ b/sys-kernel/vanilla-kernel-bin/vanilla-kernel-bin-5.4.19.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-install
+
+MY_P=${P/-bin/}-1
+DESCRIPTION="Pre-built vanilla Linux kernel"
+HOMEPAGE="https://www.kernel.org/;
+SRC_URI+="
+   amd64? (
+   
https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/vanilla-kernel/${MY_P}.xpak
+   -> ${MY_P}.amd64.xpak
+   )
+   x86? (
+   
https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/vanilla-kernel/${MY_P}.xpak
+   -> ${MY_P}.x86.xpak
+   )"
+S=${WORKDIR}
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   !sys-kernel/vanilla-kernel:${SLOT}"
+
+QA_PREBUILT='*'
+
+src_unpack() {
+   ebegin "Unpacking ${MY_P}.${ARCH}.xpak"
+   tar -x < <(xz -c -d --single-stream "${DISTDIR}/${MY_P}.${ARCH}.xpak")
+   eend ${?} || die "Unpacking ${MY_P} failed"
+}
+
+src_test() {
+   kernel-install_test "${PV}" \
+   
"${WORKDIR}/usr/src/linux-${PV}/$(kernel-install_get_image_path)" \
+   "lib/modules/${PV}"
+}
+
+src_install() {
+   mv * "${ED}" || die
+}



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

2020-02-12 Thread Michał Górny
commit: 95e12000464b3b9a458a08a0aff09801b6aedc74
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 12 15:24:14 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 12 15:47:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95e12000

sys-kernel/gentoo-kernel-bin: Bump to 5.4.19

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

 sys-kernel/gentoo-kernel-bin/Manifest  |  2 +
 .../gentoo-kernel-bin-5.4.19.ebuild| 46 ++
 2 files changed, 48 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index ec109460f1e..a52febead5a 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -10,5 +10,7 @@ DIST gentoo-kernel-5.4.17-1.amd64.xpak 64960678 BLAKE2B 
ab4a1cf30544a4a0e18243d4
 DIST gentoo-kernel-5.4.17-1.x86.xpak 56406054 BLAKE2B 
579b3c4d639441246a55799048f7fb9b0f747771a5e99e414de0a093462b917286b5b1d554008b662a0eef8490c900ff245b91f9c85ecfc0237a16aa4913bb23
 SHA512 
2a0a00dfbaf9e233b994cbf8c9aaef3cb7e353261ba327a7797d0b40e0eab7603515c7b863153e9e62849ac8d6c95a98499546c14e896e2ebf2f3c8dc32fd04c
 DIST gentoo-kernel-5.4.18-1.amd64.xpak 64950554 BLAKE2B 
cfbe6dd8276a4148d80ae0dacd4bf487b243bc19ab20d014d7ed06e643e7243249eba6b18de0da0e89bb98860952a1de7644b4af65e3f5cfc083d720cd36bd21
 SHA512 
a202bd77ead0ed33985a9bf79d6676f91b26331981398f7b9367e7e6627e030b558138b30c238c419267aa1906beb0240967267fffa76063e0600069bde0bcc8
 DIST gentoo-kernel-5.4.18-1.x86.xpak 56403357 BLAKE2B 
4b87361d706420aa166d4b0e136fdee436b5c105570b891afec291d86fc1b40c045d1607d45dc3653fed9198a4a4ce284940a4e3661c77c1d24b17a85320974b
 SHA512 
81d1bc61aabca391e008d89970540f992a8a1d332b2ac2f8cb6ae0072bb2e3b19a6d9e446c1d6ec7ddbc4127506dc9ba1ec72fd582431cb9aec15c4b945dd3c5
+DIST gentoo-kernel-5.4.19-1.amd64.xpak 64932575 BLAKE2B 
353c6ac796f83e875a16a3c6f7e973e722ed0a828fe320cab068139017344cd197a70288aca4478b716cc4ed3ea34e7953aa72c6094a077f4ed4dd93a7457b00
 SHA512 
72686cdf161b1deab68f73084d9707b93d4eafe0af3944f2a716ab033f15aee4df36bb2d0b8befec41627a8422eee22d5b1b90bb9e950200e50b226c814c0162
+DIST gentoo-kernel-5.4.19-1.x86.xpak 56406515 BLAKE2B 
017279626647702a2ff5ee1c70a35d85ee24e7cfc3e1885dd4ef5f4be66fce8a8ec304afd11c735964bcce33d2f3078a9ba58e36a5008767c1d6bb710ea737e3
 SHA512 
aafd5b3818d44cd59e70b3bec22b456ab131d1bb23e0699d3e15cae204330599581f54e54d2db5ed4e9d21367c712f7e43853da92e619455d47e0f6a4367f9a7
 DIST tinycorelinux-10.1-amd64.qcow2 16842752 BLAKE2B 
e013e76503c335739a9623c0901ca791937a0e6b177854535cadec1e2c2cd2df588283ed3128cf652595f32264fbfe5b3bd3a8c97665fd4da344e308535be366
 SHA512 
c3aeb20ff8769da9211694b7f701907cc7ae7582cdfad2c2fdc008d97ebcbd9dc08245b4e8f8450e1cb304bd705345a11fe79f901a47979fee91443841d55641
 DIST tinycorelinux-10.1-x86.qcow2 14876672 BLAKE2B 
3c760eb7438b13261e52ecfaa33a53649ced95f1ab40aae52134b8cdc31a16d7aa0d6a6dd716e268ed148e9d77a10b7c700b141b61d70c82d271ffe88e8e2a3c
 SHA512 
9964538dc42f232a11949f74b61d46422ea5da3bdc253a217119bd0b8a750c40fd2da0b07157067be9ac0226472614f210a1248114df0d331df390979867a895

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.19.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.19.ebuild
new file mode 100644
index 000..68ca59b5735
--- /dev/null
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.19.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-install
+
+MY_P=${P/-bin/}-1
+DESCRIPTION="Pre-built Linux kernel with genpatches"
+HOMEPAGE="https://www.kernel.org/;
+SRC_URI+="
+   amd64? (
+   
https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak
+   -> ${MY_P}.amd64.xpak
+   )
+   x86? (
+   
https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak
+   -> ${MY_P}.x86.xpak
+   )"
+S=${WORKDIR}
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   !sys-kernel/gentoo-kernel:${SLOT}
+   !sys-kernel/vanilla-kernel:${SLOT}
+   !sys-kernel/vanilla-kernel-bin:${SLOT}"
+
+QA_PREBUILT='*'
+
+src_unpack() {
+   ebegin "Unpacking ${MY_P}.${ARCH}.xpak"
+   tar -x < <(xz -c -d --single-stream "${DISTDIR}/${MY_P}.${ARCH}.xpak")
+   eend ${?} || die "Unpacking ${MY_P} failed"
+}
+
+src_test() {
+   kernel-install_test "${PV}" \
+   
"${WORKDIR}/usr/src/linux-${PV}/$(kernel-install_get_image_path)" \
+   "lib/modules/${PV}"
+}
+
+src_install() {
+   mv * "${ED}" || die
+}



[gentoo-commits] repo/gentoo:master commit in: sci-libs/libnova/

2020-02-12 Thread Andreas Sturmlechner
commit: ce7ee526adbe74cac8f11f7538ef5d6fdb6f084d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Feb 12 15:25:26 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Feb 12 15:25:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce7ee526

sci-libs/libnova: Drop 0.15.0

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

 sci-libs/libnova/Manifest  |  1 -
 sci-libs/libnova/libnova-0.15.0.ebuild | 50 --
 2 files changed, 51 deletions(-)

diff --git a/sci-libs/libnova/Manifest b/sci-libs/libnova/Manifest
index 344cba8f312..23aa8e94f86 100644
--- a/sci-libs/libnova/Manifest
+++ b/sci-libs/libnova/Manifest
@@ -1,2 +1 @@
-DIST libnova-0.15.0.tar.gz 1533794 BLAKE2B 
e87ffd3b8a895ca7ac9913ad3aacff526718442546df5687f2156718f72166527e69af4bcb65bac5df1fda89fc6fc8fe9876a4b74392986771cf157dc48c
 SHA512 
77ab0ccbfe462c03a21e88656cb4d6389994ea1da0ee8da997f19a83d24ad8fd9e505e70e1580b75332e826e5b7859b5f2af4417f65eb811440493ba586f2574
 DIST libnova-0.16.0.tar.xz 909212 BLAKE2B 
ae7efef8295dafd3715c37506d7403fc38a951c9a7c43e41e3c6ca3c922243a396052bbb71f07901bbd3aae2b2bee183efbd9e3e9c50dce72379f6ced80d5701
 SHA512 
f1c33421b7f09097223afe1bd5c31fa9a4591e4c965ba8a5ae1f164367717aa03986970ffe9c01e400b27aea43843fbb67cfbfe6ef44ec2c519f524aab9ea86f

diff --git a/sci-libs/libnova/libnova-0.15.0.ebuild 
b/sci-libs/libnova/libnova-0.15.0.ebuild
deleted file mode 100644
index a0f7d8f6be4..000
--- a/sci-libs/libnova/libnova-0.15.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Celestial Mechanics and Astronomical Calculation Library"
-HOMEPAGE="http://libnova.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples static-libs"
-
-DEPEND="doc? ( app-doc/doxygen )"
-RDEPEND=""
-
-src_prepare() {
-   default
-   sed -i -e '/CFLAGS=-Wall/d' configure.in || die
-   mv configure.{in,ac} || die
-   eautoreconf
-}
-
-src_configure() {
-   econf $(use_enable static-libs static)
-}
-
-src_compile() {
-   default
-   use doc && emake -C doc doc
-}
-
-src_install() {
-   use doc && HTML_DOCS=( doc/html/. )
-   default
-
-   if use examples; then
-   emake clean
-   rm examples/Makefile* || die
-   dodoc -r examples
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-
-   if ! use static-libs; then
-   find "${D}" -name '*.la' -delete || die
-   fi
-}



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

2020-02-12 Thread David Seifert
commit: bb0b8ffec2c6f8131bb1227558f2a09974920f29
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 15:22:32 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 15:22:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb0b8ffe

sys-libs/readline: [QA] inherit preserve-libs.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Closes: https://github.com/gentoo/gentoo/pull/14640
Signed-off-by: David Seifert  gentoo.org>

 sys-libs/readline/readline-6.3_p8-r3.ebuild | 2 +-
 sys-libs/readline/readline-7.0_p5-r1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-libs/readline/readline-6.3_p8-r3.ebuild 
b/sys-libs/readline/readline-6.3_p8-r3.ebuild
index 724f7463f3d..06ce2a1e2a4 100644
--- a/sys-libs/readline/readline-6.3_p8-r3.ebuild
+++ b/sys-libs/readline/readline-6.3_p8-r3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-inherit eutils multilib toolchain-funcs flag-o-matic multilib-minimal 
usr-ldscript
+inherit eutils multilib toolchain-funcs flag-o-matic multilib-minimal 
preserve-libs usr-ldscript
 
 # Official patches
 # See ftp://ftp.cwru.edu/pub/bash/readline-6.3-patches/

diff --git a/sys-libs/readline/readline-7.0_p5-r1.ebuild 
b/sys-libs/readline/readline-7.0_p5-r1.ebuild
index f9ba8f533c7..36cd5015f88 100644
--- a/sys-libs/readline/readline-7.0_p5-r1.ebuild
+++ b/sys-libs/readline/readline-7.0_p5-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit flag-o-matic multilib-minimal toolchain-funcs usr-ldscript
+inherit flag-o-matic multilib-minimal toolchain-funcs preserve-libs 
usr-ldscript
 
 # Official patches
 # See ftp://ftp.cwru.edu/pub/bash/readline-7.0-patches/



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

2020-02-12 Thread David Seifert
commit: d91f1898a96210393886e45f507023692de2e30b
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 15:22:26 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 15:22:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d91f1898

dev-libs/libpcre: [QA] inherit preserve-libs.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 dev-libs/libpcre/libpcre-8.41-r1.ebuild | 2 +-
 dev-libs/libpcre/libpcre-8.42.ebuild| 2 +-
 dev-libs/libpcre/libpcre-8.43.ebuild| 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-libs/libpcre/libpcre-8.41-r1.ebuild 
b/dev-libs/libpcre/libpcre-8.41-r1.ebuild
index fa5d7558f16..83d4cfce9cb 100644
--- a/dev-libs/libpcre/libpcre-8.41-r1.ebuild
+++ b/dev-libs/libpcre/libpcre-8.41-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-inherit eutils multilib libtool flag-o-matic toolchain-funcs multilib-minimal 
usr-ldscript
+inherit eutils multilib libtool flag-o-matic toolchain-funcs multilib-minimal 
preserve-libs usr-ldscript
 
 DESCRIPTION="Perl-compatible regular expression library"
 HOMEPAGE="http://www.pcre.org/;

diff --git a/dev-libs/libpcre/libpcre-8.42.ebuild 
b/dev-libs/libpcre/libpcre-8.42.ebuild
index 2f1c2a6fef3..5e863a9f565 100644
--- a/dev-libs/libpcre/libpcre-8.42.ebuild
+++ b/dev-libs/libpcre/libpcre-8.42.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit multilib libtool flag-o-matic toolchain-funcs multilib-minimal 
usr-ldscript
+inherit multilib libtool flag-o-matic toolchain-funcs multilib-minimal 
preserve-libs usr-ldscript
 
 DESCRIPTION="Perl-compatible regular expression library"
 HOMEPAGE="http://www.pcre.org/;

diff --git a/dev-libs/libpcre/libpcre-8.43.ebuild 
b/dev-libs/libpcre/libpcre-8.43.ebuild
index b5a63a4a71d..65e976ed381 100644
--- a/dev-libs/libpcre/libpcre-8.43.ebuild
+++ b/dev-libs/libpcre/libpcre-8.43.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit multilib libtool flag-o-matic toolchain-funcs multilib-minimal 
usr-ldscript
+inherit multilib libtool flag-o-matic toolchain-funcs multilib-minimal 
preserve-libs usr-ldscript
 
 DESCRIPTION="Perl-compatible regular expression library"
 HOMEPAGE="http://www.pcre.org/;



[gentoo-commits] repo/gentoo:master commit in: net-nds/openldap/

2020-02-12 Thread David Seifert
commit: c56d91ea91ca8634761df46b5fa43b4b338c3f67
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 12 15:22:29 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 12 15:22:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c56d91ea

net-nds/openldap: [QA] inherit preserve-libs.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 net-nds/openldap/openldap-2.4.45.ebuild | 2 +-
 net-nds/openldap/openldap-2.4.48.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-nds/openldap/openldap-2.4.45.ebuild 
b/net-nds/openldap/openldap-2.4.45.ebuild
index f382794bfe1..4d11c27b76e 100644
--- a/net-nds/openldap/openldap-2.4.45.ebuild
+++ b/net-nds/openldap/openldap-2.4.45.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="5"
 
-inherit db-use eutils flag-o-matic multilib multilib-minimal ssl-cert 
versionator toolchain-funcs autotools user systemd
+inherit db-use eutils flag-o-matic multilib multilib-minimal preserve-libs 
ssl-cert versionator toolchain-funcs autotools user systemd
 
 BIS_PN=rfc2307bis.schema
 BIS_PV=20140524

diff --git a/net-nds/openldap/openldap-2.4.48.ebuild 
b/net-nds/openldap/openldap-2.4.48.ebuild
index 8b0fd4b02e9..2c74c836815 100644
--- a/net-nds/openldap/openldap-2.4.48.ebuild
+++ b/net-nds/openldap/openldap-2.4.48.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit autotools db-use eapi7-ver flag-o-matic multilib multilib-minimal 
ssl-cert toolchain-funcs user systemd
+inherit autotools db-use eapi7-ver flag-o-matic multilib multilib-minimal 
preserve-libs ssl-cert toolchain-funcs user systemd
 
 BIS_PN=rfc2307bis.schema
 BIS_PV=20140524



[gentoo-commits] repo/gentoo:master commit in: media-gfx/digikam/, media-gfx/digikam/files/

2020-02-12 Thread Andreas Sturmlechner
commit: 89485e67a4051277812b8bc06ca80961b24004f4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Feb 12 15:14:07 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Feb 12 15:14:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89485e67

media-gfx/digikam: Drop 6.3.0-r1

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

 media-gfx/digikam/Manifest |   1 -
 media-gfx/digikam/digikam-6.3.0-r1.ebuild  | 157 -
 .../digikam-6.3.0-googlephoto-import-crash.patch   |  85 ---
 3 files changed, 243 deletions(-)

diff --git a/media-gfx/digikam/Manifest b/media-gfx/digikam/Manifest
index 65079a279da..06c96471be9 100644
--- a/media-gfx/digikam/Manifest
+++ b/media-gfx/digikam/Manifest
@@ -1,2 +1 @@
-DIST digikam-6.3.0.tar.xz 335641824 BLAKE2B 
1ecddeee653d6b97570aa3616c6dd0a951210983400fe8aca19ee9e01aef29820f0ab32e3cbc2e92e833868f0f652c5bdd0809324437b6fa778dfdaf04ea3c83
 SHA512 
9463d7a8351acae32e2fa77c96026d1cb60e56fcc20ad2b71ac7461ff1e5e2e02ca0ef8a12e4d5ae2324aa66e185cdf5b237d6330f4741691876977e773511ce
 DIST digikam-6.4.0.tar.xz 340146992 BLAKE2B 
ca1bc8b0d165f9774354d8489a11d46d8d7467edd3c1e90fd3a96024c4b7cd23bfd5c813251183bcca6d4beac9bffeb9d921beaa9a3752f75f1918796aacd719
 SHA512 
b3b5e9903538d110613aa872c9215f5e7c19f7520a2b9060c24e686f20f72075378b447239dd3e17cb8860cdd35c69934199b848757f0497ad25a7805e42

diff --git a/media-gfx/digikam/digikam-6.3.0-r1.ebuild 
b/media-gfx/digikam/digikam-6.3.0-r1.ebuild
deleted file mode 100644
index 7a9327fbcb3..000
--- a/media-gfx/digikam/digikam-6.3.0-r1.ebuild
+++ /dev/null
@@ -1,157 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit kde5 toolchain-funcs
-
-if [[ ${KDE_BUILD_TYPE} != live ]]; then
-   MY_PV=${PV/_/-}
-   MY_P=${PN}-${MY_PV}
-   SRC_BRANCH=stable
-   [[ ${PV} =~ beta[0-9]$ ]] && SRC_BRANCH=unstable
-   SRC_URI="mirror://kde/${SRC_BRANCH}/digikam/${PV}/${MY_P}.tar.xz"
-   KEYWORDS="amd64 x86"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Digital photo management application"
-HOMEPAGE="https://www.digikam.org/;
-
-LICENSE="GPL-2"
-IUSE="addressbook calendar dnn +imagemagick gphoto2 +lensfun libav marble 
mediaplayer mysql opengl openmp +panorama scanner semantic-desktop vkontakte 
webkit X"
-
-BDEPEND="
-   >=dev-util/cmake-3.14.3
-   sys-devel/gettext
-   panorama? (
-   sys-devel/bison
-   sys-devel/flex
-   )
-"
-COMMON_DEPEND="
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep knotifyconfig)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep solid)
-   $(add_qt_dep qtconcurrent)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtgui '-gles2')
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qtsql 'mysql?')
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtxml)
-   $(add_qt_dep qtxmlpatterns)
-   dev-libs/expat
-   >=media-gfx/exiv2-0.26:=
-   media-libs/lcms:2
-   media-libs/liblqr
-   media-libs/libpng:0=
-   >=media-libs/opencv-3.1.0:=
-   media-libs/tiff:0
-   virtual/jpeg:0
-   addressbook? (
-   || (
-   $(add_frameworks_dep kcontacts)
-   $(add_kdeapps_dep kcontacts)
-   )
-   $(add_kdeapps_dep akonadi-contacts)
-   )
-   calendar? ( || (
-   $(add_frameworks_dep kcalendarcore)
-   $(add_kdeapps_dep kcalcore)
-   ) )
-   dnn? ( >=media-libs/opencv-3.1.0:=[contrib,contribdnn] )
-   gphoto2? ( media-libs/libgphoto2:= )
-   imagemagick? ( media-gfx/imagemagick:= )
-   lensfun? ( media-libs/lensfun )
-   marble? (
-   $(add_frameworks_dep kbookmarks)
-   $(add_kdeapps_dep marble)
-   $(add_qt_dep qtconcurrent)
-   )
-   mediaplayer? (
-   media-libs/qtav[opengl]
-   !libav? ( media-video/ffmpeg:= )
-   libav? ( media-video/libav:= )
-   )
-   opengl? (
-   $(add_qt_dep qtopengl)
-   virtual/opengl
-   )
-   panorama? ( $(add_frameworks_dep threadweaver) )
-   scanner? ( $(add_kdeapps_dep libksane) )
-   semantic-desktop? ( $(add_frameworks_dep kfilemetadata) )
-   vkontakte? ( net-libs/libkvkontakte:5 )
-   !webkit? ( $(add_qt_dep qtwebengine 'widgets') )
-   webkit? 

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

2020-02-12 Thread Andreas Sturmlechner
commit: c19a17a8e939973820a4f4f9983cc0adedcbad3b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Feb 12 15:21:04 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Feb 12 15:21:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c19a17a8

sci-astronomy/kstars: Drop 3.2.3

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

 sci-astronomy/kstars/Manifest|  1 -
 sci-astronomy/kstars/kstars-3.2.3.ebuild | 85 
 2 files changed, 86 deletions(-)

diff --git a/sci-astronomy/kstars/Manifest b/sci-astronomy/kstars/Manifest
index 6b657fed7fc..3036e67e11b 100644
--- a/sci-astronomy/kstars/Manifest
+++ b/sci-astronomy/kstars/Manifest
@@ -1,2 +1 @@
-DIST kstars-3.2.3.tar.xz 70750660 BLAKE2B 
ea44b1ab2ba5d34a472b513180c148093defeff9fc2b8fb823621149b836a6fb7d6f53e0e50765de7c423fcdcdfc8fac6ae4feb4c4670d475353e091fa14d20c
 SHA512 
29c534c860cb1ab2c52e497061b16c7870e63253a7184f79ed8565d56abbc2909160d7f8c649764e4eb7462630e30e4428a88753e7987e97e530b174076cbd37
 DIST kstars-3.3.9.tar.xz 71097252 BLAKE2B 
d8593be78f30de8e9ce00744f71ef23eda51bdfdd4fea1aa5b4e25605b2d45c337f66c76b8804b292c8277a768aa08d7acc1d52cb0ad955bc67a54a370e15b74
 SHA512 
51a8687d8f438eda2e6c079ce9bec25aa1e84b4cff697da08e91d38388e85595bea8ed06a2a8d6a8a4ce133e768e28fb5a6a0ff763514e751d693c32f91e95c6

diff --git a/sci-astronomy/kstars/kstars-3.2.3.ebuild 
b/sci-astronomy/kstars/kstars-3.2.3.ebuild
deleted file mode 100644
index e0851ef4ce8..000
--- a/sci-astronomy/kstars/kstars-3.2.3.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KDE_HANDBOOK="forceoptional"
-PYTHON_COMPAT=( python2_7 )
-inherit kde5 python-single-r1
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz"
-   KEYWORDS="amd64 x86"
-fi
-
-DESCRIPTION="Desktop Planetarium"
-HOMEPAGE="https://kde.org/applications/education/kstars 
https://edu.kde.org/kstars/;
-IUSE="fits indi +password raw wcs"
-
-REQUIRED_USE="indi? ( fits ) ${PYTHON_REQUIRED_USE}"
-
-COMMON_DEPEND="
-   $(add_frameworks_dep kauth)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep knewstuff)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep knotifyconfig)
-   $(add_frameworks_dep kplotting)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_qt_dep qtdatavis3d)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtdeclarative)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qtsql)
-   $(add_qt_dep qtsvg)
-   $(add_qt_dep qtwebsockets)
-   $(add_qt_dep qtwidgets)
-   sys-libs/zlib
-   fits? ( sci-libs/cfitsio )
-   indi? ( >=sci-libs/indilib-1.7.5 )
-   password? ( dev-libs/qtkeychain:= )
-   raw? ( media-libs/libraw:= )
-   wcs? ( sci-astronomy/wcslib )
-"
-# TODO: Add back when re-enabled by upstream
-#  opengl? (
-#  $(add_qt_dep qtopengl)
-#  virtual/opengl
-#  )
-DEPEND="${COMMON_DEPEND}
-   $(add_qt_dep qtconcurrent)
-   dev-cpp/eigen:3
-"
-RDEPEND="${COMMON_DEPEND}
-   ${PYTHON_DEPS}
-"
-
-src_configure() {
-   local mycmakeargs=(
-   -DFETCH_TRANSLATIONS=OFF
-   $(cmake_use_find_package fits CFitsio)
-   $(cmake_use_find_package indi INDI)
-   $(cmake_use_find_package password Qt5Keychain)
-   $(cmake_use_find_package raw LibRaw)
-   $(cmake_use_find_package wcs WCSLIB)
-   )
-
-   kde5_src_configure
-}
-
-pkg_postinst () {
-   kde5_pkg_postinst
-
-   if [[ -z "${REPLACING_VERSIONS}" ]] && ! has_version "x11-misc/xplanet" 
; then
-   elog "${PN} has optional runtime support for x11-misc/xplanet"
-   fi
-   # same for AstrometryNet, which is not packaged.
-}



[gentoo-commits] repo/gentoo:master commit in: app-office/skrooge/, app-office/skrooge/files/

2020-02-12 Thread Andreas Sturmlechner
commit: 8a715fd056eef2982f73d096831b210b7448aeb5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Feb 12 15:13:03 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Feb 12 15:13:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a715fd0

app-office/skrooge: Drop 2.20.0

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

 app-office/skrooge/Manifest|   1 -
 .../files/skrooge-2.20.0-missing-header.patch  |  24 -
 app-office/skrooge/skrooge-2.20.0.ebuild   | 101 -
 3 files changed, 126 deletions(-)

diff --git a/app-office/skrooge/Manifest b/app-office/skrooge/Manifest
index 078f1a28697..4ab9a08a819 100644
--- a/app-office/skrooge/Manifest
+++ b/app-office/skrooge/Manifest
@@ -1,2 +1 @@
-DIST skrooge-2.20.0.tar.xz 21787404 BLAKE2B 
b289bbec8d6e369298a142360cc07c6d522d44969c55c68de70df4a9ad574e2a07e9b349091bb8b902408afc709552692557363ef9e7ca2a4375abc41236cd3f
 SHA512 
5b4a9b5b17e24e222a99024bfed03d126df117d4b0af5b5828248ecb08df72dc595225290f811c9a5d45b552f465d361f19f95c4c1ef492bb39db38aa68fa96c
 DIST skrooge-2.21.1.tar.xz 21487048 BLAKE2B 
64eeb2e14a18e57f8fd89985e28e3b2736e4ece2ffc5132478531ba19a6f7ad821a5198570f01fd6bb3ad79410ba69bc7b0cdf8c5a85243bff3a879ad2458a2d
 SHA512 
7d87576b38bd0dea1718babd818115b56cdae9183ca6b7b7631bcf749f2ed2b6a49989275fa5603906e08457bcaaf66404b4a76e31c6b84653f40e5b249d31c5

diff --git a/app-office/skrooge/files/skrooge-2.20.0-missing-header.patch 
b/app-office/skrooge/files/skrooge-2.20.0-missing-header.patch
deleted file mode 100644
index 311404993b8..000
--- a/app-office/skrooge/files/skrooge-2.20.0-missing-header.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From 79aeb3f4d3cc01761d99af5868c7fb5101cf2258 Mon Sep 17 00:00:00 2001
-From: Luca Beltrame 
-Date: Sun, 21 Jul 2019 09:19:40 +0200
-Subject: Fix build with Qt 5.13
-

- plugins/generic/skg_monthly/grantlee_filters/skgdocumentfilter.cpp | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git 
a/plugins/generic/skg_monthly/grantlee_filters/skgdocumentfilter.cpp 
b/plugins/generic/skg_monthly/grantlee_filters/skgdocumentfilter.cpp
-index 423eb3a..dfcfb43 100644
 a/plugins/generic/skg_monthly/grantlee_filters/skgdocumentfilter.cpp
-+++ b/plugins/generic/skg_monthly/grantlee_filters/skgdocumentfilter.cpp
-@@ -27,6 +27,8 @@
- #include "skgmainpanel.h"
- #include "skgtraces.h"
- 
-+#include 
-+
- #include 
- 
- QVariant SKGDocumentTableFilter::doFilter(const QVariant& input, const 
QVariant& argument, bool autoescape) const
--- 
-cgit v1.1

diff --git a/app-office/skrooge/skrooge-2.20.0.ebuild 
b/app-office/skrooge/skrooge-2.20.0.ebuild
deleted file mode 100644
index 7d87ce4cec4..000
--- a/app-office/skrooge/skrooge-2.20.0.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KDE_HANDBOOK="optional"
-KDE_TEST="forceoptional"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-DESCRIPTION="Personal finances manager, aiming at being simple and intuitive"
-HOMEPAGE="https://skrooge.org/;
-[[ ${PV} ==  ]] || SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-KEYWORDS="amd64 x86"
-IUSE="activities designer kde ofx webkit"
-
-REQUIRED_USE="test? ( designer )"
-
-BDEPEND="
-   dev-libs/libxslt
-   virtual/pkgconfig
-"
-COMMON_DEPEND="
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kitemviews)
-   $(add_frameworks_dep knewstuff)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep knotifyconfig)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep ktextwidgets)
-   $(add_frameworks_dep kwallet)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_qt_dep qtconcurrent)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtdeclarative 'widgets')
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qtscript)
-   $(add_qt_dep qtsql '' '' '5=')
-   $(add_qt_dep qtsvg)
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtxml)
-   app-crypt/qca:2[qt5(+)]
-   dev-db/sqlcipher
-   dev-libs/grantlee:5
-   activities? ( $(add_frameworks_dep kactivities) )
-   kde? ( $(add_frameworks_dep krunner) )
-   ofx? ( dev-libs/libofx )
-   webkit? ( >=dev-qt/qtwebkit-5.212.0_pre20180120:5 )
-   !webkit? ( $(add_qt_dep qtwebengine 'widgets') )
-"
-DEPEND="${COMMON_DEPEND}
-   

[gentoo-commits] repo/gentoo:master commit in: kde-misc/kshutdown/, kde-misc/kshutdown/files/

2020-02-12 Thread Andreas Sturmlechner
commit: 56d4852c97f8de04e9b51f32c3dd29a2838d1328
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Feb 12 15:14:47 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Feb 12 15:14:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56d4852c

kde-misc/kshutdown: Drop 5.0

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

 kde-misc/kshutdown/Manifest|  1 -
 .../kshutdown/files/kshutdown-5.0-cmake-3.15.patch | 34 --
 kde-misc/kshutdown/kshutdown-5.0.ebuild| 53 --
 3 files changed, 88 deletions(-)

diff --git a/kde-misc/kshutdown/Manifest b/kde-misc/kshutdown/Manifest
index bf54e2e7913..f21e46992be 100644
--- a/kde-misc/kshutdown/Manifest
+++ b/kde-misc/kshutdown/Manifest
@@ -1,2 +1 @@
-DIST kshutdown-source-5.0.zip 454848 BLAKE2B 
481cafbf5bd3831088ec9168b6eb82e342106b9b570279b6b8ca1db1f2df8c5640b3942f76032559396b504903b18fe106eb940e81822472a63f235e1a004644
 SHA512 
7a3920315db142f150227e624fa4a765966ec8367a08686214cb072d94a62d24f3a22fbef8fc84411d385be935102cf85df1b001b2922399455cc320c1e0f0db
 DIST kshutdown-source-5.2.zip 445025 BLAKE2B 
161a637ded6fa7ddc11daab5bfa20efe51bee0407339e178668c584cc690dd419bfb1e7e134cbc9ec3274a394d47496423f8b3b561cdd8083470daa4e8d24511
 SHA512 
ac46164da88815604007e637663c42430212b37231d6116fd31b947b24d2bd69aff0d79fcab570425960420d77168de184ccda99dd685bec96bb353cb578ee04

diff --git a/kde-misc/kshutdown/files/kshutdown-5.0-cmake-3.15.patch 
b/kde-misc/kshutdown/files/kshutdown-5.0-cmake-3.15.patch
deleted file mode 100644
index 4911fc4daf0..000
--- a/kde-misc/kshutdown/files/kshutdown-5.0-cmake-3.15.patch
+++ /dev/null
@@ -1,34 +0,0 @@
 a/CMakeLists.txt   2019-05-04 16:33:55.0 +0200
-+++ b/CMakeLists.txt   2019-08-08 21:53:36.255257785 +0200
-@@ -1,6 +1,6 @@
- project(kshutdown)
- 
--cmake_minimum_required(VERSION 3.0.0)
-+cmake_minimum_required(VERSION 3.1)
- cmake_policy(SET CMP0063 NEW) # disables cmake warning
- 
- set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
-@@ -45,7 +45,9 @@
-   add_subdirectory(po)
- endif()
- 
--include(FeatureSummary)
--feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
-+set (CMAKE_CXX_STANDARD 14)
- 
- add_subdirectory(src)
-+
-+include(FeatureSummary)
-+feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
 a/src/CMakeLists.txt   2019-05-04 16:33:55.0 +0200
-+++ b/src/CMakeLists.txt   2019-08-08 21:53:48.791385858 +0200
-@@ -31,9 +31,6 @@
-   add_executable(kshutdown ${kshutdown_SRC} ${kshutdown_MOC_SOURCES})
- endif()
- 
--# HACK: Add -std=gnu++14 option (cmake horror):
--target_compile_features(kshutdown PUBLIC cxx_std_14)
--
- if(KS_PURE_QT)
-   target_link_libraries(kshutdown
-   Qt5::DBus

diff --git a/kde-misc/kshutdown/kshutdown-5.0.ebuild 
b/kde-misc/kshutdown/kshutdown-5.0.ebuild
deleted file mode 100644
index adb5989ac72..000
--- a/kde-misc/kshutdown/kshutdown-5.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KDE_TEST="false"
-KDE_AUTODEPS="false"
-inherit kde5
-
-DESCRIPTION="Shutdown manager for desktop environments like KDE Plasma"
-HOMEPAGE="https://kshutdown.sourceforge.io;
-SRC_URI="mirror://sourceforge/${PN}/${PN}-source-${PV}.zip"
-
-LICENSE="GPL-2+"
-KEYWORDS="amd64 x86"
-IUSE="+kde"
-
-BDEPEND="
-   app-arch/unzip
-   sys-devel/gettext
-   kde? ( kde-frameworks/extra-cmake-modules:5 )
-"
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   kde? (
-   kde-frameworks/kconfig:5
-   kde-frameworks/kconfigwidgets:5
-   kde-frameworks/kcoreaddons:5
-   kde-frameworks/kcrash:5
-   kde-frameworks/kdbusaddons:5
-   kde-frameworks/kglobalaccel:5
-   kde-frameworks/ki18n:5
-   kde-frameworks/kidletime:5
-   kde-frameworks/knotifications:5
-   kde-frameworks/knotifyconfig:5
-   kde-frameworks/kwidgetsaddons:5
-   kde-frameworks/kxmlgui:5
-   )
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${P}-cmake-3.15.patch" )
-
-src_configure() {
-   local mycmakeargs=(
-   -DKS_PURE_QT=$(usex !kde)
-   )
-
-   kde5_src_configure
-}



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

2020-02-12 Thread Agostino Sarubbo
commit: e1b12c5ed24695b7839f2df44192935938794496
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 15:09:39 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 15:09:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1b12c5e

sci-astronomy/kstars: x86 stable wrt bug #701942

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/sci-astronomy/kstars/kstars-3.3.9.ebuild 
b/sci-astronomy/kstars/kstars-3.3.9.ebuild
index 33ecf5ac5e8..c64678a238f 100644
--- a/sci-astronomy/kstars/kstars-3.3.9.ebuild
+++ b/sci-astronomy/kstars/kstars-3.3.9.ebuild
@@ -14,7 +14,7 @@ https://edu.kde.org/kstars/;
 
 if [[ ${KDE_BUILD_TYPE} = release ]]; then
SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz"
-   KEYWORDS="amd64 ~x86"
+   KEYWORDS="amd64 x86"
 fi
 
 LICENSE="GPL-2+ GPL-3+"



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

2020-02-12 Thread Agostino Sarubbo
commit: ff7e570c3753d61d7a4aa4b455158d57074b0e96
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 12 15:10:14 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 12 15:10:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff7e570c

media-gfx/digikam: x86 stable wrt bug #705232

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-gfx/digikam/digikam-6.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/digikam/digikam-6.4.0.ebuild 
b/media-gfx/digikam/digikam-6.4.0.ebuild
index 92dabb81cb7..5bce62aec09 100644
--- a/media-gfx/digikam/digikam-6.4.0.ebuild
+++ b/media-gfx/digikam/digikam-6.4.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${KDE_BUILD_TYPE} != live ]]; then
SRC_BRANCH=stable
[[ ${PV} =~ beta[0-9]$ ]] && SRC_BRANCH=unstable
SRC_URI="mirror://kde/${SRC_BRANCH}/digikam/${PV}/${MY_P}.tar.xz"
-   KEYWORDS="amd64 ~x86"
+   KEYWORDS="amd64 x86"
S="${WORKDIR}/${MY_P}"
 fi
 



<    1   2   3   >