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

2019-02-17 Thread Georgy Yakovlev
commit: 1ea333a4383745b9c15255f17d08f9f96265b73e
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Feb 18 05:16:51 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Feb 18 07:57:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ea333a4

media-libs/vidstab: keyword on ~arm64

Bug: https://bugs.gentoo.org/675190
Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev  gentoo.org>

 media-libs/vidstab/vidstab-1.1.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/vidstab/vidstab-1.1.0-r1.ebuild 
b/media-libs/vidstab/vidstab-1.1.0-r1.ebuild
index cf1db90cbdc..1075c89fd56 100644
--- a/media-libs/vidstab/vidstab-1.1.0-r1.ebuild
+++ b/media-libs/vidstab/vidstab-1.1.0-r1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == * ]] ; then
inherit git-r3
 else
SRC_URI="https://github.com/georgmartius/vid.stab/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
S="${WORKDIR}/vid.stab-${PV}"
 fi
 



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

2019-02-17 Thread Mikle Kolyada
commit: e8d57a643b6f037dc7521e8502ad30cca0438585
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 07:53:56 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 07:53:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8d57a64

dev-util/cunit: Drop old

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

 dev-util/cunit/Manifest   |  1 -
 dev-util/cunit/cunit-2.1_p2-r1.ebuild | 54 ---
 2 files changed, 55 deletions(-)

diff --git a/dev-util/cunit/Manifest b/dev-util/cunit/Manifest
index 5575d302800..031bff85654 100644
--- a/dev-util/cunit/Manifest
+++ b/dev-util/cunit/Manifest
@@ -1,2 +1 @@
-DIST CUnit-2.1-2-src.tar.bz2 349037 BLAKE2B 
51122ae79f15ebaf3b4a4f46acc8f1e08e918097d1308409b02e722e6eb7e0147d14461dd834dfbdb95ad8bc230076c05b3700348781e2a9b31bf29898c61435
 SHA512 
c0af37b9f3a00fd7bb971f33e94373699d0380c28fad12f6db860739990a9e0bb0a71c0e3531529b9952128c11248b8f365875d0315c16637a0b7e91642d
 DIST CUnit-2.1-3.tar.bz2 514500 BLAKE2B 
919ff3345c06de44662deb3c43700dc14f3c6b0b1557e162f1f527b782874082bc866b3bbc3fd18869b975d7a0a6b4730eab87ed36847249ff8fa5cbede27797
 SHA512 
547b417109332446dfab8fda17bf4ccd2da841dc93f824dc90a20635bcf1fb80fb2176500d8a0906940f3f3d3e2f77b2d70a71090c9ab84ad9af43f3582bc487

diff --git a/dev-util/cunit/cunit-2.1_p2-r1.ebuild 
b/dev-util/cunit/cunit-2.1_p2-r1.ebuild
deleted file mode 100644
index 409c1906ece..000
--- a/dev-util/cunit/cunit-2.1_p2-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils flag-o-matic multilib-minimal toolchain-funcs
-
-MY_PN='CUnit'
-MY_PV="${PV/_p*}-2"
-MY_P="${MY_PN}-${MY_PV}"
-
-DESCRIPTION="CUnit - C Unit Test Framework"
-SRC_URI="mirror://sourceforge/cunit/${MY_P}-src.tar.bz2"
-HOMEPAGE="http://cunit.sourceforge.net";
-
-SLOT="0"
-LICENSE="LGPL-2"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="ncurses static-libs"
-
-RDEPEND="ncurses? ( >=sys-libs/ncurses-5.9-r3[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-DOCS=( AUTHORS NEWS README ChangeLog )
-
-src_prepare() {
-   sed -e "/^docdir/d" -i doc/Makefile.am || die
-   sed -e '/^dochdrdir/{s:$(prefix)/doc/@PACKAGE@:$(docdir):}' \
-   -i doc/headers/Makefile.am || die
-   sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.in || die
-   eautoreconf
-
-   append-cppflags -D_BSD_SOURCE
-
-   # unable to find headers otherwise
-   multilib_copy_sources
-}
-
-multilib_src_configure() {
-   local LIBS=${LIBS}
-   append-libs $($(tc-getPKG_CONFIG) --libs ncurses)
-
-   econf \
-   --docdir="${EPREFIX}"/usr/share/doc/${PF} \
-   $(use_enable static-libs static) \
-   --disable-debug \
-   $(use_enable ncurses curses)
-}
-
-multilib_src_install_all() {
-   einstalldocs
-   prune_libtool_files
-}



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

2019-02-17 Thread Mikle Kolyada
commit: 20edb36f0bc6880d341f635dbd49570466ddc8ae
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 07:51:03 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 07:51:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20edb36f

dev-util/cunit: amd64 stable wrt bug #676518

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 dev-util/cunit/cunit-2.1_p3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/cunit/cunit-2.1_p3.ebuild 
b/dev-util/cunit/cunit-2.1_p3.ebuild
index 731f577ec61..c53c51c7e89 100644
--- a/dev-util/cunit/cunit-2.1_p3.ebuild
+++ b/dev-util/cunit/cunit-2.1_p3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="http://cunit.sourceforge.net";
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="ncurses static-libs"
 
 RDEPEND="ncurses? ( >=sys-libs/ncurses-5.9-r3:0=[${MULTILIB_USEDEP}] )"



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

2019-02-17 Thread Mikle Kolyada
commit: 7ad57b5f811ed99c0731045a2cf2cd8ed5c6eb5a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 07:51:22 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 07:51:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ad57b5f

dev-util/cunit: s390 stable wrt bug #676518

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="s390"

 dev-util/cunit/cunit-2.1_p3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/cunit/cunit-2.1_p3.ebuild 
b/dev-util/cunit/cunit-2.1_p3.ebuild
index c53c51c7e89..cf56490bd7c 100644
--- a/dev-util/cunit/cunit-2.1_p3.ebuild
+++ b/dev-util/cunit/cunit-2.1_p3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="http://cunit.sourceforge.net";
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="ncurses static-libs"
 
 RDEPEND="ncurses? ( >=sys-libs/ncurses-5.9-r3:0=[${MULTILIB_USEDEP}] )"



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

2019-02-17 Thread Mikle Kolyada
commit: d3de8f1c4b48361ccd5484213c738297e53792f9
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 07:50:39 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 07:50:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3de8f1c

dev-util/cunit: arm stable wrt bug #676518

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="arm"

 dev-util/cunit/cunit-2.1_p3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/cunit/cunit-2.1_p3.ebuild 
b/dev-util/cunit/cunit-2.1_p3.ebuild
index f78c445eb8d..731f577ec61 100644
--- a/dev-util/cunit/cunit-2.1_p3.ebuild
+++ b/dev-util/cunit/cunit-2.1_p3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="http://cunit.sourceforge.net";
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha ~amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="ncurses static-libs"
 
 RDEPEND="ncurses? ( >=sys-libs/ncurses-5.9-r3:0=[${MULTILIB_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: net-p2p/ctorrent/

2019-02-17 Thread Mikle Kolyada
commit: 0dfc495ed2d5bfc1677c5b01340285c0d9677839
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 07:37:52 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 07:37:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dfc495e

net-p2p/ctorrent: Drop old

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

 net-p2p/ctorrent/ctorrent-3.3.2-r2.ebuild | 27 ---
 net-p2p/ctorrent/ctorrent-3.3.2-r3.ebuild | 28 
 2 files changed, 55 deletions(-)

diff --git a/net-p2p/ctorrent/ctorrent-3.3.2-r2.ebuild 
b/net-p2p/ctorrent/ctorrent-3.3.2-r2.ebuild
deleted file mode 100644
index a93b57767ba..000
--- a/net-p2p/ctorrent/ctorrent-3.3.2-r2.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils
-
-MY_P="${PN}-dnh${PV}"
-
-DESCRIPTION="Enhanced CTorrent is a BitTorrent console client written in C and 
C++"
-HOMEPAGE="http://www.rahul.net/dholmes/ctorrent/";
-SRC_URI="mirror://sourceforge/dtorrent/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm ppc ~s390 ~sh ~sparc x86 ~x86-fbsd"
-IUSE=""
-
-S=${WORKDIR}/${MY_P}
-
-DEPEND="dev-libs/openssl:="
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-CVE-2009-1759.patch
-   epatch "${FILESDIR}"/${P}-negative-ints.patch
-}

diff --git a/net-p2p/ctorrent/ctorrent-3.3.2-r3.ebuild 
b/net-p2p/ctorrent/ctorrent-3.3.2-r3.ebuild
deleted file mode 100644
index ba96a9a0cf3..000
--- a/net-p2p/ctorrent/ctorrent-3.3.2-r3.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils
-
-MY_P="${PN}-dnh${PV}"
-
-DESCRIPTION="Enhanced CTorrent is a BitTorrent console client written in C and 
C++"
-HOMEPAGE="http://www.rahul.net/dholmes/ctorrent/";
-SRC_URI="mirror://sourceforge/dtorrent/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
-IUSE=""
-
-S=${WORKDIR}/${MY_P}
-
-DEPEND="dev-libs/openssl:="
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-CVE-2009-1759.patch
-   epatch "${FILESDIR}"/${P}-negative-ints.patch
-   epatch "${FILESDIR}"/${P}-empty-path-components.patch
-}



[gentoo-commits] repo/gentoo:master commit in: net-p2p/ctorrent/

2019-02-17 Thread Mikle Kolyada
commit: f4355044094f31a379284c8914bce1b0d5131b73
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 07:35:37 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 07:35:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4355044

net-p2p/ctorrent: arm stable wrt bug #676750

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="arm"

 net-p2p/ctorrent/ctorrent-3.3.2-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/ctorrent/ctorrent-3.3.2-r4.ebuild 
b/net-p2p/ctorrent/ctorrent-3.3.2-r4.ebuild
index c175d7cf552..64d5545aec8 100644
--- a/net-p2p/ctorrent/ctorrent-3.3.2-r4.ebuild
+++ b/net-p2p/ctorrent/ctorrent-3.3.2-r4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/dtorrent/${MY_P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ppc ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="~amd64 arm ppc ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="libressl"
 
 S="${WORKDIR}/${MY_P}"



[gentoo-commits] repo/gentoo:master commit in: net-p2p/ctorrent/

2019-02-17 Thread Mikle Kolyada
commit: a72fa1979ab6ec1fc3f8d578908aa2c6db422f04
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 07:36:03 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 07:36:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a72fa197

net-p2p/ctorrent: amd64 stable wrt bug #676750

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 net-p2p/ctorrent/ctorrent-3.3.2-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/ctorrent/ctorrent-3.3.2-r4.ebuild 
b/net-p2p/ctorrent/ctorrent-3.3.2-r4.ebuild
index 64d5545aec8..d921f9ff372 100644
--- a/net-p2p/ctorrent/ctorrent-3.3.2-r4.ebuild
+++ b/net-p2p/ctorrent/ctorrent-3.3.2-r4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/dtorrent/${MY_P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 arm ppc ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 arm ppc ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="libressl"
 
 S="${WORKDIR}/${MY_P}"



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

2019-02-17 Thread Mikle Kolyada
commit: c0bb8dd78a0c1c87cc5e067d81c6ff1139b4d62a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 07:33:04 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 07:34:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0bb8dd7

dev-python/tracing: amd64 stable wrt bug #676502

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

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

diff --git a/dev-python/tracing/tracing-0.10.ebuild 
b/dev-python/tracing/tracing-0.10.ebuild
index 09b209a18b6..c09ce44ba55 100644
--- a/dev-python/tracing/tracing-0.10.ebuild
+++ b/dev-python/tracing/tracing-0.10.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://git.liw.fi/cgi-bin/cgit/cgit.cgi/python-tracing/snapshot/${P}.ta
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="doc examples"
 
 python_compile_all() {



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

2019-02-17 Thread Ulrich Müller
commit: a6169ecf978a3e98c4ae9f35a1274890e3e9e289
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Feb 18 07:31:23 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Feb 18 07:33:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6169ecf

app-emacs/rust-mode: New snapshot.

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Ulrich Müller  gentoo.org>

 app-emacs/rust-mode/Manifest   |  1 +
 .../rust-mode/rust-mode-0.3.0_p20190125.ebuild | 28 ++
 2 files changed, 29 insertions(+)

diff --git a/app-emacs/rust-mode/Manifest b/app-emacs/rust-mode/Manifest
index 7124a79e94d..bf6e5bf65b7 100644
--- a/app-emacs/rust-mode/Manifest
+++ b/app-emacs/rust-mode/Manifest
@@ -1 +1,2 @@
 DIST rust-mode-0.3.0_p20180221.tar.xz 37392 BLAKE2B 
185511a2096400254e141f213f2e9a84861c2aaf5f2259cab724aa929e07b2691ae6f36c5568de5d978809588271486377a194a77a066413df6ee995e9bbe54a
 SHA512 
004bd1536ab2e1e708193509a307ed47e22bf1f3dc5d84816958588e312c8bf6e75ee178cc99439ec0bd427ba02030c133bb21f96c5116b175d1d7cde89e9e6c
+DIST rust-mode-0.3.0_p20190125.tar.xz 37580 BLAKE2B 
d4d3ae9dac452ba3e2966d5036bd5f4edb4066ca65954b7f18a99c56ad6a8848fd80ef799c7c266c77a844839d87ab9641c77afc089a17e4e459fea27b6af982
 SHA512 
303d7f183006769b3fdf7a7118b36d29d785c2a29cf88ae286cb86180f84a4e50e66597d3bc984979e2509b872632d750fba96ff522081df5351d8d9511a3272

diff --git a/app-emacs/rust-mode/rust-mode-0.3.0_p20190125.ebuild 
b/app-emacs/rust-mode/rust-mode-0.3.0_p20190125.ebuild
new file mode 100644
index 000..08710c7798e
--- /dev/null
+++ b/app-emacs/rust-mode/rust-mode-0.3.0_p20190125.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+NEED_EMACS=24
+
+inherit elisp
+
+DESCRIPTION="A major emacs mode for editing Rust source code"
+HOMEPAGE="https://github.com/rust-lang/rust-mode";
+SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz";
+
+LICENSE="|| ( MIT Apache-2.0 )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+SITEFILE="50${PN}-gentoo.el"
+
+src_test() {
+   ${EMACS} ${EMACSFLAGS} ${BYTECOMPFLAGS} \
+   -l rust-mode.el -l rust-mode-tests.el \
+   -f ert-run-tests-batch-and-exit || die "tests failed"
+}
+
+src_install() {
+   elisp-install ${PN} rust-mode.{el,elc}
+   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+}



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

2019-02-17 Thread Mikle Kolyada
commit: 68a98f8320626b8195020bda6b2c6b2faa672e35
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 07:31:59 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 07:31:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68a98f83

dev-python/fs: amd64 stable wrt bug #676274

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 dev-python/fs/fs-2.0.26.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/fs/fs-2.0.26.ebuild b/dev-python/fs/fs-2.0.26.ebuild
index c657c5f97cf..944ce4bb0c8 100644
--- a/dev-python/fs/fs-2.0.26.ebuild
+++ b/dev-python/fs/fs-2.0.26.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
 IUSE="test"
 
 RDEPEND="



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

2019-02-17 Thread Mikle Kolyada
commit: 79efb2483170579eb1506d2d143537808b66ebbc
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 07:32:02 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 07:32:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79efb248

dev-python/dexml: amd64 stable wrt bug #676274

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 dev-python/dexml/dexml-0.5.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/dexml/dexml-0.5.1.ebuild 
b/dev-python/dexml/dexml-0.5.1.ebuild
index 44f4d7b7090..56623b8634d 100644
--- a/dev-python/dexml/dexml-0.5.1.ebuild
+++ b/dev-python/dexml/dexml-0.5.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
 IUSE="test"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: app-pda/ideviceinstaller/

2019-02-17 Thread Mikle Kolyada
commit: a91f83303f3b4d6ae2b60d7f28100c1c8a90f202
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 07:30:51 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 07:30:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a91f8330

app-pda/ideviceinstaller: Drop old

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

 app-pda/ideviceinstaller/Manifest  |  1 -
 .../ideviceinstaller/ideviceinstaller-1.0.1.ebuild | 25 --
 2 files changed, 26 deletions(-)

diff --git a/app-pda/ideviceinstaller/Manifest 
b/app-pda/ideviceinstaller/Manifest
index 487ac583b69..de74f2fb71e 100644
--- a/app-pda/ideviceinstaller/Manifest
+++ b/app-pda/ideviceinstaller/Manifest
@@ -1,2 +1 @@
-DIST ideviceinstaller-1.0.1.tar.bz2 259871 BLAKE2B 
04eb263869824035e5e1fb48aa8b000fd9534bb4b53582cf3e838e85c9a0743ae004bb78a426e46505315fa9c6b88766f100e2586c1f016603224614886723f1
 SHA512 
dcdd8c076ef6392122fe0154467b42e244728050d955a27eaf80b637729fb14c06e2d05a3d027f9dd3878758045f1112d1eb20f3bbcc86a7289e7eae26c90d19
 DIST ideviceinstaller-1.1.0.tar.bz2 272210 BLAKE2B 
da67c16d046e148d11bafcd1f33a8e5a5cba49c6f975ba038602eaf2444a76883d568e16583923c7303cce170e6718fc1cfcd0b2cffed5a1eaf895944043d785
 SHA512 
8bf5dc30b8fa2f0c171ec3705db8d8d143d2520b2875fc05d9d325bd4f1ffdf29230557e57f3e824654ab3bb71bbaf9019aa573d4b1cce29a9c75bf15024d623

diff --git a/app-pda/ideviceinstaller/ideviceinstaller-1.0.1.ebuild 
b/app-pda/ideviceinstaller/ideviceinstaller-1.0.1.ebuild
deleted file mode 100644
index cf9c5327a4c..000
--- a/app-pda/ideviceinstaller/ideviceinstaller-1.0.1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="A tool to interact with the installation_proxy of an Apple's 
iDevice"
-HOMEPAGE="http://www.libimobiledevice.org/";
-SRC_URI="http://www.libimobiledevice.org/downloads/${P}.tar.bz2";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND=">=app-pda/libimobiledevice-1.1.4:=
-   >=app-pda/libplist-1.8:=
-   >=dev-libs/libzip-0.8"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-DOCS="AUTHORS NEWS README"
-
-src_prepare() {
-   sed -i -e 's:-Werror -g::' configure || die
-}



[gentoo-commits] repo/gentoo:master commit in: app-pda/ideviceinstaller/

2019-02-17 Thread Mikle Kolyada
commit: 04cc0c65df7dd40fdc274355696179c165695148
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 07:29:38 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 07:29:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04cc0c65

app-pda/ideviceinstaller: amd64 stable wrt bug #676426

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 app-pda/ideviceinstaller/ideviceinstaller-1.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-pda/ideviceinstaller/ideviceinstaller-1.1.0.ebuild 
b/app-pda/ideviceinstaller/ideviceinstaller-1.1.0.ebuild
index e825925da0f..a5c3f139631 100644
--- a/app-pda/ideviceinstaller/ideviceinstaller-1.1.0.ebuild
+++ b/app-pda/ideviceinstaller/ideviceinstaller-1.1.0.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://www.libimobiledevice.org/downloads/${P}.tar.bz2";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND=">=app-pda/libimobiledevice-1.1.4:=



[gentoo-commits] repo/gentoo:master commit in: net-im/librvp/

2019-02-17 Thread Mikle Kolyada
commit: 7fd38b9dcb509276b0d34e3d8c27e8fcadd463b1
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 07:27:33 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 07:27:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fd38b9d

net-im/librvp: amd64 stable wrt bug #676714

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 net-im/librvp/librvp-0.9.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-im/librvp/librvp-0.9.7.ebuild 
b/net-im/librvp/librvp-0.9.7.ebuild
index ca33cd8c1cd..69563f1ad40 100644
--- a/net-im/librvp/librvp-0.9.7.ebuild
+++ b/net-im/librvp/librvp-0.9.7.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://www.waider.ie/hacks/workshop/c/rvp/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="net-im/pidgin[gtk]"



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

2019-02-17 Thread Mikle Kolyada
commit: 34519cdeffea5612566e30f813a8b910a1535346
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 06:43:34 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 06:43:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34519cde

dev-lang/erlang: amd64 stable wrt bug #676456

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

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

diff --git a/dev-lang/erlang/erlang-21.1.1.ebuild 
b/dev-lang/erlang/erlang-21.1.1.ebuild
index 43c22dc8fcc..a5255ff4af0 100644
--- a/dev-lang/erlang/erlang-21.1.1.ebuild
+++ b/dev-lang/erlang/erlang-21.1.1.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/erlang/otp/archive/OTP-${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
 IUSE="doc emacs +hipe java +kpoll libressl odbc pgo sctp ssl systemd tk 
+wxwidgets"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-mail/libpst/

2019-02-17 Thread Mikle Kolyada
commit: 4c70b8a46008c957037a10f13368eedd245fe9bb
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 06:28:45 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 06:28:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c70b8a4

net-mail/libpst: amd64 stable wrt bug #676738

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 net-mail/libpst/libpst-0.6.66-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/libpst/libpst-0.6.66-r1.ebuild 
b/net-mail/libpst/libpst-0.6.66-r1.ebuild
index 0142fdbfc51..5f2f39862ea 100644
--- a/net-mail/libpst/libpst-0.6.66-r1.ebuild
+++ b/net-mail/libpst/libpst-0.6.66-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="http://www.five-ten-sg.com/${PN}/packages/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="debug dii doc python static-libs"
 
 RDEPEND="dii? ( media-gfx/imagemagick:=[png] )



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

2019-02-17 Thread Mikle Kolyada
commit: ce33f5c7b2686bac1b088ab2d166f2212b007422
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 06:26:45 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 06:26:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce33f5c7

sys-apps/irqbalance: amd64 stable wrt bug #666866

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

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

diff --git a/sys-apps/irqbalance/irqbalance-1.5.0.ebuild 
b/sys-apps/irqbalance/irqbalance-1.5.0.ebuild
index 826910f5d85..a0e4c4b5000 100644
--- a/sys-apps/irqbalance/irqbalance-1.5.0.ebuild
+++ b/sys-apps/irqbalance/irqbalance-1.5.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/Irqbalance/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="caps +numa selinux tui"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-im/tkabber/

2019-02-17 Thread Mikle Kolyada
commit: 88aa0525f60e1920162cdc92dc6eb8e745bf05ed
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 06:25:27 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 06:25:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88aa0525

net-im/tkabber: Drop old

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

 net-im/tkabber/Manifest |  2 --
 net-im/tkabber/tkabber-0.11.1-r1.ebuild | 48 -
 2 files changed, 50 deletions(-)

diff --git a/net-im/tkabber/Manifest b/net-im/tkabber/Manifest
index b376531df15..a27d1a8e2d3 100644
--- a/net-im/tkabber/Manifest
+++ b/net-im/tkabber/Manifest
@@ -1,4 +1,2 @@
-DIST tkabber-0.11.1.tar.gz 1026405 BLAKE2B 
2c8e5c5348ed9ba416b734a100488d24fff16f54ff6eea1156665be4247f0d66ff94411914053ea95e28bb03509708daf5d0497906a9d6c60c37457ce885aa6b
 SHA512 
a28f4f9d2873366b4ffc6153e08d21e77dd0178fea13d894e79ce941779d8e4c97e48b572cbfd8c6c25c0636f6c8d8ca8d9b081aaccbb8e6d809de3228bdd268
 DIST tkabber-1.1.2.tar.xz 993640 BLAKE2B 
5389c2e6eefe82cf1344edf833a8f1aa3b7dafb0db7ad0589ea8cf3f756e44e2527c71a90030e8694a7f6a09fadba4d05b7b79cea8deb82a5dd51d41ad3c36c5
 SHA512 
5626921c8bb5e847cfb35c7532202cf1181d6a8d67712b024a7d2d4c4fead0442c16381b1269c7e5ecd0dbd785ed2f541feaee3b09d067532d58d9ffa6bae392
-DIST tkabber-plugins-0.11.1.tar.gz 615335 BLAKE2B 
7e288806f3d44cc23b4447fe5caeb4bd5458cbef3329e8e49f3dd0640caaa7cf3386cd66d67413fe8f6e4176ae15ff8d2d3412684eaa82edb50cea0af3796200
 SHA512 
f77e4a2a3f11629796c6bdcc5ee9a782cc42ca9a43d8a9033b260df7f6260549860b6d53095067e4c3da9a1733a0570656ab807ff7853a4573c2e7f68a497014
 DIST tkabber-plugins-1.1.2.tar.xz 669580 BLAKE2B 
c1f15a4b49621c121a56884747ecce810fea12a784b2a1c2353dc0e9435c391bd9d66b196900e05bf798689e4a29fe9f738f949e4ad6734541700c4b8a80
 SHA512 
6af7287da59f426f84ee24a0722d91106d15f939e7102c289fbe9a396b5b1b96f4fc9c3e58ceba74c1722e91d09a920d2f8e574437c8fe97382e020a911d678b

diff --git a/net-im/tkabber/tkabber-0.11.1-r1.ebuild 
b/net-im/tkabber/tkabber-0.11.1-r1.ebuild
deleted file mode 100644
index 55a50b6c3c3..000
--- a/net-im/tkabber/tkabber-0.11.1-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="A jabber client written in Tcl/Tk"
-HOMEPAGE="http://tkabber.jabber.ru/";
-SRC_URI="
-   http://files.jabber.ru/tkabber/${P}.tar.gz
-   plugins? ( http://files.jabber.ru/tkabber/tkabber-plugins-${PV}.tar.gz 
)"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="plugins ssl"
-
-DEPEND="
-   >=dev-lang/tcl-8.3.3:0=
-   >=dev-lang/tk-8.3.3:0=
-   >=dev-tcltk/tcllib-1.3
-   >=dev-tcltk/bwidget-1.3
-   >=dev-tcltk/tkXwin-1.0
-   >=dev-tcltk/tkimg-1.2
-   >=dev-tcltk/tktray-1.1
-   ssl? ( >=dev-tcltk/tls-1.4.1 )
-"
-RDEPEND="${DEPEND}"
-
-# Disabled because it depends on gpgme 0.3.x
-#  crypt? ( >=dev-tcltk/tclgpgme-1.0 )
-
-src_compile() {
-   # dont run make, because the Makefile is broken with all=install
-   :
-}
-
-src_install() {
-   emake install DESTDIR="${D}" PREFIX=/usr \
-   DOCDIR="/usr/share/doc/${P}"
-
-   dodoc AUTHORS ChangeLog INSTALL README
-
-   if use plugins; then
-   cd "${WORKDIR}/tkabber-plugins-${PV}"
-   emake install DESTDIR="${D}" PREFIX=/usr \
-   DOCDIR="/usr/share/doc/${P}"
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: net-im/tkabber/

2019-02-17 Thread Mikle Kolyada
commit: 7a1d239ecda9a92c1565ca710f77514c5e35a3a6
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 06:23:43 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 06:23:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a1d239e

net-im/tkabber: amd64 stable wrt bug #676720

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 net-im/tkabber/tkabber-1.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-im/tkabber/tkabber-1.1.2.ebuild 
b/net-im/tkabber/tkabber-1.1.2.ebuild
index 25d16f8a078..61f63dc1437 100644
--- a/net-im/tkabber/tkabber-1.1.2.ebuild
+++ b/net-im/tkabber/tkabber-1.1.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="plugins ssl"
 
 DEPEND="



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

2019-02-17 Thread Mikle Kolyada
commit: c423e16f1dbc936ced2032c4ae3715b3354d79e4
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 06:22:35 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 06:22:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c423e16f

net-analyzer/linkchecker: amd64 stable wrt bug #676594

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

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

diff --git a/net-analyzer/linkchecker/linkchecker-9.4.0.ebuild 
b/net-analyzer/linkchecker/linkchecker-9.4.0.ebuild
index ea79afb87f7..ce086daf5a2 100644
--- a/net-analyzer/linkchecker/linkchecker-9.4.0.ebuild
+++ b/net-analyzer/linkchecker/linkchecker-9.4.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/linkcheck/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 x86 ~ppc-macos ~x64-solaris"
+KEYWORDS="amd64 x86 ~ppc-macos ~x64-solaris"
 IUSE="sqlite"
 
 RDEPEND="



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

2019-02-17 Thread Mikle Kolyada
commit: 02c730240fe4141959684c1ccfa430737e083bd1
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 06:21:15 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 06:21:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02c73024

dev-libs/libxml2: amd64 stable wrt bug #618110

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

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

diff --git a/dev-libs/libxml2/libxml2-2.9.9.ebuild 
b/dev-libs/libxml2/libxml2-2.9.9.ebuild
index 4572d47f669..6e66aab1e2a 100644
--- a/dev-libs/libxml2/libxml2-2.9.9.ebuild
+++ b/dev-libs/libxml2/libxml2-2.9.9.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://www.xmlsoft.org/";
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~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 ~s390 
~sh ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug examples icu ipv6 lzma python readline static-libs test"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-workspace/

2019-02-17 Thread Mikle Kolyada
commit: 4ab72da923e26dc9d18c0da540387e26a93468be
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 06:19:40 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 06:19:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ab72da9

kde-plasma/plasma-workspace: amd64 stable wrt bug #678122

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 kde-plasma/plasma-workspace/plasma-workspace-5.14.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/plasma-workspace/plasma-workspace-5.14.5.1.ebuild 
b/kde-plasma/plasma-workspace/plasma-workspace-5.14.5.1.ebuild
index 03351acb03b..8ca2acf99e1 100644
--- a/kde-plasma/plasma-workspace/plasma-workspace-5.14.5.1.ebuild
+++ b/kde-plasma/plasma-workspace/plasma-workspace-5.14.5.1.ebuild
@@ -9,7 +9,7 @@ VIRTUALX_REQUIRED="test"
 inherit kde5 qmake-utils
 
 DESCRIPTION="KDE Plasma workspace"
-KEYWORDS="~amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 IUSE="appstream +calendar geolocation gps prison qalculate +semantic-desktop 
systemd"
 
 REQUIRED_USE="gps? ( geolocation )"



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kdeplasma-addons/

2019-02-17 Thread Mikle Kolyada
commit: 494fc899963dcc785c352bab43055ded3dbe988f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 06:19:11 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 06:19:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=494fc899

kde-plasma/kdeplasma-addons: amd64 stable wrt bug #678122

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 kde-plasma/kdeplasma-addons/kdeplasma-addons-5.14.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.14.5.1.ebuild 
b/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.14.5.1.ebuild
index d3b3ee0b886..344f13b13c2 100644
--- a/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.14.5.1.ebuild
+++ b/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.14.5.1.ebuild
@@ -7,7 +7,7 @@ inherit kde5
 
 DESCRIPTION="Extra Plasma applets and engines"
 LICENSE="GPL-2 LGPL-2"
-KEYWORDS="~amd64 ~arm x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="share webengine"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-desktop/

2019-02-17 Thread Mikle Kolyada
commit: 7bfc1a612b0ddc453f33460e55469f54bcf5f40b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 06:19:27 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 06:19:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bfc1a61

kde-plasma/plasma-desktop: amd64 stable wrt bug #678122

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 kde-plasma/plasma-desktop/plasma-desktop-5.14.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/plasma-desktop/plasma-desktop-5.14.5.1.ebuild 
b/kde-plasma/plasma-desktop/plasma-desktop-5.14.5.1.ebuild
index 78d59c6fa6e..f30755ed499 100644
--- a/kde-plasma/plasma-desktop/plasma-desktop-5.14.5.1.ebuild
+++ b/kde-plasma/plasma-desktop/plasma-desktop-5.14.5.1.ebuild
@@ -9,7 +9,7 @@ VIRTUALX_REQUIRED="test"
 inherit kde5
 
 DESCRIPTION="KDE Plasma desktop"
-KEYWORDS="~amd64 ~arm x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="appstream +fontconfig ibus +mouse scim +semantic-desktop touchpad"
 
 COMMON_DEPEND="



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

2019-02-17 Thread Lars Wendler
commit: 2e3b2fb3304d978e77f1d7701f06d979ca86b15d
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Feb 18 06:17:37 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Feb 18 06:17:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e3b2fb3

sys-apps/less: Removed old.

Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 sys-apps/less/Manifest|  1 -
 sys-apps/less/less-548.ebuild | 44 ---
 2 files changed, 45 deletions(-)

diff --git a/sys-apps/less/Manifest b/sys-apps/less/Manifest
index d45dbd15e60..1963d167408 100644
--- a/sys-apps/less/Manifest
+++ b/sys-apps/less/Manifest
@@ -1,5 +1,4 @@
 DIST less-530.tar.gz 339723 BLAKE2B 
9321548b06330c0b1b5b5a36147f5b9348619ff15d907808744b89581edeb4d8c2118ba455d024a23850902cac4d2c34d1e7b9897e02769584315c0e67ef667e
 SHA512 
8d83a18b5648c4fe85921a563aa2c40bcf495aeb611098c83cd167b1e2f706649846cdf457c8506ae2683ab362ad970a0b261747349673020894bccdb9acbc10
 DIST less-531.tar.gz 340466 BLAKE2B 
6ac75b623fce478114d18cff429659499fedf4ef1a7bb067465ace91c28a7968efb224a4994a1e376a8cf40b110492f10ecda634628029107b38187044a0cd1e
 SHA512 
180b665f194d7cc40d4bbb37bd64b10be463c0705e81795bef84b20dbba1c61825bb3e3da8bcd79f9176bb3af7b1f4e4c3dfe0829a5a2195a11f5b42294daca1
-DIST less-548.tar.gz 346139 BLAKE2B 
0cdea7f3db069b8f4b4a070067f1956f0f2d86ff8061506c330fdcf4b3cfdbc56f22ffaba782190d799685129a446ef68bd3349fb50491ad6d84b6feee05fa65
 SHA512 
4e42ed3812d038634a12ae6f719869b228fe4ec270ceda560afb666543669f40c0c5746fc9b94c00584e78db356d900347ec5b7e3ca15249a9656dbd8b6b8dcb
 DIST less-549.tar.gz 346978 BLAKE2B 
840ff54567d241cd4cfb90e91d3e004da09a3dfe4b8595aebdf69e0fb9c534e9da3bfe4953d51fcab67c86fbaa1e7bd9f318bd18856bf051895995715df7e827
 SHA512 
f0f86db00ee7a0ed638dfe2183e5cd6a9728d6e4cb9f054a746716abf6fe297f33b6f1d44bd4eac8ad360da564c4ea50cd6f41d297f857c78414961d28f4155c
 DIST less-550.tar.gz 347026 BLAKE2B 
b033cb09d1bb9624c56db14084c73e5154e36cebd3f757dd2cb1b012b8797e7647d152bb67ce4ea9c2d188b1252fd7ddfd8a113656af5ec9a1e688145d4d9265
 SHA512 
a3d2769d90589a8e6afbfc9ac10cd1b544e0b0bbe28884e5ad980a71c541a37545c11d3450984b346b516fe082dfc0cf89d246c5a2d6002a7a2b4a4296a15494

diff --git a/sys-apps/less/less-548.ebuild b/sys-apps/less/less-548.ebuild
deleted file mode 100644
index 3bc3bf38932..000
--- a/sys-apps/less/less-548.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Excellent text file viewer"
-HOMEPAGE="http://www.greenwoodsoftware.com/less/";
-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 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~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
-   >=sys-libs/ncurses-5.2:0=
-   pcre? ( dev-libs/libpcre2 )"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   export ac_cv_lib_ncursesw_initscr=$(usex unicode)
-   export ac_cv_lib_ncurses_initscr=$(usex !unicode)
-   local myeconfargs=(
-   --with-regex=$(usex pcre pcre2 posix)
-   --with-editor="${EPREFIX}"/usr/libexec/editor
-   )
-   econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   default
-
-   newbin "${FILESDIR}"/lesspipe.sh lesspipe
-   newenvd "${FILESDIR}"/less.envd 70less
-}
-
-pkg_preinst() {
-   if has_version "<${CATEGORY}/${PN}-483-r1" ; then
-   elog "The lesspipe.sh symlink has been dropped.  If you are 
still setting"
-   elog "LESSOPEN to that, you will need to update it to 
'|lesspipe %s'."
-   elog "Colorization support has been dropped.  If you want that, 
check out"
-   elog "the new app-text/lesspipe package."
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kauth/

2019-02-17 Thread Mikle Kolyada
commit: 57d552d5e33442523c9080dee62c58184fb0ed10
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 06:17:26 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 06:18:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57d552d5

kde-frameworks/kauth: amd64 stable wrt bug #678170

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 kde-frameworks/kauth/kauth-5.54.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-frameworks/kauth/kauth-5.54.0-r1.ebuild 
b/kde-frameworks/kauth/kauth-5.54.0-r1.ebuild
index 76f7574c103..864369ed55f 100644
--- a/kde-frameworks/kauth/kauth-5.54.0-r1.ebuild
+++ b/kde-frameworks/kauth/kauth-5.54.0-r1.ebuild
@@ -8,7 +8,7 @@ inherit kde5
 
 DESCRIPTION="Framework to let applications perform actions as a privileged 
user"
 LICENSE="LGPL-2.1+"
-KEYWORDS="~amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 IUSE="nls +policykit"
 
 RDEPEND="



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

2019-02-17 Thread Lars Wendler
commit: a2f64318e2d435d4a0eef1e3011e53173e53325e
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Feb 18 06:17:13 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Feb 18 06:17:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2f64318

sys-apps/less: Bump to version 550

Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 sys-apps/less/Manifest|  1 +
 sys-apps/less/less-550.ebuild | 44 +++
 2 files changed, 45 insertions(+)

diff --git a/sys-apps/less/Manifest b/sys-apps/less/Manifest
index 6c4bc7844f9..d45dbd15e60 100644
--- a/sys-apps/less/Manifest
+++ b/sys-apps/less/Manifest
@@ -2,3 +2,4 @@ DIST less-530.tar.gz 339723 BLAKE2B 
9321548b06330c0b1b5b5a36147f5b9348619ff15d90
 DIST less-531.tar.gz 340466 BLAKE2B 
6ac75b623fce478114d18cff429659499fedf4ef1a7bb067465ace91c28a7968efb224a4994a1e376a8cf40b110492f10ecda634628029107b38187044a0cd1e
 SHA512 
180b665f194d7cc40d4bbb37bd64b10be463c0705e81795bef84b20dbba1c61825bb3e3da8bcd79f9176bb3af7b1f4e4c3dfe0829a5a2195a11f5b42294daca1
 DIST less-548.tar.gz 346139 BLAKE2B 
0cdea7f3db069b8f4b4a070067f1956f0f2d86ff8061506c330fdcf4b3cfdbc56f22ffaba782190d799685129a446ef68bd3349fb50491ad6d84b6feee05fa65
 SHA512 
4e42ed3812d038634a12ae6f719869b228fe4ec270ceda560afb666543669f40c0c5746fc9b94c00584e78db356d900347ec5b7e3ca15249a9656dbd8b6b8dcb
 DIST less-549.tar.gz 346978 BLAKE2B 
840ff54567d241cd4cfb90e91d3e004da09a3dfe4b8595aebdf69e0fb9c534e9da3bfe4953d51fcab67c86fbaa1e7bd9f318bd18856bf051895995715df7e827
 SHA512 
f0f86db00ee7a0ed638dfe2183e5cd6a9728d6e4cb9f054a746716abf6fe297f33b6f1d44bd4eac8ad360da564c4ea50cd6f41d297f857c78414961d28f4155c
+DIST less-550.tar.gz 347026 BLAKE2B 
b033cb09d1bb9624c56db14084c73e5154e36cebd3f757dd2cb1b012b8797e7647d152bb67ce4ea9c2d188b1252fd7ddfd8a113656af5ec9a1e688145d4d9265
 SHA512 
a3d2769d90589a8e6afbfc9ac10cd1b544e0b0bbe28884e5ad980a71c541a37545c11d3450984b346b516fe082dfc0cf89d246c5a2d6002a7a2b4a4296a15494

diff --git a/sys-apps/less/less-550.ebuild b/sys-apps/less/less-550.ebuild
new file mode 100644
index 000..f04887b62ff
--- /dev/null
+++ b/sys-apps/less/less-550.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Excellent text file viewer"
+HOMEPAGE="http://www.greenwoodsoftware.com/less/";
+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 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~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
+   >=sys-libs/ncurses-5.2:0=
+   pcre? ( dev-libs/libpcre2 )"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   export ac_cv_lib_ncursesw_initscr=$(usex unicode)
+   export ac_cv_lib_ncurses_initscr=$(usex !unicode)
+   local myeconfargs=(
+   --with-regex=$(usex pcre pcre2 posix)
+   --with-editor="${EPREFIX}"/usr/libexec/editor
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+
+   newbin "${FILESDIR}"/lesspipe.sh lesspipe
+   newenvd "${FILESDIR}"/less.envd 70less
+}
+
+pkg_preinst() {
+   if has_version "<${CATEGORY}/${PN}-483-r1" ; then
+   elog "The lesspipe.sh symlink has been dropped.  If you are 
still setting"
+   elog "LESSOPEN to that, you will need to update it to 
'|lesspipe %s'."
+   elog "Colorization support has been dropped.  If you want that, 
check out"
+   elog "the new app-text/lesspipe package."
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-embedded/arduino/

2019-02-17 Thread Mikle Kolyada
commit: 62d6ac7dfd6f4a4dac987ccd4e8c031ce8bcc1f6
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Feb 18 06:13:08 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Feb 18 06:13:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62d6ac7d

dev-embedded/arduino: mark stable

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

 dev-embedded/arduino/arduino-1.8.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-embedded/arduino/arduino-1.8.7.ebuild 
b/dev-embedded/arduino/arduino-1.8.7.ebuild
index 60451878c0a..6a1c9a5f055 100644
--- a/dev-embedded/arduino/arduino-1.8.7.ebuild
+++ b/dev-embedded/arduino/arduino-1.8.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -27,7 +27,7 @@ 
SRC_URI="https://github.com/arduino/Arduino/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="GPL-2 LGPL-2.1 CC-BY-SA-3.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="doc"
 
 CDEPEND="dev-embedded/arduino-builder"



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

2019-02-17 Thread Joshua Kinard
commit: 99adfc695e36052281eb5ddd1d324ccd9bd93f96
Author: Joshua Kinard  gentoo  org>
AuthorDate: Mon Feb 18 04:04:44 2019 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Mon Feb 18 04:04:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99adfc69

net-misc/spread: Remove older ebuilds, mark new stable

Removed 4.1.0-r1 and 4.3.0-r1.
Marked 4.4.1 stable for x86 and amd64.
Resolves Bugs #535616 and #635660.

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

 net-misc/spread/Manifest   |  2 --
 net-misc/spread/spread-4.1.0-r1.ebuild | 39 --
 net-misc/spread/spread-4.3.0-r1.ebuild | 38 -
 net-misc/spread/spread-4.4.1.ebuild|  2 +-
 4 files changed, 1 insertion(+), 80 deletions(-)

diff --git a/net-misc/spread/Manifest b/net-misc/spread/Manifest
index a0fa39f6445..5f2ba1e68a3 100644
--- a/net-misc/spread/Manifest
+++ b/net-misc/spread/Manifest
@@ -1,4 +1,2 @@
-DIST spread-src-4.1.0.tar.gz 641060 BLAKE2B 
a1f8f0c943385cd23301faf9f00553a922919fa50113789ce1c8a028d83645bc7fb32fd7e6e21f6073bfc32476c7dd28b885435285f9ac8bab0b3ea6e2949779
 SHA512 
6db3cf9760d483685bd23d32760f52b9af667fcf98341fad198b0831cc41cc839998dee59dee04426bf4db15700656fe90f4f457e2a3c6e449eb51b07fc18a6d
-DIST spread-src-4.3.0.tar.gz 745113 BLAKE2B 
06fc28a0535fcf61e4dae8cb45ad0f5b4ba70cf12835966bebb27a635736764fdd33d24e6e7fe1433240fb9f6c6e9338631108a93cf9e21b2c58691f09c4e156
 SHA512 
7eb87e896a623accfe3f36c44ba55f8258d078ff9cdc141509456af4a069802f087edaeafcd356791337dbfb4d4f67b808a482ea54ac58aef8fb980cdbc6fea6
 DIST spread-src-4.4.1.tar.gz 760038 BLAKE2B 
250e6347695f5f6e8047bf527c92baa3cfb6c44ce88ea08ff6ab066b937fab29531743133e73e155a5cc07109b1942efe46fd1d3b74202264a2e8ef0f518a0ad
 SHA512 
19f3fe897e4a4bd68dffc7d28d7b99826bbcbb5c2f44eb18127ed486063594bfd788c03c8c338b9b329302659325fa84a9cbfee3f202a9970afb1a560bb6f496
 DIST spread-src-5.0.1.tar.gz 803058 BLAKE2B 
b115675cb8ad89bfda7921d7ede0d168bfa833297a13cf5bba866505813fc255d3585b4a02e51409acda73597803ac691b0b6d329b189405004fce5505af7f1c
 SHA512 
f57dbabb6e4d343434fe1c48bb8868cf601e22c599a520521a23c6dfa215b1d835fb2a7dc3b7cf124352060d12566c5f64114544428cc5a95e7899208379b115

diff --git a/net-misc/spread/spread-4.1.0-r1.ebuild 
b/net-misc/spread/spread-4.1.0-r1.ebuild
deleted file mode 100644
index 06e268e108b..000
--- a/net-misc/spread/spread-4.1.0-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-inherit user
-
-MY_PN="spread-src"
-
-DESCRIPTION="Distributed network messaging system"
-HOMEPAGE="http://www.spread.org";
-SRC_URI="mirror://gentoo/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="Spread-1.0 GPL-2"
-SLOT="0"
-KEYWORDS="x86 amd64"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-pkg_setup() {
-   enewuser spread
-   enewgroup spread
-}
-
-src_prepare() {
-   default
-
-   # don't strip binaries
-   sed -i -e 's/0755 -s/0755/g' daemon/Makefile.in examples/Makefile.in
-}
-
-src_install() {
-   emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" install
-   newinitd "${FILESDIR}"/spread.init.d spread
-   dodir /var/run/spread
-}

diff --git a/net-misc/spread/spread-4.3.0-r1.ebuild 
b/net-misc/spread/spread-4.3.0-r1.ebuild
deleted file mode 100644
index 06bbce63e1c..000
--- a/net-misc/spread/spread-4.3.0-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-inherit user
-
-MY_PN="spread-src"
-
-DESCRIPTION="Distributed network messaging system"
-HOMEPAGE="http://www.spread.org";
-SRC_URI="mirror://gentoo/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="Spread-1.0 GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-pkg_setup() {
-   enewuser spread
-   enewgroup spread
-}
-
-src_prepare() {
-   default
-
-   # don't strip binaries
-   sed -i -e 's/0755 -s/0755/g' daemon/Makefile.in examples/Makefile.in
-}
-
-src_install() {
-   emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" install
-   newinitd "${FILESDIR}"/spread.init.d spread
-}

diff --git a/net-misc/spread/spread-4.4.1.ebuild 
b/net-misc/spread/spread-4.4.1.ebuild
index b7526d4dcd1..f7a6437d93e 100644
--- a/net-misc/spread/spread-4.4.1.ebuild
+++ b/net-misc/spread/spread-4.4.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gentoo/${MY_PN}-${PV}.tar.gz"
 
 LICENSE="Spread-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 DEPEND=""



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

2019-02-17 Thread Georgy Yakovlev
commit: 4aeb39d3b74e9496e17177921adf00bb8794e155
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Feb 18 03:24:20 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Feb 18 03:24:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4aeb39d3

sys-fs/zfs-kmod: require !TRIM_UNUSED_KSYMS in kernel .config

Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-fs/zfs-kmod/zfs-kmod-0.6.5.11.ebuild | 3 ++-
 sys-fs/zfs-kmod/zfs-kmod-0.7.11.ebuild   | 3 ++-
 sys-fs/zfs-kmod/zfs-kmod-0.7.8.ebuild| 3 ++-
 sys-fs/zfs-kmod/zfs-kmod-0.7.9-r1.ebuild | 3 ++-
 sys-fs/zfs-kmod/zfs-kmod-0.7.9.ebuild| 3 ++-
 sys-fs/zfs-kmod/zfs-kmod-0.7..ebuild | 3 ++-
 6 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/sys-fs/zfs-kmod/zfs-kmod-0.6.5.11.ebuild 
b/sys-fs/zfs-kmod/zfs-kmod-0.6.5.11.ebuild
index 98ae6555adb..702027df81c 100644
--- a/sys-fs/zfs-kmod/zfs-kmod-0.6.5.11.ebuild
+++ b/sys-fs/zfs-kmod/zfs-kmod-0.6.5.11.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -47,6 +47,7 @@ pkg_setup() {
IOSCHED_NOOP
MODULES
!PAX_KERNEXEC_PLUGIN_METHOD_OR
+   !TRIM_UNUSED_KSYMS
ZLIB_DEFLATE
ZLIB_INFLATE
"

diff --git a/sys-fs/zfs-kmod/zfs-kmod-0.7.11.ebuild 
b/sys-fs/zfs-kmod/zfs-kmod-0.7.11.ebuild
index 0c5bf1ea2fe..d326057ceda 100644
--- a/sys-fs/zfs-kmod/zfs-kmod-0.7.11.ebuild
+++ b/sys-fs/zfs-kmod/zfs-kmod-0.7.11.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -46,6 +46,7 @@ pkg_setup() {
IOSCHED_NOOP
MODULES
!PAX_KERNEXEC_PLUGIN_METHOD_OR
+   !TRIM_UNUSED_KSYMS
ZLIB_DEFLATE
ZLIB_INFLATE
"

diff --git a/sys-fs/zfs-kmod/zfs-kmod-0.7.8.ebuild 
b/sys-fs/zfs-kmod/zfs-kmod-0.7.8.ebuild
index e46bdb2f909..aa482377473 100644
--- a/sys-fs/zfs-kmod/zfs-kmod-0.7.8.ebuild
+++ b/sys-fs/zfs-kmod/zfs-kmod-0.7.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -46,6 +46,7 @@ pkg_setup() {
IOSCHED_NOOP
MODULES
!PAX_KERNEXEC_PLUGIN_METHOD_OR
+   !TRIM_UNUSED_KSYMS
ZLIB_DEFLATE
ZLIB_INFLATE
"

diff --git a/sys-fs/zfs-kmod/zfs-kmod-0.7.9-r1.ebuild 
b/sys-fs/zfs-kmod/zfs-kmod-0.7.9-r1.ebuild
index e2c7ba25702..c702d6ed35b 100644
--- a/sys-fs/zfs-kmod/zfs-kmod-0.7.9-r1.ebuild
+++ b/sys-fs/zfs-kmod/zfs-kmod-0.7.9-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -47,6 +47,7 @@ pkg_setup() {
IOSCHED_NOOP
MODULES
!PAX_KERNEXEC_PLUGIN_METHOD_OR
+   !TRIM_UNUSED_KSYMS
ZLIB_DEFLATE
ZLIB_INFLATE
"

diff --git a/sys-fs/zfs-kmod/zfs-kmod-0.7.9.ebuild 
b/sys-fs/zfs-kmod/zfs-kmod-0.7.9.ebuild
index 6b2ac901806..c0e759e6be3 100644
--- a/sys-fs/zfs-kmod/zfs-kmod-0.7.9.ebuild
+++ b/sys-fs/zfs-kmod/zfs-kmod-0.7.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -46,6 +46,7 @@ pkg_setup() {
IOSCHED_NOOP
MODULES
!PAX_KERNEXEC_PLUGIN_METHOD_OR
+   !TRIM_UNUSED_KSYMS
ZLIB_DEFLATE
ZLIB_INFLATE
"

diff --git a/sys-fs/zfs-kmod/zfs-kmod-0.7..ebuild 
b/sys-fs/zfs-kmod/zfs-kmod-0.7..ebuild
index 6fb9bc4d597..7b5b4a5f685 100644
--- a/sys-fs/zfs-kmod/zfs-kmod-0.7..ebuild
+++ b/sys-fs/zfs-kmod/zfs-kmod-0.7..ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -47,6 +47,7 @@ pkg_setup() {
IOSCHED_NOOP
MODULES
!PAX_KERNEXEC_PLUGIN_METHOD_OR
+   !TRIM_UNUSED_KSYMS
ZLIB_DEFLATE
ZLIB_INFLATE
"



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

2019-02-17 Thread Georgy Yakovlev
commit: 0192ededb3276895eac4406292a59c07308bb407
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Feb 18 03:22:36 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Feb 18 03:22:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0192eded

sys-kernel/spl: require !TRIM_UNUSED_KSYMS in kernel .config

Closes: https://bugs.gentoo.org/669670
Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-kernel/spl/spl-0.6.5.11.ebuild | 3 ++-
 sys-kernel/spl/spl-0.7.11.ebuild   | 3 ++-
 sys-kernel/spl/spl-0.7.8.ebuild| 3 ++-
 sys-kernel/spl/spl-0.7.9-r1.ebuild | 3 ++-
 sys-kernel/spl/spl-0.7.9.ebuild| 3 ++-
 sys-kernel/spl/spl-0.7..ebuild | 3 ++-
 sys-kernel/spl/spl-.ebuild | 3 ++-
 7 files changed, 14 insertions(+), 7 deletions(-)

diff --git a/sys-kernel/spl/spl-0.6.5.11.ebuild 
b/sys-kernel/spl/spl-0.6.5.11.ebuild
index 74b4625dd73..4cd35daedd8 100644
--- a/sys-kernel/spl/spl-0.6.5.11.ebuild
+++ b/sys-kernel/spl/spl-0.6.5.11.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -44,6 +44,7 @@ pkg_setup() {
KALLSYMS
!PAX_KERNEXEC_PLUGIN_METHOD_OR
!PAX_SIZE_OVERFLOW
+   !TRIM_UNUSED_KSYMS
ZLIB_DEFLATE
ZLIB_INFLATE
"

diff --git a/sys-kernel/spl/spl-0.7.11.ebuild b/sys-kernel/spl/spl-0.7.11.ebuild
index 510c6683030..d9f8f54f0f1 100644
--- a/sys-kernel/spl/spl-0.7.11.ebuild
+++ b/sys-kernel/spl/spl-0.7.11.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -43,6 +43,7 @@ pkg_setup() {
KALLSYMS
!PAX_KERNEXEC_PLUGIN_METHOD_OR
!PAX_SIZE_OVERFLOW
+   !TRIM_UNUSED_KSYMS
ZLIB_DEFLATE
ZLIB_INFLATE
"

diff --git a/sys-kernel/spl/spl-0.7.8.ebuild b/sys-kernel/spl/spl-0.7.8.ebuild
index 6aea5d09bc3..b9eb732ac91 100644
--- a/sys-kernel/spl/spl-0.7.8.ebuild
+++ b/sys-kernel/spl/spl-0.7.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -43,6 +43,7 @@ pkg_setup() {
KALLSYMS
!PAX_KERNEXEC_PLUGIN_METHOD_OR
!PAX_SIZE_OVERFLOW
+   !TRIM_UNUSED_KSYMS
ZLIB_DEFLATE
ZLIB_INFLATE
"

diff --git a/sys-kernel/spl/spl-0.7.9-r1.ebuild 
b/sys-kernel/spl/spl-0.7.9-r1.ebuild
index 1cbb3fc1e4e..a7e641c1e61 100644
--- a/sys-kernel/spl/spl-0.7.9-r1.ebuild
+++ b/sys-kernel/spl/spl-0.7.9-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -44,6 +44,7 @@ pkg_setup() {
KALLSYMS
!PAX_KERNEXEC_PLUGIN_METHOD_OR
!PAX_SIZE_OVERFLOW
+   !TRIM_UNUSED_KSYMS
ZLIB_DEFLATE
ZLIB_INFLATE
"

diff --git a/sys-kernel/spl/spl-0.7.9.ebuild b/sys-kernel/spl/spl-0.7.9.ebuild
index b14f1c060c5..7f42011c86d 100644
--- a/sys-kernel/spl/spl-0.7.9.ebuild
+++ b/sys-kernel/spl/spl-0.7.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -43,6 +43,7 @@ pkg_setup() {
KALLSYMS
!PAX_KERNEXEC_PLUGIN_METHOD_OR
!PAX_SIZE_OVERFLOW
+   !TRIM_UNUSED_KSYMS
ZLIB_DEFLATE
ZLIB_INFLATE
"

diff --git a/sys-kernel/spl/spl-0.7..ebuild 
b/sys-kernel/spl/spl-0.7..ebuild
index 2a659b0f0f0..ffa202302b3 100644
--- a/sys-kernel/spl/spl-0.7..ebuild
+++ b/sys-kernel/spl/spl-0.7..ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -45,6 +45,7 @@ pkg_setup() {
KALLSYMS
MODULES
!PAX_KERNEXEC_PLUGIN_METHOD_OR
+   !TRIM_UNUSED_KSYMS
ZLIB_DEFLATE
ZLIB_INFLATE
"

diff --git a/sys-kernel/spl/spl-.ebuild b/sys-kernel/spl/spl-.ebuild
index 3a5480a6f98..f27d3e44bdc 100644
--- a/sys-kernel/spl/spl-.ebuild
+++ b/sys-kernel/spl/spl-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -44,6 +44,7 @@ pkg_setup() {
KALLSYMS
MODULES
!PAX_KERN

[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-hts/

2019-02-17 Thread Craig Andrews
commit: 96a86d280cb7186d644351896ff8cf4b72dea942
Author: Craig Andrews  gentoo  org>
AuthorDate: Mon Feb 18 03:01:22 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Feb 18 03:01:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96a86d28

media-plugins/kodi-pvr-hts: 4.4.14 version bump

Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Craig Andrews  gentoo.org>

 media-plugins/kodi-pvr-hts/Manifest|  1 +
 .../kodi-pvr-hts/kodi-pvr-hts-4.4.14.ebuild| 35 ++
 2 files changed, 36 insertions(+)

diff --git a/media-plugins/kodi-pvr-hts/Manifest 
b/media-plugins/kodi-pvr-hts/Manifest
index 70b6672eebb..dfc918e303d 100644
--- a/media-plugins/kodi-pvr-hts/Manifest
+++ b/media-plugins/kodi-pvr-hts/Manifest
@@ -1,3 +1,4 @@
 DIST kodi-pvr-hts-3.4.24.tar.gz 201592 BLAKE2B 
ad4db20f002c006f9c5dbeec65b136287fe6f7b6d973794e90c1e7c2edb3d13717db077edc91172a94c709afc623ce5fc29ccfa88ff34e8c6694b164a9223497
 SHA512 
66d0c0f090a1c22f748a2cf70a9790dc1fa74c05bbb3ad478cce92b2a116c8f2c25dbc72a9d6f2269a19da94c0ea9f7123bfffeebb9d2d6f29dd17411410fe16
 DIST kodi-pvr-hts-4.4.12.tar.gz 160405 BLAKE2B 
7d192bf7a19672595cc0a6ca042943f5a59cc530596df65c848e940eba516c0cf429f59418f8f50d5ec930b36e8d496f2ed444b0d0c254941f4fb2b10407c087
 SHA512 
c04d9e72de8d4bae5699b48c4aa8839a468b81f5ff21b4f2607fee1bb10fe47f1de4574d7ace945a894e46246b9ee5c6b4df6f290b98ff77937a7c6edca675bf
 DIST kodi-pvr-hts-4.4.13.tar.gz 160588 BLAKE2B 
2042237ab0804ecf8684f3a20a6f0397e5a890636a2f82ebd04be28a06ad2b79aba53f69c22de9a92d64022354af6e879822b74af37c488adfaf5e3bb6bea81b
 SHA512 
7fe4b5519400c36609de9704087d59f60e44a226fa4d8457b9ace084fed5bd58669091cb05b38c705033e6d5c99a525541b87267d4bbbfed690a4eed043e232c
+DIST kodi-pvr-hts-4.4.14.tar.gz 160561 BLAKE2B 
dda8728a411b95039a4132e2ca4c882e36011a0c510bbc8e7bed093b778c1c2ab55d8356b25e04bc378bd4036b6ad6f43a0f13ffd7587cfbbb16ff5a7eaae350
 SHA512 
ad42dce7ed715e99ab4541d993128ceda194a9fa9e0fffb1a8ba170b719c977e32804a5d94a07d1d00f29346189708847df69540decabf1fe8d95b616c4c34a5

diff --git a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.14.ebuild 
b/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.14.ebuild
new file mode 100644
index 000..5b0620a2470
--- /dev/null
+++ b/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.14.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils kodi-addon
+
+DESCRIPTION="Tvheadend Live TV and Radio PVR client addon for Kodi"
+HOMEPAGE="https://github.com/kodi-pvr/pvr.hts";
+SRC_URI=""
+
+if [[ ${PV} ==  ]]; then
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.hts.git";
+   inherit git-r3
+else
+   CODENAME="Leia"
+   KEYWORDS="~amd64 ~x86"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.hts/archive/${PV}-${CODENAME}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.hts-${PV}-${CODENAME}"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+   =dev-libs/libplatform-2*
+   =media-libs/kodi-platform-18*
+   =media-tv/kodi-18*
+   "
+
+RDEPEND="
+   ${DEPEND}
+   "



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

2019-02-17 Thread Craig Andrews
commit: b9b28fe5e5935dccc94539383cba437071a4254c
Author: Craig Andrews  gentoo  org>
AuthorDate: Mon Feb 18 02:59:41 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Feb 18 02:59:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9b28fe5

media-tv/kodi: ffmpeg 3.4.5 fixes, don't unbundle fonts

Bug: https://bugs.gentoo.org/678222
Closes: https://bugs.gentoo.org/669204
Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Craig Andrews  gentoo.org>

 ...adapt-to-deprecated-symbols-and-functions.patch | 401 +
 .../kodi-17-fix-audio-with-latest-ffmpeg.patch |  15 +
 media-tv/kodi/kodi-17.6-r10.ebuild | 278 ++
 3 files changed, 694 insertions(+)

diff --git 
a/media-tv/kodi/files/kodi-17-adapt-to-deprecated-symbols-and-functions.patch 
b/media-tv/kodi/files/kodi-17-adapt-to-deprecated-symbols-and-functions.patch
new file mode 100644
index 000..0ec08810db5
--- /dev/null
+++ 
b/media-tv/kodi/files/kodi-17-adapt-to-deprecated-symbols-and-functions.patch
@@ -0,0 +1,401 @@
+From 19f28e88a5dfed82e9844f69210f7c045f18ca8e Mon Sep 17 00:00:00 2001
+From: Rainer Hochecker 
+Date: Wed, 1 Nov 2017 16:12:13 +0100
+Subject: [PATCH] ffmpeg: drop deprecated symbols and functions
+
+---
+ xbmc/cdrip/EncoderFFmpeg.cpp  |  4 +-
+ .../AudioEngine/Encoders/AEEncoderFFmpeg.h|  2 +-
+ .../AudioEngine/Engines/ActiveAE/ActiveAE.cpp |  2 +-
+ .../Engines/ActiveAE/ActiveAEFilter.cpp   |  6 +--
+ .../DVDCodecs/Audio/DVDAudioCodecFFmpeg.cpp   |  6 +--
+ .../Overlay/DVDOverlayCodecFFmpeg.cpp |  2 +-
+ .../DVDCodecs/Video/DVDVideoCodec.h   |  1 +
+ .../DVDCodecs/Video/DVDVideoCodecFFmpeg.cpp   | 39 +--
+ .../DVDCodecs/Video/DVDVideoPPFFmpeg.cpp  |  5 +--
+ .../VideoPlayer/DVDCodecs/Video/VAAPI.cpp |  4 +-
+ .../DVDDemuxers/DVDDemuxClient.cpp|  6 +--
+ .../DVDDemuxers/DVDDemuxFFmpeg.cpp|  6 +--
+ .../VideoPlayer/DVDDemuxers/DVDDemuxUtils.cpp |  4 +-
+ xbmc/cores/VideoPlayer/VideoPlayerVideo.cpp   |  1 -
+ xbmc/guilib/FFmpegImage.cpp   |  4 +-
+ xbmc/utils/BitstreamConverter.cpp | 12 +++---
+ 16 files changed, 40 insertions(+), 64 deletions(-)
+
+Index: kodi-17.6+dfsg1/xbmc/cdrip/EncoderFFmpeg.cpp
+===
+--- kodi-17.6+dfsg1.orig/xbmc/cdrip/EncoderFFmpeg.cpp
 kodi-17.6+dfsg1/xbmc/cdrip/EncoderFFmpeg.cpp
+@@ -119,8 +119,8 @@
+ 
+   if(m_Format->oformat->flags & AVFMT_GLOBALHEADER)
+   {
+-m_CodecCtx->flags |= CODEC_FLAG_GLOBAL_HEADER;
+-m_Format->flags   |= CODEC_FLAG_GLOBAL_HEADER;
++m_CodecCtx->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
++m_Format->flags   |= AV_CODEC_FLAG_GLOBAL_HEADER;
+   }
+ 
+   switch(m_iInBitsPerSample)
+Index: kodi-17.6+dfsg1/xbmc/cores/AudioEngine/Encoders/AEEncoderFFmpeg.h
+===
+--- kodi-17.6+dfsg1.orig/xbmc/cores/AudioEngine/Encoders/AEEncoderFFmpeg.h
 kodi-17.6+dfsg1/xbmc/cores/AudioEngine/Encoders/AEEncoderFFmpeg.h
+@@ -56,7 +56,7 @@
+   SwrContext *m_SwrCtx;
+   CAEChannelInfo m_Layout;
+   AVPacket m_Pkt;
+-  uint8_t m_Buffer[8 + FF_MIN_BUFFER_SIZE];
++  uint8_t m_Buffer[8 + AV_INPUT_BUFFER_MIN_SIZE];
+   int m_BufferSize;
+   int m_OutputSize;
+   double m_OutputRatio;
+Index: kodi-17.6+dfsg1/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAE.cpp
+===
+--- kodi-17.6+dfsg1.orig/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAE.cpp
 kodi-17.6+dfsg1/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAE.cpp
+@@ -2955,7 +2955,7 @@
+   int fileSize = sound->GetFileSize();
+ 
+   fmt_ctx = avformat_alloc_context();
+-  unsigned char* buffer = (unsigned 
char*)av_malloc(SOUNDBUFFER_SIZE+FF_INPUT_BUFFER_PADDING_SIZE);
++  unsigned char* buffer = (unsigned 
char*)av_malloc(SOUNDBUFFER_SIZE+AV_INPUT_BUFFER_PADDING_SIZE);
+   io_ctx = avio_alloc_context(buffer, SOUNDBUFFER_SIZE, 0,
+ sound, CActiveAESound::Read, 
NULL, CActiveAESound::Seek);
+   io_ctx->max_packet_size = sound->GetChunkSize();
+Index: 
kodi-17.6+dfsg1/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEFilter.cpp
+===
+--- 
kodi-17.6+dfsg1.orig/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEFilter.cpp
 kodi-17.6+dfsg1/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEFilter.cpp
+@@ -91,8 +91,8 @@
+ return false;
+   }
+ 
+-  AVFilter* srcFilter = avfilter_get_by_name("abuffer");
+-  AVFilter* outFilter = avfilter_get_by_name("abuffersink");
++  const AVFilter* srcFilter = avfilter_get_by_name("abuffer");
++  const AVFilter* outFilter = avfilter_get_by_name("abuffersink");
+ 
+   std::string args = 
StringUtils::Format("time_base=1/%d:sample_rate=%d:sample_fmt=%s:channel_layout=0x%"
 PRIx64,
+ 

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

2019-02-17 Thread Craig Andrews
commit: cc97b67c2da673ccb79273bff415f703c5d7abec
Author: Craig Andrews  gentoo  org>
AuthorDate: Fri Jan 11 16:27:55 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Feb 18 02:15:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc97b67c

media-libs/mlt: add vidstab use flag

Closes: https://bugs.gentoo.org/563530
Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Craig Andrews  gentoo.org>

 media-libs/mlt/metadata.xml | 1 +
 media-libs/mlt/mlt-6.12.0-r1.ebuild | 7 ---
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/media-libs/mlt/metadata.xml b/media-libs/mlt/metadata.xml
index 9cf408a58aa..94e2b3de135 100644
--- a/media-libs/mlt/metadata.xml
+++ b/media-libs/mlt/metadata.xml
@@ -18,6 +18,7 @@
Build SWIG bindings for Python
Builds rtaudio consumer for native audio 
support on multiple platforms.
Build SWIG bindings for Ruby
+   Enabled video stabilization with 
media-libs/vidstab.

[gentoo-commits] proj/portage:master commit in: /

2019-02-17 Thread Zac Medico
commit: e5989e85ee6a5dd3b087c3c9184b250d43fd8839
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Feb 18 00:42:23 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Feb 18 00:44:32 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=e5989e85

Updates for portage-2.3.61 release

Signed-off-by: Zac Medico  gentoo.org>

 RELEASE-NOTES | 9 +
 setup.py  | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 46921cf71..ea31dfe35 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,6 +1,15 @@
 Release Notes; upgrade information mainly.
 Features/major bugfixes are listed in NEWS
 
+portage-2.3.61
+==
+* Bug Fixes:
+- Bug 66 gnome2_icon_cache_update -> xdg_icon_cache_update
+- Bug 677800 Don't define a default for ACCEPT_LICENSE
+- Bug 678218 locks: handle sshfs hardlink inode numbers
+- FL-6227 cpuinfo: use better available CPU calculation
+
+
 portage-2.3.60
 ==
 * Bug Fixes:

diff --git a/setup.py b/setup.py
index fe97bc776..bda3e22ad 100755
--- a/setup.py
+++ b/setup.py
@@ -662,7 +662,7 @@ class build_ext(_build_ext):
 
 setup(
name = 'portage',
-   version = '2.3.60',
+   version = '2.3.61',
url = 'https://wiki.gentoo.org/wiki/Project:Portage',
author = 'Gentoo Portage Development Team',
author_email = 'dev-port...@gentoo.org',



[gentoo-commits] proj/portage:master commit in: lib/portage/

2019-02-17 Thread Zac Medico
commit: 34532af167cff457c3cccda4ea4249a0bc26481a
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Feb 17 22:44:29 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Feb 17 23:02:48 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=34532af1

locks: handle sshfs hardlink inode numbers (bug 678218)

Since hardlinks on sshfs do not have matching inode numbers, detect
this behavior and use a simple stat call to detect if lock_path has
been removed.

Bug: https://bugs.gentoo.org/678218
Signed-off-by: Zac Medico  gentoo.org>

 lib/portage/locks.py | 27 +++
 1 file changed, 27 insertions(+)

diff --git a/lib/portage/locks.py b/lib/portage/locks.py
index 74c2c086a..510925da0 100644
--- a/lib/portage/locks.py
+++ b/lib/portage/locks.py
@@ -340,6 +340,33 @@ def _lockfile_was_removed(lock_fd, lock_path):
 
hardlink_stat = os.stat(hardlink_path)
if hardlink_stat.st_ino != fstat_st.st_ino or 
hardlink_stat.st_dev != fstat_st.st_dev:
+   # Create another hardlink in order to detect whether or 
not
+   # hardlink inode numbers are expected to match. For 
example,
+   # inode numbers are not expected to match for sshfs.
+   inode_test = hardlink_path + '-inode-test'
+   try:
+   os.unlink(inode_test)
+   except OSError as e:
+   if e.errno not in (errno.ENOENT, errno.ESTALE):
+   _raise_exc(e)
+   try:
+   os.link(hardlink_path, inode_test)
+   except OSError as e:
+   if e.errno not in (errno.ENOENT, errno.ESTALE):
+   _raise_exc(e)
+   return True
+   else:
+   if not os.path.samefile(hardlink_path, 
inode_test):
+   # This implies that inode numbers are 
not expected
+   # to match for this file system, so use 
a simple
+   # stat call to detect if lock_path has 
been removed.
+   return not os.path.exists(lock_path)
+   finally:
+   try:
+   os.unlink(inode_test)
+   except OSError as e:
+   if e.errno not in (errno.ENOENT, 
errno.ESTALE):
+   _raise_exc(e)
return True
finally:
try:



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

2019-02-17 Thread Zac Medico
commit: efd6e6de1e19117224e20690cf11c16105ce817b
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Feb 18 00:48:55 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Feb 18 00:49:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efd6e6de

sys-apps/portage: version bump to 2.3.61

 #66 gnome2_icon_cache_update -> xdg_icon_cache_update
 #677800 Don't define a default for ACCEPT_LICENSE
 #678218 locks: handle sshfs hardlink inode numbers
 FL-6227 cpuinfo: use better available CPU calculation

Bug: https://bugs.gentoo.org/671498
Bug: https://bugs.gentoo.org/66
Bug: https://bugs.gentoo.org/677800
Bug: https://bugs.gentoo.org/678218
Package-Manager: Portage-2.3.61, Repoman-2.3.12
Signed-off-by: Zac Medico  gentoo.org>

 sys-apps/portage/Manifest  |   1 +
 sys-apps/portage/portage-2.3.61.ebuild | 271 +
 2 files changed, 272 insertions(+)

diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest
index 6cf47ac1a57..b6c067230ee 100644
--- a/sys-apps/portage/Manifest
+++ b/sys-apps/portage/Manifest
@@ -5,5 +5,6 @@ DIST portage-2.3.49.tar.bz2 1010414 BLAKE2B 
be8e0194855eda8e8a617ee4415d702199e1
 DIST portage-2.3.51.tar.bz2 1013015 BLAKE2B 
f7f5e6c9e627db5a9e4bfcc9a6cbebb40fda910d3cc928922870b295c706a9f669d3d812e726b220610efe6b182460811eb9420d6fa5b8756481df64a88fe2b9
 SHA512 
6c22b97959d4b5be263b9a1de6bb343b1f8300e989f37c7334a9d5d6fb65fe2390958e222bc5379ec95099124fc51a049ecca6e1bfc18f0a6c57e4601342bb94
 DIST portage-2.3.59.tar.bz2 1019295 BLAKE2B 
705e51343be5a522cfb9d4cc7935042cd1e5b697b2d78aa283bcc6cbdd3163fa54a572824355221915141b14c2f847c3810e5d4088e8784f23a0111d2bcf321a
 SHA512 
abd188a6b6e4a2c19379e15278cfea31f45eaeb327307e6011877b1babf8460066d6f2b3879d77b5d4aee5120387beaa0318ec2764d2039cd10a3aeb26973658
 DIST portage-2.3.60.tar.bz2 1019434 BLAKE2B 
ef6cd672cf0a0781d836c3090de099a6da19e36c8d6650b3b9a9eedd0c106259824cdb34ff968cdbc38fdd1bee43aa1ef76f0914c98a45b3cf79edaf9742cae7
 SHA512 
ad5145c1b82fef50224df3a299375d3e9def03f5b7aaf0e616b6dd646141e1bb94dcb7cef0f210e64c705b0e6142bcf969f85a989c423084f33706a15e6b2e07
+DIST portage-2.3.61.tar.bz2 1020972 BLAKE2B 
783e0b1a38a42b6727fb42287745720fefd7ab0b0ef75a91d55ceeae6d9379d36bd37abcf42dfb90f6fcbe86354b14a3a2879d3b931174a6d26388375aad6b93
 SHA512 
2240ec3f3c01596bf0e1920e805392f429caecd58b7df60fd56ecf3ff5946299bb0d91581d358541d676f9136989b20593cb52ec883f0a28d332177b263896ea
 DIST portage-2.3.8.tar.bz2 938062 BLAKE2B 
3f7bedf6268131a3b3539d53c8a7bb069b533b3a78e5eec521b6201439c8ee5e66996e798fe295561d0a94bfcd32adf414d4f8b5e7a93035cea09749406e64a3
 SHA512 
4b4b2de20323799b9b0f7a8812f939aa9a96d2744a0f65ad5287ba49744c491b55169cdb21f2885317a6a7c960d2070775ffd798f247b44eebc677c33c271eb8
 DIST portage-74d2509c99fbcb43e018ead4950b938e41e524e5-bug-671472.patch 1584 
BLAKE2B 
452cd4cb25e42dcfa05c4f9da2bd3cc279556b9cd87037d0d965d39678f347b701dac0eaa59bfdebee9e3715abb506bf3744900ebefafa8fa729a1eb442889b9
 SHA512 
5bbe163e8eec00ece831c113676e87f0cf61a40f30a75a0de548490eeb789479336feec5bf81868a284bf32bafa00209176156cfb9ce557390d0f4a2ab6d1c1a

diff --git a/sys-apps/portage/portage-2.3.61.ebuild 
b/sys-apps/portage/portage-2.3.61.ebuild
new file mode 100644
index 000..4bf3a6b2ded
--- /dev/null
+++ b/sys-apps/portage/portage-2.3.61.ebuild
@@ -0,0 +1,271 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+PYTHON_COMPAT=(
+   pypy
+   python3_4 python3_5 python3_6 python3_7
+   python2_7
+)
+PYTHON_REQ_USE='bzip2(+),threads(+)'
+
+inherit distutils-r1 epatch linux-info systemd
+
+DESCRIPTION="Portage is the package management and distribution system for 
Gentoo"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage";
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-fbsd"
+SLOT="0"
+IUSE="build doc epydoc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux xattr"
+
+DEPEND="!build? ( $(python_gen_impl_dep 'ssl(+)') )
+   >=app-arch/tar-1.27
+   dev-lang/python-exec:2
+   >=sys-apps/sed-4.0.5 sys-devel/patch
+   doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 )
+   epydoc? ( >=dev-python/epydoc-2.0[$(python_gen_usedep 'python2*')] )"
+# Require sandbox-2.2 for bug #288863.
+# For xattr, we can spawn getfattr and setfattr from sys-apps/attr, but that's
+# quite slow, so it's not considered in the dependencies as an alternative to
+# to python-3.3 / pyxattr. Also, xattr support is only tested with Linux, so
+# for now, don't pull in xattr deps for other kernels.
+# For whirlpool hash, require python[ssl] (bug #425046).
+# For compgen, require bash[readline] (bug #445576).
+# app-portage/gemato goes without PYTHON_USEDEP since we're calling
+# the executable.
+RDEPEND="
+   >=app-arch/tar-1.27
+   dev-lang/python-exec:2
+   !build? (
+   >=sys-apps/sed-4.0.5
+   app-sh

[gentoo-commits] proj/portage: New tag: portage-2.3.61

2019-02-17 Thread Zac Medico
commit: 
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Feb 18 00:54:28 2019 +

New tag: portage-2.3.61




[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kdoctools/

2019-02-17 Thread Thomas Deutschmann
commit: 841663ed3e763543bdb83b12386f52245139450c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Feb 18 00:39:38 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Feb 18 00:39:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=841663ed

kde-frameworks/kdoctools: x86 stable (bug #677710)

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

 kde-frameworks/kdoctools/kdoctools-5.54.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-frameworks/kdoctools/kdoctools-5.54.0-r1.ebuild 
b/kde-frameworks/kdoctools/kdoctools-5.54.0-r1.ebuild
index f4265374061..72744caf415 100644
--- a/kde-frameworks/kdoctools/kdoctools-5.54.0-r1.ebuild
+++ b/kde-frameworks/kdoctools/kdoctools-5.54.0-r1.ebuild
@@ -8,7 +8,7 @@ inherit kde5
 
 DESCRIPTION="Tools to generate documentation in various formats from DocBook 
files"
 LICENSE="MIT"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 x86"
 IUSE="nls"
 
 BDEPEND="



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

2019-02-17 Thread Thomas Deutschmann
commit: 0b3be7bfff64f0548e33df0be806213c0f4339ad
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Feb 18 00:38:05 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Feb 18 00:38:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b3be7bf

media-gfx/digikam: x86 stable (bug #677710)

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

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

diff --git a/media-gfx/digikam/digikam-6.0.0.ebuild 
b/media-gfx/digikam/digikam-6.0.0.ebuild
index 0c70439cb3f..6e7b4a330b1 100644
--- a/media-gfx/digikam/digikam-6.0.0.ebuild
+++ b/media-gfx/digikam/digikam-6.0.0.ebuild
@@ -12,7 +12,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
 



[gentoo-commits] repo/gentoo:master commit in: kde-apps/libkexiv2/

2019-02-17 Thread Thomas Deutschmann
commit: 2cbc0e4aed13dc78ba49fd7f6ac42320e22b6a6f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Feb 18 00:38:55 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Feb 18 00:38:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cbc0e4a

kde-apps/libkexiv2: x86 stable (bug #677710)

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

 kde-apps/libkexiv2/libkexiv2-18.08.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/libkexiv2/libkexiv2-18.08.3-r1.ebuild 
b/kde-apps/libkexiv2/libkexiv2-18.08.3-r1.ebuild
index abc3e414596..1fd4a1fb1e1 100644
--- a/kde-apps/libkexiv2/libkexiv2-18.08.3-r1.ebuild
+++ b/kde-apps/libkexiv2/libkexiv2-18.08.3-r1.ebuild
@@ -9,7 +9,7 @@ inherit kde5
 
 DESCRIPTION="KDE Image Plugin Interface: an exiv2 library wrapper"
 LICENSE="GPL-2+"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="+xmp"
 
 DEPEND="



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

2019-02-17 Thread Thomas Deutschmann
commit: b36377ef1dfc03b3b19f6c309f0b19db892fc427
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Feb 18 00:41:05 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Feb 18 00:41:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b36377ef

dev-libs/libxml2: x86 stable (bug #618110)

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

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

diff --git a/dev-libs/libxml2/libxml2-2.9.9.ebuild 
b/dev-libs/libxml2/libxml2-2.9.9.ebuild
index 28e2af8bd1a..4572d47f669 100644
--- a/dev-libs/libxml2/libxml2-2.9.9.ebuild
+++ b/dev-libs/libxml2/libxml2-2.9.9.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://www.xmlsoft.org/";
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~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 ~s390 
~sh ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug examples icu ipv6 lzma python readline static-libs test"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 



[gentoo-commits] repo/gentoo:master commit in: kde-apps/gwenview/

2019-02-17 Thread Thomas Deutschmann
commit: c958e66940b478d8d0c36e2414e44237d90868fc
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Feb 18 00:38:36 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Feb 18 00:38:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c958e669

kde-apps/gwenview: x86 stable (bug #677710)

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

 kde-apps/gwenview/gwenview-18.08.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/gwenview/gwenview-18.08.3-r1.ebuild 
b/kde-apps/gwenview/gwenview-18.08.3-r1.ebuild
index 9200871fb27..eae183f7399 100644
--- a/kde-apps/gwenview/gwenview-18.08.3-r1.ebuild
+++ b/kde-apps/gwenview/gwenview-18.08.3-r1.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="
 "
 
 LICENSE="GPL-2+ handbook? ( FDL-1.2 )"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="activities fits kipi +mpris raw semantic-desktop X"
 
 # requires running environment



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

2019-02-17 Thread Thomas Deutschmann
commit: 33be6e07661d65a8b6dfa10440e4bf72f81b4b90
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Feb 18 00:31:13 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Feb 18 00:31:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33be6e07

dev-libs/libressl: x86 stable (bug #653516)

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

 dev-libs/libressl/libressl-2.8.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libressl/libressl-2.8.3.ebuild 
b/dev-libs/libressl/libressl-2.8.3.ebuild
index fc47b865d76..175b70a6390 100644
--- a/dev-libs/libressl/libressl-2.8.3.ebuild
+++ b/dev-libs/libressl/libressl-2.8.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ LICENSE="ISC openssl"
 # we'll try to use the max of either.  However, if either change between
 # versions, we have to change the subslot to trigger rebuild of consumers.
 SLOT="0/46"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86"
 IUSE="+asm static-libs test"
 REQUIRED_USE="test? ( static-libs )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-terms/alacritty/, x11-terms/alacritty/files/

2019-02-17 Thread Georgy Yakovlev
commit: 85a8ca1a96f8deca433dccc1509d967a79b82a4a
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Feb 18 00:20:25 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Feb 18 00:28:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85a8ca1a

x11-terms/alacritty: drop old

drop all old versions except 0.2.3 which is buildable
with stable keyworded rust, so people can have it on
stable system without pulling unstable rust/llvm

Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev  gentoo.org>

 x11-terms/alacritty/Manifest   |  85 -
 x11-terms/alacritty/alacritty-0.2.4.ebuild | 388 -
 x11-terms/alacritty/alacritty-0.2.5.ebuild | 380 
 x11-terms/alacritty/alacritty-0.2.6.ebuild | 368 ---
 ...-0.2.4-avoid-fetching-custom-windows-deps.patch |  74 
 5 files changed, 1295 deletions(-)

diff --git a/x11-terms/alacritty/Manifest b/x11-terms/alacritty/Manifest
index 1e01955042a..124c9b49e69 100644
--- a/x11-terms/alacritty/Manifest
+++ b/x11-terms/alacritty/Manifest
@@ -1,16 +1,11 @@
-DIST MacTypes-sys-1.3.0.crate 8660 BLAKE2B 
be658a07190807280f0b2001b76da35c5489f742a8479eaad6c701b51b1d8bf2d0a11b04e97b91fe0122f49ca6a33f403a4a2f4561300730bdef98281d7231b2
 SHA512 
6897248581a01b47e2200f881abd15bb45e4855837b91a4f2c016848c6a9bb7ca22d0fe118cce9dd8397b2360dc93671a8512042ea4467166979c74b28e93453
 DIST MacTypes-sys-2.1.0.crate 9274 BLAKE2B 
8bd9cec1962cf14efb13cd4586abac406d631b17fefac0c23a68dc99814774a936056827531ed743a9905629df87bc4a11495deb9a6c4ee7dd553041dfdbc8e9
 SHA512 
6e3376a73eb822ccb1a95a1d14df006755f535698b1aa3fc572b401ffd3bb76b4316b90d6f9131f502975cb521438cc8222c390afe2a0ce41898d3863869
 DIST adler32-1.0.3.crate 5734 BLAKE2B 
31cd43d1e13b5e854a195824084dc34a157ef59cccabaa335cfba2de532096046bbb66a9fce2430979b243509d608bfef752c46d80bdcc7e420e039269d575a3
 SHA512 
2128cc34abc74a363b18eec5abf414b95e4d84bfd99b6508ac807e13c026ad0e37e67b5a8c429212b85e78071f03e0df24ee70db5995772c4bc78acfb0234459
 DIST advapi32-sys-0.2.0.crate 7217 BLAKE2B 
ef3328a3405f51afe01b4bf0dec00def432a23935fb1d26a4c577b7f4716f1018ae44ba3d738275406512cc7085fb8be9f3795a56e84349acd2af64165ddef84
 SHA512 
8e6bc75fcb2b91d2b8fe281d165aa8281c8ecca9ba09552f5e4cdbadc03b91db5a98789233c4dc858ee9cf8a3488f28af5a742dac50b44f6397fd14478b77618
 DIST aho-corasick-0.6.9.crate 25979 BLAKE2B 
a1bbec11c322d20d435d8683151b144e31f04b07ca47fc1c8128464533256f4004c8d346fe59a1e1c41be5609fdf768fad5f1afa5df94d1a02ced5c4f02c4bac
 SHA512 
8dfc817b435d8a44fb4ca79bb20e283659c2fe9a75a4892389958f5880acc436bbe32552098429f15585ee025d064fdb5806b814f0e9d67a4261ffd23852172b
 DIST alacritty-0.2.3.tar.gz 957500 BLAKE2B 
510d479e95ac2c4e11ec12d181ed034ab2ca5dd02cfe4feb32e845b06220bd469815b9f2623e8485ec7a1601332031147137b8c46018d7230473d11583ad3673
 SHA512 
ee663cd2bb405b12cd0395e98fcab04303a4fca23f691bae71aa36756a2c584247c9584948f0d7c480ebf07ab07b52fe916857b19bd6c6402e4969d0b7835997
-DIST alacritty-0.2.4.tar.gz 1014613 BLAKE2B 
6fe1f837c27df9da8bdf45471307dad60745930f8d252fe97d10137601a0b0772b17612638a171220cd73afb25d44077f5e20a6645b101edf744a1e55c0d5953
 SHA512 
1c52036b34f03e90f630bd220ecd98fea98cb3b1cd740577dc30c0b293a8fb6629cfe4ba085af0f13e5a21a43566d9fd665c9b167491b047097af99ef9abc669
-DIST alacritty-0.2.5.tar.gz 1029198 BLAKE2B 
3ddebe74ab469cbc6d2bebae5e55fbc380b99e1352f5e91b73b9c1bb6635780f3c333af569f8a3c4c6ba347aaa1099573b567d6b6421c734899d7845821b0d92
 SHA512 
0d98c87c8d7f04517dff9535968349031956c048f1ba7c5389678510b250457f237844c3dc190c359154988c55589485afb0df803b094b456c5921a1e50476ec
-DIST alacritty-0.2.6.tar.gz 1031106 BLAKE2B 
4b0159b9d4206806381cd093e429cdc120cd79d8105d84c47e9e10ebe0b6150d5ee9779cc03b78014bc8c37a962677a49cc4c9ca2a319b6690207d635eedb7bf
 SHA512 
dacd733cb9255f7a31768418cd3e47dbc6c9c609da00683013739364c1e9c62e54612a7112edbd232aeb0542268c929acbc1370b5749e183f62509eaa3f72217
 DIST alacritty-0.2.9.tar.gz 1024988 BLAKE2B 
80bb1f8704ce99c3a688e0cf2dbb31119a54c849568dd6fb7d6275cc6feaf4800fa50fd32479408a64e03a0e1f0f2257be3fd952ef5c22202fdd50064fe7b72b
 SHA512 
c36dea633d5c9faa42956eff47fbd676b5f3a5ef28ae7d6711145f76e99ae92aa8ddcdde1eb5bc700855af5928e2da0b4be3f618bb05aa93c284b73727b2e337
 DIST alacritty.png 25216 BLAKE2B 
c3b0bc28d7dfc17da4224b0544e2c83b17c63669db5c809ec84532a52d8e5921fdbc058267eabfa29c71f3b577756cee4c8f8077ab4ac7de16d9290f0a4c62bf
 SHA512 
afc37f92453dd5ab2fff353ce59b4e5c2e30f1d37836a5ddf43be82e67237b8646a5e6a88322b8918a2835ec19360d8f8fc388854ef74fcf8a5eea0dae291783
 DIST andrew-0.1.4.crate 8675 BLAKE2B 
25d335096c3ad509bff202eb347bf8c193146b90d488c671f0b3796e78520ae0ea1ac93f7e77343c79bc2207804bad8f5f326b1e63fdf011dd60728dfd13f814
 SHA512 
b96fccfe1cec13c5d45c275b0a7dd6bb619a8c40a9d9b689e1618fae24088c4908b4af542e8df1a8664110599d6cd218a986c032bf2f22ee9aed8264edf92c24
-DIST andrew-0.1.5.crate 8807 BLAKE2B 
7717c8369200690224f17ae06629d309200b6cffd44f75a35b9ea

[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-unstable/

2019-02-17 Thread Mike Gilbert
commit: bea2f6653f31b7874574aa6dfa233dfc9eab71d3
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Feb 17 23:21:46 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Feb 17 23:21:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bea2f665

www-client/google-chrome-unstable: automated update (74.0.3702.0)

Package-Manager: Portage-2.3.59_p2, Repoman-2.3.12_p67
Signed-off-by: Mike Gilbert  gentoo.org>

 www-client/google-chrome-unstable/Manifest  | 2 +-
 ...le-73.0.3683.20.ebuild => google-chrome-unstable-74.0.3702.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-unstable/Manifest 
b/www-client/google-chrome-unstable/Manifest
index 2c6fab3b08c..7e724220854 100644
--- a/www-client/google-chrome-unstable/Manifest
+++ b/www-client/google-chrome-unstable/Manifest
@@ -1 +1 @@
-DIST google-chrome-unstable_73.0.3683.20-1_amd64.deb 58798594 BLAKE2B 
096d84d156773c1a87bbc56a078c3099ae43e46931bbafbcb6d749f333df04dd317e882c3a73121391767de6b10410d7152757608ac59dfadaefa1621d8aa0f0
 SHA512 
d962b392e5b4466d92aded3a32f4c2c9e6f9ec2fb85591c8421acb1cb3646fb1a3c40565eb2012a3b8cb98300ad6d071b393f162af9594fd3b718529dd062903
+DIST google-chrome-unstable_74.0.3702.0-1_amd64.deb 59058652 BLAKE2B 
1c4002a8c37d4b12f06a60e0b00ffe06d85bfa5b96c70727df38d3976121fcb8c026e2d59c33ef4746dcd50c4479b24c355ef1bad7a87f17c40865ca81c21f9e
 SHA512 
907034fc33991493ce5d64246e205b62f78ddb2a9d234f2d70b2209e6543751bea62c43e9092f2a1b7584ffa88c9a59079ff91490017768d4b219985bd96ba8f

diff --git 
a/www-client/google-chrome-unstable/google-chrome-unstable-73.0.3683.20.ebuild 
b/www-client/google-chrome-unstable/google-chrome-unstable-74.0.3702.0.ebuild
similarity index 100%
rename from 
www-client/google-chrome-unstable/google-chrome-unstable-73.0.3683.20.ebuild
rename to 
www-client/google-chrome-unstable/google-chrome-unstable-74.0.3702.0.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/

2019-02-17 Thread Mike Gilbert
commit: a16347573ef72c08a5d6e95d7e4970d22bee3bfd
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Feb 17 23:21:53 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Feb 17 23:21:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1634757

www-plugins/chrome-binary-plugins: automated update

Package-Manager: Portage-2.3.59_p2, Repoman-2.3.12_p67
Signed-off-by: Mike Gilbert  gentoo.org>

 www-plugins/chrome-binary-plugins/Manifest  | 6 +++---
 0.3626.96.ebuild => chrome-binary-plugins-72.0.3626.109.ebuild} | 0
 ..._alpha.ebuild => chrome-binary-plugins-73.0.3683.39_beta.ebuild} | 0
 ...7_beta.ebuild => chrome-binary-plugins-74.0.3702.0_alpha.ebuild} | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 3dc40b5dfdd..4626ca7853c 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
-DIST google-chrome-beta_73.0.3683.27-1_amd64.deb 58749710 BLAKE2B 
2747ee00aa2a7b795f7a59474d324e5494009836f2bede7208319e442d15b96868df1294ce6a314caf937aa4442481e8cd8194b7c500ebbe46c1f539c412cbea
 SHA512 
06831e1a6a1f6458f50a4e3ebe395c6c4223a69d9d278f8ca9b0bd54421c7bd18dee3a2d0e96af2b98b9c0340173dd5b8b040cc322441bce72de0a0d33eea285
-DIST google-chrome-stable_72.0.3626.96-1_amd64.deb 57127360 BLAKE2B 
2f21778cf761b298fa854230db19fd3a773715db0f6676b6ee5818278d7420dabc3660582bd1f86c90572fc6c4c099eeb76a000510cce753359224a477f99af8
 SHA512 
4cfe35edc23261cb6aaea9b199ce71df6073fe85ea7cc3e861e31dbc5569ce3a12c88427a24cf1a7705e86ab0aa6da36e329c5489042f1df7abd04e7ad5f04f0
-DIST google-chrome-unstable_73.0.3683.20-1_amd64.deb 58798594 BLAKE2B 
096d84d156773c1a87bbc56a078c3099ae43e46931bbafbcb6d749f333df04dd317e882c3a73121391767de6b10410d7152757608ac59dfadaefa1621d8aa0f0
 SHA512 
d962b392e5b4466d92aded3a32f4c2c9e6f9ec2fb85591c8421acb1cb3646fb1a3c40565eb2012a3b8cb98300ad6d071b393f162af9594fd3b718529dd062903
+DIST google-chrome-beta_73.0.3683.39-1_amd64.deb 58736852 BLAKE2B 
9a89e2ae51b66190fb4bbb32bba302620905fd09afd60c060766fb46bcfd5a44d11698b1913cee9111c4c9d5f1257204eb05c93ce9c113eb1ca839ced4e819aa
 SHA512 
be55420f0984a0e39766548943b4803981c397f44d0fa2ecfa2988aabb596e94c149e3e115b77e6c665a27490b21750328acf15aa0c44fd8f09087589d66463c
+DIST google-chrome-stable_72.0.3626.109-1_amd64.deb 57273356 BLAKE2B 
c99fb96e19dc6c57663863a11d23b38923321e2a723c602de853a74f819decfa8a6127944841616cbe39f85b0e4a940fb408106b56301c934e7f367966d561ff
 SHA512 
b506d494de70c54c4c6edd24575a8587002529ef4e3f1804c8e76fb7e2e657b4ceeef6b417a793438b79f3fa1c6e395243fde09c8012478a4b23640a497de7bf
+DIST google-chrome-unstable_74.0.3702.0-1_amd64.deb 59058652 BLAKE2B 
1c4002a8c37d4b12f06a60e0b00ffe06d85bfa5b96c70727df38d3976121fcb8c026e2d59c33ef4746dcd50c4479b24c355ef1bad7a87f17c40865ca81c21f9e
 SHA512 
907034fc33991493ce5d64246e205b62f78ddb2a9d234f2d70b2209e6543751bea62c43e9092f2a1b7584ffa88c9a59079ff91490017768d4b219985bd96ba8f

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-72.0.3626.96.ebuild 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-72.0.3626.109.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-72.0.3626.96.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-72.0.3626.109.ebuild

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-73.0.3683.20_alpha.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-73.0.3683.39_beta.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-73.0.3683.20_alpha.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-73.0.3683.39_beta.ebuild

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-73.0.3683.27_beta.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-74.0.3702.0_alpha.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-73.0.3683.27_beta.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-74.0.3702.0_alpha.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-beta/

2019-02-17 Thread Mike Gilbert
commit: 0f15ccce07994ca89efa13962a6716952326d237
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Feb 17 23:21:32 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Feb 17 23:21:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f15ccce

www-client/google-chrome-beta: automated update (73.0.3683.39)

Package-Manager: Portage-2.3.59_p2, Repoman-2.3.12_p67
Signed-off-by: Mike Gilbert  gentoo.org>

 www-client/google-chrome-beta/Manifest  | 2 +-
 ...-beta-73.0.3683.27.ebuild => google-chrome-beta-73.0.3683.39.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-beta/Manifest 
b/www-client/google-chrome-beta/Manifest
index 2524ea6e1da..9b242114b05 100644
--- a/www-client/google-chrome-beta/Manifest
+++ b/www-client/google-chrome-beta/Manifest
@@ -1 +1 @@
-DIST google-chrome-beta_73.0.3683.27-1_amd64.deb 58749710 BLAKE2B 
2747ee00aa2a7b795f7a59474d324e5494009836f2bede7208319e442d15b96868df1294ce6a314caf937aa4442481e8cd8194b7c500ebbe46c1f539c412cbea
 SHA512 
06831e1a6a1f6458f50a4e3ebe395c6c4223a69d9d278f8ca9b0bd54421c7bd18dee3a2d0e96af2b98b9c0340173dd5b8b040cc322441bce72de0a0d33eea285
+DIST google-chrome-beta_73.0.3683.39-1_amd64.deb 58736852 BLAKE2B 
9a89e2ae51b66190fb4bbb32bba302620905fd09afd60c060766fb46bcfd5a44d11698b1913cee9111c4c9d5f1257204eb05c93ce9c113eb1ca839ced4e819aa
 SHA512 
be55420f0984a0e39766548943b4803981c397f44d0fa2ecfa2988aabb596e94c149e3e115b77e6c665a27490b21750328acf15aa0c44fd8f09087589d66463c

diff --git 
a/www-client/google-chrome-beta/google-chrome-beta-73.0.3683.27.ebuild 
b/www-client/google-chrome-beta/google-chrome-beta-73.0.3683.39.ebuild
similarity index 100%
rename from www-client/google-chrome-beta/google-chrome-beta-73.0.3683.27.ebuild
rename to www-client/google-chrome-beta/google-chrome-beta-73.0.3683.39.ebuild



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

2019-02-17 Thread Mike Gilbert
commit: 21f49a12a88f95373688ad534c113fbcb023a94d
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Feb 17 23:21:16 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Feb 17 23:21:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21f49a12

www-client/google-chrome: automated update (72.0.3626.109)

Package-Manager: Portage-2.3.59_p2, Repoman-2.3.12_p67
Signed-off-by: Mike Gilbert  gentoo.org>

 www-client/google-chrome/Manifest   | 2 +-
 ...le-chrome-72.0.3626.96.ebuild => google-chrome-72.0.3626.109.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome/Manifest 
b/www-client/google-chrome/Manifest
index 35997d0379a..9fb1508e16f 100644
--- a/www-client/google-chrome/Manifest
+++ b/www-client/google-chrome/Manifest
@@ -1 +1 @@
-DIST google-chrome-stable_72.0.3626.96-1_amd64.deb 57127360 BLAKE2B 
2f21778cf761b298fa854230db19fd3a773715db0f6676b6ee5818278d7420dabc3660582bd1f86c90572fc6c4c099eeb76a000510cce753359224a477f99af8
 SHA512 
4cfe35edc23261cb6aaea9b199ce71df6073fe85ea7cc3e861e31dbc5569ce3a12c88427a24cf1a7705e86ab0aa6da36e329c5489042f1df7abd04e7ad5f04f0
+DIST google-chrome-stable_72.0.3626.109-1_amd64.deb 57273356 BLAKE2B 
c99fb96e19dc6c57663863a11d23b38923321e2a723c602de853a74f819decfa8a6127944841616cbe39f85b0e4a940fb408106b56301c934e7f367966d561ff
 SHA512 
b506d494de70c54c4c6edd24575a8587002529ef4e3f1804c8e76fb7e2e657b4ceeef6b417a793438b79f3fa1c6e395243fde09c8012478a4b23640a497de7bf

diff --git a/www-client/google-chrome/google-chrome-72.0.3626.96.ebuild 
b/www-client/google-chrome/google-chrome-72.0.3626.109.ebuild
similarity index 100%
rename from www-client/google-chrome/google-chrome-72.0.3626.96.ebuild
rename to www-client/google-chrome/google-chrome-72.0.3626.109.ebuild



[gentoo-commits] repo/gentoo:master commit in: app-text/libetonyek/files/, app-text/libetonyek/

2019-02-17 Thread Andreas Sturmlechner
commit: 15f5593d7344f9218749b0273621541a9beafd0f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 17 19:15:04 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 17 22:59:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15f5593d

app-text/libetonyek: Drop 0.1.8

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

 app-text/libetonyek/Manifest   |  1 -
 .../files/libetonyek-0.1.8-glm-0.9.9.patch | 12 
 .../files/libetonyek-0.1.8-no-parentheses.patch| 29 --
 .../files/libetonyek-0.1.8-typo-fix.patch  | 28 -
 app-text/libetonyek/libetonyek-0.1.8-r1.ebuild | 67 --
 app-text/libetonyek/libetonyek-0.1.8.ebuild| 56 --
 6 files changed, 193 deletions(-)

diff --git a/app-text/libetonyek/Manifest b/app-text/libetonyek/Manifest
index 7a9f758407e..00c59b08dfc 100644
--- a/app-text/libetonyek/Manifest
+++ b/app-text/libetonyek/Manifest
@@ -1,2 +1 @@
-DIST libetonyek-0.1.8.tar.xz 1324868 BLAKE2B 
2088349df75011f54f5822ffd69336a7942a148ff829111c02efbfb99c705a9e00105147942f3e9e81278be3b1f2be4d63aba8cbf6a54127f04fc547df6b7b1d
 SHA512 
c8c08100b0c75e0420bbcd796f7cb9285e77ce1be34757df5b237d114a428a4a6094f12e442f81769a2fac5be45ea4376ff9e1d90448e18b3443bfe7c645a865
 DIST libetonyek-0.1.9.tar.xz 1477064 BLAKE2B 
088d27c83d4aff41cb208cf840def78e323f378a1b7d456448db3abf51d1e850c8159ace75c8836958b533c2b84e583d5a622e638081230d2f862f6d1d175e98
 SHA512 
3f439b369d450bb1a4bdb3fe92023bda234b323cf676570f1738318c56867a97910f536280b9b164c3fdaa423a3ee669c935df75a5c700bc1530ea5b9a00391e

diff --git a/app-text/libetonyek/files/libetonyek-0.1.8-glm-0.9.9.patch 
b/app-text/libetonyek/files/libetonyek-0.1.8-glm-0.9.9.patch
deleted file mode 100644
index db78fa81d47..000
--- a/app-text/libetonyek/files/libetonyek-0.1.8-glm-0.9.9.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-Gentoo-bug: https://bugs.gentoo.org/657820
-
 a/configure.ac 2018-03-18 14:51:31.0 +0100
-+++ b/configure.ac 2018-07-11 23:13:14.901127036 +0200
-@@ -119,7 +119,6 @@
- saved_CPPFLAGS="${CPPFLAGS}"
- CPPFLAGS="${GLM_CFLAGS} ${CPPFLAGS}"
- GLM_headers="glm/glm.hpp"
--AS_IF([test "x$enable_tests" == "xyes"], [GLM_headers="$GLM_headers 
glm/gtx/io.hpp"], [])
- AC_CHECK_HEADERS(
- [$GLM_headers],
- [],

diff --git a/app-text/libetonyek/files/libetonyek-0.1.8-no-parentheses.patch 
b/app-text/libetonyek/files/libetonyek-0.1.8-no-parentheses.patch
deleted file mode 100644
index e13fe5f31ce..000
--- a/app-text/libetonyek/files/libetonyek-0.1.8-no-parentheses.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 935cb58a61e45f441bdea143317a7d0d52c7f944 Mon Sep 17 00:00:00 2001
-From: David Tardon 
-Date: Sat, 5 May 2018 14:01:43 +0200
-Subject: [PATCH] =?utf8?q?WaE:=20unnecessary=20parentheses=20in=20declarat?=
- =?utf8?q?ion=20of=20=E2=80=98aligns=E2=80=99?=
-MIME-Version: 1.0
-Content-Type: text/plain; charset=utf8
-Content-Transfer-Encoding: 8bit
-
-Change-Id: Ic3cb38d071db8e3947c09a4b216b62d18e01b6aa

- src/lib/IWAParser.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/lib/IWAParser.cpp b/src/lib/IWAParser.cpp
-index ab9c6c8..973610e 100644
 a/src/lib/IWAParser.cpp
-+++ b/src/lib/IWAParser.cpp
-@@ -1676,7 +1676,7 @@ void IWAParser::parseCellStyle(const unsigned id, 
IWORKStylePtr_t &style)
-   auto align=get(properties.uint32(8));
-   if (align<=2)
-   {
--const IWORKVerticalAlignment(aligns[])=
-+const IWORKVerticalAlignment aligns[] =
- {
-   IWORK_VERTICAL_ALIGNMENT_TOP, IWORK_VERTICAL_ALIGNMENT_MIDDLE, 
IWORK_VERTICAL_ALIGNMENT_BOTTOM
- };
--- 
-2.11.0

diff --git a/app-text/libetonyek/files/libetonyek-0.1.8-typo-fix.patch 
b/app-text/libetonyek/files/libetonyek-0.1.8-typo-fix.patch
deleted file mode 100644
index 32593fed480..000
--- a/app-text/libetonyek/files/libetonyek-0.1.8-typo-fix.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 9b78187ac2ccca0158cc9cc0bcc0576b457a78d7 Mon Sep 17 00:00:00 2001
-From: =?utf8?q?Caol=C3=A1n=20McNamara?= 
-Date: Mon, 23 Apr 2018 17:20:16 +0100
-Subject: [PATCH] intial-creator->initial-creator
-
-Change-Id: I6fe5d0732edb97ac7ff6d527f48543cab1bb3f7b
-Reviewed-on: https://gerrit.libreoffice.org/53337
-Reviewed-by: David Tardon 
-Tested-by: David Tardon 

- src/lib/IWORKCollector.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/lib/IWORKCollector.cpp b/src/lib/IWORKCollector.cpp
-index 0e0c775..4252a49 100644
 a/src/lib/IWORKCollector.cpp
-+++ b/src/lib/IWORKCollector.cpp
-@@ -771,7 +771,7 @@ void 
IWORKCollector::fillMetadata(librevenge::RVNGPropertyList &props)
-   if (!m_metadata.m_title.empty())
- props.insert("dc:subject", m_metadata.m_title.c_str());
-   if (!m_metadata.m_author.empty())
--props.insert("meta:intial-creator", m_metadata.m_author.c_str()

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

2019-02-17 Thread Andreas Sturmlechner
commit: 2fce21578f882b2ef5487526542e72e6d78e6ba2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 17 19:17:13 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 17 22:59:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fce2157

app-text/libqxp: Drop 0.0.1

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

 app-text/libqxp/Manifest|  1 -
 app-text/libqxp/libqxp-0.0.1.ebuild | 37 -
 2 files changed, 38 deletions(-)

diff --git a/app-text/libqxp/Manifest b/app-text/libqxp/Manifest
index 14d19badb9e..5b7aa813e5c 100644
--- a/app-text/libqxp/Manifest
+++ b/app-text/libqxp/Manifest
@@ -1,2 +1 @@
-DIST libqxp-0.0.1.tar.xz 340184 BLAKE2B 
759e5d0fb5886485f4ebe4a6caa34d1d98dc623c0ae124ca1be5ce7fb73686fc83360712d59d020e4788b39aa57d32149b7641d71b73dde917df46617f17
 SHA512 
a03a9ada658a92f4d985cad91d467b3916334c74dc26c1e4de89e3929e0135ca0e9c7e7e18ce616ef56a67863ec19c2638494400785849017f9a4776df07c607
 DIST libqxp-0.0.2.tar.xz 341760 BLAKE2B 
e596b3ebd23c8fff2a1675b1076ba6b4403bb41358972b50eb946610108f5968ef3e553478aec8c6211f8b476030033e7d334cb4deccc7d6bdfba3914821abf5
 SHA512 
409d3df82ac522b39bdd0ef4f0a781b906e246a8e6f502009c095eea90d672c482a7fc5c7f998d89952bc598c6f51357346ed6df490c25cb48e1318e27c50dab

diff --git a/app-text/libqxp/libqxp-0.0.1.ebuild 
b/app-text/libqxp/libqxp-0.0.1.ebuild
deleted file mode 100644
index b3364e75301..000
--- a/app-text/libqxp/libqxp-0.0.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Library parsing QuarkXpress documents"
-HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/${PN}";
-SRC_URI="https://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz";
-
-LICENSE="MPL-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
-IUSE="debug doc test tools"
-
-RDEPEND="
-   dev-libs/librevenge
-   dev-libs/icu:=
-"
-DEPEND="${RDEPEND}
-   dev-libs/boost
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )
-"
-
-src_configure() {
-   econf \
-   --disable-weffc \
-   $(use_enable debug) \
-   $(use_with doc docs) \
-   $(use_enable test tests) \
-   $(use_enable tools)
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}



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

2019-02-17 Thread Andreas Sturmlechner
commit: f0e4482c6d36030e7cc3146d4de54b78ba047453
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 17 22:54:19 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 17 22:59:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0e4482c

media-gfx/digikam: Un-break optional Qt5 detection

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

 media-gfx/digikam/digikam-6.0.0.ebuild|  2 +
 media-gfx/digikam/files/digikam-6.0.0-cmake.patch | 62 +++
 2 files changed, 64 insertions(+)

diff --git a/media-gfx/digikam/digikam-6.0.0.ebuild 
b/media-gfx/digikam/digikam-6.0.0.ebuild
index 4288c82dc56..0c70439cb3f 100644
--- a/media-gfx/digikam/digikam-6.0.0.ebuild
+++ b/media-gfx/digikam/digikam-6.0.0.ebuild
@@ -105,6 +105,8 @@ RDEPEND="${COMMON_DEPEND}
 RESTRICT+=" test"
 # bug 366505
 
+PATCHES=( "${FILESDIR}/${P}-cmake.patch" )
+
 pkg_pretend() {
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
kde5_pkg_pretend

diff --git a/media-gfx/digikam/files/digikam-6.0.0-cmake.patch 
b/media-gfx/digikam/files/digikam-6.0.0-cmake.patch
new file mode 100644
index 000..f90067f4812
--- /dev/null
+++ b/media-gfx/digikam/files/digikam-6.0.0-cmake.patch
@@ -0,0 +1,62 @@
+From 0d24a8971700454533c66ab9fc63043c67d44da6 Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Sun, 17 Feb 2019 23:51:03 +0100
+Subject: [PATCH] Un-break optional Qt5 detection
+
+---
+ core/CMakeLists.txt | 22 ++
+ 1 file changed, 10 insertions(+), 12 deletions(-)
+
+diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt
+index 27d3819323..17c8aa0320 100644
+--- a/core/CMakeLists.txt
 b/core/CMakeLists.txt
+@@ -134,16 +134,14 @@ find_package(Qt5 ${QT_MIN_VERSION}
+ )
+ 
+ if(ENABLE_QWEBENGINE)
+-find_package(Qt5 ${QT_MIN_VERSION} NO_MODULE COMPONENTS WebEngineWidgets)
++find_package(Qt5WebEngineWidgets ${QT_MIN_VERSION} NO_MODULE)
+ else()
+-find_package(Qt5 ${QT_MIN_VERSION} NO_MODULE COMPONENTS WebKitWidgets)
++find_package(Qt5WebKitWidgets ${QT_MIN_VERSION} NO_MODULE)
+ endif()
+ 
+-find_package(Qt5 ${QT_MIN_VERSION}
+- OPTIONAL_COMPONENTS
+- DBus
+- OpenGL
+-)
++find_package(Qt5DBus ${QT_MIN_VERSION})
++
++find_package(Qt5OpenGL ${QT_MIN_VERSION})
+ 
+ if(ENABLE_DBUS)
+ if(NOT Qt5DBus_FOUND)
+@@ -154,10 +152,10 @@ endif()
+ # Dependencies For unit tests and CLI test tools
+ 
+ if(BUILD_TESTING)
+-find_package(Qt5 ${QT_MIN_VERSION} NO_MODULE COMPONENTS
+- Test
+- Qml WebView  # Optional, for 'sialis' O2 library test tool.
+-)
++find_package(Qt5Test ${QT_MIN_VERSION} NO_MODULE)
++# Optional, for 'sialis' O2 library test tool.
++find_package(Qt5Qml ${QT_MIN_VERSION} NO_MODULE)
++find_package(Qt5WebView ${QT_MIN_VERSION} NO_MODULE)
+ endif()
+ 
+ find_package(KF5 ${KF5_MIN_VERSION}
+@@ -323,7 +321,7 @@ find_package(OpenGL)   # For 
Presentation tool.
+ find_package(X11)
+ 
+ if(X11_FOUND)
+-find_package(Qt5 ${QT_MIN_VERSION} NO_MODULE COMPONENTS X11Extras)
++find_package(Qt5X11Extras ${QT_MIN_VERSION} NO_MODULE)
+ set(HAVE_X11 TRUE)
+ else()
+ set(HAVE_X11 FALSE)
+-- 
+2.20.1
+



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

2019-02-17 Thread Andreas Sturmlechner
commit: 5ea749cd12c4fae52a7d6b74880ba42c6d421314
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 17 19:25:27 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 17 22:59:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ea749cd

app-text/libwpg: Drop 0.3.2

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

 app-text/libwpg/Manifest|  1 -
 app-text/libwpg/libwpg-0.3.2.ebuild | 48 -
 2 files changed, 49 deletions(-)

diff --git a/app-text/libwpg/Manifest b/app-text/libwpg/Manifest
index 9eaa8bd895d..37d0f698e13 100644
--- a/app-text/libwpg/Manifest
+++ b/app-text/libwpg/Manifest
@@ -1,2 +1 @@
-DIST libwpg-0.3.2.tar.xz 326840 BLAKE2B 
a32668671bf0f6a69555dea39a522fac65f7522d7fda5cc29b8d2588fa268f1923e959bb6aa75c6ed1d4c40dde5cf458577098e4662dcee769a449ae36f13229
 SHA512 
f3f76a17056274b2dfd11ce4eb451411d8458b00b3f7be4fae0a932a382f247adbaae1f4f8f6005e7b84f063e415ef5ab609015ba32f779c6ab2f0404b275f3f
 DIST libwpg-0.3.3.tar.xz 328664 BLAKE2B 
02ffaf8ea96e66dea94d847c85e17db5b7efcc5891bb1bf4069e664ece09f808b7462fcbb08a75d6ab17fff4ea51a8e494c48fba1540aed132f47d05b746e1a5
 SHA512 
99f8346b336eb902626fe07836c73870a57e100620ddd242ce7c2866e564483ed024a3a0b2804f81a0f59a0873310c3a93c005d306437a27818a6f4374c0c491

diff --git a/app-text/libwpg/libwpg-0.3.2.ebuild 
b/app-text/libwpg/libwpg-0.3.2.ebuild
deleted file mode 100644
index 1ca82bb199e..000
--- a/app-text/libwpg/libwpg-0.3.2.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit alternatives
-
-DESCRIPTION="C++ library to read and parse graphics in WPG"
-HOMEPAGE="http://libwpg.sourceforge.net/libwpg.htm";
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-
-LICENSE="|| ( LGPL-2.1 MPL-2.0 )"
-SLOT="0.3"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc64 x86"
-IUSE="doc static-libs"
-
-RDEPEND="
-   app-text/libwpd:0.10[tools]
-   dev-libs/librevenge
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )"
-
-src_configure() {
-   econf \
-   --disable-werror \
-   --program-suffix=-${SLOT} \
-   $(use_with doc docs) \
-   $(use_enable static-libs static)
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   alternatives_auto_makesym /usr/bin/wpg2svgbatch.pl 
"/usr/bin/wpg2svgbatch.pl-[0-9].[0-9]"
-   alternatives_auto_makesym /usr/bin/wpg2svg 
"/usr/bin/wpg2svg-[0-9].[0-9]"
-   alternatives_auto_makesym /usr/bin/wpg2raw 
"/usr/bin/wpg2raw-[0-9].[0-9]"
-}
-
-pkg_postrm() {
-   alternatives_auto_makesym /usr/bin/wpg2svgbatch.pl 
"/usr/bin/wpg2svgbatch.pl-[0-9].[0-9]"
-   alternatives_auto_makesym /usr/bin/wpg2svg 
"/usr/bin/wpg2svg-[0-9].[0-9]"
-   alternatives_auto_makesym /usr/bin/wpg2raw 
"/usr/bin/wpg2raw-[0-9].[0-9]"
-}



[gentoo-commits] repo/gentoo:master commit in: app-doc/gimp-help/

2019-02-17 Thread Patrice Clement
commit: ff791dd177b732c91dc93590c083b507a3cd693a
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Feb  5 19:42:51 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Feb 17 22:57:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff791dd1

app-doc/gimp-help-2.8.2: disable parallel build.

Closes: https://bugs.gentoo.org/677198
Closes: https://github.com/gentoo/gentoo/pull/10990
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Closes: https://github.com/gentoo/gentoo/pull/10990
Signed-off-by: Patrice Clement  gentoo.org>

 app-doc/gimp-help/gimp-help-2.8.2.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/app-doc/gimp-help/gimp-help-2.8.2.ebuild 
b/app-doc/gimp-help/gimp-help-2.8.2.ebuild
index 3c7f761243f..ac9a1f084eb 100644
--- a/app-doc/gimp-help/gimp-help-2.8.2.ebuild
+++ b/app-doc/gimp-help/gimp-help-2.8.2.ebuild
@@ -24,3 +24,8 @@ DEPEND="${PYTHON_DEPS}
 src_configure() {
econf --without-gimp
 }
+
+src_compile() {
+   # see https://bugs.gentoo.org/677198
+   emake -j 1
+}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/libcmis/files/, dev-cpp/libcmis/

2019-02-17 Thread Andreas Sturmlechner
commit: 16b0199b7774379301c92946006e6e01f4c51e87
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 17 19:26:42 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 17 22:59:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16b0199b

dev-cpp/libcmis: Drop <0.5.2

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

 dev-cpp/libcmis/Manifest   |  2 -
 .../libcmis/files/libcmis-0.5.2-boost-1.68.patch   | 25 ---
 .../files/libcmis-0.5.2-fix-gdrive-2fa.patch   | 70 --
 .../files/libcmis-0.5.2-oauth2-encode.patch| 69 --
 .../libcmis/libcmis-0.5.2_pre20160820-r1.ebuild| 85 --
 dev-cpp/libcmis/libcmis-0.5.2_pre20180118.ebuild   | 77 
 6 files changed, 328 deletions(-)

diff --git a/dev-cpp/libcmis/Manifest b/dev-cpp/libcmis/Manifest
index 2065d178dde..c1568ef2f82 100644
--- a/dev-cpp/libcmis/Manifest
+++ b/dev-cpp/libcmis/Manifest
@@ -1,3 +1 @@
 DIST libcmis-0.5.2.tar.gz 295020 BLAKE2B 
325eacedd87eb1888a439c727a648c5aeb8d58c9b80add9761ffc55381193b71b589865d13ecd55177faafa935642685001f60456c1354e037989b29e9451c05
 SHA512 
45d8cd6d420a9593b46e1f2d6fbf384ea248cb218b0db6326ee2f082ff29100b65a2cc999ccb849e61df4f4ed7c3721b09addc6c322ef03c6c93f8c0acc02bde
-DIST libcmis-0.5.2_pre20160820.tar.gz 285100 BLAKE2B 
980200d1a56240d8d069aba2ad349ec02e90d345bad4956f6cbbea3606f9f90951523804293b349ad0419dd2db6db294a45a97872469105c1ba392c888fab332
 SHA512 
4b6d0fc4d80444fea2c5eb16621b92a10b41c58128cc8a355caca50f12648ed5113bd977cc5dbe8971e3dbc11f9d7ae8d45c9d2aa19f37c83659141af135bd1a
-DIST libcmis-0.5.2_pre20180118.tar.gz 291080 BLAKE2B 
1cb5664dcb0bef7f5a04c422b21ac54a9b70d38dec74d688327732630e4a134a88c7262d763a39d1730eda1cd45f5d3c3d47a56099959d01bf5e23972181a793
 SHA512 
630cf7e5c31266e2b55ca093aa942fc373eb24bbb5b9aedd687f67f1b3c6b627a3bdb58878859449bcb340626f3e1bdafa2b9cbb5e61e8e4336c45b804fca7a9

diff --git a/dev-cpp/libcmis/files/libcmis-0.5.2-boost-1.68.patch 
b/dev-cpp/libcmis/files/libcmis-0.5.2-boost-1.68.patch
deleted file mode 100644
index 767464242f7..000
--- a/dev-cpp/libcmis/files/libcmis-0.5.2-boost-1.68.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 3ef3569c4ae1c5319aff0664d52cbd8a8d42c909 Mon Sep 17 00:00:00 2001
-From: rezso 
-Date: Tue, 4 Sep 2018 01:18:10 +0200
-Subject: tdf#119344 fix libcmis build with boost 1.68
-
-Change-Id: I80d6ea8ecd001dc02b941c1eb8974c9244316045
-Reviewed-on: https://gerrit.libreoffice.org/59958
-Tested-by: Jenkins
-Reviewed-by: Michael Stahl 
-
 a/src/libcmis/xml-utils.cxx
-+++ b/src/libcmis/xml-utils.cxx
-@@ -31,7 +31,12 @@
- #include 
- #include 
- 
-+#include 
-+#if (BOOST_VERSION >= 106800)
-+#include 
-+#else
- #include 
-+#endif
- #include 
- 
- #include "xml-utils.hxx"

diff --git a/dev-cpp/libcmis/files/libcmis-0.5.2-fix-gdrive-2fa.patch 
b/dev-cpp/libcmis/files/libcmis-0.5.2-fix-gdrive-2fa.patch
deleted file mode 100644
index 3c19e99a5ba..000
--- a/dev-cpp/libcmis/files/libcmis-0.5.2-fix-gdrive-2fa.patch
+++ /dev/null
@@ -1,70 +0,0 @@
-From 1effce6d286ba3a9f467e15074b532d2ba4b7c98 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Szymon=20K=C5=82os?= 
-Date: Wed, 29 Mar 2017 17:45:10 +0200
-Subject: [PATCH] Fix 2FA for Google Drive
-

- src/libcmis/oauth2-providers.cxx | 15 +--
- 1 file changed, 13 insertions(+), 2 deletions(-)
-
-diff --git a/src/libcmis/oauth2-providers.cxx 
b/src/libcmis/oauth2-providers.cxx
-index 74c0fec..dd872dd 100644
 a/src/libcmis/oauth2-providers.cxx
-+++ b/src/libcmis/oauth2-providers.cxx
-@@ -37,6 +37,7 @@
- #define CHALLENGE_PAGE_ACTION_LEN sizeof( CHALLENGE_PAGE_ACTION ) - 1
- #define PIN_FORM_ACTION "/signin/challenge/ipp"
- #define PIN_FORM_ACTION_LEN sizeof( PIN_FORM_ACTION ) - 1
-+#define PIN_INPUT_NAME "Pin"
- 
- using namespace std;
- 
-@@ -152,7 +153,7 @@ string OAuth2Providers::OAuth2Gdrive( HttpSession* 
session, const string& authUr
- }
- 
- loginChallengeLink = "https://accounts.google.com"; + 
loginChallengeLink;
--loginChallengePost += "Pin=";
-+loginChallengePost += string( PIN_INPUT_NAME ) + "=";
- loginChallengePost += string( pin );
- 
- istringstream loginChallengeIs( loginChallengePost );
-@@ -291,6 +292,8 @@ int OAuth2Providers::parseResponse ( const char* response, 
string& post, string&
- if ( reader == NULL ) return 0;
- 
- bool readInputField = false;
-+bool bIsRightForm = false;
-+bool bHasPinField = false;
- 
- while ( true )
- {
-@@ -301,6 +304,12 @@ int OAuth2Providers::parseResponse ( const char* 
response, string& post, string&
- // Find the redirect link
- if ( xmlStrEqual( nodeName, BAD_CAST( "form" ) ) )
- {
-+// 2FA: Don't add fields form other forms not having pin field
-+if ( bIsRightForm && !bHasPinField )
-+post = strin

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

2019-02-17 Thread Andreas Sturmlechner
commit: 41e04888705ca80cb4da35451eb8df8a626e864e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 17 19:23:36 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 17 22:59:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41e04888

app-text/libwpd: Drop 0.10.2

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

 app-text/libwpd/Manifest |  1 -
 app-text/libwpd/libwpd-0.10.2.ebuild | 52 
 2 files changed, 53 deletions(-)

diff --git a/app-text/libwpd/Manifest b/app-text/libwpd/Manifest
index 393a213ce9b..1da0e9e6882 100644
--- a/app-text/libwpd/Manifest
+++ b/app-text/libwpd/Manifest
@@ -1,2 +1 @@
-DIST libwpd-0.10.2.tar.xz 536400 BLAKE2B 
a4ed9b8c790898436e08afd0f571c4a4b31615228248116b24bad38d07df7837982df1ffa98b0ad442cfec417fc90eb089642b32e3a094323e75fb8fc7cb8da7
 SHA512 
821dbc0535ebd4fa41bcf984e344e11176862676c66abebe45cf4284f8de6e6cc7629f8a605b169d034a5c2f3e2461513d61e11e549ca73b8328eb66ac3bdd79
 DIST libwpd-0.10.3.tar.xz 534712 BLAKE2B 
a7b39713c0df908912d0f6f94c6c0f7056a685dee7542ea88c441f055ad7cc62c1159985c459a4ff67d5b5fe4c412c31c9a9a2924702386ed5b8250147f071ff
 SHA512 
df14f11e885a583218afdb0aafe8a15d01890289af8b316cd1d225e4a83996c82907fbfdde83257dc71d99bfbc5b21b2c96536f5a783748388659155dbdb8949

diff --git a/app-text/libwpd/libwpd-0.10.2.ebuild 
b/app-text/libwpd/libwpd-0.10.2.ebuild
deleted file mode 100644
index 48e245627e3..000
--- a/app-text/libwpd/libwpd-0.10.2.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit alternatives
-
-DESCRIPTION="WordPerfect Document import/export library"
-HOMEPAGE="http://libwpd.sf.net";
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-
-LICENSE="|| ( LGPL-2.1 MPL-2.0 )"
-SLOT="0.10"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc64 x86 ~x86-fbsd"
-IUSE="doc +tools"
-
-RDEPEND="dev-libs/librevenge"
-DEPEND="${RDEPEND}
-   dev-libs/boost
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )
-"
-
-src_configure() {
-   econf \
-   --disable-static \
-   --disable-werror \
-   $(use_with doc docs) \
-   $(use_enable tools) \
-   --program-suffix=-${SLOT}
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   if use tools; then
-   alternatives_auto_makesym /usr/bin/wpd2html 
"/usr/bin/wpd2html-[0-9].[0-9][0-9]"
-   alternatives_auto_makesym /usr/bin/wpd2raw 
"/usr/bin/wpd2raw-[0-9].[0-9][0-9]"
-   alternatives_auto_makesym /usr/bin/wpd2text 
"/usr/bin/wpd2text-[0-9].[0-9][0-9]"
-   fi
-}
-
-pkg_postrm() {
-   if use tools; then
-   alternatives_auto_makesym /usr/bin/wpd2html 
"/usr/bin/wpd2html-[0-9].[0-9][0-9]"
-   alternatives_auto_makesym /usr/bin/wpd2raw 
"/usr/bin/wpd2raw-[0-9].[0-9][0-9]"
-   alternatives_auto_makesym /usr/bin/wpd2text 
"/usr/bin/wpd2text-[0-9].[0-9][0-9]"
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-workspace/

2019-02-17 Thread Thomas Deutschmann
commit: 29a68955b9e5edac45c1abb7d4b1115ed36bece4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Feb 17 22:25:18 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Feb 17 22:25:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29a68955

kde-plasma/plasma-workspace: x86 stable (bug #678122)

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

 kde-plasma/plasma-workspace/plasma-workspace-5.14.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/plasma-workspace/plasma-workspace-5.14.5.1.ebuild 
b/kde-plasma/plasma-workspace/plasma-workspace-5.14.5.1.ebuild
index 6b8b720cd49..03351acb03b 100644
--- a/kde-plasma/plasma-workspace/plasma-workspace-5.14.5.1.ebuild
+++ b/kde-plasma/plasma-workspace/plasma-workspace-5.14.5.1.ebuild
@@ -9,7 +9,7 @@ VIRTUALX_REQUIRED="test"
 inherit kde5 qmake-utils
 
 DESCRIPTION="KDE Plasma workspace"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 x86"
 IUSE="appstream +calendar geolocation gps prison qalculate +semantic-desktop 
systemd"
 
 REQUIRED_USE="gps? ( geolocation )"



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

2019-02-17 Thread Thomas Deutschmann
commit: f1071139445933b95ac18ad15a47f7e670aeb010
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Feb 17 22:32:36 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Feb 17 22:32:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1071139

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

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

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

diff --git a/dev-db/mysql-connector-c++/mysql-connector-c++-1.1.11.ebuild 
b/dev-db/mysql-connector-c++/mysql-connector-c++-1.1.11.ebuild
index a16cf78fde4..fcf053641eb 100644
--- a/dev-db/mysql-connector-c++/mysql-connector-c++-1.1.11.ebuild
+++ b/dev-db/mysql-connector-c++/mysql-connector-c++-1.1.11.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://dev.mysql.com/get/Downloads/${URI_DIR}/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ppc ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ppc ppc64 ~sparc x86"
 IUSE="debug examples gcov static-libs"
 
 DEPEND="virtual/libmysqlclient:=



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

2019-02-17 Thread Thomas Deutschmann
commit: 718b5dd6b8c89b6835e97c078540de244eb3b98b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Feb 17 22:16:19 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Feb 17 22:16:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=718b5dd6

app-emacs/eselect-mode: x86 stable (bug #678208)

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

 app-emacs/eselect-mode/eselect-mode-1.4.13.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emacs/eselect-mode/eselect-mode-1.4.13.ebuild 
b/app-emacs/eselect-mode/eselect-mode-1.4.13.ebuild
index 349169b3ecd..8f129af7d60 100644
--- a/app-emacs/eselect-mode/eselect-mode-1.4.13.ebuild
+++ b/app-emacs/eselect-mode/eselect-mode-1.4.13.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ SRC_URI="https://dev.gentoo.org/~ulm/eselect/${MY_P}.tar.xz";
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~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-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos"
 
 S="${WORKDIR}/${MY_P}/misc"
 SITEFILE="50${PN}-gentoo.el"



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-desktop/

2019-02-17 Thread Thomas Deutschmann
commit: 5eb9c75f320b7d9021204e2b4e8c97d82ee59f3a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Feb 17 22:23:32 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Feb 17 22:23:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eb9c75f

kde-plasma/plasma-desktop: x86 stable (bug #678122)

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

 kde-plasma/plasma-desktop/plasma-desktop-5.14.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/plasma-desktop/plasma-desktop-5.14.5.1.ebuild 
b/kde-plasma/plasma-desktop/plasma-desktop-5.14.5.1.ebuild
index e6474b3532f..78d59c6fa6e 100644
--- a/kde-plasma/plasma-desktop/plasma-desktop-5.14.5.1.ebuild
+++ b/kde-plasma/plasma-desktop/plasma-desktop-5.14.5.1.ebuild
@@ -9,7 +9,7 @@ VIRTUALX_REQUIRED="test"
 inherit kde5
 
 DESCRIPTION="KDE Plasma desktop"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm x86"
 IUSE="appstream +fontconfig ibus +mouse scim +semantic-desktop touchpad"
 
 COMMON_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kdeplasma-addons/

2019-02-17 Thread Thomas Deutschmann
commit: ccd24971a093f73656ea857a256b3e0ffd15bf7d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Feb 17 22:21:46 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Feb 17 22:21:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccd24971

kde-plasma/kdeplasma-addons: x86 stable (bug #678122)

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

 kde-plasma/kdeplasma-addons/kdeplasma-addons-5.14.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.14.5.1.ebuild 
b/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.14.5.1.ebuild
index 5fca0fcb6cf..d3b3ee0b886 100644
--- a/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.14.5.1.ebuild
+++ b/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.14.5.1.ebuild
@@ -7,7 +7,7 @@ inherit kde5
 
 DESCRIPTION="Extra Plasma applets and engines"
 LICENSE="GPL-2 LGPL-2"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm x86"
 IUSE="share webengine"
 
 DEPEND="



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

2019-02-17 Thread Thomas Deutschmann
commit: f14eb6c96e9873f577285b673357469ae3f0c7cf
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Feb 17 22:26:09 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Feb 17 22:26:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f14eb6c9

net-libs/libasyncns: x86 stable (bug #678124)

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

 net-libs/libasyncns/libasyncns-0.8-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libasyncns/libasyncns-0.8-r4.ebuild 
b/net-libs/libasyncns/libasyncns-0.8-r4.ebuild
index d94aee37ef8..8100e444b37 100644
--- a/net-libs/libasyncns/libasyncns-0.8-r4.ebuild
+++ b/net-libs/libasyncns/libasyncns-0.8-r4.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="http://0pointer.de/lennart/projects/libasyncns/${P}.tar.gz";
 SLOT="0"
 
 LICENSE="LGPL-2.1"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 ~sh sparc ~x86 
~amd64-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux"
 
 IUSE="doc debug"
 



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

2019-02-17 Thread Thomas Deutschmann
commit: bab15465af0e6ffc09a09cb6145ad714edfd2c36
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Feb 17 22:31:36 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Feb 17 22:31:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bab15465

app-misc/mc: x86 stable (bug #677464)

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

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

diff --git a/app-misc/mc/mc-4.8.22.ebuild b/app-misc/mc/mc-4.8.22.ebuild
index 7f41dea701e..223563d4c42 100644
--- a/app-misc/mc/mc-4.8.22.ebuild
+++ b/app-misc/mc/mc-4.8.22.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-fbsd ~x86-fbsd ~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-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
 IUSE="+edit gpm mclib nls samba sftp +slang spell test unicode X +xdg"
 
 REQUIRED_USE="spell? ( edit )"



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

2019-02-17 Thread Thomas Deutschmann
commit: 14add73de06a3571568e6a895716359307562837
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Feb 17 22:34:57 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Feb 17 22:34:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14add73d

app-office/scribus: x86 stable (bug #676960)

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

 app-office/scribus/scribus-1.5.5_pre20190124.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/scribus/scribus-1.5.5_pre20190124.ebuild 
b/app-office/scribus/scribus-1.5.5_pre20190124.ebuild
index f8cd0719543..7814487f417 100644
--- a/app-office/scribus/scribus-1.5.5_pre20190124.ebuild
+++ b/app-office/scribus/scribus-1.5.5_pre20190124.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/${PN}project/${PN}/archive/${COMMIT}.tar.gz -> ${P}.
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ppc ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~hppa ppc ppc64 ~sparc x86"
 IUSE="+boost debug examples graphicsmagick hunspell +minimal osg +pdf scripts 
templates tk"
 
 #a=$((ls resources/translations/scribus.*ts | sed -e 's:\.: :g' | awk '{print 
$2}'; ls resources/loremipsum/*xml | sed -e 's:\.: :g' -e 's:loremipsum\/: :g'| 
awk '{print $2}'; ls resources/dicts/hyph*dic | sed -e 's:\.: :g' -e 's:hyph_: 
:g' | awk '{print $2}'; ls resources/dicts/README_*txt | sed -e 's:_hyph::g' -e 
's:\.: :g' -e 's:README_: :g' | awk '{print $2}') | sort | uniq); echo $a



[gentoo-commits] repo/gentoo:master commit in: net-im/prosody/

2019-02-17 Thread Thomas Deutschmann
commit: 9b48de935f2557b0ddc58bfe4e2b619a9ad72a6d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Feb 17 22:33:20 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Feb 17 22:33:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b48de93

net-im/prosody: x86 stable (bug #678162)

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

 net-im/prosody/prosody-0.11.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-im/prosody/prosody-0.11.2.ebuild 
b/net-im/prosody/prosody-0.11.2.ebuild
index ab97195c1f0..d1be6afa1c0 100644
--- a/net-im/prosody/prosody-0.11.2.ebuild
+++ b/net-im/prosody/prosody-0.11.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://prosody.im/tmp/${MY_PV}/${MY_P}.tar.gz";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="ipv6 libevent mysql postgres sqlite ssl zlib jit libressl test"
 
 BASE_DEPEND="net-im/jabber-base



[gentoo-commits] repo/gentoo:master commit in: net-dns/djbdns/

2019-02-17 Thread Thomas Deutschmann
commit: 135593346d2a33c5454799dcab2ad341401939f2
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Feb 17 22:15:24 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Feb 17 22:15:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13559334

net-dns/djbdns: x86 stable (bug #678156)

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

 net-dns/djbdns/djbdns-1.05-r33.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/djbdns/djbdns-1.05-r33.ebuild 
b/net-dns/djbdns/djbdns-1.05-r33.ebuild
index ea6a186ddba..9ddbdc94f4a 100644
--- a/net-dns/djbdns/djbdns-1.05-r33.ebuild
+++ b/net-dns/djbdns/djbdns-1.05-r33.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://cr.yp.to/djbdns/${P}.tar.gz
 
 SLOT="0"
 LICENSE="public-domain"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~mips ppc ppc64 ~sparc x86"
 IUSE="ipv6 selinux"
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kauth/

2019-02-17 Thread Thomas Deutschmann
commit: 0f9e85fb3c1fd728d633f7832e10c0f18e9b1625
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Feb 17 22:20:36 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Feb 17 22:20:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f9e85fb

kde-frameworks/kauth: x86 stable (bug #678170)

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

 kde-frameworks/kauth/kauth-5.54.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-frameworks/kauth/kauth-5.54.0-r1.ebuild 
b/kde-frameworks/kauth/kauth-5.54.0-r1.ebuild
index 8c8a8020545..76f7574c103 100644
--- a/kde-frameworks/kauth/kauth-5.54.0-r1.ebuild
+++ b/kde-frameworks/kauth/kauth-5.54.0-r1.ebuild
@@ -8,7 +8,7 @@ inherit kde5
 
 DESCRIPTION="Framework to let applications perform actions as a privileged 
user"
 LICENSE="LGPL-2.1+"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 x86"
 IUSE="nls +policykit"
 
 RDEPEND="



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

2019-02-17 Thread Thomas Deutschmann
commit: 4ecd2a37548d73809741794d4b35051f193e5bf7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Feb 17 22:17:41 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Feb 17 22:17:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ecd2a37

media-gfx/exiv2: x86 stable (bug #674968)

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

 media-gfx/exiv2/exiv2-0.27.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/exiv2/exiv2-0.27.0-r2.ebuild 
b/media-gfx/exiv2/exiv2-0.27.0-r2.ebuild
index 44c5d08970a..adeada39bb5 100644
--- a/media-gfx/exiv2/exiv2-0.27.0-r2.ebuild
+++ b/media-gfx/exiv2/exiv2-0.27.0-r2.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = * ]]; then
inherit git-r3
 else
SRC_URI="http://exiv2.dyndns.org/builds/${P}a-Source.tar.gz";
-   KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
+   KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
 fi
 
 PYTHON_COMPAT=( python2_7 python3_{5,6,7} )



[gentoo-commits] repo/gentoo:master commit in: kde-misc/rsibreak/

2019-02-17 Thread Thomas Deutschmann
commit: a883100769870f0f42f72f225f7c0a5e28721eba
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Feb 17 22:33:49 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Feb 17 22:33:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8831007

kde-misc/rsibreak: x86 stable (bug #678136)

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

 kde-misc/rsibreak/rsibreak-0.12.9-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-misc/rsibreak/rsibreak-0.12.9-r1.ebuild 
b/kde-misc/rsibreak/rsibreak-0.12.9-r1.ebuild
index 451c2934bf5..0a44b82c35f 100644
--- a/kde-misc/rsibreak/rsibreak-0.12.9-r1.ebuild
+++ b/kde-misc/rsibreak/rsibreak-0.12.9-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${KDE_BUILD_TYPE} = release ]]; then
 fi
 
 LICENSE="GPL-2+ handbook? ( FDL-1.2 )"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 BDEPEND="sys-devel/gettext"



[gentoo-commits] repo/gentoo:master commit in: x11-apps/xcalc/

2019-02-17 Thread Matt Turner
commit: e300c872d7bbd1332f92653c025e3dbeb4b27aeb
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Feb 17 22:08:02 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Feb 17 22:08:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e300c872

x11-apps/xcalc: Version bump to 1.0.7

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

 x11-apps/xcalc/Manifest   |  1 +
 x11-apps/xcalc/xcalc-1.0.7.ebuild | 16 
 2 files changed, 17 insertions(+)

diff --git a/x11-apps/xcalc/Manifest b/x11-apps/xcalc/Manifest
index 65676393db2..72140825f83 100644
--- a/x11-apps/xcalc/Manifest
+++ b/x11-apps/xcalc/Manifest
@@ -1,2 +1,3 @@
 DIST xcalc-1.0.5.tar.bz2 135451 BLAKE2B 
843aeebe244ebca36e95624c4097907517047b4589abbe6c194283fba2809720fbb415075aef19b3e745cef5ee6b3afdefa86d955df78160ec1b8cbff3b59180
 SHA512 
8ca9cc8fda4cc0b4578342311e3cfa7ce69084f10bec7eca4b0cf6d2ad11bb7f188d89ad15b12b17a514fb02eb9758df96d514e605aa4bfe7e23fa028591a7ea
 DIST xcalc-1.0.6.tar.bz2 142808 BLAKE2B 
11dcfcb1a09284ac3ce27c147aa5544818b6149993a07386f20ead706f492696030ec567469e59b52ed71fdc67b458b7a9362ad235442a663ccf01f7b6eaf4c8
 SHA512 
61b921b6a3fefea20bd9e7ad0b308f589f2aeaafe9316df94cc739a005be6c180bdafc981b8957230f46c9fc1c0e266829a55b473ae26b1377c705796175c908
+DIST xcalc-1.0.7.tar.bz2 145644 BLAKE2B 
54bf53e652a535db5d116f8a5193b4b165fd500d3943b83fc294ccb3df44b39b4774ab0d9f44c37ff1a915948879d815738bb9e4caf8e1ad18830cd4addc05e5
 SHA512 
890cb9399e3c55816318ab5f0152ddba05ee141cbae6032759a3b762742ab54df8fcf0394dacc539299f93f27cbbb17aee5cbda5dde8b169a7099f20a1a38388

diff --git a/x11-apps/xcalc/xcalc-1.0.7.ebuild 
b/x11-apps/xcalc/xcalc-1.0.7.ebuild
new file mode 100644
index 000..c112468db2f
--- /dev/null
+++ b/x11-apps/xcalc/xcalc-1.0.7.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit xorg-2
+
+DESCRIPTION="scientific calculator for X"
+
+KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x86-solaris"
+IUSE=""
+
+RDEPEND="x11-libs/libXaw
+   x11-libs/libXt
+   x11-libs/libX11"
+DEPEND="${RDEPEND}"



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

2019-02-17 Thread Jeroen Roovers
commit: 3ca80135f9891a769fa064cdfe88b2e0beadcba5
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun Feb 17 21:20:53 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun Feb 17 21:21:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ca80135

sys-devel/binutils-hppa64: Reinstate KEYWORDS

Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Jeroen Roovers  gentoo.org>

 sys-devel/binutils-hppa64/binutils-hppa64-2.32.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sys-devel/binutils-hppa64/binutils-hppa64-2.32.ebuild 
b/sys-devel/binutils-hppa64/binutils-hppa64-2.32.ebuild
index c4ccb4ffd3b..f5b56078a4e 100644
--- a/sys-devel/binutils-hppa64/binutils-hppa64-2.32.ebuild
+++ b/sys-devel/binutils-hppa64/binutils-hppa64-2.32.ebuild
@@ -47,8 +47,7 @@ case ${PV} in
*)
SRC_URI="mirror://gnu/binutils/binutils-${PV}.tar.xz"
SLOT=$(get_version_component_range 1-2)
-   # no keywords yet. Needs some testing
-   #KEYWORDS="-* ~hppa"
+   KEYWORDS="-* ~hppa"
;;
 esac
 



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

2019-02-17 Thread Pacho Ramos
commit: 509d31e84c3af7063bf044ff44fd88980466728c
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Feb 16 09:47:39 2019 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Feb 17 21:19:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=509d31e8

net-libs/ccrtp: Drop old

Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Pacho Ramos  gentoo.org>

 net-libs/ccrtp/Manifest   |  1 -
 net-libs/ccrtp/ccrtp-2.0.9.ebuild | 43 ---
 2 files changed, 44 deletions(-)

diff --git a/net-libs/ccrtp/Manifest b/net-libs/ccrtp/Manifest
index ae78e3b59ae..65c28fe50ed 100644
--- a/net-libs/ccrtp/Manifest
+++ b/net-libs/ccrtp/Manifest
@@ -1,2 +1 @@
-DIST ccrtp-2.0.9.tar.gz 751786 BLAKE2B 
afa105375a95cffc649704915e0532b20af2188186a6f7d9459285996dfcf583fd2cc1be8e4dc917d4a1acf4022d13db95c617710a2a13a9da9b7badab257fba
 SHA512 
2e63a049ead5bd8a2f3c65d3badb6d6b2a20e185698f62ea9f7e559e8d0aac6151e7a314317d63ea33282c891d75af32571da3471254600abea462097c47dfe3
 DIST ccrtp-2.1.2.tar.gz 764869 BLAKE2B 
8fc3aa22e715078dae64407da8b8c2dc6740994dad7bf7dab6369b1708e6261619107dd7484b1ec801b7a8bbb30d3387d8fab9c3503adf09209b2b8aeb6df56d
 SHA512 
a835f57a0eef7cba11c55c93ce2f11ebd8ab4099e7c723043c51e4872f3da87af946fc50fac18b47ea5d72b2a1227b377810e9134c1f3a8982d4ce5944d043e9

diff --git a/net-libs/ccrtp/ccrtp-2.0.9.ebuild 
b/net-libs/ccrtp/ccrtp-2.0.9.ebuild
deleted file mode 100644
index 8d752dd..000
--- a/net-libs/ccrtp/ccrtp-2.0.9.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils multilib
-
-DESCRIPTION="GNU ccRTP - Implementation of the IETF real-time transport 
protocol"
-HOMEPAGE="https://www.gnu.org/software/ccrtp/";
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
-LICENSE="GPL-2"
-IUSE="doc"
-SLOT="0/2"
-
-RDEPEND=">=dev-cpp/commoncpp2-1.3.0:0=
-   dev-libs/libgcrypt:0=
-   >=dev-libs/ucommon-5.0.0:="
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )"
-
-src_configure() {
-   econf --disable-static
-}
-
-src_install() {
-   default
-   prune_libtool_files
-   use doc && dohtml -r doc/html/*
-}
-
-pkg_postinst() {
-   if [[ -e "${ROOT}"/usr/$(get_libdir)/libccrtp1-1.4.so.0 ]] ; then
-   elog "Please run: revdep-rebuild --library libccrtp1-1.4.so.0"
-   fi
-   if [[ -e "${ROOT}"/usr/$(get_libdir)/libccrtp1-1.5.so.0 ]] ; then
-   elog "Please run: revdep-rebuild --library libccrtp1-1.5.so.0"
-   fi
-   if [[ -e "${ROOT}"/usr/$(get_libdir)/libccrtp1-1.6.so.0 ]] ; then
-   elog "Please run: revdep-rebuild --library libccrtp1-1.6.so.0"
-   fi
-}



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

2019-02-17 Thread Mikle Kolyada
commit: b2e4c12844ae7c037e6ffbe38f87fc3429f82880
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Feb 17 21:04:40 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Feb 17 21:05:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2e4c128

dev-libs/libsigc++: arm stable wrt bug #675486

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="arm"

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

diff --git a/dev-libs/libsigc++/libsigc++-2.10.1.ebuild 
b/dev-libs/libsigc++/libsigc++-2.10.1.ebuild
index 040b90a3632..fd085ffc0eb 100644
--- a/dev-libs/libsigc++/libsigc++-2.10.1.ebuild
+++ b/dev-libs/libsigc++/libsigc++-2.10.1.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="http://libsigc.sourceforge.net/";
 
 LICENSE="LGPL-2.1+"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs test"
 
 RDEPEND=""



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

2019-02-17 Thread Georgy Yakovlev
commit: 9b66b31b5dee99b61c538954d4a20184952d23c1
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun Feb 17 21:00:03 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Feb 17 21:05:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b66b31b

net-irc/weechat: bump to 2.4, ebuild improvements

Bump eapi to 7
drop tinfo patch: https://github.com/weechat/weechat/pull/1090
use default makefile generator (ninja for EAPI7) #558578
gnome2_icon_cache_update -> xdg_icon_cache_update
add manpage building and useflag
removed unneeded source-highlight dep (now uses prettify)
add ruby 2.6
sort mycmakeargs

Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev  gentoo.org>

 net-irc/weechat/Manifest   |   1 +
 net-irc/weechat/metadata.xml   |   3 +-
 net-irc/weechat/weechat-2.4.ebuild | 157 +
 3 files changed, 160 insertions(+), 1 deletion(-)

diff --git a/net-irc/weechat/Manifest b/net-irc/weechat/Manifest
index 03f1ca58d69..9872ed89839 100644
--- a/net-irc/weechat/Manifest
+++ b/net-irc/weechat/Manifest
@@ -1 +1,2 @@
 DIST weechat-2.3.tar.xz 2025652 BLAKE2B 
74c5d81a77f164c51bee01ff1be5731455ad85178005a360269ffa4ac59554c58dc97175fcb3fa62841b79e7711c1dc41876a839a9d1e4a1f4ce359bac1d6689
 SHA512 
0de827850de5c70c528e1a8cfa44220c3d48d6767df61a8a6283123173ba63b4c8554d5334a8b14976d19602c36bbc27d89ebbd201ccd8c048d50edc3a4ea19b
+DIST weechat-2.4.tar.xz 208 BLAKE2B 
d1893de3465f8d19ae5faea0638454839e640a7480f8cae4ee517c090aab68789224865ce2c371a0e8f4f8a44fb86382ab53f51b50042db3488efbf10d62de05
 SHA512 
012eca03e56eea64b3e50ee1e8b7c1cc636ad779be01268b3c9ee05e3bd149bc58b09eb6952e965061782da5f9d33d7a835056c6bb43c1fdca998cfc463fd068

diff --git a/net-irc/weechat/metadata.xml b/net-irc/weechat/metadata.xml
index 1e3fcd3c408..76bd84de3bf 100644
--- a/net-irc/weechat/metadata.xml
+++ b/net-irc/weechat/metadata.xml
@@ -15,11 +15,12 @@
Enable exec plugin
Enable fast set plugin
Enable FIFO support (sh pipes)
+   Enable IRC protocol support
Enable support for logging
+   Build and install man pages
Enable relay plugin (experimental)
Build infrastructure for scripting
Enable trigger plugin
Enable xfer plugin support
-   Enable IRC protocol support

 

diff --git a/net-irc/weechat/weechat-2.4.ebuild 
b/net-irc/weechat/weechat-2.4.ebuild
new file mode 100644
index 000..976f3611697
--- /dev/null
+++ b/net-irc/weechat/weechat-2.4.ebuild
@@ -0,0 +1,157 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} )
+
+inherit cmake-utils python-single-r1 xdg-utils
+
+if [[ ${PV} == "" ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/weechat/weechat.git";
+else
+   SRC_URI="https://weechat.org/files/src/${P}.tar.xz";
+   KEYWORDS="~amd64 ~arm ~x86 ~x64-macos"
+fi
+
+DESCRIPTION="Portable and multi-interface IRC client"
+HOMEPAGE="https://weechat.org/";
+
+LICENSE="GPL-3"
+SLOT="0"
+
+NETWORKS="+irc"
+PLUGINS="+alias +buflist +charset +exec +fset +fifo +logger +relay +scripts 
+spell +trigger +xfer"
+# dev-lang/v8 was dropped from Gentoo so we can't enable javascript support
+SCRIPT_LANGS="guile lua +perl php +python ruby tcl"
+LANGS=" cs de es fr hu it ja pl pt pt_BR ru tr"
+IUSE="doc man nls +ssl test ${SCRIPT_LANGS} ${PLUGINS} ${INTERFACES} 
${NETWORKS}"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="
+   dev-libs/libgcrypt:0=
+   net-misc/curl[ssl]
+   sys-libs/ncurses:0=
+   sys-libs/zlib
+   charset? ( virtual/libiconv )
+   guile? ( >=dev-scheme/guile-2.0 )
+   lua? ( dev-lang/lua:0[deprecated] )
+   nls? ( virtual/libintl )
+   perl? ( dev-lang/perl:= )
+   php? ( >=dev-lang/php-7.0:* )
+   python? ( ${PYTHON_DEPS} )
+   ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.4 
dev-lang/ruby:2.3 ) )
+   ssl? ( net-libs/gnutls )
+   spell? ( app-text/aspell )
+   tcl? ( >=dev-lang/tcl-8.4.15:0= )
+"
+DEPEND="${RDEPEND}
+   doc? ( >=dev-ruby/asciidoctor-1.5.4 )
+   man? ( >=dev-ruby/asciidoctor-1.5.4 )
+   nls? ( >=sys-devel/gettext-0.15 )
+   test? ( dev-util/cpputest )
+"
+
+DOCS="AUTHORS.adoc ChangeLog.adoc Contributing.adoc ReleaseNotes.adoc 
README.adoc"
+
+# tests need to be fixed to not use system plugins if weechat is already 
installed
+RESTRICT="test"
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   cmake-utils_src_prepare
+
+   # fix libdir placement
+   sed -i \
+   -e "s:lib/:$(get_libdir)/:g" \
+   -e "s:lib\":$(get_libdir)\":g" \
+   CMakeLists.txt || die "sed failed"
+
+   # install onl

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

2019-02-17 Thread Georgy Yakovlev
commit: 72f83905f348fd50330161352f79f081fda77b5a
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun Feb 17 21:00:51 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Feb 17 21:05:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72f83905

net-irc/weechat: sync live ebuild

Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev  gentoo.org>

 net-irc/weechat/weechat-.ebuild | 50 ++---
 1 file changed, 24 insertions(+), 26 deletions(-)

diff --git a/net-irc/weechat/weechat-.ebuild 
b/net-irc/weechat/weechat-.ebuild
index 8acde9443dd..976f3611697 100644
--- a/net-irc/weechat/weechat-.ebuild
+++ b/net-irc/weechat/weechat-.ebuild
@@ -1,10 +1,11 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
+
 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} )
-CMAKE_MAKEFILE_GENERATOR=emake
-inherit cmake-utils gnome2-utils python-single-r1
+
+inherit cmake-utils python-single-r1 xdg-utils
 
 if [[ ${PV} == "" ]] ; then
inherit git-r3
@@ -25,7 +26,7 @@ PLUGINS="+alias +buflist +charset +exec +fset +fifo +logger 
+relay +scripts +spe
 # dev-lang/v8 was dropped from Gentoo so we can't enable javascript support
 SCRIPT_LANGS="guile lua +perl php +python ruby tcl"
 LANGS=" cs de es fr hu it ja pl pt pt_BR ru tr"
-IUSE="doc nls +ssl test ${SCRIPT_LANGS} ${PLUGINS} ${INTERFACES} ${NETWORKS}"
+IUSE="doc man nls +ssl test ${SCRIPT_LANGS} ${PLUGINS} ${INTERFACES} 
${NETWORKS}"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
 RDEPEND="
@@ -40,16 +41,14 @@ RDEPEND="
perl? ( dev-lang/perl:= )
php? ( >=dev-lang/php-7.0:* )
python? ( ${PYTHON_DEPS} )
-   ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.4 dev-lang/ruby:2.3 ) )
+   ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.4 
dev-lang/ruby:2.3 ) )
ssl? ( net-libs/gnutls )
spell? ( app-text/aspell )
tcl? ( >=dev-lang/tcl-8.4.15:0= )
 "
 DEPEND="${RDEPEND}
-   doc? (
-   >=dev-ruby/asciidoctor-1.5.4
-   dev-util/source-highlight
-   )
+   doc? ( >=dev-ruby/asciidoctor-1.5.4 )
+   man? ( >=dev-ruby/asciidoctor-1.5.4 )
nls? ( >=sys-devel/gettext-0.15 )
test? ( dev-util/cpputest )
 "
@@ -59,8 +58,6 @@ DOCS="AUTHORS.adoc ChangeLog.adoc Contributing.adoc 
ReleaseNotes.adoc README.ado
 # tests need to be fixed to not use system plugins if weechat is already 
installed
 RESTRICT="test"
 
-PATCHES=( "${FILESDIR}"/${PN}-2.2-tinfo.patch )
-
 pkg_setup() {
use python && python-single-r1_pkg_setup
 }
@@ -109,34 +106,35 @@ src_prepare() {
 
 src_configure() {
local mycmakeargs=(
-   -DENABLE_NCURSES=ON
-   -DENABLE_NLS=$(usex nls)
-   -DENABLE_GNUTLS=$(usex ssl)
+   -DENABLE_JAVASCRIPT=OFF
-DENABLE_LARGEFILE=ON
+   -DENABLE_NCURSES=ON
-DENABLE_ALIAS=$(usex alias)
-DENABLE_ASPELL=$(usex spell)
-DENABLE_BUFLIST=$(usex buflist)
-DENABLE_CHARSET=$(usex charset)
+   -DENABLE_DOC=$(usex doc)
-DENABLE_EXEC=$(usex exec)
-   -DENABLE_FSET=$(usex fset)
-DENABLE_FIFO=$(usex fifo)
+   -DENABLE_FSET=$(usex fset)
+   -DENABLE_GNUTLS=$(usex ssl)
+   -DENABLE_GUILE=$(usex guile)
-DENABLE_IRC=$(usex irc)
-DENABLE_LOGGER=$(usex logger)
-   -DENABLE_RELAY=$(usex relay)
-   -DENABLE_SCRIPT=$(usex scripts)
-   -DENABLE_SCRIPTS=$(usex scripts)
+   -DENABLE_LUA=$(usex lua)
+   -DENABLE_MAN=$(usex man)
+   -DENABLE_NLS=$(usex nls)
-DENABLE_PERL=$(usex perl)
-DENABLE_PHP=$(usex php)
-DENABLE_PYTHON=$(usex python)
+   -DENABLE_RELAY=$(usex relay)
-DENABLE_RUBY=$(usex ruby)
-   -DENABLE_LUA=$(usex lua)
+   -DENABLE_SCRIPT=$(usex scripts)
+   -DENABLE_SCRIPTS=$(usex scripts)
-DENABLE_TCL=$(usex tcl)
-   -DENABLE_GUILE=$(usex guile)
-   -DENABLE_JAVASCRIPT=OFF
+   -DENABLE_TESTS=$(usex test)
-DENABLE_TRIGGER=$(usex trigger)
-DENABLE_XFER=$(usex xfer)
-   -DENABLE_DOC=$(usex doc)
-   -DENABLE_TESTS=$(usex test)
)
 
if use python; then
@@ -151,9 +149,9 @@ src_configure() {
 }
 
 pkg_postinst() {
-   gnome2_icon_cache_update
+   xdg_icon_cache_update
 }
 
 pkg_postrm() {
-   gnome2_icon_cache_update
+   xdg_icon_cache_update
 }



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

2019-02-17 Thread Mikle Kolyada
commit: d2f53135cadbf9bb1934ca5f159365396ae3c1bb
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Feb 17 21:04:46 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Feb 17 21:05:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2f53135

dev-cpp/pangomm: arm stable wrt bug #675486

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="arm"

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

diff --git a/dev-cpp/pangomm/pangomm-2.42.0.ebuild 
b/dev-cpp/pangomm/pangomm-2.42.0.ebuild
index 41d15474300..cfb113bdb5b 100644
--- a/dev-cpp/pangomm/pangomm-2.42.0.ebuild
+++ b/dev-cpp/pangomm/pangomm-2.42.0.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://www.gtkmm.org";
 
 LICENSE="LGPL-2.1+"
 SLOT="1.4"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
 IUSE="doc"
 
 COMMON_DEPEND="



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

2019-02-17 Thread Mikle Kolyada
commit: 5d834e3eeede6bb98e1b6c7f21e979681b65645a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Feb 17 21:04:48 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Feb 17 21:05:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d834e3e

dev-cpp/gtkmm: arm stable wrt bug #675486

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="arm"

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

diff --git a/dev-cpp/gtkmm/gtkmm-3.24.0.ebuild 
b/dev-cpp/gtkmm/gtkmm-3.24.0.ebuild
index ba711434acd..924b6c4ae41 100644
--- a/dev-cpp/gtkmm/gtkmm-3.24.0.ebuild
+++ b/dev-cpp/gtkmm/gtkmm-3.24.0.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://www.gtkmm.org";
 
 LICENSE="LGPL-2.1+"
 SLOT="3.0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~x86-solaris"
 
 IUSE="aqua doc test wayland X"
 REQUIRED_USE="|| ( aqua wayland X )"



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

2019-02-17 Thread Dennis Lamm
commit: 0a2a64f88c72fc5da7a9ea9865dc05a74679fda6
Author: Dennis Lamm  gentoo  org>
AuthorDate: Sun Feb 17 20:00:46 2019 +
Commit: Dennis Lamm  gentoo  org>
CommitDate: Sun Feb 17 20:00:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a2a64f8

dev-libs/satyr: bump to 0.27

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

 dev-libs/satyr/Manifest  |  1 +
 dev-libs/satyr/satyr-0.27.ebuild | 45 
 2 files changed, 46 insertions(+)

diff --git a/dev-libs/satyr/Manifest b/dev-libs/satyr/Manifest
index cb6c8364e06..84736d4b19e 100644
--- a/dev-libs/satyr/Manifest
+++ b/dev-libs/satyr/Manifest
@@ -1 +1,2 @@
 DIST satyr-0.26.tar.gz 434820 BLAKE2B 
4463c69e6ac2eb8237f599bfeed308265a906c6e3efa154b14eb6ee7acdc65580da9baf5ecb99e4efa4f8c00f7656ff2a747e607f2293b12a513ed680986fe08
 SHA512 
45dfc42e05e93fa0417c8c5d6811097cabaa0f4dcfb79df13d3840d789cfd41c84382ae84882ca120b1a3120987123a306656324cf39f306046a5d30547db656
+DIST satyr-0.27.tar.gz 435341 BLAKE2B 
ade40bc6a1c48e6fc0af7913ff94ed044c63fdb63b8d86ba010bebcfd2098831bc6c7361d116851aee88f49c640d1457dd8953becad60b6ff6dc32deec6c7942
 SHA512 
7b01cf16489644fbfbe2150477279a94c6fa9b3310edebc84b83bab58d1058df0be478ab6bf4c6910b4168122721dde10d573711abb983b0eb5ccda09cb80710

diff --git a/dev-libs/satyr/satyr-0.27.ebuild b/dev-libs/satyr/satyr-0.27.ebuild
new file mode 100644
index 000..2ff1248e54f
--- /dev/null
+++ b/dev-libs/satyr/satyr-0.27.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit autotools python-r1 toolchain-funcs
+
+DESCRIPTION="Satyr is a collection of low-level algorithms for program failure 
processing"
+HOMEPAGE="https://github.com/abrt/satyr";
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}/${P}.tar.gz";
+
+LICENSE="GPL-2+"
+SLOT="0/3"
+
+IUSE="python"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="python? ( ${PYTHON_DEPS} )
+   >=dev-libs/elfutils-0.158
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   default
+   ./gen-version || die # Needs to be run before full autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-rpm
+   # Build breaks without and we aren't supporting Python2 anyway
+   --without-python2
+   $(usex python "--with-python3" "--without-python3")
+   )
+
+   econf "${myargs[@]}"
+}



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

2019-02-17 Thread Jeroen Roovers
commit: 0b4fec5403f01e7c173ba2ebf2423131c4c7e05b
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun Feb 17 19:20:40 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun Feb 17 19:21:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b4fec54

net-misc/youtube-dl: Version 2019.02.18

Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-misc/youtube-dl/Manifest |  1 +
 net-misc/youtube-dl/youtube-dl-2019.02.18.ebuild | 64 
 2 files changed, 65 insertions(+)

diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest
index be7dc0181fa..8aa1dda4dcc 100644
--- a/net-misc/youtube-dl/Manifest
+++ b/net-misc/youtube-dl/Manifest
@@ -1 +1,2 @@
 DIST youtube-dl-2019.02.08.tar.gz 3104780 BLAKE2B 
e89a9950de84c3d2c5530ca229f2dfb39bb372454a6a1d67c0d1c966f68f2372008556ffda32c042eca6d3c0aee3ace0c1cabdf1d65cb16efc80326b821a3624
 SHA512 
4fc027ec6d9d7059c34a3c16f1265989ec000c131e6a937f667928531dd2a6d9f56592d367f08ec5e3b1900b3e191aa36bcc997db04b77b95850a43ed1272640
+DIST youtube-dl-2019.02.18.tar.gz 3114830 BLAKE2B 
f948fc68d9bc2b7e400d22b4d2980b7f56bf734476a54b3e30b6ee33d5e4a0950233dfd74b0db26108a5759e3589acde4fe104d41ea856c88f68e165f330132b
 SHA512 
86a321003b9e0bdc852294c8ac75d601141177f3469330c6ab01fa821758ee848dfcdf0e9dd514ca2da7b7e3c2a7f2dcddab9929f7fa8be2ab3c86d6eccbd5e3

diff --git a/net-misc/youtube-dl/youtube-dl-2019.02.18.ebuild 
b/net-misc/youtube-dl/youtube-dl-2019.02.18.ebuild
new file mode 100644
index 000..2cb0551f3e3
--- /dev/null
+++ b/net-misc/youtube-dl/youtube-dl-2019.02.18.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
+inherit bash-completion-r1 distutils-r1 readme.gentoo-r1
+
+DESCRIPTION="Download videos from YouTube.com (and more sites...)"
+HOMEPAGE="https://rg3.github.com/youtube-dl/";
+SRC_URI="https://youtube-dl.org/downloads/${PV}/${P}.tar.gz";
+LICENSE="public-domain"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+RESTRICT="test"
+SLOT="0"
+RDEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+"
+DEPEND="
+   ${RDEPEND}
+"
+S="${WORKDIR}/${PN}"
+
+src_compile() {
+   distutils-r1_src_compile
+}
+
+python_install_all() {
+   dodoc README.txt
+   doman ${PN}.1
+
+   newbashcomp ${PN}.bash-completion ${PN}
+
+   insinto /usr/share/zsh/site-functions
+   newins ${PN}.zsh _${PN}
+
+   insinto /usr/share/fish/vendor_completions.d
+   doins ${PN}.fish
+
+   distutils-r1_python_install_all
+
+   rm -r "${ED}"/usr/etc || die
+   rm -r "${ED}"/usr/share/doc/youtube_dl || die
+}
+
+pkg_postinst() {
+   elog "${PN}(1) / https://bugs.gentoo.org/355661 /"
+   elog "https://github.com/rg3/${PN}/blob/master/README.md#faq :"
+   elog
+   elog "${PN} works fine on its own on most sites. However, if you want"
+   elog "to convert video/audio, you'll need avconf (media-video/libav) or"
+   elog "ffmpeg (media-video/ffmpeg). On some sites - most notably YouTube 
-"
+   elog "videos can be retrieved in a higher quality format without sound."
+   elog "${PN} will detect whether avconv/ffmpeg is present and"
+   elog "automatically pick the best option."
+   elog
+   elog "Videos or video formats streamed via RTMP protocol can only be"
+   elog "downloaded when rtmpdump (media-video/rtmpdump) is installed."
+   elog "Downloading MMS and RTSP videos requires either mplayer"
+   elog "(media-video/mplayer) or mpv (media-video/mpv) to be installed."
+   elog
+   elog "If you want ${PN} to embed thumbnails from the metadata into the"
+   elog "resulting MP4 files, consider installing 
media-video/atomicparsley"
+}



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

2019-02-17 Thread Mikle Kolyada
commit: 82331b4d1913715f15f36e15bfcae318d9dc7eea
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Feb 17 19:20:44 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Feb 17 19:21:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82331b4d

net-irc/irssi: Do not apply libressl patch

Closes: https://bugs.gentoo.org/678242
Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-irc/irssi/irssi-1.2.0-r2.ebuild | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/net-irc/irssi/irssi-1.2.0-r2.ebuild 
b/net-irc/irssi/irssi-1.2.0-r2.ebuild
index daa677c3a0c..be0abf1747e 100644
--- a/net-irc/irssi/irssi-1.2.0-r2.ebuild
+++ b/net-irc/irssi/irssi-1.2.0-r2.ebuild
@@ -43,13 +43,6 @@ RESTRICT="test"
 
 S="${WORKDIR}/${MY_P}"
 
-src_prepare() {
-   default
-   if has_version '>=dev-libs/libressl-2.7.3' ; then
-   eapply "${FILESDIR}"/libressl.patch
-   fi
-}
-
 src_configure() {
# Disable automagic dependency on dev-libs/libutf8proc (bug #677804)
export ac_cv_lib_utf8proc_utf8proc_version=no



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

2019-02-17 Thread Andreas Sturmlechner
commit: 8e0ca6709135e24518be2985b7b4d644c01428a1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 17 18:00:54 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 17 19:12:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e0ca670

dev-libs/libdbusmenu-qt: EAPI-7 bump, fix pkgconfig libdir path

Remove live sources cruft;  was dropped long ago even in kde overlay.
Remove test setup cruft when it doesn't work anyway.

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

 .../libdbusmenu-qt-0.9.3_pre20160218-cmake.patch   | 258 +
 .../libdbusmenu-qt-0.9.3_pre20160218-r3.ebuild |  36 +++
 2 files changed, 294 insertions(+)

diff --git 
a/dev-libs/libdbusmenu-qt/files/libdbusmenu-qt-0.9.3_pre20160218-cmake.patch 
b/dev-libs/libdbusmenu-qt/files/libdbusmenu-qt-0.9.3_pre20160218-cmake.patch
new file mode 100644
index 000..e4668a52fc9
--- /dev/null
+++ b/dev-libs/libdbusmenu-qt/files/libdbusmenu-qt-0.9.3_pre20160218-cmake.patch
@@ -0,0 +1,258 @@
+From 56669bd4e5ed21cfd2b0f5b94983792396695e5e Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Sun, 17 Feb 2019 19:10:55 +0100
+Subject: [PATCH] Use more GNUInstallDirs, fix pkgconfig libdir path, general
+ cleanup
+
+---
+ CMakeLists.txt| 45 ---
+ cmake/modules/FindQJSON.cmake |  2 +-
+ dbusmenu-qt-config.cmake.in   |  2 +-
+ dbusmenu-qt.pc.in |  6 ++---
+ src/CMakeLists.txt| 16 ++---
+ tests/CMakeLists.txt  | 10 
+ tools/testapp/CMakeLists.txt  |  2 +-
+ 7 files changed, 34 insertions(+), 49 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 72cbc45..2d757ec 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 2.8.11)
+ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} 
"${CMAKE_SOURCE_DIR}/cmake/modules")
+ 
+ # Build options
+-option(WITH_DOC "Build documentation (requires Doxygen)" ON)
++option(WITH_DOC "Build documentation (requires Doxygen)" OFF)
+ 
+ # Versions
+ ## Package version
+@@ -24,28 +24,8 @@ set(dbusmenu_qt_lib_PATCH_VERSION 0)
+ 
+ set(dbusmenu_qt_lib_VERSION 
${dbusmenu_qt_lib_SOVERSION}.${dbusmenu_qt_lib_API_VERSION}.${dbusmenu_qt_lib_PATCH_VERSION})
+ 
+-# Check if we want to explicitly select the Qt version to be used or 
autodetect
+-if (NOT USE_QT4 AND NOT USE_QT5)
+-# Autodetect, prefering Qt5
+-message(STATUS "Autodetecting Qt version to use")
+-find_package(Qt5Widgets QUIET)
+-if (Qt5Widgets_FOUND)
+-set(USE_QT5 TRUE)
+-endif()
+-endif()
+-
+ # Detect for which Qt version we're building
+-if (USE_QT5)
+-find_package(Qt5Widgets REQUIRED)
+-find_package(Qt5DBus REQUIRED)
+-include_directories(${Qt5Widgets_INCLUDE_DIRS} ${Qt5DBus_INCLUDE_DIRS})
+-find_package(Qt5Core REQUIRED)
+-set(CMAKE_AUTOMOC ON)
+-set(CMAKE_AUTOMOC_RELAXED_MODE ON)
+-set(CMAKE_POSITION_INDEPENDENT_CODE ON)
+-
+-set(QT_SUFFIX "qt5")
+-else()
++if (USE_QT4)
+ find_package(Qt4 REQUIRED)
+ include_directories(
+   ${QT_INCLUDE_DIR}
+@@ -55,6 +35,14 @@ else()
+   )
+ 
+ set(QT_SUFFIX "qt")
++else()
++find_package(Qt5 CONFIG REQUIRED Core DBus Widgets)
++include_directories(${Qt5Widgets_INCLUDE_DIRS} ${Qt5DBus_INCLUDE_DIRS})
++set(CMAKE_AUTOMOC ON)
++set(CMAKE_AUTOMOC_RELAXED_MODE ON)
++set(CMAKE_POSITION_INDEPENDENT_CODE ON)
++
++set(QT_SUFFIX "qt5")
+ endif()
+ 
+ include (CheckCXXCompilerFlag)
+@@ -76,9 +64,7 @@ endif (__DBUSMENU_HAVE_CXX11)
+ 
+ include(CMakePackageConfigHelpers)
+ include(GNUInstallDirs)
+-set(LIB_DESTINATION "${CMAKE_INSTALL_LIBDIR}")
+-set(CMAKECONFIG_INSTALL_DIR "${LIB_DESTINATION}/cmake/dbusmenu-${QT_SUFFIX}")
+-set(INCLUDE_INSTALL_DIR "include/dbusmenu-${QT_SUFFIX}")
++set(INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_INCLUDEDIR}/dbusmenu-${QT_SUFFIX}")
+ 
+ # dist targets
+ set(ARCHIVE_NAME libdbusmenu-${QT_SUFFIX}-${dbusmenu_qt_VERSION})
+@@ -103,7 +89,7 @@ add_dependencies(distcheck dist)
+ configure_file(dbusmenu-qt.pc.in ${CMAKE_BINARY_DIR}/dbusmenu-${QT_SUFFIX}.pc 
@ONLY)
+ 
+ install(FILES ${CMAKE_BINARY_DIR}/dbusmenu-${QT_SUFFIX}.pc
+-DESTINATION ${LIB_DESTINATION}/pkgconfig
++DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig
+ )
+ 
+ add_subdirectory(src)
+@@ -118,7 +104,7 @@ if(WITH_DOC)
+ )
+ 
+ install(DIRECTORY ${CMAKE_BINARY_DIR}/html/
+-DESTINATION share/doc/libdbusmenu-${QT_SUFFIX}-doc
++DESTINATION ${CMAKE_INSTALL_DOCDIR}
+ )
+ endif(WITH_DOC)
+ 
+@@ -126,8 +112,8 @@ endif(WITH_DOC)
+ configure_package_config_file(
+ dbusmenu-qt-config.cmake.in
+ ${CMAKE_BINARY_DIR}/dbusmenu-${QT_SUFFIX}-config.cmake
+-INSTALL_DESTINATION ${CMAKECONFIG_INSTALL_DIR}
++INSTALL_DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/dbusmenu-${QT_SUFFIX}
+ PATH_VARS INCLUDE_INSTALL_DIR
+ 

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

2019-02-17 Thread Matthew Thode
commit: 6b15f92b50a98208b902679c996805f29f019fcb
Author: Craig Andrews  gentoo  org>
AuthorDate: Sat Feb 16 20:45:30 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sun Feb 17 18:37:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b15f92b

dev-python/cryptography-vectors: 2.5 version bump

Closes: https://bugs.gentoo.org/678180
Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Craig Andrews  gentoo.org>
Signed-off-by: Matthew Thode  gentoo.org>

 dev-python/cryptography-vectors/Manifest   |  1 +
 .../cryptography-vectors-2.5.ebuild| 25 ++
 2 files changed, 26 insertions(+)

diff --git a/dev-python/cryptography-vectors/Manifest 
b/dev-python/cryptography-vectors/Manifest
index 4436a42315a..9abf9be43ab 100644
--- a/dev-python/cryptography-vectors/Manifest
+++ b/dev-python/cryptography-vectors/Manifest
@@ -2,3 +2,4 @@ DIST cryptography_vectors-2.2.2.tar.gz 27270814 BLAKE2B 
b57cfd402e85e34a1e52d034
 DIST cryptography_vectors-2.3.1.tar.gz 35308320 BLAKE2B 
47ec40722ed571f980030a4a8dcd35230a4c2b2c63320537a9b965ae39f4d85eb5528ac3ae017e40c099a1cb083feeaea201a8e2cb2fb5b30ce781f716bbfcb4
 SHA512 
d607571c6471a1a7aa391c0ae441937b88caec0497daaa539ddc71ba76da7c534f0cf6460fce1124035f9fe10e55c621d799586dedb7f3b5f3589ca6be5cb555
 DIST cryptography_vectors-2.3.tar.gz 35303908 BLAKE2B 
694f5a741ddedce2101632dcf165961d4706feaa5c8482235f5afb69f4257bfb4f8a9b8423213661de0da2d56ebf43cc7ba138a4bbf9462f367ebd5adf2620f7
 SHA512 
7c51b0c29c182c4da3265824a1b6e44c943bd41dfa89199cded963d0182a8ade678a560ec9ea13f6e8918119fcacf1c90d804cc90368e51cc5d430228448231c
 DIST cryptography_vectors-2.4.2.tar.gz 35087269 BLAKE2B 
2a8df1e98b6bba127bb8634ed27b43d4d99c77115d0206b4730feeaf6179d31e0b54eb38ad809e828c2ac6db2ecaa5cbc47f6ab2f99a888eb7e738380cc3b8ee
 SHA512 
cddd46916b6e5c9101589e6aaeaae0da61eabce9df21a196e09ed0c12bfa7da6e3afcddbb75c657f3370b2a3bc67ca862b22d6c7750301a867b6b03cb9bc83a3
+DIST cryptography_vectors-2.5.tar.gz 35094063 BLAKE2B 
93b97e5483892a43e69c3bc8d408e0e831246e530b2665fe372f1caa6284a2701c119a85113a85f86128f71e8be0148328f623c6a48f7d4cafc774ea3eb42da5
 SHA512 
cdd066c597731eb782a3288ddd83ab97b13097360399e8368c7c7c8ba16ff3e6269405885c2ad81aeb0f79d8ff84395aa00639b3453576ac0b57d37d8d36dbf7

diff --git a/dev-python/cryptography-vectors/cryptography-vectors-2.5.ebuild 
b/dev-python/cryptography-vectors/cryptography-vectors-2.5.ebuild
new file mode 100644
index 000..89d99dcbf88
--- /dev/null
+++ b/dev-python/cryptography-vectors/cryptography-vectors-2.5.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy pypy3 )
+
+inherit distutils-r1
+
+MY_PN=${PN/-/_}
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Test vectors for the cryptography package"
+HOMEPAGE="https://pypi.org/project/cryptography-vectors/";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x86-linux 
~x64-macos ~x64-solaris"
+IUSE=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND=""
+
+S=${WORKDIR}/${MY_P}



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

2019-02-17 Thread Matthew Thode
commit: b5de26cc6f9eb84678647069cdb825f7e2d0da3e
Author: Craig Andrews  gentoo  org>
AuthorDate: Sat Feb 16 20:46:30 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sun Feb 17 18:37:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5de26cc

dev-python/cryptography: 2.5 version bump

Closes: https://bugs.gentoo.org/678176
Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Craig Andrews  gentoo.org>
Signed-off-by: Matthew Thode  gentoo.org>

 dev-python/cryptography/Manifest|  1 +
 dev-python/cryptography/cryptography-2.5.ebuild | 67 +
 dev-python/cryptography/metadata.xml|  3 ++
 3 files changed, 71 insertions(+)

diff --git a/dev-python/cryptography/Manifest b/dev-python/cryptography/Manifest
index 6256a1bf6c3..119d7bd1fa6 100644
--- a/dev-python/cryptography/Manifest
+++ b/dev-python/cryptography/Manifest
@@ -2,3 +2,4 @@ DIST cryptography-2.2.2.tar.gz 443822 BLAKE2B 
d0fbaad78d172f1ba1bfa6edd64d2d5a0e
 DIST cryptography-2.3.1.tar.gz 449577 BLAKE2B 
66a94f68a6f5c14ff1e3316ea740bda8c34135bc4614a6a36880d4970d54cb72d69374555a6a89dd9a6794e35feed8fc4598ad071cce33b9515da1ada4c38d53
 SHA512 
384581238b5669dbf31fd1b1385ec2ff9c6d76e2b7612efb15f255e17a11a38474f84668e62ceaa39a146260f46cac743575c0a8ffedc1e40c7b2f90d7cb00b1
 DIST cryptography-2.3.tar.gz 449464 BLAKE2B 
7485c745f9c6512a5efce42181970deff19bd4420e91230d84b070cd77450a6805c56a2e37cda73b45c90ed969c8fdbb866a7cc9e53a6828a1ca6e45befd9de8
 SHA512 
75e14020da500fdbbd578f004b22ef3237844185329adf59288b29f1b3ee9dd2005a2c4a933fe8609a59d168012a9f687bab0f31ab39ed6ca325198aa9295e52
 DIST cryptography-2.4.2.tar.gz 468645 BLAKE2B 
80ecde87cf1568239977fbe4f835db98f689a7dc3646d44229b5b33932885c288d4274427f5d04eb74e9e064b01b11b7eac40fc6221ea2241371bca618cc66df
 SHA512 
800735fa86e9ad0f8517328d47e55dc79a2b86d8c7539ee2921c526085782d8dad5559bbee84f7effb42275503fa9a984b099a688c530c92f5672c423c0f1a28
+DIST cryptography-2.5.tar.gz 487694 BLAKE2B 
9502e7b7987ee0101ad8e5fcd09208034222a7f20b6b3bc3126c8b59081c9d8ecf872985d5fca191fc132dd6759afd4d11c0e0d39268627f35990c005a2095d3
 SHA512 
5e8f8818fcaa8143526006b027107b8afbdc925d40c846701e65b2c7ee02235b7e0918246515520ef2030b1c87bb157d0d403c28ad68c31459d677af7e2d0b3f

diff --git a/dev-python/cryptography/cryptography-2.5.ebuild 
b/dev-python/cryptography/cryptography-2.5.ebuild
new file mode 100644
index 000..c6cccef62a5
--- /dev/null
+++ b/dev-python/cryptography/cryptography-2.5.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy{,3} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1 flag-o-matic
+
+DESCRIPTION="Library providing cryptographic recipes and primitives"
+HOMEPAGE="https://github.com/pyca/cryptography/ 
https://pypi.org/project/cryptography/";
+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 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+IUSE="libressl idna test"
+
+# the openssl 1.0.2l-r1 needs to be updated again :(
+# It'd theb be able to go into the || section again
+#=dev-libs/openssl-1.0.2l-r1:0
+# the following is the original section, disallowing bindist entirely
+#!libressl? ( >=dev-libs/openssl-1.0.2:0=[-bindist(-)] )
+RDEPEND="
+   !libressl? (
+   dev-libs/openssl:0= (
+   || (
+   dev-libs/openssl:0[-bindist(-)]
+   >=dev-libs/openssl-1.0.2o-r6:0
+   )
+   )
+   )
+   libressl? ( dev-libs/libressl:0= )
+   $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7 
pypy{,3})
+   idna? ( >=dev-python/idna-2.1[${PYTHON_USEDEP}] )
+   >=dev-python/asn1crypto-0.21.0[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/six-1.4.1[${PYTHON_USEDEP}]
+   virtual/python-ipaddress[${PYTHON_USEDEP}]
+   "
+DEPEND="${RDEPEND}
+   >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '>=dev-python/cffi-1.8:=[${PYTHON_USEDEP}]' 
'python*')
+   $(python_gen_cond_dep '!~dev-python/cffi-1.11.3[${PYTHON_USEDEP}]' 
'python*')
+   test? (
+   ~dev-python/cryptography-vectors-${PV}[${PYTHON_USEDEP}]
+   dev-python/hypothesis[${PYTHON_USEDEP}]
+   dev-python/iso8601[${PYTHON_USEDEP}]
+   dev-python/pretend[${PYTHON_USEDEP}]
+   dev-python/pyasn1-modules[${PYTHON_USEDEP}]
+   >=dev-python/pytest-2.9.0[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   )"
+
+DOCS=( AUTHORS.rst CONTRIBUTING.rst README.rst )
+
+PATCHES=(
+)
+
+python_configure_all() {
+   append-cflags $(test-flag

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

2019-02-17 Thread Aaron Bauman
commit: 1368b67c3b261bbc5e3f863afa14c466abd5bf00
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Feb 17 18:36:38 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Feb 17 18:36:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1368b67c

dev-libs/libressl: drop old

Signed-off-by: Aaron Bauman  gentoo.org>

 dev-libs/libressl/Manifest  |  4 ---
 dev-libs/libressl/libressl-2.7.4.ebuild | 53 -
 dev-libs/libressl/libressl-2.8.0.ebuild | 53 -
 dev-libs/libressl/libressl-2.8.1.ebuild | 53 -
 dev-libs/libressl/libressl-2.8.2.ebuild | 53 -
 5 files changed, 216 deletions(-)

diff --git a/dev-libs/libressl/Manifest b/dev-libs/libressl/Manifest
index b426b2929d6..4f5caa7d95b 100644
--- a/dev-libs/libressl/Manifest
+++ b/dev-libs/libressl/Manifest
@@ -1,8 +1,4 @@
 DIST libressl-2.6.5.tar.gz 3225481 BLAKE2B 
fcdf0d8b4b68fdb6c17299f4b9897c84f51ec3407abc6c1bf8d474c4424161c563667ca1fb26c45dd20a0e895457e9210b7bd0539581472b94d594cc32a68191
 SHA512 
0601c73bb5c3d149df7eca3566831f1b35713aa16a15788a291922fce0bffa1ba0bc6ea9cac1fcecfd980009f2292b08b2a57d66b517fc1bc8c7364a24dbbd9d
-DIST libressl-2.7.4.tar.gz 3359012 BLAKE2B 
07b98fdc6bcdf9d888fb1b1d301c95ab6f998fb7ff2c6dfd2ecf4558768e200dfa96c394e5b321bc27ba390e92646c319ef5be5915872a7c086de8017ff8f855
 SHA512 
1cd82a1bff4f655251b5feb0c850f4164e0fd548e4b404407370f74dcc75c205f42efc7787a157eecac84cbbe46af48cb63f46b3fef75f4a0a9ea19a5863a691
 DIST libressl-2.7.5.tar.gz 3539591 BLAKE2B 
0cda7307f01cea21584b3e814a20053ab128016f0b639856eb04b52f91156c74b8fdba485401e099f472ae7d9a35e9be54d169e3ddf743540595c2ffa0f979ff
 SHA512 
00828dd115f6395186ce4c9cadb604612763f67f2ad2236a331062add8115f6494a655cbec237ae069e373ffb915ed4025c993e06456c3da69b279e5f7e2b8d4
-DIST libressl-2.8.0.tar.gz 3377310 BLAKE2B 
2a2027d86e99a09a349f3f123223a8544f49410ae53dbf4b97f898895758d00b1e8f73889f0b0ad8cec6f7ba5e85f033080d0e4af92b0fd10d048136337a0213
 SHA512 
3004cd78a9d52dece9f24272389778d6afca549de245852004ddd57b01a0c3a6fa1cee2d56980d067d23b3ead7f7a4aa6bcf4e0c57a56f5f7d9fd3f8d23f3ca2
-DIST libressl-2.8.1.tar.gz 3375642 BLAKE2B 
39b550e09cfe286e92c6b1168525bac927b37ed7c03db159e456e71abba1d411a78c7a3ad9084b28d41a3f132a959ea82e877ed159daa2c69fa59fef67fec1b8
 SHA512 
57af2c7a1a8522dca25c4e6371cb44f5ab074be1aded153e6e5fca4fa0844518710f7ce834d4dd309086686c492f10fca83f4d45c084eb49607cb5861f07ac99
-DIST libressl-2.8.2.tar.gz 3373599 BLAKE2B 
61b774129ef93081b4a7c94a66fe696520a3f2922d58950e907ad9f047c9fa6495d7753c71d0bb3aec6aa266f16b75fd1d8d485fc3988b97d3d67893dd3db319
 SHA512 
bfcc55904efbb591c9edd56169d611e735108dfc6a49f771a64ad1ddd028d3a658f5593116c379911edc77f95eba475daec9c0adea0549e8b4b94d1072adf733
 DIST libressl-2.8.3.tar.gz 3366196 BLAKE2B 
e32c097b31998d68a31266fbbf3624d5ab8ca716f8c53e423bcf09b3a8ab3542c92a99e259ded7b86f99b45cc199cd44791520a609f18c35d150365de5768eec
 SHA512 
3967e08b3dc2277bf77057ea1f11148df7f96a2203cd21cf841902f2a1ec11320384a001d01fa58154d35612f7981bf89d5b1a60a2387713d5657677f76cc682
 DIST libressl-2.9.0.tar.gz 3400383 BLAKE2B 
652ac9ff962fd187563f2f6f9ea423d682f743c8443954ad3a8adc810530711482705f0cac1a805e2f85697ed1fed156c80da913dc07c8c13cd6ce78e44b6c4d
 SHA512 
db7fec664bef8d76204ca691c11df236abce3c85b2a51011eec5bd302e273b62fa3cfce0430980915c3f3ce34176d5ef9c187902f0b39d7fc151e69e552b499c

diff --git a/dev-libs/libressl/libressl-2.7.4.ebuild 
b/dev-libs/libressl/libressl-2.7.4.ebuild
deleted file mode 100644
index 288540105ec..000
--- a/dev-libs/libressl/libressl-2.7.4.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit multilib-minimal
-
-DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
-HOMEPAGE="https://www.libressl.org/";
-SRC_URI="https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz";
-
-LICENSE="ISC openssl"
-# Reflects ABI of libcrypto.so and libssl.so.  Since these can differ,
-# we'll try to use the max of either.  However, if either change between
-# versions, we have to change the subslot to trigger rebuild of consumers.
-SLOT="0/45"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
-IUSE="+asm static-libs test"
-REQUIRED_USE="test? ( static-libs )"
-
-RDEPEND="!dev-libs/openssl:0"
-DEPEND="${RDEPEND}"
-PDEPEND="app-misc/ca-certificates"
-
-src_prepare() {
-   touch crypto/Makefile.in
-
-   sed -i \
-   -e '/^[ \t]*CFLAGS=/s#-g ##' \
-   -e '/^[ \t]*CFLAGS=/s#-g"#"#' \
-   -e '/^[ \t]*CFLAGS=/s#-O2 ##' \
-   -e '/^[ \t]*CFLAGS=/s#-O2"#"#' \
-   -e '/^[ \t]*USER_CFLAGS=/s#-O2 ##' \
-   -e '/^[ \t]*USER_CFLAGS=/s#-O2"#"#' \
-   configure || die "fixing CFLAGS failed"
-
-   eapply_user
-}
-
-multilib_src_configure() {
-  

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

2019-02-17 Thread Aaron Bauman
commit: 746da9a0f0e179bf6eecc41d361fcbac0ccdc388
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Feb 17 18:30:35 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Feb 17 18:32:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=746da9a0

dev-libs/libressl: amd64 stable wrt bug #653516

Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/dev-libs/libressl/libressl-2.8.3.ebuild 
b/dev-libs/libressl/libressl-2.8.3.ebuild
index 18d0296fcb2..fc47b865d76 100644
--- a/dev-libs/libressl/libressl-2.8.3.ebuild
+++ b/dev-libs/libressl/libressl-2.8.3.ebuild
@@ -14,7 +14,7 @@ LICENSE="ISC openssl"
 # we'll try to use the max of either.  However, if either change between
 # versions, we have to change the subslot to trigger rebuild of consumers.
 SLOT="0/46"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
 IUSE="+asm static-libs test"
 REQUIRED_USE="test? ( static-libs )"
 



[gentoo-commits] repo/gentoo:master commit in: app-emulation/cri-o/

2019-02-17 Thread Zac Medico
commit: 2b2187c9a8da46359d56dd44bec30807b6c3180e
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Feb 17 16:44:14 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Feb 17 18:29:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b2187c9

app-emulation/cri-o: HOMEPAGE: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/11087
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/cri-o/cri-o-1.10.1.ebuild | 4 ++--
 app-emulation/cri-o/cri-o-1.10.6.ebuild | 4 ++--
 app-emulation/cri-o/cri-o-1.13.0.ebuild | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/app-emulation/cri-o/cri-o-1.10.1.ebuild 
b/app-emulation/cri-o/cri-o-1.10.1.ebuild
index d0e7f55b7bb..d85dbb3f836 100644
--- a/app-emulation/cri-o/cri-o-1.10.1.ebuild
+++ b/app-emulation/cri-o/cri-o-1.10.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ EGO_PN="github.com/kubernetes-incubator/${PN}"
 inherit golang-vcs-snapshot systemd
 
 DESCRIPTION="OCI-based implementation of Kubernetes Container Runtime 
Interface"
-HOMEPAGE="http://cri-o.io/";
+HOMEPAGE="https://cri-o.io/";
 SRC_URI="https://github.com/kubernetes-incubator/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"

diff --git a/app-emulation/cri-o/cri-o-1.10.6.ebuild 
b/app-emulation/cri-o/cri-o-1.10.6.ebuild
index 6d2d5d4a82c..dbb1db95a32 100644
--- a/app-emulation/cri-o/cri-o-1.10.6.ebuild
+++ b/app-emulation/cri-o/cri-o-1.10.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ EGO_PN="github.com/kubernetes-incubator/${PN}"
 inherit golang-vcs-snapshot systemd
 
 DESCRIPTION="OCI-based implementation of Kubernetes Container Runtime 
Interface"
-HOMEPAGE="http://cri-o.io/";
+HOMEPAGE="https://cri-o.io/";
 SRC_URI="https://github.com/kubernetes-incubator/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"

diff --git a/app-emulation/cri-o/cri-o-1.13.0.ebuild 
b/app-emulation/cri-o/cri-o-1.13.0.ebuild
index 32f4f437430..6b934dd9e8e 100644
--- a/app-emulation/cri-o/cri-o-1.13.0.ebuild
+++ b/app-emulation/cri-o/cri-o-1.13.0.ebuild
@@ -9,7 +9,7 @@ EGO_PN="github.com/kubernetes-sigs/${PN}"
 inherit golang-vcs-snapshot systemd
 
 DESCRIPTION="OCI-based implementation of Kubernetes Container Runtime 
Interface"
-HOMEPAGE="http://cri-o.io/";
+HOMEPAGE="https://cri-o.io/";
 SRC_URI="https://github.com/kubernetes-sigs/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="Apache-2.0"



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

2019-02-17 Thread Virgil Dupras
commit: c5485592ba74cf4e7b8ed1bdc173eae2d8ef3cbd
Author: Virgil Dupras  gentoo  org>
AuthorDate: Sun Feb 17 18:10:11 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Sun Feb 17 18:10:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5485592

dev-python/python3-lxc: remove old

Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-python/python3-lxc/Manifest |  1 -
 dev-python/python3-lxc/python3-lxc-3.0.1.ebuild | 22 --
 2 files changed, 23 deletions(-)

diff --git a/dev-python/python3-lxc/Manifest b/dev-python/python3-lxc/Manifest
index 41fdf70d941..f886b12ea67 100644
--- a/dev-python/python3-lxc/Manifest
+++ b/dev-python/python3-lxc/Manifest
@@ -1,2 +1 @@
-DIST python3-lxc-3.0.1.tar.gz 27424 BLAKE2B 
ffdf128e06d7b256652588af7c464045479ce907d2119dfe9780737c7bd5f3008c01d834a79f63932bfa51e3094a9d40af46c4cb6c3be72108205d65a8ee3d11
 SHA512 
7e6b6cb9a02e5af8b3fc8aeefff2954c68d2d1154751fa97a70bce86131021571e15db86bb0d6900a93dda78247e37b75cdfe250bf4d1b7548dc8383ed3d45f6
 DIST python3-lxc-3.0.2.tar.gz 27300 BLAKE2B 
dc4ba71b156eb0f257bf9d717f07f22afee3d0001b709341d9091a1a75d237c174f613a93b6ecf7c69b4e6cc75187316e656a02a1d52f0e9970b8f3af6ad
 SHA512 
2fc776decf6248be39f9e8a607a967acf180f3a07e45fadd6be4450f01caa4a854f217dcf7e81e27b5b838c2cea04ef09c8ab8b87c5be5091185bba2eb6b6d23

diff --git a/dev-python/python3-lxc/python3-lxc-3.0.1.ebuild 
b/dev-python/python3-lxc/python3-lxc-3.0.1.ebuild
deleted file mode 100644
index 4d7d4c4b10d..000
--- a/dev-python/python3-lxc/python3-lxc-3.0.1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for LXC"
-HOMEPAGE="https://linuxcontainers.org/lxc/";
-SRC_URI="https://linuxcontainers.org/downloads/lxc/${P}.tar.gz";
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
-IUSE=""
-
-RDEPEND=">=app-emulation/lxc-3.0"
-
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: app-emulation/lxc-templates/

2019-02-17 Thread Virgil Dupras
commit: dc5b9b90aa80d80bca3009cb58ff41f9800a348a
Author: Virgil Dupras  gentoo  org>
AuthorDate: Sun Feb 17 18:06:34 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Sun Feb 17 18:10:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc5b9b90

app-emulation/lxc-templates: remove old

Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-emulation/lxc-templates/Manifest   |  1 -
 .../lxc-templates/lxc-templates-3.0.1.ebuild   | 28 --
 2 files changed, 29 deletions(-)

diff --git a/app-emulation/lxc-templates/Manifest 
b/app-emulation/lxc-templates/Manifest
index 94c37e69f3d..c25ef6c9343 100644
--- a/app-emulation/lxc-templates/Manifest
+++ b/app-emulation/lxc-templates/Manifest
@@ -1,2 +1 @@
-DIST lxc-templates-3.0.1.tar.gz 256074 BLAKE2B 
8a5dab2d69fbc29e0246a0853690726c07d24e0fe6d4e761d8ec8b4559cdf285a82e17c8f4d2a6bf2355896c667000d4341511b3c5f1805a55849b4812eb7efe
 SHA512 
cae47b670654dc6c143827d196f0477c5354cb6d81ae4028192622fb73912e8bb3b62a0a68786e9212885bb52b593c6e742cfbfefb70ec33260d599e5d5c8290
 DIST lxc-templates-3.0.3.tar.gz 257085 BLAKE2B 
b53a057e1da23997318c2bcee095fbffb97c37b656eec9643e5a5ac2e7bdfeb9599710a8ccfb5d61aaf523d754f1dbbe7748c4cd1990205c6e28a17cd5e61ee0
 SHA512 
3e9d5304f5e06580eeb766570ddfebb0c80061c2d7e47c9ea37d834fe0cf4fabe7eedd667e4937df3f2451bc3e7aa1e98a1b386f3b19964dc218ff0e21011632

diff --git a/app-emulation/lxc-templates/lxc-templates-3.0.1.ebuild 
b/app-emulation/lxc-templates/lxc-templates-3.0.1.ebuild
deleted file mode 100644
index df31caace62..000
--- a/app-emulation/lxc-templates/lxc-templates-3.0.1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Old style template scripts for LXC"
-HOMEPAGE="https://linuxcontainers.org/";
-SRC_URI="https://linuxcontainers.org/downloads/lxc/${P}.tar.gz";
-
-KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
-
-LICENSE="LGPL-3"
-SLOT="0"
-
-RDEPEND="
-   >=app-emulation/lxc-3.0"
-
-DEPEND="${RDEPEND}"
-
-PATCHES=( "${FILESDIR}/${P}-no-cache-dir.patch" )
-DOCS=()
-
-src_prepare() {
-   default
-   eautoreconf
-}



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

2019-02-17 Thread Sergei Trofimovich
commit: 3844c5e5291771b765ac1cd5f734dec55fdf66e5
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Feb 17 18:06:05 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Feb 17 18:06:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3844c5e5

app-admin/conky: stable 1.10.8-r4 for ppc, bug #674700

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.60, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-admin/conky/conky-1.10.8-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/conky/conky-1.10.8-r4.ebuild 
b/app-admin/conky/conky-1.10.8-r4.ebuild
index a4bd23153b0..8a3851bbb55 100644
--- a/app-admin/conky/conky-1.10.8-r4.ebuild
+++ b/app-admin/conky/conky-1.10.8-r4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/brndnmtthws/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="GPL-3 BSD LGPL-2.1 MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 ~arm ppc ppc64 sparc x86"
 IUSE="apcupsd cmus curl eve hddtemp ical iconv imlib iostats ipv6 irc
lua-cairo lua-imlib lua-rsvg math moc mpd mysql nano-syntax ncurses
nvidia +portmon pulseaudio rss systemd thinkpad truetype vim-syntax



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

2019-02-17 Thread Sergei Trofimovich
commit: f6e33403c395ad74c177bcf4476650284791139a
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Feb 17 18:07:33 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Feb 17 18:07:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6e33403

dev-cpp/eigen: stable 3.3.7 for ppc, bug #675662

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.60, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-cpp/eigen/eigen-3.3.7.ebuild b/dev-cpp/eigen/eigen-3.3.7.ebuild
index a3682df6671..5b271eb11d0 100644
--- a/dev-cpp/eigen/eigen-3.3.7.ebuild
+++ b/dev-cpp/eigen/eigen-3.3.7.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://bitbucket.org/eigen/eigen/get/${PV}.tar.bz2 
-> ${P}.tar.bz2"
 
 LICENSE="MPL-2.0"
 SLOT="3"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ppc ~ppc64 ~sparc x86 ~amd64-linux 
~x86-linux"
 IUSE="altivec c++11 cuda debug doc neon openmp test" #zvector vsx
 RESTRICT="!test? ( test )"
 



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

2019-02-17 Thread Sergei Trofimovich
commit: 63c35e03af2be6b08feac283311e10cc8046a71d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Feb 17 18:04:15 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Feb 17 18:04:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63c35e03

dev-python/attrs: stable 18.2.0 for ppc, bug #669630

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.60, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-python/attrs/attrs-18.2.0.ebuild 
b/dev-python/attrs/attrs-18.2.0.ebuild
index cfbcb7cb13f..501e922e718 100644
--- a/dev-python/attrs/attrs-18.2.0.ebuild
+++ b/dev-python/attrs/attrs-18.2.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 s390 ~sh 
sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 s390 ~sh 
sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



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

2019-02-17 Thread Sergei Trofimovich
commit: 82e9bd0a295e472c803bf88ce229aba7f48f8743
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Feb 17 18:04:20 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Feb 17 18:04:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82e9bd0a

dev-python/py: stable 1.5.4 for ppc, bug #669630

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.60, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-python/py/py-1.5.4.ebuild b/dev-python/py/py-1.5.4.ebuild
index 746a50673d8..1f27267853b 100644
--- a/dev-python/py/py-1.5.4.ebuild
+++ b/dev-python/py/py-1.5.4.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 ~m68k ~mips ~ppc ~ppc64 s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 RDEPEND=""



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

2019-02-17 Thread Sergei Trofimovich
commit: 5ff16ac4380cf37a1d2bc568c5246b05cb010a27
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Feb 17 18:04:25 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Feb 17 18:04:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ff16ac4

dev-python/pytest: stable 3.4.2 for ppc, bug #669630

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.60, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-python/pytest/pytest-3.4.2.ebuild 
b/dev-python/pytest/pytest-3.4.2.ebuild
index 10dd7e332ab..906a6a78664 100644
--- a/dev-python/pytest/pytest-3.4.2.ebuild
+++ b/dev-python/pytest/pytest-3.4.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-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 s390 sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc test"
 
 # When bumping, please check setup.py for the proper py version



[gentoo-commits] repo/gentoo:master commit in: net-im/pidgin/

2019-02-17 Thread Lars Wendler
commit: 05736e5cdde9e44ebeb40dafef124f94ac30fc69
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb 17 18:01:27 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb 17 18:01:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05736e5c

net-im/pidgin: Removed old.

Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 net-im/pidgin/Manifest |   1 -
 net-im/pidgin/pidgin-2.12.0.ebuild | 268 -
 2 files changed, 269 deletions(-)

diff --git a/net-im/pidgin/Manifest b/net-im/pidgin/Manifest
index dcf2864d2ff..1793616a9ac 100644
--- a/net-im/pidgin/Manifest
+++ b/net-im/pidgin/Manifest
@@ -1,4 +1,3 @@
 DIST pidgin-2.10.9-irc_join_sleep.patch 534 BLAKE2B 
0215cebb93993e19e700e4d4974351ab5e9a00ea094775076d8f439569b34c0ec2faaed360965867df58bc42677516983ce11a2601dd322c1bdf2f288253a5b8
 SHA512 
8de0d6f05e48cd5a3e894576e06c7fb82e4bfc778cce8bb179fa22e2a05f5c2390a0e4c5b626ee4b910a18eab170d8f4be200f435ce408a86575af99e51e3bdf
-DIST pidgin-2.12.0.tar.bz2 9270704 BLAKE2B 
d12b84c4ff94e4dec67bf5e13607510a4ccd54b81868a244a5078f760b2c1178670fa25149478032437dcee0641547993c027e34e42b5af96e222e14a43d901f
 SHA512 
e87b39888432982ee36332fd14b272f49f7974de9e8694f7fe3bec2821748d6e6026ac5a63615a93386a033d6ee7c4de5ae0a86b725f63b9cc55650f0ab94b06
 DIST pidgin-2.13.0.tar.bz2 8994457 BLAKE2B 
32be31509a90b924fba4a4dbaba304580d88dfc6d3bbe0c88ef12eef381f70e031af1a55ada2abfb6968a9967a9fdadfa69973482b80dea7bb554a983a96fa12
 SHA512 
68b3d1eefee111544c7eb347386d0aea4f47c3e320d5963a4e0d833ed6af7b1be243a7bcd6a38c9234b58601d10a9aebf8541f1d97decfeca754fa78dc693047
 DIST pidgin-eds-3.6.patch.bz2 2352 BLAKE2B 
1d69dc55f43b9efe5d5278a017642702d67a297fe2587467ec0fdca7f9888e26640efe9ac2a18f77ae9c523bf125a2cec6d0bf621f0b2b16f55d30df1bf470df
 SHA512 
a0195679ab55ed9c7ea18ace6dbf0fc994698f1f4eea9d8335dfdcdcd6a68975c0191bd22f150bf5a9a0a691ce7e9e73d79598e1e8be541efa1d9824a633d877

diff --git a/net-im/pidgin/pidgin-2.12.0.ebuild 
b/net-im/pidgin/pidgin-2.12.0.ebuild
deleted file mode 100644
index 7ae41c6756a..000
--- a/net-im/pidgin/pidgin-2.12.0.ebuild
+++ /dev/null
@@ -1,268 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-GENTOO_DEPEND_ON_PERL=no
-PYTHON_COMPAT=( python2_7 )
-
-inherit autotools flag-o-matic gnome2 toolchain-funcs multilib perl-module 
python-single-r1
-
-DESCRIPTION="GTK Instant Messenger client"
-HOMEPAGE="http://pidgin.im/";
-SRC_URI="
-   mirror://sourceforge/${PN}/${P}.tar.bz2
-   https://dev.gentoo.org/~polynomial-c/${PN}-eds-3.6.patch.bz2
-   
https://gist.githubusercontent.com/imcleod/77f38d11af11b2413ada/raw/46e9d6cb4d2f839832dad2d697bb141a88028e04/pidgin-irc-join-sleep.patch
 -> ${PN}-2.10.9-irc_join_sleep.patch"
-
-LICENSE="GPL-2"
-SLOT="0/2" # libpurple version
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~x86-macos"
-IUSE="dbus debug doc eds gadu gnutls +gstreamer +gtk idn meanwhile pie"
-IUSE+=" networkmanager nls perl silc tcl tk spell sasl ncurses"
-IUSE+=" groupwise prediction python +xscreensaver zephyr zeroconf" # mono"
-IUSE+=" aqua"
-
-# dbus requires python to generate C code for dbus bindings (thus DEPEND only).
-# finch uses libgnt that links with libpython - {R,}DEPEND. But still there is
-# no way to build dbus and avoid libgnt linkage with python. If you want this
-# send patch upstream.
-# purple-url-handler and purple-remote require dbus-python thus in reality we
-# rdepend on python if dbus enabled. But it is possible to separate this dep.
-RDEPEND="
-   >=dev-libs/glib-2.16
-   >=dev-libs/libxml2-2.6.18
-   ncurses? (
-   sys-libs/ncurses:0=[unicode]
-   dbus? ( ${PYTHON_DEPS} )
-   python? ( ${PYTHON_DEPS} )
-   )
-   gtk? (
-   >=x11-libs/gtk+-2.10:2[aqua=]
-   x11-libs/libSM
-   xscreensaver? ( x11-libs/libXScrnSaver )
-   spell? ( >=app-text/gtkspell-2.0.2:2 )
-   eds? ( >=gnome-extra/evolution-data-server-3.6:= )
-   prediction? ( >=dev-db/sqlite-3.3:3 )
-   )
-   gstreamer? (
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   >=net-libs/farstream-0.2.7:0.2
-   )
-   zeroconf? ( net-dns/avahi[dbus] )
-   dbus? (
-   >=dev-libs/dbus-glib-0.71
-   >=sys-apps/dbus-0.90
-   dev-python/dbus-python
-   )
-   perl? ( >=dev-lang/perl-5.16:= )
-   gadu? (
-   || (
-   >=net-libs/libgadu-1.11.0[ssl,gnutls]
-   >=net-libs/libgadu-1.11.0[-ssl]
-   )
-   )
-   gnutls? ( net-libs/gnutls )
-   !gnutls? (
-   dev-libs/nspr
-   dev-libs/nss
-   )
-   meanwhile? ( net-libs/meanwhile )
-

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

2019-02-17 Thread Sergei Trofimovich
commit: 9a171afb351e1ab56e4e2d6d5ab2b96645a0d4a0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Feb 17 18:01:18 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Feb 17 18:01:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a171afb

dev-python/python3-lxc: stable 3.0.2 for ppc64, bug #669032

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.60, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-python/python3-lxc/python3-lxc-3.0.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/python3-lxc/python3-lxc-3.0.2.ebuild 
b/dev-python/python3-lxc/python3-lxc-3.0.2.ebuild
index c8a10b5bd63..f24647ca360 100644
--- a/dev-python/python3-lxc/python3-lxc-3.0.2.ebuild
+++ b/dev-python/python3-lxc/python3-lxc-3.0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ 
SRC_URI="https://linuxcontainers.org/downloads/lxc/${P}.tar.gz";
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
 IUSE=""
 
 RDEPEND=">=app-emulation/lxc-3.0"



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

2019-02-17 Thread Sergei Trofimovich
commit: 066a07fc6555de9b7a977133635ef19f17978e7c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Feb 17 17:59:32 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Feb 17 17:59:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=066a07fc

app-emulation/lxc: stable 3.0.3 for ppc64, bug #669030

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.60, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-emulation/lxc/lxc-3.0.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/lxc/lxc-3.0.3.ebuild 
b/app-emulation/lxc/lxc-3.0.3.ebuild
index 7b8927d98fb..bf7dc89a778 100644
--- a/app-emulation/lxc/lxc-3.0.3.ebuild
+++ b/app-emulation/lxc/lxc-3.0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ DESCRIPTION="LinuX Containers userspace utilities"
 HOMEPAGE="https://linuxcontainers.org/";
 SRC_URI="https://linuxcontainers.org/downloads/lxc/${P}.tar.gz";
 
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
 
 LICENSE="LGPL-3"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: app-emulation/lxc-templates/

2019-02-17 Thread Sergei Trofimovich
commit: 50c021a4fb00dd9a1a940c990437acbde1da5471
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Feb 17 17:59:35 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Feb 17 17:59:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50c021a4

app-emulation/lxc-templates: stable 3.0.3 for ppc64, bug #669030

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.60, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-emulation/lxc-templates/lxc-templates-3.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/lxc-templates/lxc-templates-3.0.3.ebuild 
b/app-emulation/lxc-templates/lxc-templates-3.0.3.ebuild
index c52d602d521..38950a11f0a 100644
--- a/app-emulation/lxc-templates/lxc-templates-3.0.3.ebuild
+++ b/app-emulation/lxc-templates/lxc-templates-3.0.3.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="Old style template scripts for LXC"
 HOMEPAGE="https://linuxcontainers.org/";
 SRC_URI="https://linuxcontainers.org/downloads/lxc/${P}.tar.gz";
 
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
 
 LICENSE="LGPL-3"
 SLOT="0"



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

2019-02-17 Thread Sergei Trofimovich
commit: 641622b657657b3528e871d15f8547c8201a49bc
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Feb 17 17:58:39 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Feb 17 17:59:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=641622b6

app-text/lv: drop old

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

 app-text/lv/lv-4.51-r3.ebuild | 49 ---
 1 file changed, 49 deletions(-)

diff --git a/app-text/lv/lv-4.51-r3.ebuild b/app-text/lv/lv-4.51-r3.ebuild
deleted file mode 100644
index f5f4561fe2c..000
--- a/app-text/lv/lv-4.51-r3.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-inherit autotools eutils toolchain-funcs
-
-MY_P="${PN}${PV//./}"
-
-DESCRIPTION="Powerful Multilingual File Viewer"
-#HOMEPAGE="http://www.ff.iij4u.or.jp/~nrt/lv/";
-HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage";
-SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos"
-IUSE=""
-
-RDEPEND="!app-editors/levee
-   sys-libs/ncurses"
-DEPEND="${RDEPEND}
-   dev-lang/perl"
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-gentoo.patch
-   epatch "${FILESDIR}"/${PN}-headers.patch
-   epatch "${FILESDIR}"/${PN}-tinfo.patch
-   epatch "${FILESDIR}"/${PN}-xz.patch
-
-   cd "${S}"/src
-   mv configure.{in,ac}
-   eautoreconf
-}
-
-src_configure() {
-   ECONF_SOURCE=src econf
-}
-
-src_compile() {
-   emake CC="$(tc-getCC)"
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-   dodoc README hello.sample
-   dohtml index.html relnote.html hello.sample.gif
-}



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

2019-02-17 Thread Mikle Kolyada
commit: 411bf64e0db2ac73f16f2f2dbf49d92590ff0219
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Feb 17 17:54:57 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Feb 17 17:57:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=411bf64e

app-office/libreoffice: x86 stable wrt bug #676956

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="x86"

 app-office/libreoffice/libreoffice-6.1.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/libreoffice/libreoffice-6.1.5.2.ebuild 
b/app-office/libreoffice/libreoffice-6.1.5.2.ebuild
index 0fc6fa5c771..4bbb1529ce9 100644
--- a/app-office/libreoffice/libreoffice-6.1.5.2.ebuild
+++ b/app-office/libreoffice/libreoffice-6.1.5.2.ebuild
@@ -78,7 +78,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}
 LICENSE="|| ( LGPL-3 MPL-1.1 )"
 SLOT="0"
 [[ ${MY_PV} == ** ]] || \
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux"
 
 COMMON_DEPEND="${PYTHON_DEPS}
app-arch/unzip



  1   2   3   4   >