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

2019-02-04 Thread Matt Turner
commit: 249ed2908251727e28fcfe44538c207f3fa47ae9
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Feb  5 02:58:51 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Feb  5 02:58:51 2019 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=249ed290

catalyst 3.0.4

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

 catalyst/version.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/catalyst/version.py b/catalyst/version.py
index a22bd6f4..fbbef174 100644
--- a/catalyst/version.py
+++ b/catalyst/version.py
@@ -12,7 +12,7 @@ import os
 
 from snakeoil.version import get_git_version as get_ver
 
-__version__= "3.0.3"
+__version__= "3.0.4"
 _ver = None
 
 



[gentoo-commits] repo/gentoo:master commit in: app-admin/gopass/files/, app-admin/gopass/

2019-02-04 Thread Tim Harder
commit: 365e33ca24998415fd62bea5db87337d8cb7c69f
Author: Tim Harder  gentoo  org>
AuthorDate: Thu Jan 31 19:49:19 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Tue Feb  5 00:17:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=365e33ca

app-admin/gopass: version bump to 1.8.4

Signed-off-by: Tim Harder  gentoo.org>

 app-admin/gopass/Manifest  |  1 +
 app-admin/gopass/files/gopass-1.8.4-xc-tests.patch | 28 ++
 app-admin/gopass/gopass-1.8.4.ebuild   | 45 ++
 3 files changed, 74 insertions(+)

diff --git a/app-admin/gopass/Manifest b/app-admin/gopass/Manifest
index f87ee99549b..38d3a0f6d20 100644
--- a/app-admin/gopass/Manifest
+++ b/app-admin/gopass/Manifest
@@ -1 +1,2 @@
 DIST gopass-1.8.3.tar.gz 6374004 BLAKE2B 
1f3b66e8a631d94fbbb33347009a4614f180d7bd30f3d73e98f476fc81a3f5f0aef15c80705b1b4e871f333a3366cc051eb41785082bb90420a5d34f38e35e16
 SHA512 
bcf8e4cdb37355ae43d0d6d21e3248d3547fb3f1892bb2e8d5d8ddc47a784f75f4f404429733ac824bd66d719fe63fef7a1d58facde65a6d1820ecf14e7bd77e
+DIST gopass-1.8.4.tar.gz 6437993 BLAKE2B 
f01ded172ce4d39208325628e6cf9d001e6f97c23b604fd82b55c00996e3cea5f2597bab624aa333f88ac79f53ed34bc72c6b998fbded4346b36bf4131390693
 SHA512 
9884ddc9ec570261d4de2b873228092e0e503f47ffa62e034959a58aa475f16427944c8fe66f17f48e2f9f23ca6ea900950996b4ad7ba1e5b42dde31701839a9

diff --git a/app-admin/gopass/files/gopass-1.8.4-xc-tests.patch 
b/app-admin/gopass/files/gopass-1.8.4-xc-tests.patch
new file mode 100644
index 000..5780f17bf34
--- /dev/null
+++ b/app-admin/gopass/files/gopass-1.8.4-xc-tests.patch
@@ -0,0 +1,28 @@
+Skip xc cli tests, 1.8.3 failed when run with no arguments for these commands
+but 1.8.4 doesn't.
+
+--- gopass-1.8.4/src/github.com/gopasspw/gopass/commands_test.go
 gopass-1.8.4/src/github.com/gopasspw/gopass/commands_test.go
+@@ -55,14 +55,14 @@
+   ".templates.remove":  {},
+   ".templates.show":{},
+   ".unclip":{},
+-  ".xc.decrypt":{},
+-  ".xc.encrypt":{},
+-  ".xc.export": {},
+-  ".xc.export-private-key": {},
+-  ".xc.generate":   {},
+-  ".xc.import": {},
+-  ".xc.import-private-key": {},
+-  ".xc.remove": {},
++  // ".xc.decrypt":{},
++  // ".xc.encrypt":{},
++  // ".xc.export": {},
++  // ".xc.export-private-key": {},
++  // ".xc.generate":   {},
++  // ".xc.import": {},
++  // ".xc.import-private-key": {},
++  // ".xc.remove": {},
+ }
+ 
+ func TestGetCommands(t *testing.T) {

diff --git a/app-admin/gopass/gopass-1.8.4.ebuild 
b/app-admin/gopass/gopass-1.8.4.ebuild
new file mode 100644
index 000..1733d999175
--- /dev/null
+++ b/app-admin/gopass/gopass-1.8.4.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+EGO_PN="github.com/gopasspw/gopass"
+
+inherit golang-vcs-snapshot golang-build bash-completion-r1
+
+DESCRIPTION="a simple but powerful password manager for the terminal"
+HOMEPAGE="https://www.gopass.pw/";
+SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=">=dev-lang/go-1.11"
+RDEPEND="
+   dev-vcs/git
+   >=app-crypt/gnupg-2
+"
+
+PATCHES=( "${FILESDIR}"/${P}-xc-tests.patch )
+
+src_install() {
+   dobin gopass
+
+   local DOCS=( src/${EGO_PN}/{CHANGELOG,CONTRIBUTING}.md 
src/${EGO_PN}/docs/*.md )
+   einstalldocs
+
+   # install fish completion
+   ./gopass completion fish > "${T}"/${PN}.fish || die
+   insinto /usr/share/fish/vendor_completions.d
+   doins "${T}"/${PN}.fish
+
+   # install bash completion
+   ./gopass completion bash > "${T}"/${PN} || die
+   dobashcomp "${T}"/${PN}
+
+   # install zsh completion
+   ./gopass completion zsh > "${T}"/${PN}.zsh || die
+   insinto /usr/share/zsh/site-functions
+   newins "${T}"/${PN}.zsh _${PN}
+}



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

2019-02-04 Thread Tim Harder
commit: 7f55bd99fc81baae05e7a936785e779fa5e8e693
Author: Tim Harder  gentoo  org>
AuthorDate: Mon Feb  4 21:53:42 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Tue Feb  5 00:17:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f55bd99

sys-apps/pkgcore: drop plugin cache creation

It's done internally during the install for the bundled plugins.

Signed-off-by: Tim Harder  gentoo.org>

 sys-apps/pkgcore/pkgcore-.ebuild | 4 
 1 file changed, 4 deletions(-)

diff --git a/sys-apps/pkgcore/pkgcore-.ebuild 
b/sys-apps/pkgcore/pkgcore-.ebuild
index 0bc10eacfb5..308d58adcb6 100644
--- a/sys-apps/pkgcore/pkgcore-.ebuild
+++ b/sys-apps/pkgcore/pkgcore-.ebuild
@@ -51,7 +51,3 @@ python_install_all() {
--mandir="${ED%/}/usr/share/man"
distutils-r1_python_install_all
 }
-
-pkg_postinst() {
-   pplugincache
-}



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

2019-02-04 Thread Tim Harder
commit: 990b3619beb405923b63694f0d65111d83949d4b
Author: Tim Harder  gentoo  org>
AuthorDate: Mon Feb  4 21:55:30 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Tue Feb  5 00:17:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=990b3619

dev-util/pkgcheck: drop plugin cache creation

It's done internally during the install for the bundled plugins.

Signed-off-by: Tim Harder  gentoo.org>

 dev-util/pkgcheck/pkgcheck-.ebuild | 4 
 1 file changed, 4 deletions(-)

diff --git a/dev-util/pkgcheck/pkgcheck-.ebuild 
b/dev-util/pkgcheck/pkgcheck-.ebuild
index 0b19214ca4f..22550d50d55 100644
--- a/dev-util/pkgcheck/pkgcheck-.ebuild
+++ b/dev-util/pkgcheck/pkgcheck-.ebuild
@@ -50,7 +50,3 @@ python_install_all() {
--mandir="${ED%/}/usr/share/man"
distutils-r1_python_install_all
 }
-
-pkg_postinst() {
-   pplugincache pkgcheck.plugins
-}



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

2019-02-04 Thread Ben Kohler
commit: 820155e91926ad256f232559da15eb507ec161c7
Author: Ben Kohler  gentoo  org>
AuthorDate: Mon Feb  4 23:01:27 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Mon Feb  4 23:01:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=820155e9

sys-block/tw_cli: don't reference ${DISTDIR} in pkg_nofetch

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Ben Kohler  gentoo.org>

 sys-block/tw_cli/tw_cli-10.2.2.1.ebuild | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/sys-block/tw_cli/tw_cli-10.2.2.1.ebuild 
b/sys-block/tw_cli/tw_cli-10.2.2.1.ebuild
index 85ea0c50558..14ff98075ef 100644
--- a/sys-block/tw_cli/tw_cli-10.2.2.1.ebuild
+++ b/sys-block/tw_cli/tw_cli-10.2.2.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -65,10 +65,9 @@ S=${WORKDIR}
 # If you want to fetch it yourself (not from the mirrors), there is an IP-based
 # clickthrough to accept the EULA.
 pkg_nofetch() {
-   einfo "Upstream has implement a mandatory clickthrough EULA for 
distfile download"
-   einfo "Please visit $SRC_URI in your browser. The clickthrough is 
IP-based,"
-   einfo "so no wget is possible."
-   einfo "And place $A in ${DISTDIR}"
+   einfo "Upstream has implemented a mandatory clickthrough EULA for 
distfile download"
+   einfo "Please visit ${SRC_URI}"
+   einfo "And place ${A} into your DISTDIR directory"
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: dev-java/openjdk/

2019-02-04 Thread Georgy Yakovlev
commit: 3f6b5753f261cf3a48c19a57e1eb684a4b892cb5
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Feb  5 05:09:29 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Feb  5 05:13:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f6b5753

dev-java/openjdk: unset _JAVA_OPTIONS

If build vm is a unregistered one (built without gentoo-vm flag)
java-pkg-2_pkg_setup() and hence java-pkg_init() is not called and
_JAVA_OPTIONS is not handled.
Just unset it.

Closes: https://bugs.gentoo.org/677236

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

 dev-java/openjdk/openjdk-11.0.2_p7.ebuild | 1 +
 dev-java/openjdk/openjdk-8.202_p08.ebuild | 1 +
 2 files changed, 2 insertions(+)

diff --git a/dev-java/openjdk/openjdk-11.0.2_p7.ebuild 
b/dev-java/openjdk/openjdk-11.0.2_p7.ebuild
index 1a48fa81cb9..f546f4783e3 100644
--- a/dev-java/openjdk/openjdk-11.0.2_p7.ebuild
+++ b/dev-java/openjdk/openjdk-11.0.2_p7.ebuild
@@ -107,6 +107,7 @@ pkg_setup() {
JDK_HOME=${JDK_HOME#*/}
JDK_HOME=${EPREFIX}/opt/${JDK_HOME%-r*}
export JDK_HOME
+   unset _JAVA_OPTIONS
fi
 }
 

diff --git a/dev-java/openjdk/openjdk-8.202_p08.ebuild 
b/dev-java/openjdk/openjdk-8.202_p08.ebuild
index b1c57e60f8d..b0ad1d7bd36 100644
--- a/dev-java/openjdk/openjdk-8.202_p08.ebuild
+++ b/dev-java/openjdk/openjdk-8.202_p08.ebuild
@@ -122,6 +122,7 @@ pkg_setup() {
JDK_HOME=${JDK_HOME#*/}
JDK_HOME=${EPREFIX}/opt/${JDK_HOME%-r*}
export JDK_HOME
+   unset _JAVA_OPTIONS
fi
 }
 



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

2019-02-04 Thread Ben Kohler
commit: 9ba36c59225949b8ad29411d9a88dcff07ca7d54
Author: Ben Kohler  gentoo  org>
AuthorDate: Mon Feb  4 23:00:48 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Mon Feb  4 23:00:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ba36c59

sys-block/sas3ircu: don't reference ${DISTDIR} in pkg_nofetch

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Ben Kohler  gentoo.org>

 sys-block/sas3ircu/sas3ircu-14.ebuild | 6 +++---
 sys-block/sas3ircu/sas3ircu-15.ebuild | 6 +++---
 sys-block/sas3ircu/sas3ircu-5.ebuild  | 6 +++---
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/sys-block/sas3ircu/sas3ircu-14.ebuild 
b/sys-block/sas3ircu/sas3ircu-14.ebuild
index 67517aec431..3e4b3021666 100644
--- a/sys-block/sas3ircu/sas3ircu-14.ebuild
+++ b/sys-block/sas3ircu/sas3ircu-14.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -31,10 +31,10 @@ S="${WORKDIR}/${MY_P}"
 pkg_nofetch() {
elog "Broadcom has a mandatory click-through license on thier binaries."
elog "Please visit $HOMEPAGE and download ${DISTFILE_BIN} from the 
Mangement Software section."
-   elog "After downloading, move ${MY_P} into $DISTDIR"
+   elog "After downloading, move ${MY_P} into your DISTDIR directory"
if use doc; then
elog "Please also download 'SAS-3 Integrated RAID Configuration 
Utility User Guide' (${DISTFILE_DOC}) "
-   elog "and also place it into $DISTDIR"
+   elog "and also place it into your DISTDIR directory"
fi
einfo $SRC_URI
 }

diff --git a/sys-block/sas3ircu/sas3ircu-15.ebuild 
b/sys-block/sas3ircu/sas3ircu-15.ebuild
index 1cd51bb434f..8b344da0de8 100644
--- a/sys-block/sas3ircu/sas3ircu-15.ebuild
+++ b/sys-block/sas3ircu/sas3ircu-15.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -31,10 +31,10 @@ S="${WORKDIR}/${MY_P}"
 pkg_nofetch() {
elog "Broadcom has a mandatory click-through license on thier binaries."
elog "Please visit $HOMEPAGE and download ${DISTFILE_BIN} from the 
Mangement Software section."
-   elog "After downloading, move ${MY_P} into $DISTDIR"
+   elog "After downloading, move ${MY_P} into your DISTDIR directory"
if use doc; then
elog "Please also download 'SAS-3 Integrated RAID Configuration 
Utility User Guide' (${DISTFILE_DOC}) "
-   elog "and also place it into $DISTDIR"
+   elog "and also place it into your DISTDIR directory"
fi
einfo $SRC_URI
 }

diff --git a/sys-block/sas3ircu/sas3ircu-5.ebuild 
b/sys-block/sas3ircu/sas3ircu-5.ebuild
index 33d0779cb9a..2d0aaea8267 100644
--- a/sys-block/sas3ircu/sas3ircu-5.ebuild
+++ b/sys-block/sas3ircu/sas3ircu-5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -33,10 +33,10 @@ S="${WORKDIR}/${MY_P}"
 pkg_nofetch() {
elog "LSI has a mandatory click-through license on thier binaries."
elog "Please visit $HOMEPAGE and download ${DISTFILE_BIN} from the 
Mangement Software section."
-   elog "After downloading, move ${MY_P} into $DISTDIR"
+   elog "After downloading, move ${MY_P} into your DISTDIR directory"
if use doc; then
elog "Please also download 'SAS-3 Integrated RAID Configuration 
Utility User Guide' (${DISTFILE_DOC}) "
-   elog "and also place it into $DISTDIR"
+   elog "and also place it into your DISTDIR directory"
fi
 }
 



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

2019-02-04 Thread Ben Kohler
commit: 5d3fbab7a19ea201f78038ada81c764491a3c90e
Author: Ben Kohler  gentoo  org>
AuthorDate: Mon Feb  4 22:59:38 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Mon Feb  4 22:59:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d3fbab7

sys-block/lsiutil: don't reference ${DISTDIR} in pkg_nofetch

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Ben Kohler  gentoo.org>

 sys-block/lsiutil/lsiutil-1.62-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-block/lsiutil/lsiutil-1.62-r1.ebuild 
b/sys-block/lsiutil/lsiutil-1.62-r1.ebuild
index 808c32416d9..143ae1b0c3f 100644
--- a/sys-block/lsiutil/lsiutil-1.62-r1.ebuild
+++ b/sys-block/lsiutil/lsiutil-1.62-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -26,7 +26,7 @@ S="${WORKDIR}"
 pkg_nofetch() {
einfo "Upstream has implemented a mandatory clickthrough EULA for 
distfile download"
einfo "Please visit $SRC_URI"
-   einfo "And place $A in ${DISTDIR}"
+   einfo "And place $A into your DISTDIR directory"
 }
 
 src_install() {



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

2019-02-04 Thread Ben Kohler
commit: 38d2fd24206333a3916806ffcf325583643195ab
Author: Ben Kohler  gentoo  org>
AuthorDate: Mon Feb  4 23:00:06 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Mon Feb  4 23:00:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38d2fd24

sys-block/sas2ircu: don't reference ${DISTDIR} in pkg_nofetch

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Ben Kohler  gentoo.org>

 sys-block/sas2ircu/sas2ircu-19.ebuild | 6 +++---
 sys-block/sas2ircu/sas2ircu-20.ebuild | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/sys-block/sas2ircu/sas2ircu-19.ebuild 
b/sys-block/sas2ircu/sas2ircu-19.ebuild
index 190580614f9..555e56b7cfd 100644
--- a/sys-block/sas2ircu/sas2ircu-19.ebuild
+++ b/sys-block/sas2ircu/sas2ircu-19.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -34,10 +34,10 @@ S="${WORKDIR}/${MY_P}"
 pkg_nofetch() {
elog "LSI has a mandatory click-through license on thier binaries."
elog "Please visit $HOMEPAGE and download ${DISTFILE_BIN} from the 
Miscellaneous section."
-   elog "After downloading, move ${MY_P} into $DISTDIR"
+   elog "After downloading, move ${MY_P} into your DISTDIR directory"
if use doc; then
elog "Please also download 'SAS-2 Integrated RAID Configuration 
Utility User Guide' (${DISTFILE_DOC}) "
-   elog "and also place it into $DISTDIR"
+   elog "and also place it into your DISTDIR directory"
fi
 }
 

diff --git a/sys-block/sas2ircu/sas2ircu-20.ebuild 
b/sys-block/sas2ircu/sas2ircu-20.ebuild
index bc3aebe2751..7f4f0746b48 100644
--- a/sys-block/sas2ircu/sas2ircu-20.ebuild
+++ b/sys-block/sas2ircu/sas2ircu-20.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -34,10 +34,10 @@ S="${WORKDIR}/${MY_P}"
 pkg_nofetch() {
elog "LSI has a mandatory click-through license on thier binaries."
elog "Please visit $HOMEPAGE and download ${DISTFILE_BIN} from the 
Management Software and Tools section."
-   elog "After downloading, move ${DISTFILE_BIN} into $DISTDIR"
+   elog "After downloading, move ${DISTFILE_BIN} into your DISTDIR 
directory"
if use doc; then
elog "Please also download 'SAS-2 Integrated RAID Configuration 
Utility User Guide' (${DISTFILE_DOC}) "
-   elog "and also place it into $DISTDIR"
+   elog "and also place it into your DISTDIR directory"
fi
 }
 



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

2019-02-04 Thread Ben Kohler
commit: 1fcc8670c6390fc6bc8f4b378afcb43541b5563a
Author: Ben Kohler  gentoo  org>
AuthorDate: Mon Feb  4 23:01:48 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Mon Feb  4 23:01:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fcc8670

app-text/fdftk: don't reference ${DISTDIR} in pkg_nofetch

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Ben Kohler  gentoo.org>

 app-text/fdftk/fdftk-6.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/fdftk/fdftk-6.0-r1.ebuild 
b/app-text/fdftk/fdftk-6.0-r1.ebuild
index 32124da0c9d..d4f4935a36b 100644
--- a/app-text/fdftk/fdftk-6.0-r1.ebuild
+++ b/app-text/fdftk/fdftk-6.0-r1.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=0
@@ -25,7 +25,7 @@ pkg_nofetch() {
einfo "1. Visit ${HOMEPAGE}"
einfo "2. Review EULA"
einfo "3. Download ${At}"
-   einfo "4. Move ${At} to ${DISTDIR}"
+   einfo "4. Move ${At} to your DISTDIR directory"
 }
 
 src_unpack() {



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

2019-02-04 Thread Brian Evans
commit: 7edbdbf45ca29c244722e3bec7550db315f40d23
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Feb  5 02:21:03 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Feb  5 02:21:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7edbdbf4

Fix last commit package atom syntax

Signed-off-by: Brian Evans  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index ad4aa3f6051..5ad7cd2e049 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,7 +32,7 @@
 # Brian Evans  (5 Feb 2019)
 # Unsolvable dependencies
 # Bug 677284
-=gnome-extra/gucharmap/gucharmap-11.0.3
+=gnome-extra/gucharmap-11.0.3
 
 # Jeroen Roovers  (31 Jan 2019)
 # Depends on =dev-libs/openssl-1.1.1*



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

2019-02-04 Thread Brian Evans
commit: 09b8e1e9909e30559aaf13e1d77a9201ce7025ac
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Feb  5 02:19:05 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Feb  5 02:19:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09b8e1e9

Mask gucharmap-11.0.3 for incomplete dependencies

Bug: https://bugs.gentoo.org/677284
Signed-off-by: Brian Evans  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index fb1f434a4ff..ad4aa3f6051 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Brian Evans  (5 Feb 2019)
+# Unsolvable dependencies
+# Bug 677284
+=gnome-extra/gucharmap/gucharmap-11.0.3
+
 # Jeroen Roovers  (31 Jan 2019)
 # Depends on =dev-libs/openssl-1.1.1*
 # bug #670574



[gentoo-commits] repo/gentoo:master commit in: dev-embedded/u-boot-tools/

2019-02-04 Thread Tim Harder
commit: 4d3a59e4c78ac73caebfe874de06466d192c64a6
Author: Tim Harder  gentoo  org>
AuthorDate: Tue Feb  5 06:15:22 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Tue Feb  5 06:24:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d3a59e4

dev-embedded/u-boot-tools: version bump to 2019.01

Closes: https://bugs.gentoo.org/676508

Signed-off-by: Tim Harder  gentoo.org>

 dev-embedded/u-boot-tools/Manifest |  1 +
 .../u-boot-tools/u-boot-tools-2019.01.ebuild   | 59 ++
 2 files changed, 60 insertions(+)

diff --git a/dev-embedded/u-boot-tools/Manifest 
b/dev-embedded/u-boot-tools/Manifest
index e92cb5bf691..4d7d550ba90 100644
--- a/dev-embedded/u-boot-tools/Manifest
+++ b/dev-embedded/u-boot-tools/Manifest
@@ -1,2 +1,3 @@
 DIST u-boot-2018.05.tar.bz2 12469276 BLAKE2B 
b09189d9bf8554c21630d42024d64894270c02e3efa8046bc2bef0efd68b9e0a02c3290228ffb71a4bab524d46111e32adb492c3ce9a3ef1be32287a3bbdb36a
 SHA512 
218f71282c9d027b0faf210ce2d4d713779e0c61ea4a23f03d5dec0ca8836a3c26b46c5e258d583834f5b5a2f4663f98729ca4b0101a60f85457eb892f8370d2
 DIST u-boot-2018.11.tar.bz2 13045125 BLAKE2B 
d2522e1eb2fb899f1217261b6c311be35ae2fb01d187714311184e6f913d1d5b3ad953b5fa02c5c7b0e1e5981be101ce82ea4cf09a457d32d778ffa5cadc0786
 SHA512 
1ea0bbb5f5e6d4c60b3a6bd345d1fa6e9da025daf36f47e8392bab34cb432c2e3633d903efb260f71fff87dffd6f2bf09ac900e96b3d4247073958d83b89ceff
+DIST u-boot-2019.01.tar.bz2 13366005 BLAKE2B 
161d927d5f2cb38c6a930f0b5edfedeb3a93586ea98e03066a1fa9c516bfc1f6ab8d5ba60b36714d10c08232971e7a0987f4d0a05635fa14a6359bb120aa0ed2
 SHA512 
d9699cd22afe9bc747d64208068c2cf8a2c3143d161ede24536f6fd6adfd6b81e28920589722639e2e48fcf34e8dbde3ead7f691f14cbcc38cd75694d14d719b

diff --git a/dev-embedded/u-boot-tools/u-boot-tools-2019.01.ebuild 
b/dev-embedded/u-boot-tools/u-boot-tools-2019.01.ebuild
new file mode 100644
index 000..ef93a005196
--- /dev/null
+++ b/dev-embedded/u-boot-tools/u-boot-tools-2019.01.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs
+
+MY_P="u-boot-${PV/_/-}"
+DESCRIPTION="utilities for working with Das U-Boot"
+HOMEPAGE="http://www.denx.de/wiki/U-Boot/WebHome";
+SRC_URI="ftp://ftp.denx.de/pub/u-boot/${MY_P}.tar.bz2";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE=""
+
+DEPEND="
+   sys-devel/flex
+   sys-devel/bison
+"
+
+S=${WORKDIR}/${MY_P}
+
+src_compile() {
+   # Unset a few KBUILD variables. Bug #540476
+   unset KBUILD_OUTPUT KBUILD_SRC
+
+   emake \
+   V=1 \
+   HOSTCC="$(tc-getCC)" \
+   HOSTCFLAGS="${CFLAGS} ${CPPFLAGS}"' $(HOSTCPPFLAGS)' \
+   HOSTLDFLAGS="${LDFLAGS}" \
+   defconfig
+
+   emake \
+   V=1 \
+   NO_SDL=1 \
+   HOSTSTRIP=: \
+   STRIP=: \
+   HOSTCC="$(tc-getCC)" \
+   HOSTCFLAGS="${CFLAGS} ${CPPFLAGS}"' $(HOSTCPPFLAGS)' \
+   HOSTLDFLAGS="${LDFLAGS}" \
+   CONFIG_ENV_OVERWRITE=y \
+   tools-all
+}
+
+src_test() { :; }
+
+src_install() {
+   cd tools || die
+   dobin bmp_logo dumpimage fdtgrep gen_eth_addr img2srec mkenvimage 
mkimage
+   dobin easylogo/easylogo
+   dobin env/fw_printenv
+   dosym fw_printenv /usr/bin/fw_setenv
+   insinto /etc
+   doins env/fw_env.config
+   doman "${S}"/doc/mkimage.1
+}



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

2019-02-04 Thread Andreas Sturmlechner
commit: 035bd9316d2b66f6e540ac91fabe5d7db07fa139
Author: Haelwenn (lanodan) Monnier  hacktivis  me>
AuthorDate: Tue Jan  8 01:25:14 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Feb  5 00:30:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=035bd931

app-misc/g810-led: Remove old (0.2.7)

Signed-off-by: Haelwenn (lanodan) Monnier  hacktivis.me>
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-misc/g810-led/Manifest |  1 -
 ...0-led-0.2.7-Have_makefile_use_environment.patch | 63 --
 app-misc/g810-led/g810-led-0.2.7.ebuild| 52 --
 3 files changed, 116 deletions(-)

diff --git a/app-misc/g810-led/Manifest b/app-misc/g810-led/Manifest
index 2cd4d906598..e822820b6ca 100644
--- a/app-misc/g810-led/Manifest
+++ b/app-misc/g810-led/Manifest
@@ -1,2 +1 @@
-DIST g810-led-0.2.7.tar.gz 33127 BLAKE2B 
1ffa28f4e21273afa805ff2ddfeae00cf4b25382f7da617016651283331d7d17faee1e6f68d00ab988c30ba1a7d4b252cf28c021999871a7fbe54c47ae3ccb23
 SHA512 
f67d44f1c51a29cbdfe9bb5e28f3dea5e9b08aa5e2a08cf875578d6b74e8e77f880378c825efcc3068b400131295e1fd196454b8b10143c4f5d5f77be760512a
 DIST g810-led-0.3.1.tar.gz 34069 BLAKE2B 
ebc83e1f0908e521573f6ea812c1893e8314548dbe30cad4a8f2af171eaf7f73ba905f6e01eafe9bca6c1bf006d626086091c871c6382dcd9a58caa76173ca59
 SHA512 
62bf73a897f8c1c967ce64f6e352d55b08af764b2aac8ce722906cdc67db28676bc5665d1ba307f0c43360e57d53e75fa39aea29ca7aa6da2e125782ae38446c

diff --git 
a/app-misc/g810-led/files/g810-led-0.2.7-Have_makefile_use_environment.patch 
b/app-misc/g810-led/files/g810-led-0.2.7-Have_makefile_use_environment.patch
deleted file mode 100644
index 249462bbcf0..000
--- a/app-misc/g810-led/files/g810-led-0.2.7-Have_makefile_use_environment.patch
+++ /dev/null
@@ -1,63 +0,0 @@
-diff --git a/makefile b/makefile
-index 019636d..707517d 100644
 a/makefile
-+++ b/makefile
-@@ -1,18 +1,18 @@
--CC=g++
--CFLAGS=-Wall -O2 -std=gnu++11
-+CXX?=g++
-+CXXFLAGS?=-Wall -O2
- LIB?=hidapi
- ifeq ($(LIB),libusb)
-   CPPFLAGS=-Dlibusb
--  LDFLAGS=-lusb-1.0
-+  LIBS=-lusb-1.0
- else
-   CPPFLAGS=-Dhidapi
--  LDFLAGS=-lhidapi-hidraw
-+  LIBS=-lhidapi-hidraw
- endif
- SYSTEMDDIR?=/usr/lib/systemd
- 
--prefix?=$(DESTDIR)/usr
--libdir?=$(prefix)/lib
--includedir?=$(prefix)/include
-+PREFIX?=$(DESTDIR)/usr
-+libdir?=$(PREFIX)/lib
-+includedir?=$(PREFIX)/include
- 
- # Program & versioning information
- PROGN=g810-led
-@@ -20,7 +20,7 @@ MAJOR=0
- MINOR=2
- MICRO=7
- 
--CFLAGS+=-DVERSION=\"$(MAJOR).$(MINOR).$(MICRO)\"
-+CXXFLAGS+=-std=gnu++11 -DVERSION=\"$(MAJOR).$(MINOR).$(MICRO)\"
- APPSRCS=src/main.cpp src/helpers/*.cpp src/helpers/*.h
- LIBSRCS=src/classes/*.cpp src/classes/*.h
- 
-@@ -32,19 +32,19 @@ bin: bin/$(PROGN)
- 
- bin/$(PROGN): $(APPSRCS) $(LIBSRCS)
-   @mkdir -p bin
--  $(CC) $(CPPFLAGS) $(CFLAGS) $^ -o $@ $(LDFLAGS)
-+  $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) $^ -o $@ $(LIBS)
-   
--debug: CFLAGS += -g -Wextra -pedantic
-+debug: CXXFLAGS += -g -Wextra -pedantic
- debug: bin/$(PROGN)
- 
- lib/lib$(PROGN).so: $(LIBSRCS)
-   @mkdir -p lib
--  $(CC) $(CPPFLAGS) $(CFLAGS) -fPIC -shared -Wl,-soname,lib$(PROGN).so -o 
lib/lib$(PROGN).so.$(MAJOR).$(MINOR).$(MICRO) $^ $(LDFLAGS)
-+  $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) -fPIC -shared 
-Wl,-soname,lib$(PROGN).so -o lib/lib$(PROGN).so.$(MAJOR).$(MINOR).$(MICRO) $^ 
$(LIBS)
-   @ln -sf lib$(PROGN).so.$(MAJOR).$(MINOR).$(MICRO) lib/lib$(PROGN).so
- 
- bin-linked: lib/lib$(PROGN).so
-   @mkdir -p bin
--  $(CC) $(CPPFLAGS) $(CFLAGS) $(APPSRCS) -o bin/$(PROGN) $(LDFLAGS) 
-L./lib -l$(PROGN)
-+  $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) $(APPSRCS) -o bin/$(PROGN) 
$(LIBS) -L./lib -l$(PROGN)
- 
- lib: lib/lib$(PROGN).so
- 

diff --git a/app-misc/g810-led/g810-led-0.2.7.ebuild 
b/app-misc/g810-led/g810-led-0.2.7.ebuild
deleted file mode 100644
index 9251fa585b8..000
--- a/app-misc/g810-led/g810-led-0.2.7.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit systemd udev eutils
-
-DESCRIPTION="Led controller for Logitech G- 213, 410, 413, 610, 810, 910 and 
PRO Keyboards"
-HOMEPAGE="https://github.com/MatMoul/g810-led";
-SRC_URI="https://github.com/MatMoul/g810-led/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+hidapi"
-
-RDEPEND="
-   hidapi? ( dev-libs/hidapi:= )
-   !hidapi? ( virtual/libusb:= )
-"
-
-DEPEND="${RDEPEND}"
-
-DOCS=("README.md" "sample_profiles")
-
-src_prepare() {
-   eapply "${FILESDIR}/g810-led-0.2.7-Have_makefile_use_environment.patch"
-   default
-}
-
-src_compile() {
-   emake LIB="$(usex hidapi hidapi libusb)"
-}
-
-src_install() {
-   dolib.so "lib/libg810-led.so.${PV}"
-   dosym "libg810-led.so.${PV}" "/usr/$(get_libdir)/libg810-led.so"
-
-  

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

2019-02-04 Thread Ben Kohler
commit: 18323ff89f126ac5b0dc1072a8d1c964b35240be
Author: Ben Kohler  gentoo  org>
AuthorDate: Mon Feb  4 22:59:11 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Mon Feb  4 22:59:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18323ff8

sys-block/megacli: don't reference ${DISTDIR} in pkg_nofetch

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Ben Kohler  gentoo.org>

 sys-block/megacli/megacli-8.07.10.ebuild | 4 ++--
 sys-block/megacli/megacli-8.07.14.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-block/megacli/megacli-8.07.10.ebuild 
b/sys-block/megacli/megacli-8.07.10.ebuild
index b8d98d13d67..1e136f4e315 100644
--- a/sys-block/megacli/megacli-8.07.10.ebuild
+++ b/sys-block/megacli/megacli-8.07.10.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=5
@@ -30,7 +30,7 @@ QA_PREBUILT="/opt/${PN}/${PN}
 pkg_nofetch() {
einfo "Upstream has implement a mandatory clickthrough EULA for 
distfile download"
einfo "Please visit $SRC_URI"
-   einfo "And place $A in ${DISTDIR}"
+   einfo "And place $A into your DISTDIR directory"
 }
 
 src_unpack() {

diff --git a/sys-block/megacli/megacli-8.07.14.ebuild 
b/sys-block/megacli/megacli-8.07.14.ebuild
index b1b11afc3a9..cb55e6adb14 100644
--- a/sys-block/megacli/megacli-8.07.14.ebuild
+++ b/sys-block/megacli/megacli-8.07.14.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=5
@@ -30,7 +30,7 @@ QA_PREBUILT="/opt/${PN}/${PN}
 pkg_nofetch() {
einfo "Upstream has implement a mandatory clickthrough EULA for 
distfile download"
einfo "Please visit $SRC_URI"
-   einfo "And place $A in ${DISTDIR}"
+   einfo "And place $A into your DISTDIR directory"
 }
 
 src_unpack() {



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

2019-02-04 Thread Andreas Sturmlechner
commit: 09d7e18aaab6cc71179579ee96a55b98c0ed7901
Author: Haelwenn (lanodan) Monnier  hacktivis  me>
AuthorDate: Tue Jan  8 01:23:07 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Feb  5 00:30:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09d7e18a

app-misc/g810-led: Bump to 0.3.1

Signed-off-by: Haelwenn (lanodan) Monnier  hacktivis.me>
Closes: https://github.com/gentoo/gentoo/pull/10773
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-misc/g810-led/Manifest  |  1 +
 app-misc/g810-led/g810-led-0.3.1.ebuild | 47 +
 2 files changed, 48 insertions(+)

diff --git a/app-misc/g810-led/Manifest b/app-misc/g810-led/Manifest
index 44d9060a363..2cd4d906598 100644
--- a/app-misc/g810-led/Manifest
+++ b/app-misc/g810-led/Manifest
@@ -1 +1,2 @@
 DIST g810-led-0.2.7.tar.gz 33127 BLAKE2B 
1ffa28f4e21273afa805ff2ddfeae00cf4b25382f7da617016651283331d7d17faee1e6f68d00ab988c30ba1a7d4b252cf28c021999871a7fbe54c47ae3ccb23
 SHA512 
f67d44f1c51a29cbdfe9bb5e28f3dea5e9b08aa5e2a08cf875578d6b74e8e77f880378c825efcc3068b400131295e1fd196454b8b10143c4f5d5f77be760512a
+DIST g810-led-0.3.1.tar.gz 34069 BLAKE2B 
ebc83e1f0908e521573f6ea812c1893e8314548dbe30cad4a8f2af171eaf7f73ba905f6e01eafe9bca6c1bf006d626086091c871c6382dcd9a58caa76173ca59
 SHA512 
62bf73a897f8c1c967ce64f6e352d55b08af764b2aac8ce722906cdc67db28676bc5665d1ba307f0c43360e57d53e75fa39aea29ca7aa6da2e125782ae38446c

diff --git a/app-misc/g810-led/g810-led-0.3.1.ebuild 
b/app-misc/g810-led/g810-led-0.3.1.ebuild
new file mode 100644
index 000..2e51fcb5d4f
--- /dev/null
+++ b/app-misc/g810-led/g810-led-0.3.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2018-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd udev eutils
+
+DESCRIPTION="Led controller for Logitech G- Keyboards"
+HOMEPAGE="https://github.com/MatMoul/g810-led";
+SRC_URI="https://github.com/MatMoul/g810-led/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+hidapi"
+
+RDEPEND="
+   hidapi? ( dev-libs/hidapi:= )
+   !hidapi? ( virtual/libusb:= )
+"
+
+DEPEND="${RDEPEND}"
+
+DOCS=("README.md" "sample_profiles" "sample_effects")
+
+src_compile() {
+   emake LIB="$(usex hidapi hidapi libusb)"
+}
+
+src_install() {
+   dolib.so "lib/libg810-led.so.${PV}"
+   dosym "libg810-led.so.${PV}" "/usr/$(get_libdir)/libg810-led.so"
+
+   dobin bin/g810-led
+   local boards=(213 410 413 512 513 610 910 pro)
+   local x
+   for x in "${boards[@]}"; do
+   dosym g810-led "/usr/bin/g${x}-led"
+   done
+
+   systemd_dounit systemd/g810-led.service
+   systemd_dounit systemd/g810-led-reboot.service
+
+   udev_newrules udev/g810-led.rules 60-g810-led.rules
+
+   einstalldocs
+}



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

2019-02-04 Thread Andreas Sturmlechner
commit: 71c26c6de10e144bdc465d9ea878b27d3f8bc758
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Feb  4 20:38:15 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Feb  5 00:30:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71c26c6d

app-office/libreoffice: Drop some backported patches

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

 app-office/libreoffice/libreoffice-6.2..ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/app-office/libreoffice/libreoffice-6.2..ebuild 
b/app-office/libreoffice/libreoffice-6.2..ebuild
index 0c48e2a46a6..714cb3be6dc 100644
--- a/app-office/libreoffice/libreoffice-6.2..ebuild
+++ b/app-office/libreoffice/libreoffice-6.2..ebuild
@@ -247,8 +247,6 @@ DEPEND="${COMMON_DEPEND}
 
 PATCHES=(
# master branch
-   
"${WORKDIR}"/${PATCHSET/.tar.xz/}/009-kde5-allow-multiple-mimetypes-clipboard.patch
-   "${WORKDIR}"/${PATCHSET/.tar.xz/}/010-kde5-fix-selection-clipboard.patch

"${WORKDIR}"/${PATCHSET/.tar.xz/}/011-qt5-change-salgraphics-gettextlayout-def.patch

"${WORKDIR}"/${PATCHSET/.tar.xz/}/012-qt5-initialize-glyphcache-for-psp-graphics.patch

"${WORKDIR}"/${PATCHSET/.tar.xz/}/013-qt5-assert-missing-salgraphics-font-on-gettextlayout.patch



[gentoo-commits] repo/gentoo:master commit in: dev-lua/lua-zlib/

2019-02-04 Thread Andreas Sturmlechner
commit: 1475b6ca4048145e17775aa8e5e9ef1ceb4c9ec5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Feb  4 20:39:07 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Feb  5 00:30:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1475b6ca

dev-lua/lua-zlib: Drop 0.3

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

 dev-lua/lua-zlib/Manifest|  1 -
 dev-lua/lua-zlib/lua-zlib-0.3.ebuild | 31 ---
 2 files changed, 32 deletions(-)

diff --git a/dev-lua/lua-zlib/Manifest b/dev-lua/lua-zlib/Manifest
index 33966f5cf83..bac884dea04 100644
--- a/dev-lua/lua-zlib/Manifest
+++ b/dev-lua/lua-zlib/Manifest
@@ -1,2 +1 @@
-DIST lua-zlib-0.3.tgz 11220 BLAKE2B 
49134507d74e552c4f8b50bb6fb17c4c336e809c95b92e90230b3c9be3b7f2f2ac1ac0785e5c2dbbd3d577d18491e680d43608ac22fd8243280865e662543e1d
 SHA512 
99711166637d394c806dd16b86a3588ff84eb9180d2da05725ff6d4e86458d1ded7a5fbb303284fa442fd0925bc94fe34772057e0190c1a3e00cbb853865941d
 DIST lua-zlib-1.1.tar.gz 16572 BLAKE2B 
22f504230616ea0df505c4aa00fc562c2cdfebd9f8e40b6000fdda883dbdefbeb10d22a2466386f1bfb314672aa17524420d047498346e5c980ebc6f5e175b41
 SHA512 
df9768efb96be8175b6afe1fd347b268565ecd93a71dd0f1f7ec1b710fd52bbd7a7c37a89f7c3d939906c7ac1578e9bdb542a0052673b6ac6eec7285d7f75633

diff --git a/dev-lua/lua-zlib/lua-zlib-0.3.ebuild 
b/dev-lua/lua-zlib/lua-zlib-0.3.ebuild
deleted file mode 100644
index dfdba4a1a63..000
--- a/dev-lua/lua-zlib/lua-zlib-0.3.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils
-
-DESCRIPTION="Lua bindings to zlib"
-HOMEPAGE="https://github.com/brimworks/lua-zlib";
-SRC_URI="https://github.com/brimworks/${PN}/tarball/v${PV} -> ${P}.tgz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm x86"
-IUSE=""
-
-RDEPEND="
-   dev-lang/lua:0
-   sys-libs/zlib"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-src_unpack() {
-   unpack ${A}
-   mv *-${PN}-* "${S}"
-}
-
-src_configure() {
-   MYCMAKEARGS="-DINSTALL_CMOD='$(pkg-config --variable INSTALL_CMOD lua)'"
-   cmake-utils_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/quartus-prime-lite/

2019-02-04 Thread Ben Kohler
commit: 99236da77c1a2ae49c9f7eeb1ad942b3f7051a25
Author: Ben Kohler  gentoo  org>
AuthorDate: Mon Feb  4 23:07:17 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Mon Feb  4 23:07:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99236da7

sci-electronics/quartus-prime-lite: don't reference ${DISTDIR}

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Ben Kohler  gentoo.org>

 .../quartus-prime-lite/quartus-prime-lite-15.1.0.185-r1.ebuild  | 6 +++---
 .../quartus-prime-lite/quartus-prime-lite-15.1.0.185.ebuild | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/sci-electronics/quartus-prime-lite/quartus-prime-lite-15.1.0.185-r1.ebuild 
b/sci-electronics/quartus-prime-lite/quartus-prime-lite-15.1.0.185-r1.ebuild
index 74243a7081b..b43ce4f80ee 100644
--- a/sci-electronics/quartus-prime-lite/quartus-prime-lite-15.1.0.185-r1.ebuild
+++ b/sci-electronics/quartus-prime-lite/quartus-prime-lite-15.1.0.185-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -36,12 +36,12 @@ pkg_nofetch() {
elog "For Quartus :"
elog "Please navigate to ${DOWNLOADPAGE}"
elog "Sign in with your Altera account (you need to register)"
-   elog "Download Quartus-lite-${PV}-linux.tar  and place it into 
${DISTDIR}"
+   elog "Download Quartus-lite-${PV}-linux.tar  and place it into your 
DISTDIR directory"
elog "---"
elog "For Freetype libary :"
elog "Please download the following file :"
elog "${DOWNLOADFT}"
-   elog "Please place this into ${DISTDIR}"
+   elog "Please place this into your DISTDIR directory"
elog "---"
elog "And restart the installation."
 }

diff --git 
a/sci-electronics/quartus-prime-lite/quartus-prime-lite-15.1.0.185.ebuild 
b/sci-electronics/quartus-prime-lite/quartus-prime-lite-15.1.0.185.ebuild
index 40a6be84e87..b1ed252e404 100644
--- a/sci-electronics/quartus-prime-lite/quartus-prime-lite-15.1.0.185.ebuild
+++ b/sci-electronics/quartus-prime-lite/quartus-prime-lite-15.1.0.185.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -25,7 +25,7 @@ pkg_nofetch() {
elog "Due to licensing restrictions, you need to download the distfile 
manually."
elog "Please navigate to ${DOWNLOADPAGE}"
elog "Sign in with your Altera account (you need to register)"
-   elog "Download ${SRC_URI} and place it into ${DISTDIR}"
+   elog "Download ${SRC_URI} and place it into your DISTDIR directory"
elog "And restart the installation."
 }
 



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

2019-02-04 Thread Matt Turner
commit: faed93018e19a90fd8eb4ad5a6541b4d7bdc08e2
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Feb  5 03:04:52 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Feb  5 03:11:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faed9301

dev-util/catalyst: Version bump to 3.0.4

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

 dev-util/catalyst/Manifest| 1 +
 dev-util/catalyst/{catalyst-.ebuild => catalyst-3.0.4.ebuild} | 8 +++-
 dev-util/catalyst/catalyst-.ebuild| 8 +++-
 3 files changed, 7 insertions(+), 10 deletions(-)

diff --git a/dev-util/catalyst/Manifest b/dev-util/catalyst/Manifest
index 0f6d108c4e1..5c807b53198 100644
--- a/dev-util/catalyst/Manifest
+++ b/dev-util/catalyst/Manifest
@@ -2,3 +2,4 @@ DIST catalyst-2.0.18.tar.bz2 861398 BLAKE2B 
70986d312410fb7abb5c8d7eacefa0f0150a
 DIST catalyst-3.0.1.tar.bz2 877731 BLAKE2B 
0c0b67b4be26737fa6d81011a8a63cfd7f2f41e49a81ecd45f3c901ef70d04e0a72295b12609df036dd9be09241c33dda8fa7a204ad074683b18685d027efe2a
 SHA512 
be7c4d6fcf1f41087995a1a3621fb0250dce6d0a96101255c70832d5cf727a94e924d86092b33464fc5e284173704d33d5aa0d0d49dfcce7369befa5fc8de4e8
 DIST catalyst-3.0.2.tar.bz2 878157 BLAKE2B 
3711e89be416cd79e98b25fbc432375257749af96a1de6401749131a40c2f1f70975d0c449e1a116623c1aec4d3302670ac058fffd80c4f546fae0609d0c3b7f
 SHA512 
02092b39c70095ab49db28c3289a5d3eb4f73cb3aeda79b3e707cbe2710761cf0060493da7d8a5098e1453320b65654bbe34dd37d5f07623fa90d52579869070
 DIST catalyst-3.0.3.tar.bz2 878309 BLAKE2B 
38cba740718a034c104d272aa24fa6964a8dd7fc77d5ccbb481308bb0a38c01d3f0d64e48c1708cab4a723b5a4e0f23727d1c2a0dd0ae4832810e09f76aa335c
 SHA512 
26024dbea3afbc843563a0bf2cd68cc953818caccdf8a42c45ac1df25bd396064a604787807e2db847b4467e9a19df6b2f746eb178d99cbe79889070a2fc4b8a
+DIST catalyst-3.0.4.tar.bz2 873281 BLAKE2B 
8177cee09402ccd02343766facbac3011b45165211a207e8e2c07d53a40091202c84e8294a58ed02a193cab3b3d704fafb50322719257a62092fe39b895d7771
 SHA512 
5fc5ee9faba6874d1b57fed47a9f92fab9adc03544938d1b1f1d6d867215a36f1efd391849b21300034d27be3207bcc28b4792b8c9c4caec72040d4d30741c2a

diff --git a/dev-util/catalyst/catalyst-.ebuild 
b/dev-util/catalyst/catalyst-3.0.4.ebuild
similarity index 86%
copy from dev-util/catalyst/catalyst-.ebuild
copy to dev-util/catalyst/catalyst-3.0.4.ebuild
index 1eeaf9d7e09..e8b8bb017df 100644
--- a/dev-util/catalyst/catalyst-.ebuild
+++ b/dev-util/catalyst/catalyst-3.0.4.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
@@ -8,10 +8,7 @@ if [[ ${PV} == ** ]]; then
EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/catalyst.git";
EGIT_BRANCH="master"
 else
-   SRC_URI="mirror://gentoo/${P}.tar.bz2
-   https://dev.gentoo.org/~dolsen/releases/catalyst/${P}.tar.bz2
-   https://dev.gentoo.org/~jmbsvicetto/distfiles/${P}.tar.bz2
-   https://dev.gentoo.org/~zerochaos/distfiles/${P}.tar.bz2";
+   
SRC_URI="https://gitweb.gentoo.org/proj/catalyst.git/snapshot/${P}.tar.bz2";
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd"
 fi
 
@@ -31,6 +28,7 @@ DEPEND="
>=dev-python/snakeoil-0.6.5[${PYTHON_USEDEP}]
 "
 RDEPEND="
+   >=dev-python/snakeoil-0.6.5[${PYTHON_USEDEP}]
>=dev-python/pydecomp-0.3[${PYTHON_USEDEP}]
app-arch/lbzip2
app-crypt/shash

diff --git a/dev-util/catalyst/catalyst-.ebuild 
b/dev-util/catalyst/catalyst-.ebuild
index 1eeaf9d7e09..e8b8bb017df 100644
--- a/dev-util/catalyst/catalyst-.ebuild
+++ b/dev-util/catalyst/catalyst-.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
@@ -8,10 +8,7 @@ if [[ ${PV} == ** ]]; then
EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/catalyst.git";
EGIT_BRANCH="master"
 else
-   SRC_URI="mirror://gentoo/${P}.tar.bz2
-   https://dev.gentoo.org/~dolsen/releases/catalyst/${P}.tar.bz2
-   https://dev.gentoo.org/~jmbsvicetto/distfiles/${P}.tar.bz2
-   https://dev.gentoo.org/~zerochaos/distfiles/${P}.tar.bz2";
+   
SRC_URI="https://gitweb.gentoo.org/proj/catalyst.git/snapshot/${P}.tar.bz2";
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd"
 fi
 
@@ -31,6 +28,7 @@ DEPEND="
>=dev-python/snakeoil-0.6.5[${PYTHON_USEDEP}]
 "
 RDEPEND="
+   >=dev-python/snakeoil-0.6.5[${PYTHON_USEDEP}]
>=dev-python/pydecomp-0.3[${PYTHON_USEDEP}]
app-arch/lbzip2
app-crypt/shash



[gentoo-commits] proj/catalyst: New tag: 3.0.4

2019-02-04 Thread Matt Turner
commit: 
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Feb  5 03:01:47 2019 +

New tag: 3.0.4




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

2019-02-04 Thread Hans de Graaff
commit: c8b432988412fd12a724b472e62e1323ab2dad2a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Feb  5 06:00:20 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Feb  5 06:00:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8b43298

dev-ruby/sqlite3: add 1.4.0

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

 dev-ruby/sqlite3/Manifest |  1 +
 dev-ruby/sqlite3/sqlite3-1.4.0.ebuild | 83 +++
 2 files changed, 84 insertions(+)

diff --git a/dev-ruby/sqlite3/Manifest b/dev-ruby/sqlite3/Manifest
index eaa0a01340c..c2503b4282c 100644
--- a/dev-ruby/sqlite3/Manifest
+++ b/dev-ruby/sqlite3/Manifest
@@ -1 +1,2 @@
 DIST sqlite3-1.3.13.gem 64512 BLAKE2B 
a36e3161e44004a0510297d16bf491df3dc29434432208ad231f5e46ddecb4607add417e105f5ae8472a768f80efef3f74b703b2a441396b4c9b6c9ff90bf31e
 SHA512 
5d3eab7c788cc62c497de179919054324e53595294ec3a9df2a10d23151a406ee9a88f1c3ac945777f138e78cec61018c388b023456b873131d678a6788a505f
+DIST sqlite3-1.4.0.gem 70144 BLAKE2B 
4900db2ffefb1658d1001d3d334c95b6e140abceb99b60c1aff78ffe8ca8055b58a1ea87040dc54893542a55d55aa2c1a91975a61edec18d211bf8dbbd786642
 SHA512 
7db9ca4bc12becd41224be77694453e8ba428303b69e58663f7888746558112e147c5f9076aa8baf3c23ac3e895cac079cb645d281e5eb06f98e0d8e8268562a

diff --git a/dev-ruby/sqlite3/sqlite3-1.4.0.ebuild 
b/dev-ruby/sqlite3/sqlite3-1.4.0.ebuild
new file mode 100644
index 000..a8d2de67e09
--- /dev/null
+++ b/dev-ruby/sqlite3/sqlite3-1.4.0.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_TASK_DOC="faq"
+RUBY_FAKEGEM_DOCDIR="doc faq"
+RUBY_FAKEGEM_EXTRADOC="API_CHANGES.rdoc README.rdoc ChangeLog.cvs 
CHANGELOG.rdoc"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="An extension library to access a SQLite database from Ruby"
+HOMEPAGE="https://github.com/sparklemotion/sqlite3-ruby";
+LICENSE="BSD"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+SLOT="0"
+IUSE=""
+
+RDEPEND+=" >=dev-db/sqlite-3.6.16:3"
+DEPEND+=" >=dev-db/sqlite-3.6.16:3"
+
+ruby_add_bdepend "
+   dev-ruby/rake-compiler
+   doc? ( dev-ruby/rdoc dev-ruby/redcloth )
+   test? ( dev-ruby/minitest:5 )"
+
+all_ruby_prepare() {
+   # We remove the vendor_sqlite3 rake task because it's used to
+   # bundle SQlite3 which we definitely don't want.
+   rm -f rakelib/vendor_sqlite3.rake || die
+
+   # Remove gem tasks since we don't need them and they require hoe.
+   rm -f rakelib/gem.rake || die
+
+   sed -i -e 's:, HOE.spec::' -e '/task :test/d' rakelib/native.rake || die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/sqlite3 extconf.rb || die
+}
+
+all_ruby_compile() {
+   all_fakegem_compile
+
+   if use doc; then
+   rdoc --title "${P} Dcoumentation" -o doc --main README.rdoc lib 
*.rdoc ext/*/*.c || die
+   fi
+}
+
+each_ruby_compile() {
+   emake -Cext/sqlite3 V=1
+   mv ext/sqlite3/sqlite3_native$(get_modname) lib/sqlite3/ || die
+}
+
+each_ruby_test() {
+   ${RUBY} -Ilib:test:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || 
die
+}
+
+each_ruby_install() {
+   each_fakegem_install
+
+   # sqlite3 was called sqlite3-ruby before, so add a spec file that
+   # simply loads sqlite3 to make sure that old projects load correctly
+   # we don't even need to create a file to load this: the `require
+   # sqlite3` was already part of sqlite3-ruby requirements.
+   cat - < "${T}/sqlite3-ruby.gemspec"
+# generated by ebuild
+# $CATEGORY/$PF
+Gem::Specification.new do |s|
+   s.name = "sqlite3-ruby"
+   s.version = "${RUBY_FAKEGEM_VERSION}"
+   s.summary = "Fake gem to load sqlite3"
+   s.homepage = "${HOMEPAGE}"
+   s.specification_version = 3
+   s.add_runtime_dependency("${RUBY_FAKEGEM_NAME}", ["= 
${RUBY_FAKEGEM_VERSION}"])
+end
+EOF
+   RUBY_FAKEGEM_NAME=sqlite3-ruby \
+   RUBY_FAKEGEM_GEMSPEC="${T}/sqlite3-ruby.gemspec" \
+   ruby_fakegem_install_gemspec
+}



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

2019-02-04 Thread Ben Kohler
commit: 8473e439d5c835bdf0e5425f8be6cf6b57936377
Author: Ben Kohler  gentoo  org>
AuthorDate: Mon Feb  4 22:08:22 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Mon Feb  4 22:08:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8473e439

net-wireless/unifi: bump to 5.10.12 & drop old

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Ben Kohler  gentoo.org>

 net-wireless/unifi/Manifest   | 2 +-
 net-wireless/unifi/{unifi-5.10.10.ebuild => unifi-5.10.12.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-wireless/unifi/Manifest b/net-wireless/unifi/Manifest
index a0f2a9ebbf1..36be17a3779 100644
--- a/net-wireless/unifi/Manifest
+++ b/net-wireless/unifi/Manifest
@@ -1,5 +1,5 @@
-DIST unifi-5.10.10.zip 91779017 BLAKE2B 
e33702665ca010127e16bb15a8bd0cc122d13d0464b190d91ec9a948a7846d377db44944e63c52e5dc5cd5bf94f2b8a5acbeda5ae565904ef4d4779b4032
 SHA512 
2036e00ce5aadb768e3e8b2cad7fca6bc11795137c2f63b66bd4d26cfe9e08087f7bc3d123d188626831982dcf03da04ede5c24c28f8aa6e39647ea74ab53c59
 DIST unifi-5.10.11.zip 91776743 BLAKE2B 
68774ce69859db5568447db502d993e5f0e88832ebd026558797634cf9ae98405eaeca2ceaa4d61bdd6de28c02e34939b481d29ab3acc45036fe28696a33
 SHA512 
a8820b8d77c77c7c88bebe3172433114682cb1444dd8d472c06ffb23268d1119234ab02822fc215b1a578d6d832d3d8d5dd6e04cc0889bd711289d00b2ca34bd
+DIST unifi-5.10.12.zip 91787840 BLAKE2B 
e024f1d782dce5d2c88598c092c86d5d5761282154b323497e027b04091400d2db09f6da81ca8d637a51840613e8fca98d1c2d8c5e6fede71a2cb0c790efd950
 SHA512 
ba4b5322137f7fec0990105d66efbd290ef33218db432824dc9ae6af736a59188eed77c074e680c248d260c39e7974956bbd2492c6af2be3465276a9cc77ba48
 DIST unifi-5.6.39.zip 63559153 BLAKE2B 
377c9cbcb49f3f7fe687c7877ca37b4cf4c62076da1a05ce64599be86b8503b910e941bdaa93b9bf77ed259e46ed5355befb695c0cff41157fe1e43a10643216
 SHA512 
456407a0fe140ef35718591777fcc1084ca9ee4f70c97deb554318390aa3e530c5dfbbbe57b659f83d52ca44be8ebd57071cfad2bf7f0f180fa5f2fa9100a1d9
 DIST unifi-5.6.40.zip 63584069 BLAKE2B 
9c241c7ef335b6e4d9ce1d53d8bf6a9b2e6a0c5b91d60f321100e67cc6201f1dc060398dc7af1ee014c47df194f64ddf1eb56a6c7ce53691251b4fd2937c5603
 SHA512 
d2e154ec6bdf24cfcb0e5154512a91dc0e601a2bfe7fcdda4c22b329b304b50315a42485daee8495a5076136055c2cf59ebe42b083221683168199e437589e9a
 DIST unifi-5.9.29.zip 105327499 BLAKE2B 
9c5c1cb804231b72521fce968cb1240b7c64e75621eb6577fe09f43186e90347339159e0cb95e772a936d4d6e82b2ae77126c263fbf25ab244db7e5639972c45
 SHA512 
f00ba9470d78fa5922e81a5ff2e53927d2a2ec7d08ab543abf4b236ff9fb8761b060083025fc410f72c0ff48c75c915dd3561a3869dc4a2de0f8900e19af0976

diff --git a/net-wireless/unifi/unifi-5.10.10.ebuild 
b/net-wireless/unifi/unifi-5.10.12.ebuild
similarity index 98%
rename from net-wireless/unifi/unifi-5.10.10.ebuild
rename to net-wireless/unifi/unifi-5.10.12.ebuild
index 4d2a335ee88..eaa8d8f6a56 100644
--- a/net-wireless/unifi/unifi-5.10.10.ebuild
+++ b/net-wireless/unifi/unifi-5.10.12.ebuild
@@ -4,7 +4,7 @@
 EAPI=6
 
 # Used, when it's an unstable, beta or release candidate
-RC_SUFFIX="-20316752b4"
+RC_SUFFIX="-20644d4901"
 
 inherit systemd user
 



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

2019-02-04 Thread Ben Kohler
commit: c0e8a7d550dbb94fa1dc74bfe31cad0051860cff
Author: Ben Kohler  gentoo  org>
AuthorDate: Mon Feb  4 21:43:41 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Mon Feb  4 21:43:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0e8a7d5

sci-chemistry/vmd: don't reference ${DISTDIR} in pkg_nofetch

Closes: https://bugs.gentoo.org/663224
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Ben Kohler  gentoo.org>

 sci-chemistry/vmd/vmd-1.9.2.ebuild | 4 ++--
 sci-chemistry/vmd/vmd-1.9.3.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sci-chemistry/vmd/vmd-1.9.2.ebuild 
b/sci-chemistry/vmd/vmd-1.9.2.ebuild
index 347a8c9a751..4bc9360f009 100644
--- a/sci-chemistry/vmd/vmd-1.9.2.ebuild
+++ b/sci-chemistry/vmd/vmd-1.9.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -61,7 +61,7 @@ pkg_nofetch() {
elog "${VMD_DOWNLOAD}"
elog "after agreeing to the license and get"
elog "https://dev.gentoo.org/~jlec/distfiles/${P}-gentoo-patches.tar.xz";
-   elog "Place both in ${DISTDIR}"
+   elog "Place both into your DISTDIR directory"
 }
 
 src_prepare() {

diff --git a/sci-chemistry/vmd/vmd-1.9.3.ebuild 
b/sci-chemistry/vmd/vmd-1.9.3.ebuild
index 9a92a88134e..c1480738aa4 100644
--- a/sci-chemistry/vmd/vmd-1.9.3.ebuild
+++ b/sci-chemistry/vmd/vmd-1.9.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=5
@@ -61,7 +61,7 @@ pkg_nofetch() {
elog "${VMD_DOWNLOAD}"
elog "after agreeing to the license and get"
elog "https://dev.gentoo.org/~jlec/distfiles/${P}-gentoo-patches.tar.xz";
-   elog "Place both in ${DISTDIR}"
+   elog "Place both into your DISTDIR directory"
 }
 
 src_prepare() {



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

2019-02-04 Thread Virgil Dupras
commit: 8777cd0f792d4dca61b6476f0a49e75852e946d3
Author: Virgil Dupras  gentoo  org>
AuthorDate: Mon Feb  4 21:23:00 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Mon Feb  4 21:23:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8777cd0f

dev-libs/libwapcaplet: bump buildsystem dep

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

 dev-libs/libwapcaplet/libwapcaplet-0.4.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libwapcaplet/libwapcaplet-0.4.1-r1.ebuild 
b/dev-libs/libwapcaplet/libwapcaplet-0.4.1-r1.ebuild
index dd35cf940da..8160a68a81e 100644
--- a/dev-libs/libwapcaplet/libwapcaplet-0.4.1-r1.ebuild
+++ b/dev-libs/libwapcaplet/libwapcaplet-0.4.1-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=7
@@ -15,7 +15,7 @@ KEYWORDS="~amd64 ~arm ~ppc ~m68k-mint"
 IUSE="test"
 
 DEPEND="
-   dev-util/netsurf-buildsystem
+   >=dev-util/netsurf-buildsystem-1.7-r1
test? ( >=dev-libs/check-0.9.11 )"
 
 PATCHES=(



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

2019-02-04 Thread Virgil Dupras
commit: 63d944d3b20fd94ec685c538f1eea0a8c1da1644
Author: Virgil Dupras  gentoo  org>
AuthorDate: Mon Feb  4 21:22:05 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Mon Feb  4 21:22:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63d944d3

media-libs/libnsgif: bump buildsystem dep

Bug: https://bugs.gentoo.org/645624
Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 media-libs/libnsgif/libnsgif-0.2.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libnsgif/libnsgif-0.2.1-r1.ebuild 
b/media-libs/libnsgif/libnsgif-0.2.1-r1.ebuild
index c7b9095ea83..e4cf69d5e89 100644
--- a/media-libs/libnsgif/libnsgif-0.2.1-r1.ebuild
+++ b/media-libs/libnsgif/libnsgif-0.2.1-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=7
@@ -15,7 +15,7 @@ KEYWORDS="~amd64 ~arm ~ppc ~m68k-mint"
 IUSE=""
 
 DEPEND="
-   dev-util/netsurf-buildsystem
+   >=dev-util/netsurf-buildsystem-1.7-r1
virtual/pkgconfig"
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: dev-util/netsurf-buildsystem/files/, dev-util/netsurf-buildsystem/

2019-02-04 Thread Virgil Dupras
commit: 07c478522a0b5be995eb0cd74a95f74f48872068
Author: Virgil Dupras  gentoo  org>
AuthorDate: Mon Feb  4 21:20:40 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Mon Feb  4 21:20:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07c47852

dev-util/netsurf-buildsystem: build with empty WARNINGFLAGS

Closes: https://bugs.gentoo.org/642164
Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 .../netsurf-buildsystem/files/gentoo-helpers-r1.sh | 19 
 .../netsurf-buildsystem-1.7-r1.ebuild  | 26 ++
 2 files changed, 45 insertions(+)

diff --git a/dev-util/netsurf-buildsystem/files/gentoo-helpers-r1.sh 
b/dev-util/netsurf-buildsystem/files/gentoo-helpers-r1.sh
new file mode 100644
index 000..9ac4354e386
--- /dev/null
+++ b/dev-util/netsurf-buildsystem/files/gentoo-helpers-r1.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+netsurf_define_makeconf() {
+   NETSURF_MAKECONF=(
+   NSSHARED="${EROOT}"/usr/share/netsurf-buildsystem
+   LIBDIR="$(get_libdir)"
+   PREFIX="${EROOT}/usr"
+   Q=
+   CC="$(tc-getCC)"
+   LD="$(tc-getLD)"
+   HOST_CC="\$(CC)"
+   CCOPT=
+   CCNOOPT=
+   CCDBG=
+   LDDBG=
+   AR="$(tc-getAR)"
+   WARNFLAGS=
+   )
+}

diff --git a/dev-util/netsurf-buildsystem/netsurf-buildsystem-1.7-r1.ebuild 
b/dev-util/netsurf-buildsystem/netsurf-buildsystem-1.7-r1.ebuild
new file mode 100644
index 000..3cae740cce6
--- /dev/null
+++ b/dev-util/netsurf-buildsystem/netsurf-buildsystem-1.7-r1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_P="buildsystem-${PV}"
+DESCRIPTION="Build system used for netsurf and its libs"
+HOMEPAGE="https://www.netsurf-browser.org";
+SRC_URI="https://download.netsurf-browser.org/libs/releases/${MY_P}.tar.gz";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~m68k-mint"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   default
+   sed -e 's:/bin/which:which:' -i "makefiles/Makefile.tools" || die
+}
+
+src_install() {
+   emake DESTDIR="${ED}" PREFIX=/usr install
+   insinto /usr/share/netsurf-buildsystem
+   newins "${FILESDIR}/gentoo-helpers-r1.sh" gentoo-helpers.sh
+}



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

2019-02-04 Thread Virgil Dupras
commit: 571f9207caeac007362629709213effaccbca45a
Author: Virgil Dupras  gentoo  org>
AuthorDate: Mon Feb  4 21:27:07 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Mon Feb  4 21:27:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=571f9207

dev-libs/libcss: bump buildsystem dep

Bug: https://bugs.gentoo.org/642164
Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-libs/libcss/libcss-0.8.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libcss/libcss-0.8.0-r1.ebuild 
b/dev-libs/libcss/libcss-0.8.0-r1.ebuild
index e0ce10bd74e..0c86ac9cb05 100644
--- a/dev-libs/libcss/libcss-0.8.0-r1.ebuild
+++ b/dev-libs/libcss/libcss-0.8.0-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=7
@@ -18,7 +18,7 @@ RDEPEND="
>=dev-libs/libparserutils-0.2.1-r1
>=dev-libs/libwapcaplet-0.4.0"
 DEPEND="${RDEPEND}
-   dev-util/netsurf-buildsystem
+   >=dev-util/netsurf-buildsystem-1.7-r1
virtual/pkgconfig
test? ( dev-lang/perl )"
 



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

2019-02-04 Thread Virgil Dupras
commit: ab00f079453583fd6b29c4eeddf6ce5d7259a527
Author: Virgil Dupras  gentoo  org>
AuthorDate: Mon Feb  4 21:24:43 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Mon Feb  4 21:24:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab00f079

dev-libs/libparserutils: bump buildsystem dep

Bug: https://bugs.gentoo.org/533910
Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-libs/libparserutils/libparserutils-0.2.4-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libparserutils/libparserutils-0.2.4-r1.ebuild 
b/dev-libs/libparserutils/libparserutils-0.2.4-r1.ebuild
index f1bf560182e..a129c324b0f 100644
--- a/dev-libs/libparserutils/libparserutils-0.2.4-r1.ebuild
+++ b/dev-libs/libparserutils/libparserutils-0.2.4-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=7
@@ -15,7 +15,7 @@ KEYWORDS="~amd64 ~arm ~ppc ~x86 ~m68k-mint"
 IUSE="iconv test"
 
 DEPEND="
-   dev-util/netsurf-buildsystem
+   >=dev-util/netsurf-buildsystem-1.7-r1
test? ( dev-lang/perl )"
 
 DOCS=( README docs/Todo )



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

2019-02-04 Thread Ben Kohler
commit: 84592114fb73e178f5b13220aea712f6e135b695
Author: Ben Kohler  gentoo  org>
AuthorDate: Mon Feb  4 21:38:30 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Mon Feb  4 21:38:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84592114

dev-db/sqldeveloper: don't reference ${DISTDIR} in pkg_nofetch

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Ben Kohler  gentoo.org>

 dev-db/sqldeveloper/sqldeveloper-4.2.0.17.089.1709.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-db/sqldeveloper/sqldeveloper-4.2.0.17.089.1709.ebuild 
b/dev-db/sqldeveloper/sqldeveloper-4.2.0.17.089.1709.ebuild
index 378497466c3..7979de3c0dd 100644
--- a/dev-db/sqldeveloper/sqldeveloper-4.2.0.17.089.1709.ebuild
+++ b/dev-db/sqldeveloper/sqldeveloper-4.2.0.17.089.1709.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=5
@@ -36,7 +36,7 @@ pkg_nofetch() {
eerror "and download"
eerror "Oracle SQL Developer for other platforms"
eerror "${SRC_URI}"
-   eerror "and move it to ${DISTDIR}"
+   eerror "and move it to your DISTDIR directory."
 }
 
 src_prepare() {



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

2019-02-04 Thread Virgil Dupras
commit: 748ed7b38f1b9b0aa96cb996e485c683f57685f3
Author: Virgil Dupras  gentoo  org>
AuthorDate: Mon Feb  4 20:50:15 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Mon Feb  4 20:50:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=748ed7b3

dev-python/pytest: fix xdist-related test failures

Closes: https://bugs.gentoo.org/670918
Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-python/pytest/pytest-3.10.1.ebuild | 3 ++-
 dev-python/pytest/pytest-4.2.0.ebuild  | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-python/pytest/pytest-3.10.1.ebuild 
b/dev-python/pytest/pytest-3.10.1.ebuild
index 7419f06cfcc..36a8f5a4ac2 100644
--- a/dev-python/pytest/pytest-3.10.1.ebuild
+++ b/dev-python/pytest/pytest-3.10.1.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
@@ -42,6 +42,7 @@ DEPEND="${RDEPEND}
dev-python/requests[${PYTHON_USEDEP}]
!!dev-python/flaky
!!dev-python/pytest-capturelog
+   !!

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

2019-02-04 Thread Markus Meier
commit: d89a4fbd3e7509738ee64a018acca5bb79b6efeb
Author: Markus Meier  gentoo  org>
AuthorDate: Mon Feb  4 20:13:58 2019 +
Commit: Markus Meier  gentoo  org>
CommitDate: Mon Feb  4 20:13:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d89a4fbd

sys-process/audit: arm stable, bug #669532

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

 sys-process/audit/audit-2.8.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/audit/audit-2.8.4.ebuild 
b/sys-process/audit/audit-2.8.4.ebuild
index e2de77176ab..dd87a982694 100644
--- a/sys-process/audit/audit-2.8.4.ebuild
+++ b/sys-process/audit/audit-2.8.4.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://people.redhat.com/sgrubb/audit/${P}.tar.gz";
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86"
 IUSE="gssapi ldap python static-libs"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 # Testcases are pretty useless as they are built for RedHat users/groups and 
kernels.



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

2019-02-04 Thread Markus Meier
commit: e367d300a6f994c9577fe579b1d6f49b22330a4b
Author: Markus Meier  gentoo  org>
AuthorDate: Mon Feb  4 20:16:32 2019 +
Commit: Markus Meier  gentoo  org>
CommitDate: Mon Feb  4 20:16:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e367d300

media-libs/netpbm: arm stable, bug #671068

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

 media-libs/netpbm/netpbm-10.76.00.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/netpbm/netpbm-10.76.00.ebuild 
b/media-libs/netpbm/netpbm-10.76.00.ebuild
index 908bf94485a..d12e1063688 100644
--- a/media-libs/netpbm/netpbm-10.76.00.ebuild
+++ b/media-libs/netpbm/netpbm-10.76.00.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gentoo/${P}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc jbig jpeg jpeg2k png postscript rle cpu_flags_x86_sse2 static-libs 
svga tiff X xml zlib"
 
 RDEPEND="jbig? ( media-libs/jbigkit )



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

2019-02-04 Thread Markus Meier
commit: 69025de97ab61d463ec44438d92c3e77897f75af
Author: Markus Meier  gentoo  org>
AuthorDate: Mon Feb  4 20:16:09 2019 +
Commit: Markus Meier  gentoo  org>
CommitDate: Mon Feb  4 20:16:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69025de9

media-libs/kvazaar: arm stable, bug #671044

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

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

diff --git a/media-libs/kvazaar/kvazaar-1.2.0-r1.ebuild 
b/media-libs/kvazaar/kvazaar-1.2.0-r1.ebuild
index 59d808abaa4..0bcfc82138f 100644
--- a/media-libs/kvazaar/kvazaar-1.2.0-r1.ebuild
+++ b/media-libs/kvazaar/kvazaar-1.2.0-r1.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} = * ]] ; then
 else
SRC_URI="https://github.com/ultravideo/kvazaar/archive/v${PV}.tar.gz -> 
${P}.tar.gz
test? ( 
https://github.com/silentbicycle/greatest/archive/v${GREATEST_PV}.tar.gz -> 
greatest-${GREATEST_PV}.tar.gz )"
-   KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~ppc ~ppc64 sparc x86"
+   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~ppc ~ppc64 sparc x86"
 fi
 inherit autotools flag-o-matic multilib-minimal toolchain-funcs
 



[gentoo-commits] repo/gentoo:master commit in: x11-terms/guake/

2019-02-04 Thread Markus Meier
commit: 0752a06a39e66b31763bd51da22872c93614b03b
Author: Markus Meier  gentoo  org>
AuthorDate: Mon Feb  4 20:13:36 2019 +
Commit: Markus Meier  gentoo  org>
CommitDate: Mon Feb  4 20:13:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0752a06a

x11-terms/guake: arm stable, bug #667204

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

 x11-terms/guake/guake-3.3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/guake/guake-3.3.2.ebuild 
b/x11-terms/guake/guake-3.3.2.ebuild
index 58cb9477d9e..78f906e92b2 100644
--- a/x11-terms/guake/guake-3.3.2.ebuild
+++ b/x11-terms/guake/guake-3.3.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/G/${PN^}/${P^}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 arm x86"
 IUSE="utempter"
 
 RDEPEND="



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

2019-02-04 Thread Markus Meier
commit: a8e7473cf9585fdd281f1a55565bf8bdd93539d9
Author: Markus Meier  gentoo  org>
AuthorDate: Mon Feb  4 20:15:44 2019 +
Commit: Markus Meier  gentoo  org>
CommitDate: Mon Feb  4 20:15:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8e7473c

dev-python/pytest: arm stable, bug #669630

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

 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 48893ea784d..44c0e899cc9 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: dev-python/attrs/

2019-02-04 Thread Markus Meier
commit: 18ccb52e9d5deaf4fbb2c535bc404ca69127b76d
Author: Markus Meier  gentoo  org>
AuthorDate: Mon Feb  4 20:15:38 2019 +
Commit: Markus Meier  gentoo  org>
CommitDate: Mon Feb  4 20:15:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18ccb52e

dev-python/attrs: arm stable, bug #669630

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

 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 40e4fdcf3c8..cfbcb7cb13f 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-libs/mathjax/

2019-02-04 Thread Markus Meier
commit: 67f24a0925ac77e59e943a7e2027d42f0290708a
Author: Markus Meier  gentoo  org>
AuthorDate: Mon Feb  4 20:12:51 2019 +
Commit: Markus Meier  gentoo  org>
CommitDate: Mon Feb  4 20:12:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67f24a09

dev-libs/mathjax: arm stable, bug #666844

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

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

diff --git a/dev-libs/mathjax/mathjax-2.7.4.ebuild 
b/dev-libs/mathjax/mathjax-2.7.4.ebuild
index b73a21a6102..cd23b2b8e94 100644
--- a/dev-libs/mathjax/mathjax-2.7.4.ebuild
+++ b/dev-libs/mathjax/mathjax-2.7.4.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
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/mathjax/MathJax/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples"
 
 RESTRICT="binchecks strip"



[gentoo-commits] repo/gentoo:master commit in: dev-lua/lua-zlib/

2019-02-04 Thread Markus Meier
commit: 704f2c727a98d0f2f5d099311c90e1fb47e03208
Author: Markus Meier  gentoo  org>
AuthorDate: Mon Feb  4 20:12:26 2019 +
Commit: Markus Meier  gentoo  org>
CommitDate: Mon Feb  4 20:12:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=704f2c72

dev-lua/lua-zlib: arm stable, bug #622680

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

 dev-lua/lua-zlib/lua-zlib-1.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lua/lua-zlib/lua-zlib-1.1.ebuild 
b/dev-lua/lua-zlib/lua-zlib-1.1.ebuild
index f036e0a8aea..b51a835e97d 100644
--- a/dev-lua/lua-zlib/lua-zlib-1.1.ebuild
+++ b/dev-lua/lua-zlib/lua-zlib-1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/brimworks/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 arm x86"
 IUSE=""
 
 RDEPEND="dev-lang/lua:0



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

2019-02-04 Thread Markus Meier
commit: 67ac3a42f340c2b71db1c6576a0d0663a46feee3
Author: Markus Meier  gentoo  org>
AuthorDate: Mon Feb  4 20:15:30 2019 +
Commit: Markus Meier  gentoo  org>
CommitDate: Mon Feb  4 20:15:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67ac3a42

dev-python/py: arm stable, bug #669630

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

 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 b458a274466..577549a7244 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: net-misc/dhcp/

2019-02-04 Thread Markus Meier
commit: dd82f4b4409ba93df284fad523b628f4e9955364
Author: Markus Meier  gentoo  org>
AuthorDate: Mon Feb  4 20:13:11 2019 +
Commit: Markus Meier  gentoo  org>
CommitDate: Mon Feb  4 20:13:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd82f4b4

net-misc/dhcp: arm stable, bug #666860

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

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

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



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

2019-02-04 Thread Dennis Lamm
commit: 573be007ffdf0e7797796c2e60ba6474a7f1d134
Author: Dennis Lamm  gentoo  org>
AuthorDate: Mon Feb  4 20:08:24 2019 +
Commit: Dennis Lamm  gentoo  org>
CommitDate: Mon Feb  4 20:09:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=573be007

gnome-extra/gucharmap: version bump

Signed-off-by: Dennis Lamm  gentoo.org>

 gnome-extra/gucharmap/Manifest|  1 +
 gnome-extra/gucharmap/gucharmap-11.0.3.ebuild | 65 +++
 2 files changed, 66 insertions(+)

diff --git a/gnome-extra/gucharmap/Manifest b/gnome-extra/gucharmap/Manifest
index f6b82cc257d..0a36ee5d756 100644
--- a/gnome-extra/gucharmap/Manifest
+++ b/gnome-extra/gucharmap/Manifest
@@ -1,2 +1,3 @@
 DIST gucharmap-10.0.3.tar.xz 1713960 BLAKE2B 
0a0412c7a4d46c25112d9bb33d64e82b448e981a2ecb9a5ed5ce5e96657e5264e14262b15c4e5af6b3d023c20193a7471071c5d346f0d48e22583b07e92d51f7
 SHA512 
0815ca39311db4dc3ff5202f1303cad72bc204f4eef4d2ec83465123ff856eeb552a583666419ad4a3bf9d3ddcf294883fc8e24e32c30814916b41bc14a108fe
+DIST gucharmap-11.0.3.tar.xz 1766884 BLAKE2B 
fe92675494d5bf8e62f3b38356ecca59d4be515c8a08d6729d1bc3c7ba6c7b3e4ed802f4e1f79f2830f56f96a7d708d7d5a2bd1a79a36c9cd2bb0f1b6bfd1577
 SHA512 
281749d3fbea937ff6ce958a7216ead03fdf19cb303aef528a1456c5ab90be977f704ff65b2e665cbad58d2c14db51b0ad144fc6961aadbb7d95ec288d79402c
 DIST gucharmap-3.0.1.tar.bz2 3275481 BLAKE2B 
80dde7791abdc72677add9c65c59f810e6c6952116b92db34059c4c40d2657246b17844c105e68f32c86294e9b4e71e9d48e6f0522855465734d7c24e8d17608
 SHA512 
4d8a2276b5cb1a0b0fadca2a8522755c5884985a12d5b19341b9cefcd7f749ec1286c0271419e38ec84be7edcfa1293e7f0263eb682c75387d692792de3e1fb1

diff --git a/gnome-extra/gucharmap/gucharmap-11.0.3.ebuild 
b/gnome-extra/gucharmap/gucharmap-11.0.3.ebuild
new file mode 100644
index 000..adb820d43f7
--- /dev/null
+++ b/gnome-extra/gucharmap/gucharmap-11.0.3.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+VALA_USE_DEPEND="vapigen"
+
+inherit gnome2 vala versionator
+
+DESCRIPTION="Unicode character map viewer and library"
+HOMEPAGE="https://wiki.gnome.org/Apps/Gucharmap";
+
+LICENSE="GPL-3"
+SLOT="2.90"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd"
+
+IUSE="debug +introspection test vala"
+REQUIRED_USE="vala? ( introspection )"
+
+UNICODE_VERSION=$(get_version_component_range 1-2)
+
+COMMON_DEPEND="
+   =app-i18n/unicode-data-${UNICODE_VERSION}*
+   >=dev-libs/glib-2.32:2
+   >=x11-libs/pango-1.2.1[introspection?]
+   >=x11-libs/gtk+-3.16:3[introspection?]
+   introspection? ( >=dev-libs/gobject-introspection-0.9.0:= )
+"
+RDEPEND="${COMMON_DEPEND}
+   !https://bugzilla.gnome.org/show_bug.cgi?id=768210#c5
+   # https://gitlab.gnome.org/GNOME/gucharmap/issues/13
+   gnome2_src_configure \
+   --disable-static \
+   --with-unicode-data=/usr/share/unicode-data \
+   $(usex debug --enable-debug=yes ' ') \
+   $(use_enable introspection) \
+   $(use_enable vala)
+}



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

2019-02-04 Thread Hans de Graaff
commit: af6663f780b22e805945640e3103875b41020a7e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Feb  4 19:54:41 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Feb  4 20:02:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af6663f7

dev-ruby/bourne: add ruby25, ruby26

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

 dev-ruby/bourne/bourne-1.6.0.ebuild | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/bourne/bourne-1.6.0.ebuild 
b/dev-ruby/bourne/bourne-1.6.0.ebuild
index 2e540174232..51ad0763943 100644
--- a/dev-ruby/bourne/bourne-1.6.0.ebuild
+++ b/dev-ruby/bourne/bourne-1.6.0.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="README.md"
@@ -21,11 +21,15 @@ SLOT="0"
 KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 
-ruby_add_rdepend ">=dev-ruby/mocha-1.1:1.0"
+ruby_add_rdepend ">=dev-ruby/mocha-1.5.0:1.0"
 
 ruby_add_bdepend "test? ( dev-ruby/test-unit:2 )"
 
 all_ruby_prepare() {
sed -i -e '/git ls-files/d' "${RUBY_FAKEGEM_GEMSPEC}" || die
sed -i -e '/bundler/d' Rakefile || die
+
+   # Fix tests to work with mocha 1.5.0 or newer where reset_instance is 
gone
+   sed -i -e '/reset_instance/ s:^:#:' test/unit/*received_test.rb || die
+   sed -i -e 's/Mockery.reset_instance/mocha_teardown/' 
test/unit/mockery_test.rb || die
 }



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

2019-02-04 Thread Matthew Thode
commit: 25c88c0711fd51b48fd3bc949a157f44b7fa5c2b
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Feb  4 20:01:42 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Feb  4 20:02:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25c88c07

app-emulation/diskimage-builder: 2.20.0 bup

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

 app-emulation/diskimage-builder/Manifest   |  1 +
 .../diskimage-builder-2.20.0.ebuild| 37 ++
 2 files changed, 38 insertions(+)

diff --git a/app-emulation/diskimage-builder/Manifest 
b/app-emulation/diskimage-builder/Manifest
index 01a45d983b7..cb51674cb78 100644
--- a/app-emulation/diskimage-builder/Manifest
+++ b/app-emulation/diskimage-builder/Manifest
@@ -1 +1,2 @@
 DIST diskimage-builder-2.19.0.tar.gz 359520 BLAKE2B 
2ddbee82cc45267faa45e7fa8b80012096676ca792eed6aee766d24fd3a5297f7f21af94c84259308fd0a48b9c913ba94575333d792b7dcd67c09d6493ff3f2b
 SHA512 
57da6f0507a96f873bc034862dd58649d8d9ff65c7ad83f8245658fed5919b47ac29c5f8d1bb9ff2d544304955c48fa1ff3a183d90ba47bcc8d1f88c09e4014c
+DIST diskimage-builder-2.20.0.tar.gz 366139 BLAKE2B 
51399a4dad2dfb9100e4d196bae0cbe21d67a603ae8a3c5fb445de30cae7216d68090a8a4cdcd7839b9a11b472f5933d5d09814e60ad3ed1df3c373d012be97f
 SHA512 
0d7e725eed0af0c549705029cf9af465d1ea10fa5ec82d6848a437d51783f8749ed613231fd4218db65f41b560eed16db5254788a097398ac267edf2ef04cea5

diff --git a/app-emulation/diskimage-builder/diskimage-builder-2.20.0.ebuild 
b/app-emulation/diskimage-builder/diskimage-builder-2.20.0.ebuild
new file mode 100644
index 000..4c5588077db
--- /dev/null
+++ b/app-emulation/diskimage-builder/diskimage-builder-2.20.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1
+
+DESCRIPTION="Golden Disk Image builder."
+HOMEPAGE="http://docs.openstack.org/developer/diskimage-builder/";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
+   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
+DEPEND="${CDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="${CDEPEND}
+   >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
+   !~dev-python/Babel-2.4.0[${PYTHON_USEDEP}]
+   >=dev-python/networkx-1.10[${PYTHON_USEDEP}]
+   =dev-python/pyyaml-3.12[${PYTHON_USEDEP}]
+   >=dev-python/flake8-2.5.4[${PYTHON_USEDEP}]
+   =dev-python/six-1.10.0[${PYTHON_USEDEP}]
+   >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
+   app-emulation/qemu
+   sys-block/parted
+   sys-fs/multipath-tools
+   sys-fs/dosfstools
+   sys-apps/gptfdisk
+   !dev-python/dib-utils[${PYTHON_USEDEP}]"



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

2019-02-04 Thread Dennis Lamm
commit: a715eb04fe9078f78d62997c74ac3fc5eff1bc7a
Author: Dennis Lamm  gentoo  org>
AuthorDate: Mon Feb  4 19:57:06 2019 +
Commit: Dennis Lamm  gentoo  org>
CommitDate: Mon Feb  4 19:57:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a715eb04

app-office/gnumeric: version bump

Signed-off-by: Dennis Lamm  gentoo.org>

 app-office/gnumeric/Manifest|  1 +
 app-office/gnumeric/gnumeric-1.12.44.ebuild | 77 +
 2 files changed, 78 insertions(+)

diff --git a/app-office/gnumeric/Manifest b/app-office/gnumeric/Manifest
index 0f07e6a8434..8ef19357413 100644
--- a/app-office/gnumeric/Manifest
+++ b/app-office/gnumeric/Manifest
@@ -1,2 +1,3 @@
 DIST gnumeric-1.12.39.tar.xz 20040688 BLAKE2B 
5d99da20b567a939208881b962de3c79ab115a24953dc04d6c882e9a54946e5c5fbd32808a8006e396d70bc9a2a9783b20106536da1c19f7ed7dccd3b12c2fff
 SHA512 
8ae09ea857989e65a8fe2070b30c2309d82daa4142816ef3a1b107035aea0d71498d84eaeeaa870a1587e3785146fad3304321a531c75f6e2f200def53a8e898
 DIST gnumeric-1.12.43.tar.xz 18033636 BLAKE2B 
32cbbefc10c0537b02b56564ed37f03d69d0865e9bd16dc8cb77aacf682087fce60f01a2e70b5dbef4d73840b6ccbe198d3c5cc5f13b0f1b2a48d0af635e607f
 SHA512 
d2702000e6c4f4c0c7ff442a2b81e10f4d55f0cffbf7b7f1e7c9fed98fb46172b0118ca05102aa53fb4f953799e2be3534f0518b025ece26647ce67b870a34a7
+DIST gnumeric-1.12.44.tar.xz 18010384 BLAKE2B 
0348714a7dae119b36a6739ea499bc0411416637fe9cbd703024f4cdcdb894e2d4b0da3212ea6e2ad1dd81f893c96341722c83ef014db7f0a6f2a048696f41c6
 SHA512 
ea21dcdf5fdf4e02bb9d83671675f2409f12ee928611604d7589e0047ce5d75bf6ac51e6a5322c4af520428acdccf4c2b3b8e3fc6530030e162268aea94a503f

diff --git a/app-office/gnumeric/gnumeric-1.12.44.ebuild 
b/app-office/gnumeric/gnumeric-1.12.44.ebuild
new file mode 100644
index 000..4f7ba1dc802
--- /dev/null
+++ b/app-office/gnumeric/gnumeric-1.12.44.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+GNOME2_LA_PUNT="yes"
+PYTHON_COMPAT=( python2_7 python{3_4,3_5,3_6} )
+
+inherit gnome2 flag-o-matic python-r1
+
+DESCRIPTION="The GNOME Spreadsheet"
+HOMEPAGE="http://www.gnumeric.org/";
+LICENSE="GPL-2"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+
+IUSE="+introspection libgda perl python"
+# python-loader plugin is python2.7 only
+REQUIRED_USE="python? ( $(python_gen_useflags -2) )"
+
+# Missing gnome-extra/libgnomedb required version in tree
+# but its upstream is dead and will be dropped soon.
+
+# lots of missing files, also fails tests due to 80-bit long story
+# upstream bug #721556
+RESTRICT="test"
+
+RDEPEND="
+   app-arch/bzip2
+   sys-libs/zlib
+   >=dev-libs/glib-2.40.0:2
+   >=gnome-extra/libgsf-1.14.33:=
+   >=x11-libs/goffice-0.10.42:0.10
+   >=dev-libs/libxml2-2.4.12:2
+   >=x11-libs/pango-1.24.0:=
+
+   >=x11-libs/gtk+-3.8.7:3
+   x11-libs/cairo:=[svg]
+
+   introspection? ( >=dev-libs/gobject-introspection-1:= )
+   perl? ( dev-lang/perl:= )
+   python? ( ${PYTHON_DEPS}
+   >=dev-python/pygobject-3:3[${PYTHON_USEDEP}] )
+   libgda? ( gnome-extra/libgda:5[gtk] )
+"
+DEPEND="${RDEPEND}
+   app-text/docbook-xml-dtd:4.5
+   app-text/yelp-tools
+   dev-util/gtk-doc-am
+   >=dev-util/intltool-0.35.0
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   # Manage gi overrides ourselves
+   sed '/SUBDIRS/ s/introspection//' -i Makefile.{am,in} || die
+   gnome2_src_prepare
+}
+
+src_configure() {
+   if use python ; then
+   python_setup 'python2*'
+   fi
+   gnome2_src_configure \
+   --disable-static \
+   --with-zlib \
+   $(use_with libgda gda) \
+   $(use_enable introspection) \
+   $(use_with perl) \
+   $(use_with python)
+}
+
+src_install() {
+   gnome2_src_install
+   python_moduleinto gi.overrides
+   python_foreach_impl python_domodule introspection/gi/overrides/Gnm.py
+}



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

2019-02-04 Thread Virgil Dupras
commit: f3ea433882c403f7dee4831762b4cb0723eed8cb
Author: Virgil Dupras  gentoo  org>
AuthorDate: Mon Feb  4 19:55:04 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Mon Feb  4 19:55:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3ea4338

dev-python/pytest-xdist: fix broken tests

Closes: https://bugs.gentoo.org/673106
Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-python/pytest-xdist/pytest-xdist-1.23.2.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-python/pytest-xdist/pytest-xdist-1.23.2.ebuild 
b/dev-python/pytest-xdist/pytest-xdist-1.23.2.ebuild
index b3fefb375b7..f7e24b5867e 100644
--- a/dev-python/pytest-xdist/pytest-xdist-1.23.2.ebuild
+++ b/dev-python/pytest-xdist/pytest-xdist-1.23.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
@@ -22,10 +22,13 @@ RDEPEND="
dev-python/pytest-forked[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
 "
+
+# See #673106 about the pytest-xdist blocker.
 DEPEND="${RDEPEND}
!!dev-python/pytest-capturelog
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? ( !!

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

2019-02-04 Thread Virgil Dupras
commit: e4ce1b6c6e123ae27d35e9e4de62ecfcb52cde83
Author: Virgil Dupras  gentoo  org>
AuthorDate: Mon Feb  4 19:56:47 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Mon Feb  4 19:56:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4ce1b6c

dev-python/pytest-xdist: propagate ~sh keyword

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

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

diff --git a/dev-python/pytest-xdist/pytest-xdist-1.23.2.ebuild 
b/dev-python/pytest-xdist/pytest-xdist-1.23.2.ebuild
index f7e24b5867e..fcf8b14e4d6 100644
--- a/dev-python/pytest-xdist/pytest-xdist-1.23.2.ebuild
+++ b/dev-python/pytest-xdist/pytest-xdist-1.23.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="MIT"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-java/openjdk/

2019-02-04 Thread Georgy Yakovlev
commit: 8b8fcac923e11a45b0557f991d15ef75ff0d9b0c
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Feb  4 19:29:41 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Feb  4 19:44:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b8fcac9

dev-java/openjdk: update metadata.xml

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

 dev-java/openjdk/metadata.xml | 33 -
 1 file changed, 20 insertions(+), 13 deletions(-)

diff --git a/dev-java/openjdk/metadata.xml b/dev-java/openjdk/metadata.xml
index efa076c6f48..e75b49c2ec0 100644
--- a/dev-java/openjdk/metadata.xml
+++ b/dev-java/openjdk/metadata.xml
@@ -1,17 +1,24 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-  
-j...@gentoo.org
-Java
-  
-  Java™ is the world's leading programming language and 
platform. The code for Java is open source and available at 
OpenJDK™.
-  
-Don't install the X backend for AWT, needed by 
some GUIs
-Allow this JDK to be recognised by Gentoo (package 
manager, eselect, java-config, EXPERIMENTAL!)
-Build OpenJDK twice, the second time using the 
result of the first
-Install JVM sources
-Enable SystemTAP/DTrace tracing
-Provide javaws command through symlink to 
icedtea-web
-  
+   
+   gyakov...@gentoo.org
+   Georgy Yakovlev
+   
+   
+   j...@gentoo.org
+   Java
+   
+   
+   Java™ is the world's leading programming language and platform.
+   The code for Java is open source and available at OpenJDK™.
+   
+   
+   Don't install the X backend for AWT, 
needed by some GUIs
+   Allow this JDK to be recognised by 
Gentoo (package manager, eselect, java-config, EXPERIMENTAL!)
+   Build OpenJDK twice, the second time 
using the result of the first
+   Install JVM sources
+   Enable SystemTAP/DTrace tracing
+   Provide javaws command through symlink to 
icedtea-web
+   
 



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

2019-02-04 Thread Georgy Yakovlev
commit: 4919049d13dc522a86b86f951b3e0965141df337
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Feb  4 19:20:40 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Feb  4 19:44:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4919049d

profiles/arch/powerpc/ppc64/64le/package.mask: update openjdk mask

fixes
--- Unmatched removal atom(s) in
/usr/portage/profiles/arch/powerpc/ppc64/64le/package.mask: -dev-java/openjdk

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

 profiles/arch/powerpc/ppc64/64le/package.mask | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/profiles/arch/powerpc/ppc64/64le/package.mask 
b/profiles/arch/powerpc/ppc64/64le/package.mask
index 962a4dd5bfb..300d9c0d786 100644
--- a/profiles/arch/powerpc/ppc64/64le/package.mask
+++ b/profiles/arch/powerpc/ppc64/64le/package.mask
@@ -1,9 +1,10 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-# James Le Cuirot  (19 Oct 2018)
-# AdoptOpenJDK's ppc64 build is little-endian only.
--dev-java/openjdk
+# Georgy Yakovlev  (04 Feb 2019)
+# AdoptOpenJDK's ppc64 build is little-endian only
+# so we can use bins and build from source
+-dev-java/openjdk:11
 -dev-java/openjdk-bin
 
 # Sergei Trofimovich  (11 Apr 2018)



[gentoo-commits] repo/gentoo:master commit in: net-fs/samba/

2019-02-04 Thread Sergei Trofimovich
commit: 35181c6c28fe4bd3ec23987b803672f231fe6bd6
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Feb  4 17:00:58 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb  4 19:41:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35181c6c

net-fs/samba: keyworded 4.8.* for sparc

Closes: https://bugs.gentoo.org/664314
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 net-fs/samba/samba-4.8.6-r2.ebuild | 4 ++--
 net-fs/samba/samba-4.8.6-r3.ebuild | 2 +-
 net-fs/samba/samba-4.8.8-r1.ebuild | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-fs/samba/samba-4.8.6-r2.ebuild 
b/net-fs/samba/samba-4.8.6-r2.ebuild
index c4790c2400e..fdf14efaacd 100644
--- a/net-fs/samba/samba-4.8.6-r2.ebuild
+++ b/net-fs/samba/samba-4.8.6-r2.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
@@ -15,7 +15,7 @@ SRC_PATH="stable"
 
 SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
 [[ ${PV} = *_rc* ]] || \
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
 
 DESCRIPTION="Samba Suite Version 4"
 HOMEPAGE="https://www.samba.org/";

diff --git a/net-fs/samba/samba-4.8.6-r3.ebuild 
b/net-fs/samba/samba-4.8.6-r3.ebuild
index 742b6cd1b8e..c08ebb65077 100644
--- a/net-fs/samba/samba-4.8.6-r3.ebuild
+++ b/net-fs/samba/samba-4.8.6-r3.ebuild
@@ -15,7 +15,7 @@ SRC_PATH="stable"
 
 SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
 [[ ${PV} = *_rc* ]] || \
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 DESCRIPTION="Samba Suite Version 4"
 HOMEPAGE="https://www.samba.org/";

diff --git a/net-fs/samba/samba-4.8.8-r1.ebuild 
b/net-fs/samba/samba-4.8.8-r1.ebuild
index e004ef37a58..cc6479aa66b 100644
--- a/net-fs/samba/samba-4.8.8-r1.ebuild
+++ b/net-fs/samba/samba-4.8.8-r1.ebuild
@@ -15,7 +15,7 @@ SRC_PATH="stable"
 
 SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
 [[ ${PV} = *_rc* ]] || \
-KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 DESCRIPTION="Samba Suite Version 4"
 HOMEPAGE="https://www.samba.org/";



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

2019-02-04 Thread Sergei Trofimovich
commit: dc198c4132377642a42b021f4c77bb3ed007a7e9
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Feb  4 16:46:03 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb  4 19:40:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc198c41

app-dicts/myspell-da: stable 2.3 for sparc, bug #676384

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

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

diff --git a/app-dicts/myspell-da/myspell-da-2.3.ebuild 
b/app-dicts/myspell-da/myspell-da-2.3.ebuild
index 688276ffd42..48c835fde98 100644
--- a/app-dicts/myspell-da/myspell-da-2.3.ebuild
+++ b/app-dicts/myspell-da/myspell-da-2.3.ebuild
@@ -24,5 +24,5 @@ 
SRC_URI="https://extensions.libreoffice.org/extensions/stavekontrolden-danish-di
 
 LICENSE="GPL-2 LGPL-2.1 MPL-1.1"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/dictd-vera/

2019-02-04 Thread Sergei Trofimovich
commit: e63d4ae308c3a5ec3b85814968638638eb1720f1
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Feb  4 16:43:31 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb  4 19:40:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e63d4ae3

app-dicts/dictd-vera: stable 1.23 for sparc, bug #676382

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

 app-dicts/dictd-vera/dictd-vera-1.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-dicts/dictd-vera/dictd-vera-1.23.ebuild 
b/app-dicts/dictd-vera/dictd-vera-1.23.ebuild
index 78ab4890c9a..ef96454cf26 100644
--- a/app-dicts/dictd-vera/dictd-vera-1.23.ebuild
+++ b/app-dicts/dictd-vera/dictd-vera-1.23.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://gnu/vera/vera-${PV}.tar.gz"
 
 SLOT="0"
 LICENSE="FDL-1.3"
-KEYWORDS="~amd64 ppc ppc64 ~sparc x86"
+KEYWORDS="~amd64 ppc ppc64 sparc x86"
 
 DEPEND=">=app-text/dictd-1.5.5"
 RDEPEND="${DEPEND}"



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

2019-02-04 Thread Sergei Trofimovich
commit: 7bb85a62a89cc3d30652741ea022a9974fcc7141
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Feb  4 16:47:45 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb  4 19:40:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bb85a62

app-dicts/myspell-lt: stable 1.3 for sparc, bug #676384

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

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

diff --git a/app-dicts/myspell-lt/myspell-lt-1.3.ebuild 
b/app-dicts/myspell-lt/myspell-lt-1.3.ebuild
index 51bb3fea053..ff7eb7fcbbe 100644
--- a/app-dicts/myspell-lt/myspell-lt-1.3.ebuild
+++ b/app-dicts/myspell-lt/myspell-lt-1.3.ebuild
@@ -22,5 +22,5 @@ 
SRC_URI="https://launchpad.net/ispell-lt/main/${PV}/+download/${P}.zip";
 
 LICENSE="BSD LPPL-1.3b"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-i18n/man-pages-zh_CN/

2019-02-04 Thread Sergei Trofimovich
commit: 9974ac69d813ca25658e04c6fbf08bdab5f5a174
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Feb  4 16:45:13 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb  4 19:40:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9974ac69

app-i18n/man-pages-zh_CN: stable 1.6.3.2 for sparc, bug #676408

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

 app-i18n/man-pages-zh_CN/man-pages-zh_CN-1.6.3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/man-pages-zh_CN/man-pages-zh_CN-1.6.3.2.ebuild 
b/app-i18n/man-pages-zh_CN/man-pages-zh_CN-1.6.3.2.ebuild
index 2a13e460dde..26d25854cd9 100644
--- a/app-i18n/man-pages-zh_CN/man-pages-zh_CN-1.6.3.2.ebuild
+++ b/app-i18n/man-pages-zh_CN/man-pages-zh_CN-1.6.3.2.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="FDL-1.2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND="virtual/man"



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

2019-02-04 Thread Sergei Trofimovich
commit: b669079ddd060e6c65b2b371e189d6790f33ecaa
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Feb  4 16:49:52 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb  4 19:40:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b669079d

sys-apps/coreutils: stable 8.30 for sparc, bug #675762

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

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

diff --git a/sys-apps/coreutils/coreutils-8.30.ebuild 
b/sys-apps/coreutils/coreutils-8.30.ebuild
index 330af6ad0d4..6bd05c73496 100644
--- a/sys-apps/coreutils/coreutils-8.30.ebuild
+++ b/sys-apps/coreutils/coreutils-8.30.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~x86-linux"
 IUSE="acl caps gmp hostname kill multicall nls selinux +split-usr static test 
userland_BSD vanilla xattr"
 
 LIB_DEPEND="acl? ( sys-apps/acl[static-libs] )



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

2019-02-04 Thread Sergei Trofimovich
commit: 5fa9ded846689e09a319b3b2a513359f260707a6
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Feb  4 17:16:23 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb  4 19:41:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fa9ded8

dev-python/pylint: keyworded 2.2.2 for sparc, bug #677026

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

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

diff --git a/dev-python/pylint/pylint-2.2.2.ebuild 
b/dev-python/pylint/pylint-2.2.2.ebuild
index e34600103c3..96d3ac690fa 100644
--- a/dev-python/pylint/pylint-2.2.2.ebuild
+++ b/dev-python/pylint/pylint-2.2.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~sparc ~x86"
 IUSE="doc examples test"
 
 RDEPEND="



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

2019-02-04 Thread Sergei Trofimovich
commit: 7fdef9e646bb3ef31bea0df6b266f244167f7809
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Feb  4 16:42:38 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb  4 19:40:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fdef9e6

app-text/poppler-data: stable 0.4.9 for sparc, bug #674792

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

 app-text/poppler-data/poppler-data-0.4.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/poppler-data/poppler-data-0.4.9.ebuild 
b/app-text/poppler-data/poppler-data-0.4.9.ebuild
index 927855328dc..84696e5edbb 100644
--- a/app-text/poppler-data/poppler-data-0.4.9.ebuild
+++ b/app-text/poppler-data/poppler-data-0.4.9.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://poppler.freedesktop.org/";
 SRC_URI="https://poppler.freedesktop.org/${P}.tar.gz";
 
 LICENSE="BSD GPL-2 MIT"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE=""
 



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

2019-02-04 Thread Sergei Trofimovich
commit: 92a083a7eebd37075c64b98dc59b0a199ac78501
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Feb  4 16:59:15 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb  4 19:40:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92a083a7

dev-python/astroid: keyworded 2.1.0 for sparc, bug #677026

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

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

diff --git a/dev-python/astroid/astroid-2.1.0.ebuild 
b/dev-python/astroid/astroid-2.1.0.ebuild
index 5f03bf78ac6..93e1ad6f4fb 100644
--- a/dev-python/astroid/astroid-2.1.0.ebuild
+++ b/dev-python/astroid/astroid-2.1.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~sparc ~x86"
 IUSE="test"
 
 # Version specified in __pkginfo__.py.



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

2019-02-04 Thread Sergei Trofimovich
commit: bfebd0997bc62d4b560ac8d76abc1360b825758c
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Feb  4 16:54:36 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb  4 19:40:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfebd099

dev-libs/xerces-c: stable 3.2.2-r1 for sparc, bug #677238

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

 dev-libs/xerces-c/xerces-c-3.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/xerces-c/xerces-c-3.2.2-r1.ebuild 
b/dev-libs/xerces-c/xerces-c-3.2.2-r1.ebuild
index 2c447d12051..35ae4681a38 100644
--- a/dev-libs/xerces-c/xerces-c-3.2.2-r1.ebuild
+++ b/dev-libs/xerces-c/xerces-c-3.2.2-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == * ]] ; then
inherit subversion
 else
SRC_URI="mirror://apache/xerces/c/3/sources/${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 LICENSE="Apache-2.0"



[gentoo-commits] repo/gentoo:master commit in: sci-physics/clhep/

2019-02-04 Thread Sergei Trofimovich
commit: a993a42cc98eb5792c9cc0d6fbb8cad0b09ecc7c
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Feb  4 16:51:39 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb  4 19:40:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a993a42c

sci-physics/clhep: stable 2.4.0.4 for hppa, bug #657254

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

 sci-physics/clhep/clhep-2.4.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-physics/clhep/clhep-2.4.0.4.ebuild 
b/sci-physics/clhep/clhep-2.4.0.4.ebuild
index 5f32e859e2c..1a4f4b585e1 100644
--- a/sci-physics/clhep/clhep-2.4.0.4.ebuild
+++ b/sci-physics/clhep/clhep-2.4.0.4.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://proj-clhep.web.cern.ch/proj-clhep/";
 
SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/${P}.tgz";
 LICENSE="GPL-3 LGPL-3"
 SLOT="2/${PV}"
-KEYWORDS="amd64 ~hppa ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="amd64 hppa ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 IUSE="doc test threads"
 



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

2019-02-04 Thread Sergei Trofimovich
commit: 27404e33ae0c7d46e90feac9c7feb563ce35547c
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Feb  4 16:46:54 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb  4 19:40:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27404e33

app-dicts/myspell-he: stable 2012.08.15 for sparc, bug #676384

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

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

diff --git a/app-dicts/myspell-he/myspell-he-2012.08.15.ebuild 
b/app-dicts/myspell-he/myspell-he-2012.08.15.ebuild
index 19bb61c3921..43cf7dcd391 100644
--- a/app-dicts/myspell-he/myspell-he-2012.08.15.ebuild
+++ b/app-dicts/myspell-he/myspell-he-2012.08.15.ebuild
@@ -22,5 +22,5 @@ 
SRC_URI="https://extensions.libreoffice.org/extensions/hebrew-he-spell-check-dic
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



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

2019-02-04 Thread Sergei Trofimovich
commit: 9a01fb0407390f9ce074de5539a2ee3a32adfebb
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Feb  4 16:53:32 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb  4 19:40:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a01fb04

dev-util/pkgconf: stable 1.5.4 for sparc, bug #677240

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

 dev-util/pkgconf/pkgconf-1.5.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/pkgconf/pkgconf-1.5.4.ebuild 
b/dev-util/pkgconf/pkgconf-1.5.4.ebuild
index 9e8d44de69d..8d6760425e2 100644
--- a/dev-util/pkgconf/pkgconf-1.5.4.ebuild
+++ b/dev-util/pkgconf/pkgconf-1.5.4.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
@@ -8,7 +8,7 @@ if [[ ${PV} == "" ]] ; then
inherit autotools git-r3
 else
SRC_URI="http://distfiles.dereferenced.org/${PN}/${P}.tar.xz";
-   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"
 fi
 
 inherit multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: app-i18n/man-pages-fr/

2019-02-04 Thread Sergei Trofimovich
commit: 97ede52a2fdf388fa2bb658c4a882a1b3554cd43
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Feb  4 16:44:22 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb  4 19:40:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97ede52a

app-i18n/man-pages-fr: stable 3.70 for sparc, bug #676404

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

 app-i18n/man-pages-fr/man-pages-fr-3.70.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/man-pages-fr/man-pages-fr-3.70.ebuild 
b/app-i18n/man-pages-fr/man-pages-fr-3.70.ebuild
index 9fcde0e32e4..c0c845a5f31 100644
--- a/app-i18n/man-pages-fr/man-pages-fr-3.70.ebuild
+++ b/app-i18n/man-pages-fr/man-pages-fr-3.70.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://alioth.debian.org/frs/download.php/file/4119/${P}-1.tar.xz";
 
 LICENSE="BSD FDL-1.1 FDL-1.2 GPL-2 GPL-2+"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND="virtual/man"



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

2019-02-04 Thread Sergei Trofimovich
commit: be1f94b9b9eeb3c0f5c78c26dcb34473134b29f7
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Feb  4 16:50:48 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb  4 19:40:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be1f94b9

dev-libs/protobuf-c: stable 1.3.1 for sparc, bug #677218

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

 dev-libs/protobuf-c/protobuf-c-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/protobuf-c/protobuf-c-1.3.1.ebuild 
b/dev-libs/protobuf-c/protobuf-c-1.3.1.ebuild
index bc235c7da92..f1a3599db33 100644
--- a/dev-libs/protobuf-c/protobuf-c-1.3.1.ebuild
+++ b/dev-libs/protobuf-c/protobuf-c-1.3.1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${MY_PV}/${MY_P}.tar.
 LICENSE="BSD-2"
 # Subslot == SONAME version
 SLOT="0/1.0.0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86"
 IUSE="static-libs test"
 
 RDEPEND=">=dev-libs/protobuf-2.6.0:0=[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: app-i18n/scim/

2019-02-04 Thread Sergei Trofimovich
commit: b4e939aa7b095a8a0cdc775537080f9003918676
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Feb  4 16:52:36 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb  4 19:40:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4e939aa

app-i18n/scim: stable 1.4.18 for hppa, bug #653218

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

 app-i18n/scim/scim-1.4.18.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-i18n/scim/scim-1.4.18.ebuild b/app-i18n/scim/scim-1.4.18.ebuild
index 4279a7029e8..922de943bbe 100644
--- a/app-i18n/scim/scim-1.4.18.ebuild
+++ b/app-i18n/scim/scim-1.4.18.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"
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/scim-im/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="doc gtk3"
 
 RDEPEND="x11-libs/libX11



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

2019-02-04 Thread Sergei Trofimovich
commit: 51316e1159e515ad04df7c4e90a68141b63fd140
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Feb  4 16:48:35 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb  4 19:40:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51316e11

app-dicts/myspell-nl: stable 2.10g-r1 for sparc, bug #676384

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

 app-dicts/myspell-nl/myspell-nl-2.10g-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-dicts/myspell-nl/myspell-nl-2.10g-r1.ebuild 
b/app-dicts/myspell-nl/myspell-nl-2.10g-r1.ebuild
index 82371e4592d..0aa2b6326fe 100644
--- a/app-dicts/myspell-nl/myspell-nl-2.10g-r1.ebuild
+++ b/app-dicts/myspell-nl/myspell-nl-2.10g-r1.ebuild
@@ -30,7 +30,7 @@ SRC_URI="
 
 LICENSE="BSD-2 CC-BY-3.0"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 src_prepare() {



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

2019-02-04 Thread Dennis Lamm
commit: 089d5f82349c520157450cc4b80c8d3c3e4b7e7c
Author: Dennis Lamm  gentoo  org>
AuthorDate: Mon Feb  4 19:36:40 2019 +
Commit: Dennis Lamm  gentoo  org>
CommitDate: Mon Feb  4 19:36:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=089d5f82

gnome-extra/libgsf: version bump

Signed-off-by: Dennis Lamm  gentoo.org>

 gnome-extra/libgsf/Manifest  |  1 +
 gnome-extra/libgsf/libgsf-1.14.45.ebuild | 39 
 2 files changed, 40 insertions(+)

diff --git a/gnome-extra/libgsf/Manifest b/gnome-extra/libgsf/Manifest
index e097abb676c..5a4594eb650 100644
--- a/gnome-extra/libgsf/Manifest
+++ b/gnome-extra/libgsf/Manifest
@@ -1 +1,2 @@
 DIST libgsf-1.14.43.tar.xz 618272 BLAKE2B 
a381125ce75d06ae4bf1c9dbe9b2e207534ff7c3310e40984e482bc5120eae45a7e3ed4cfd878890037f31ee540c700dea3120119b9a533fa79cab317a0c83a8
 SHA512 
bb487de9358c057fc73f3414c9515726315be9b6d78456253daaca1cbd58281de8766e0b72914532d63fab04d3ae2cf90f711f436c7b4f70620d77e8a7802ac9
+DIST libgsf-1.14.45.tar.xz 618476 BLAKE2B 
f577859578de6ca359a7377dcced424e95779d3fd155cdbeb1c2874f7a0d0c7a09a2322d2538452b48798ea979e8260be77215140f298dc58ee32a0b9ead0e47
 SHA512 
2e993150b6fec336a14fd85d5c631e4a3b43187039dab0cba3b8badf62873f39814392db92bb737b92aa9a6d8b4ba41f1fb248c1fe07b88cddd28ded5e4d9ebd

diff --git a/gnome-extra/libgsf/libgsf-1.14.45.ebuild 
b/gnome-extra/libgsf/libgsf-1.14.45.ebuild
new file mode 100644
index 000..331e37c8781
--- /dev/null
+++ b/gnome-extra/libgsf/libgsf-1.14.45.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2
+
+DESCRIPTION="The GNOME Structured File Library"
+HOMEPAGE="https://developer.gnome.org/gsf/";
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0/114" # libgsf-1.so version
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+IUSE="bzip2 gtk +introspection"
+
+RDEPEND="
+   >=dev-libs/glib-2.26:2
+   >=dev-libs/libxml2-2.4.16:2
+   sys-libs/zlib
+   bzip2? ( app-arch/bzip2 )
+   gtk? (
+   x11-libs/gdk-pixbuf:2
+   virtual/imagemagick-tools
+   )
+   introspection? ( >=dev-libs/gobject-introspection-1:= )
+"
+DEPEND="${RDEPEND}
+   >=dev-util/gtk-doc-am-1.12
+   >=dev-util/intltool-0.35.0
+   dev-libs/gobject-introspection-common
+   virtual/pkgconfig
+"
+
+src_configure() {
+   gnome2_src_configure \
+   --disable-static \
+   $(use_with bzip2 bz2) \
+   $(use_enable introspection) \
+   $(use_with gtk gdk-pixbuf)
+}



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

2019-02-04 Thread Matt Turner
commit: 5256ebb8e047b1afbfb6e7e5646f6bd753d1ff1e
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Feb  4 19:17:10 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Feb  4 19:18:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5256ebb8

media-libs/mesa: Drop support for llvm < 7

radv and radeonsi require llvm-7 and are the main consumers. Allowing
older versions would complicate the DEPEND for very little gain.

Closes: https://bugs.gentoo.org/677096
Signed-off-by: Matt Turner  gentoo.org>

 media-libs/mesa/mesa-19.0.0_rc1.ebuild | 4 
 media-libs/mesa/mesa-.ebuild   | 4 
 2 files changed, 8 deletions(-)

diff --git a/media-libs/mesa/mesa-19.0.0_rc1.ebuild 
b/media-libs/mesa/mesa-19.0.0_rc1.ebuild
index b1742f927cd..dd35b9d8a13 100644
--- a/media-libs/mesa/mesa-19.0.0_rc1.ebuild
+++ b/media-libs/mesa/mesa-19.0.0_rc1.ebuild
@@ -138,10 +138,6 @@ LLVM_MAX_SLOT="7"
 LLVM_DEPSTR="
|| (
sys-devel/llvm:7[${MULTILIB_USEDEP}]
-   sys-devel/llvm:6[${MULTILIB_USEDEP}]
-   sys-devel/llvm:5[${MULTILIB_USEDEP}]
-   sys-devel/llvm:4[${MULTILIB_USEDEP}]
-   >=sys-devel/llvm-3.9.0:0[${MULTILIB_USEDEP}]
)
sys-devel/llvm:=[${MULTILIB_USEDEP}]
 "

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index 9f2e8be0d2e..919f2e68bb2 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -138,10 +138,6 @@ LLVM_DEPSTR="
|| (
sys-devel/llvm:8[${MULTILIB_USEDEP}]
sys-devel/llvm:7[${MULTILIB_USEDEP}]
-   sys-devel/llvm:6[${MULTILIB_USEDEP}]
-   sys-devel/llvm:5[${MULTILIB_USEDEP}]
-   sys-devel/llvm:4[${MULTILIB_USEDEP}]
-   >=sys-devel/llvm-3.9.0:0[${MULTILIB_USEDEP}]
)
sys-devel/llvm:=[${MULTILIB_USEDEP}]
 "



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

2019-02-04 Thread Matt Turner
commit: 5c3fb8bccd952d62125d9bc000386337cbd914a2
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Feb  4 19:04:20 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Feb  4 19:18:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c3fb8bc

media-libs/mesa: Require libdrm-2.4.97

Closes: https://bugs.gentoo.org/677096
Signed-off-by: Matt Turner  gentoo.org>

 media-libs/mesa/mesa-19.0.0_rc1.ebuild | 2 +-
 media-libs/mesa/mesa-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/mesa/mesa-19.0.0_rc1.ebuild 
b/media-libs/mesa/mesa-19.0.0_rc1.ebuild
index b83687d01f2..b1742f927cd 100644
--- a/media-libs/mesa/mesa-19.0.0_rc1.ebuild
+++ b/media-libs/mesa/mesa-19.0.0_rc1.ebuild
@@ -67,7 +67,7 @@ REQUIRED_USE="
video_cards_vmware? ( gallium )
 "
 
-LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.96"
+LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.97"
 RDEPEND="
!app-eselect/eselect-mesa
>=app-eselect/eselect-opengl-1.3.0

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index f27207596f6..9f2e8be0d2e 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -67,7 +67,7 @@ REQUIRED_USE="
video_cards_vmware? ( gallium )
 "
 
-LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.96"
+LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.97"
 RDEPEND="
!app-eselect/eselect-mesa
>=app-eselect/eselect-opengl-1.3.0



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

2019-02-04 Thread Lars Wendler
commit: 0de7047ab0cb3b379abf930cc6a28e79661547a0
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Feb  4 19:12:16 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Feb  4 19:12:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0de7047a

net-wireless/iw: Bump to version 5.0.1. Removed old.

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

 net-wireless/iw/Manifest   | 2 +-
 net-wireless/iw/{iw-5.0.ebuild => iw-5.0.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-wireless/iw/Manifest b/net-wireless/iw/Manifest
index ba9a1faa506..209c03bcac5 100644
--- a/net-wireless/iw/Manifest
+++ b/net-wireless/iw/Manifest
@@ -4,4 +4,4 @@ DIST iw-4.14.tar.xz 114096 BLAKE2B 
2b2e4667e37864b9f9e490a47546f9a1f458da7b230e0
 DIST iw-4.3.tar.xz 98400 BLAKE2B 
7e76c85c43d82aed93827d8e534b10f9bbb96ba4e807481eabc502ba79860133aa1755c271ee12f6a504fa52663fbe180e5a4ca91c5ff5824a952e87f2c890d6
 SHA512 
ac2e15c4829ea7f47f56205942eb2ff5e26e5eeaeaf8991bd3910a758988263a24052b3b0d5fb7fed51456324524777f69e48991f99003ac7f6b2068aa18f9e8
 DIST iw-4.7.tar.xz 101800 BLAKE2B 
3bdf49c2717e400ef78965d6252f0162577ccae945d46706f7900344b8c2a7900b1d336c9840a742ae3e7584e9bfc431ceea00ef104728b2bb48a065c41e
 SHA512 
a43a61f6b10f1dc7ba69eea679aa82f041c8574f1323107581ee30e57296cdbaba80519a3e7d470ff3bbf2a7c2c7b687aae4839eb04b8938db1dacdb4610f5a1
 DIST iw-4.9.tar.xz 105764 BLAKE2B 
ad8105df91c4717293d5595b5ed9b4d022e455c608d70d1aeefc3d5516dcf92e507f38f424eca60f9d819e998286a4094a83002a1b9aaf4e204ca7a02fded67e
 SHA512 
3c99d8fc07d6d85b8304ff34b96573e22af65aea688a8cb08051ce4857d7ce9ac32a5acd3b30157c6c78e942f84a18f9229c17e353b7a6d01c80324729af18b3
-DIST iw-5.0.tar.xz 132672 BLAKE2B 
aeaa6067a220145f67ad731ddc76960f527a047d7c98669cd42b5994556aefcc3c5aa2b51afc4c12a60bd615118b31853cd628c71349265277ea89de2b1f93c6
 SHA512 
b5035e64a3b4cecec7beb7b0060090ae2e2dd9b0f8e46dac9dca4155f9f2b3e7aaa3dce12b61ff0775cbccd5edc290e27faba8a23fa5bc4b45cf97b9811b7d57
+DIST iw-5.0.1.tar.xz 132664 BLAKE2B 
a3b48f379f927440e08cf9794c6fca3a888a753b391188900a0975eb997b0f904075b3f22f6882d1b44d0bcd7484fdd639484d5901b6d02cc4d5d8158d545f93
 SHA512 
98764c1be7c63f86cc10193319e18c216a3f9a323444723b2949db0738ff8fcff04e6d78c035b5448c083d825a4b4cde27ec607539ec79b1898af73a7969c544

diff --git a/net-wireless/iw/iw-5.0.ebuild b/net-wireless/iw/iw-5.0.1.ebuild
similarity index 100%
rename from net-wireless/iw/iw-5.0.ebuild
rename to net-wireless/iw/iw-5.0.1.ebuild



[gentoo-commits] proj/qt:master commit in: dev-qt/qtwebengine/files/, dev-qt/qtwebengine/

2019-02-04 Thread Jimi Huotari
commit: bf2b3bb1663224ea5a711de4be9d972352002d2b
Author: Jimi Huotari  gentoo  org>
AuthorDate: Mon Feb  4 18:38:31 2019 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Mon Feb  4 18:39:20 2019 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=bf2b3bb1

dev-qt/qtwebengine: fix build with USE="system-icu"

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Jimi Huotari  gentoo.org>

 .../files/qtwebengine-5.13.0-fixup-system-icu.patch | 17 +
 dev-qt/qtwebengine/qtwebengine-5.13..ebuild |  2 ++
 dev-qt/qtwebengine/qtwebengine-5..ebuild|  2 ++
 3 files changed, 21 insertions(+)

diff --git a/dev-qt/qtwebengine/files/qtwebengine-5.13.0-fixup-system-icu.patch 
b/dev-qt/qtwebengine/files/qtwebengine-5.13.0-fixup-system-icu.patch
new file mode 100644
index ..e7fb9f81
--- /dev/null
+++ b/dev-qt/qtwebengine/files/qtwebengine-5.13.0-fixup-system-icu.patch
@@ -0,0 +1,17 @@
+From https://codereview.qt-project.org/#/c/251995/
+
+--- a/src/3rdparty/chromium/url/url_idna_icu.cc
 b/src/3rdparty/chromium/url/url_idna_icu.cc
+@@ -86,8 +86,10 @@ bool IDNToASCII(const base::char16* src, int src_len, 
CanonOutputW* output) {
+   while (true) {
+ UErrorCode err = U_ZERO_ERROR;
+ UIDNAInfo info = UIDNA_INFO_INITIALIZER;
+-int output_length = uidna_nameToASCII(uidna, src, src_len, output->data(),
+-  output->capacity(), &info, &err);
++int output_length = uidna_nameToASCII(uidna,
++reinterpret_cast(src), src_len,
++reinterpret_cast(output->data()), output->capacity(),
++&info, &err);
+ if (U_SUCCESS(err) && info.errors == 0) {
+   output->set_length(output_length);
+   return true;

diff --git a/dev-qt/qtwebengine/qtwebengine-5.13..ebuild 
b/dev-qt/qtwebengine/qtwebengine-5.13..ebuild
index cff56886..ff148cf7 100644
--- a/dev-qt/qtwebengine/qtwebengine-5.13..ebuild
+++ b/dev-qt/qtwebengine/qtwebengine-5.13..ebuild
@@ -79,6 +79,8 @@ DEPEND="${RDEPEND}
pax_kernel? ( sys-apps/elfix )
 "
 
+PATCHES=( "${FILESDIR}/${PN}-5.13.0-fixup-system-icu.patch" )
+
 src_prepare() {
use pax_kernel && PATCHES+=( 
"${FILESDIR}/${PN}-5.11.2-paxmark-mksnapshot.patch" )
 

diff --git a/dev-qt/qtwebengine/qtwebengine-5..ebuild 
b/dev-qt/qtwebengine/qtwebengine-5..ebuild
index cff56886..ff148cf7 100644
--- a/dev-qt/qtwebengine/qtwebengine-5..ebuild
+++ b/dev-qt/qtwebengine/qtwebengine-5..ebuild
@@ -79,6 +79,8 @@ DEPEND="${RDEPEND}
pax_kernel? ( sys-apps/elfix )
 "
 
+PATCHES=( "${FILESDIR}/${PN}-5.13.0-fixup-system-icu.patch" )
+
 src_prepare() {
use pax_kernel && PATCHES+=( 
"${FILESDIR}/${PN}-5.11.2-paxmark-mksnapshot.patch" )
 



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

2019-02-04 Thread Miroslav Šulc
commit: 92f024980ff343322f23c36d972a4efecf1b8484
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Feb  4 18:34:25 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Feb  4 18:34:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92f02498

dev-java/tomcat-native-1.2.21: bump

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/tomcat-native/Manifest|  1 +
 dev-java/tomcat-native/tomcat-native-1.2.21.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-java/tomcat-native/Manifest b/dev-java/tomcat-native/Manifest
index 48b1e49f753..ed38305843e 100644
--- a/dev-java/tomcat-native/Manifest
+++ b/dev-java/tomcat-native/Manifest
@@ -1 +1,2 @@
 DIST tomcat-native-1.2.19-src.tar.gz 418183 BLAKE2B 
cab8621bca4dc41e87ebf6418337da8a86d56a0717aacd62c6e4fb2d039e413cb29e8f169abbd353719ce083d302613d3e0f64cd54f1bc8e57f26a523a828025
 SHA512 
7d69acd5dd684eee9a85c08357b7288a9f083c15a12a9524ba6344f1b9dcdc6ccc512a37b64b9f15b0e697609833e6c68591a60976dcfecce124ec29eb532dba
+DIST tomcat-native-1.2.21-src.tar.gz 418909 BLAKE2B 
f7559f204941cd8f8383bda7591e167c247062b4f79c507a5a449715a5554194197c4d34197f30622cbcbd81952597ae757623c903f11959dc8b4fa81234e127
 SHA512 
7f43f815785e5bc3e43f5b2e9ad1c90576a3c1528d57230328b7175bf475eb5f4e1f91b66fae74ad32cd76f044d7705f98a79109f6f84e5af75dc32bc8830b29

diff --git a/dev-java/tomcat-native/tomcat-native-1.2.21.ebuild 
b/dev-java/tomcat-native/tomcat-native-1.2.21.ebuild
new file mode 100644
index 000..0db3cc71d61
--- /dev/null
+++ b/dev-java/tomcat-native/tomcat-native-1.2.21.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit java-pkg-2 java-ant-2
+
+DESCRIPTION="Allows Tomcat to use certain native resources for better 
performance"
+HOMEPAGE="https://tomcat.apache.org/";
+SRC_URI="mirror://apache/tomcat/tomcat-connectors/native/${PV}/source/${P}-src.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="static-libs test"
+
+RDEPEND="dev-libs/apr:1=
+   dev-libs/openssl:0=
+   >=virtual/jre-1.8"
+
+DEPEND=">=virtual/jdk-1.8
+   test? ( dev-java/ant-junit:0 )"
+
+S=${WORKDIR}/${P}-src
+
+JAVA_ANT_REWRITE_CLASSPATH="yes"
+
+src_configure() {
+   local myeconfargs=(
+   --with-apr="${EPREFIX}"/usr/bin/apr-1-config
+   --with-ssl="${EPREFIX}"/usr
+   )
+
+   cd native || die
+   econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+   eant jar
+
+   cd native || die
+   default
+}
+
+src_install() {
+   java-pkg_newjar "dist/${P}.jar" "${PN}.jar"
+
+   cd native || die
+   default
+
+   ! use static-libs && find "${D}" -name '*.la' -delete || die
+}
+
+src_test() {
+   java-pkg-2_src_test
+}
+
+pkg_postinst() {
+   elog "For more information, please visit"
+   elog "https://tomcat.apache.org/tomcat-9.0-doc/apr.html";
+}



[gentoo-commits] repo/gentoo:master commit in: net-print/hplip/

2019-02-04 Thread Daniel Pielmeier
commit: a649ff520bcf8d1855e9e59f58f064d48fadcbf9
Author: Daniel Pielmeier  gentoo  org>
AuthorDate: Mon Feb  4 18:21:07 2019 +
Commit: Daniel Pielmeier  gentoo  org>
CommitDate: Mon Feb  4 18:21:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a649ff52

net-print/hplip: Version bump to hplip-3.19.1.

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

 net-print/hplip/Manifest|   1 +
 net-print/hplip/hplip-3.19.1.ebuild | 274 
 2 files changed, 275 insertions(+)

diff --git a/net-print/hplip/Manifest b/net-print/hplip/Manifest
index 92bc732d183..d1ed9ca822c 100644
--- a/net-print/hplip/Manifest
+++ b/net-print/hplip/Manifest
@@ -2,3 +2,4 @@ DIST hplip-3.18.12-patches-1.tar.xz 12032 BLAKE2B 
33e6e4e1e0e5b4f998459073cf0742
 DIST hplip-3.18.12.tar.gz 24588202 BLAKE2B 
f2ffa6d0d54e467c03ccf9e74accb62ef69842001a00e8c4e6fd68b40c4daff5896fcdd69d37b5e50be2b837918058a5c9071615ab77c1ce83fffc546ff98c02
 SHA512 
7197cac325cf40c03f49053a98ee0e8ac6c670d142b2a64df09c0f7afa1d7d3602216c55c825ccbf20a1fbda9c9289173b8708e9f87171a862dae5b6b4ef7635
 DIST hplip-3.18.3-patches-2.tar.xz 8936 BLAKE2B 
58c17f3b6332de1edd88a3b458f1e9f856bc917842f62eee0808469ec14ff5793cd33c7a2ba30593eba624e58c12a6d426fa43a7d375d6ac50b985b895a85b4c
 SHA512 
cbafcd9616f9c86318007b703325d3429ed0698c3fc9d3eddd422e4cd7a16c77320ac168bfa01b5874213e1740cfaae1867d31c3cf96cd57573ad33651a674ed
 DIST hplip-3.18.6.tar.gz 22590564 BLAKE2B 
edbc80120bb332de9848e528095839b8f3496404ae83482a17bb8bd196c30dd8d3fca4d3dbb60c048bfbeeddd4384b4d7844798dad993eaf52d5418a9391b4ad
 SHA512 
deb4e6e1c7e9ea7452967f7d7d7fd93e92eb59406b4978bb9b874db93bc5022b25aab012a7420ac3e991259032bc7cb749cd924c93a164544e29a4152962184f
+DIST hplip-3.19.1.tar.gz 24530780 BLAKE2B 
edebde522dd3b531da1a1c27728e868217cbbd0c173210adc56e3fdf5335fafbde2f86b45febff4087b781ce2db7d3f55181a20a706e8a089470ac977f75b992
 SHA512 
b1d663a3538a19ab2c195bc627c765b9dded047b0431f6fc2096a8a31b4efb5cf52c88ad9665a2d78893ba66c1c47ccf79c161965f308a27eeeb11b156b446c8

diff --git a/net-print/hplip/hplip-3.19.1.ebuild 
b/net-print/hplip/hplip-3.19.1.ebuild
new file mode 100644
index 000..a5593707646
--- /dev/null
+++ b/net-print/hplip/hplip-3.19.1.ebuild
@@ -0,0 +1,274 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+PYTHON_REQ_USE="threads,xml"
+
+# 14 and 15 spit out a lot of warnings about subdirs
+WANT_AUTOMAKE="1.13"
+
+inherit autotools linux-info python-single-r1 readme.gentoo-r1 udev
+
+DESCRIPTION="HP Linux Imaging and Printing - Print, scan, fax drivers and 
service tools"
+HOMEPAGE="https://developers.hp.com/hp-linux-imaging-and-printing";
+SRC_URI="mirror://sourceforge/hplip/${P}.tar.gz
+   
https://dev.gentoo.org/~billie/distfiles/${PN}-3.18.12-patches-1.tar.xz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+
+IUSE="doc fax +hpcups hpijs kde libnotify libressl -libusb0 minimal parport 
policykit qt5 scanner +snmp static-ppds X"
+
+COMMON_DEPEND="
+   net-print/cups
+   virtual/jpeg:0
+   hpijs? ( net-print/cups-filters[foomatic] )
+   !minimal? (
+   ${PYTHON_DEPS}
+   sys-apps/dbus
+   !libusb0? ( virtual/libusb:1 )
+   libusb0? ( virtual/libusb:0 )
+   scanner? ( media-gfx/sane-backends )
+   snmp? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:= )
+   net-analyzer/net-snmp
+   )
+   )
+"
+BDEPEND="
+   virtual/pkgconfig
+"
+DEPEND="
+   ${COMMON_DEPEND}
+"
+RDEPEND="
+   ${COMMON_DEPEND}
+   app-text/ghostscript-gpl
+   !minimal? (
+   >=dev-python/dbus-python-1.2.0-r1[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 
'dev-python/pygobject:2[${PYTHON_USEDEP}]' 'python2*')
+   $(python_gen_cond_dep 
'dev-python/pygobject:3[${PYTHON_USEDEP}]' 'python3*')
+   fax? ( dev-python/reportlab[${PYTHON_USEDEP}] )
+   kernel_linux? ( virtual/udev )
+   qt5? (
+   
>=dev-python/PyQt5-5.5.1[dbus,gui,widgets,${PYTHON_USEDEP}]
+   libnotify? ( dev-python/notify2[${PYTHON_USEDEP}] )
+   )
+   scanner? (
+   >=dev-python/reportlab-3.2[${PYTHON_USEDEP}]
+   >=dev-python/pillow-3.1.1[${PYTHON_USEDEP}]
+   X? (
+   || (
+   kde? ( kde-misc/skanlite )
+   media-gfx/xsane
+   media-gfx/sane-frontends
+   )
+   )
+   )
+   )
+   policykit? ( sys-

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

2019-02-04 Thread Matt Turner
commit: 5e3fa59c7f0c0268546088ce7d76be59632d39ec
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Feb  4 18:11:56 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Feb  4 18:12:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e3fa59c

media-gfx/gimp: Remove silly IUSE=smp

Closes: https://bugs.gentoo.org/674938
Signed-off-by: Matt Turner  gentoo.org>

 media-gfx/gimp/gimp-2.10.8-r1.ebuild | 4 ++--
 media-gfx/gimp/gimp-.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-gfx/gimp/gimp-2.10.8-r1.ebuild 
b/media-gfx/gimp/gimp-2.10.8-r1.ebuild
index 887d43c208e..f4e16cd1bf9 100644
--- a/media-gfx/gimp/gimp-2.10.8-r1.ebuild
+++ b/media-gfx/gimp/gimp-2.10.8-r1.ebuild
@@ -18,7 +18,7 @@ SLOT="2"
 KEYWORDS="~amd64 ~x86"
 
 LANGS="am ar ast az be bg br ca ca@valencia cs csb da de dz el en_CA en_GB eo 
es et eu fa fi fr ga gl gu he hi hr hu id is it ja ka kk km kn ko lt lv mk ml 
ms my nb nds ne nl nn oc pa pl pt pt_BR ro ru rw si sk sl sr sr@latin sv ta te 
th tr tt uk vi xh yi zh_CN zh_HK zh_TW"
-IUSE="alsa aalib altivec aqua debug doc openexr gnome heif postscript jpeg2k 
cpu_flags_x86_mmx mng python smp cpu_flags_x86_sse udev unwind vector-icons 
webp wmf xpm"
+IUSE="alsa aalib altivec aqua debug doc openexr gnome heif postscript jpeg2k 
cpu_flags_x86_mmx mng python cpu_flags_x86_sse udev unwind vector-icons webp 
wmf xpm"
 
 RDEPEND=">=dev-libs/glib-2.56.0:2
>=dev-libs/atk-2.2.0
@@ -128,7 +128,7 @@ src_configure() {
$(use_with webp)
$(use_with heif libheif)
$(use_enable python)
-   $(use_enable smp mp)
+   --enable-mp
$(use_enable cpu_flags_x86_sse sse)
$(use_with udev gudev)
$(use_with unwind libunwind)

diff --git a/media-gfx/gimp/gimp-.ebuild b/media-gfx/gimp/gimp-.ebuild
index b4f7112177a..726f300ada2 100644
--- a/media-gfx/gimp/gimp-.ebuild
+++ b/media-gfx/gimp/gimp-.ebuild
@@ -16,7 +16,7 @@ SLOT="2"
 KEYWORDS=""
 
 LANGS="am ar ast az be bg br ca ca@valencia cs csb da de dz el en_CA en_GB eo 
es et eu fa fi fr ga gl gu he hi hr hu id is it ja ka kk km kn ko lt lv mk ml 
ms my nb nds ne nl nn oc pa pl pt pt_BR ro ru rw si sk sl sr sr@latin sv ta te 
th tr tt uk vi xh yi zh_CN zh_HK zh_TW"
-IUSE="alsa aalib altivec aqua debug doc openexr gnome heif postscript jpeg2k 
cpu_flags_x86_mmx mng python smp cpu_flags_x86_sse udev unwind vector-icons 
webp wmf xpm"
+IUSE="alsa aalib altivec aqua debug doc openexr gnome heif postscript jpeg2k 
cpu_flags_x86_mmx mng python cpu_flags_x86_sse udev unwind vector-icons webp 
wmf xpm"
 
 RDEPEND=">=dev-libs/glib-2.56.0:2
>=dev-libs/atk-2.2.0
@@ -126,7 +126,7 @@ src_configure() {
$(use_with webp)
$(use_with heif libheif)
$(use_enable python)
-   $(use_enable smp mp)
+   --enable-mp
$(use_enable cpu_flags_x86_sse sse)
$(use_with udev gudev)
$(use_with unwind)



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

2019-02-04 Thread Matt Turner
commit: 492450cc67513cd75a0458ce9eb73118a1180c7d
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Feb  4 18:03:32 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Feb  4 18:12:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=492450cc

profiles: Remove stale net/dnsmasq libidn2 mask

libidn2 has been stable for a while.

Closes: https://bugs.gentoo.org/675932
Signed-off-by: Matt Turner  gentoo.org>

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

diff --git a/profiles/base/package.use.stable.mask 
b/profiles/base/package.use.stable.mask
index c2d1aaa5bcb..a8abb6fa514 100644
--- a/profiles/base/package.use.stable.mask
+++ b/profiles/base/package.use.stable.mask
@@ -90,10 +90,6 @@ sci-libs/gdal mdb
 # Unstable dependencies.
 dev-util/rpmdevtools emacs
 
-# Patrick McLean  (11 Jul 2017)
-# Requires >=net-dns/libidn2-2.0 stabilization
-net-dns/dnsmasq libidn2
-
 # Andreas Sturmlechner  (23 Mar 2017)
 # Requires dev-lang/julia stabilisation, bug #613576
 kde-apps/cantor julia



[gentoo-commits] repo/gentoo:master commit in: net-wireless/qradiolink/, net-wireless/qradiolink/files/

2019-02-04 Thread Rick Farina
commit: b1d1707c9e632b40bb1626ad14f0a1a62d95add3
Author: Rick Farina  gentoo  org>
AuthorDate: Mon Feb  4 17:48:03 2019 +
Commit: Rick Farina  gentoo  org>
CommitDate: Mon Feb  4 17:48:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1d1707c

net-wireless/qradiolink: initial commit

software is a little buggy, I have issues open with upstream

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Rick Farina  gentoo.org>

 net-wireless/qradiolink/files/find-qwt.patch   | 14 +++
 net-wireless/qradiolink/metadata.xml   |  8 
 net-wireless/qradiolink/qradiolink-.ebuild | 56 ++
 3 files changed, 78 insertions(+)

diff --git a/net-wireless/qradiolink/files/find-qwt.patch 
b/net-wireless/qradiolink/files/find-qwt.patch
new file mode 100644
index 000..70ec3188776
--- /dev/null
+++ b/net-wireless/qradiolink/files/find-qwt.patch
@@ -0,0 +1,14 @@
+diff --git a/qradiolink.pro b/qradiolink.pro
+index d64c073..08a7e52 100644
+--- a/qradiolink.pro
 b/qradiolink.pro
+@@ -161,7 +161,7 @@ LIBS += -lrt  # need to include on some distros
+ unix:!symbian: LIBS += -lprotobuf -lopus -lpulse-simple -lpulse -lcodec2 
-lgsm -lasound -ljpeg -lconfig++ -lspeexdsp
+ #-lFestival -lestbase -leststring -lestools
+ #INCLUDEPATH += /usr/include/speech_tools
+-INCLUDEPATH += /usr/include/qwt-qt4
+-INCLUDEPATH += /usr/include/qwt
++CONFIG += link_pkgconfig
++PKGCONFIG += Qt5Qwt
+ 
+ RESOURCES += resources.qrc

diff --git a/net-wireless/qradiolink/metadata.xml 
b/net-wireless/qradiolink/metadata.xml
new file mode 100644
index 000..1570f891c6a
--- /dev/null
+++ b/net-wireless/qradiolink/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   ra...@gentoo.org
+   Radio
+   
+

diff --git a/net-wireless/qradiolink/qradiolink-.ebuild 
b/net-wireless/qradiolink/qradiolink-.ebuild
new file mode 100644
index 000..e6049347971
--- /dev/null
+++ b/net-wireless/qradiolink/qradiolink-.ebuild
@@ -0,0 +1,56 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit qmake-utils
+
+DESCRIPTION="Multimode SDR experimentation GUI for GNUradio"
+HOMEPAGE="http://qradiolink.org";
+
+LICENSE="GPL-3"
+SLOT="0"
+if [ "${PV}" = "" ]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/kantooon/qradiolink.git";
+else
+   KEYWORDS="~amd64"
+   SRC_URI="https://github.com/kantooon/qradiolink/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+fi
+IUSE=""
+
+DEPEND="dev-libs/libconfig[cxx]
+   net-wireless/gnuradio:=[analog,audio,digital,fec,filter,qt5]
+   net-wireless/gr-osmosdr:=
+   dev-libs/boost:=
+   dev-libs/protobuf:=
+   media-libs/opus:=
+   media-sound/pulseaudio
+   media-libs/codec2:=
+   media-sound/gsm:=
+   media-libs/libjpeg-turbo:=
+   media-libs/speexdsp:=
+   dev-qt/qtwidgets:5=
+   dev-qt/qtgui:5=
+   dev-qt/qtnetwork:5=
+   dev-qt/qtsql:5=
+   dev-qt/qtcore:5=
+"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+src_prepare() {
+   default
+   eapply "${FILESDIR}/find-qwt.patch"
+   cd ext/ || die
+   protoc --cpp_out=. Mumble.proto
+   protoc --cpp_out=. QRadioLink.proto
+}
+
+src_configure() {
+   eqmake5
+}
+
+src_install() {
+   dobin qradiolink
+}



[gentoo-commits] repo/gentoo:master commit in: www-client/vivaldi-snapshot/

2019-02-04 Thread Jeroen Roovers
commit: 02a8f38393918c21e4907e044049d43a0195ff4d
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Feb  4 16:57:03 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Feb  4 16:57:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02a8f383

www-client/vivaldi-snapshot: Old

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

 www-client/vivaldi-snapshot/Manifest   |   4 -
 .../vivaldi-snapshot-2.3.1440.4_p1.ebuild  | 119 -
 2 files changed, 123 deletions(-)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index 0cbffe4a67c..ff68e2abcac 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -6,7 +6,3 @@ DIST vivaldi-snapshot-2.3.1440.37_p1-amd64.deb 60025202 BLAKE2B 
f8322d7f22ad2c8a
 DIST vivaldi-snapshot-2.3.1440.37_p1-arm64.deb 55481990 BLAKE2B 
003e73de6e6eceea82a7e72a3580826f4da5381f6d52ded2849b538f6d09522cfab0d69b9efa77fb3e872b5e660f13880b7ab8139a821b5d9a2913ed770f3b72
 SHA512 
515a5a3c82f9193caab81c1ca3cbdc85a25253cdb006d30f940097d1c74b022947fa4cdf8172103aa8fd853ac7bd5cc1369d9da3e96b7d9a033b9060f918027e
 DIST vivaldi-snapshot-2.3.1440.37_p1-armhf.deb 52606638 BLAKE2B 
320adfd90742428618a9a1fccf63c435539ff65d4e4b9081d14aa032cc8fb8a2da14a3a2eb01dc7d0979b413f18a94207cee9fb5653f542c4f66ae061558b406
 SHA512 
06e31604433e7498449eccb582eabbd47e8bdd2e2276f2baeb134cb52bd63262cff732ebc8c34090c15d4a39736170926bb756a1b083ea84273feecddfe40511
 DIST vivaldi-snapshot-2.3.1440.37_p1-i386.deb 58155042 BLAKE2B 
46cd00a9cb79b6955dae4a828efbc1e0a9693809959a4c9a21838bc365b17cc7753feb60f5fcb1413d4878f5598b14efe6d699d949bb4bac967d0913af8c8994
 SHA512 
b94da8da50dae3e0c4e8c5f88069341fb9245c791f21ef49458586d6f63324f954d2fe2f95cfa1bef1f11a57303112199a46a18f8e470fb1a82eb75ff749c28e
-DIST vivaldi-snapshot-2.3.1440.4_p1-amd64.deb 60081518 BLAKE2B 
35c80dc7437febc019e5db3c1ba34217d8a4107c93cab64d44b07adaafc6505a18b14412ce1f08bda39d3045069d8e29573611190037e73d53686184b0ebcd82
 SHA512 
ea35cc1e3f39c484442a09d8be676308ac49b11e140eaddc2cdeb4ae1c5ef5cb41ef9ba6f13b1553e560479616fbfc502367d7fa6ac28326912cfab45ee34227
-DIST vivaldi-snapshot-2.3.1440.4_p1-arm64.deb 55537426 BLAKE2B 
e8d8cbe6594aaa98e694ccb86412314ab8f8a91ceaf7481a4dd42487d41ca3509895cbc81dc327ad89acfb7eddffb85815e9c082573966c5d69a2d9c9ab4005c
 SHA512 
afb3f52a607abddeb7b2172775b72990a987560ef23c94f313bfc6af5fb2ba7555999b77c90b6117d9077b01fc3a9f4598f605630fff273df01dfaba434485e2
-DIST vivaldi-snapshot-2.3.1440.4_p1-armhf.deb 52643462 BLAKE2B 
da86e557518f69bbafe6c9214775ea5a74e3953eb03af6c05cea01f989ee0fabe2b6b3cc3eaf01428c661945ee57cef83a6284a4ef7ae4b1d8dd2f0be386d272
 SHA512 
ffb3bc7952d857ba39e9b2b1ebf977e09c7a268adaf94cd8eba030c7365d385320e8bc7afd7c3160b0de6f5edbb89220f80e13354f3b43e2864a3773f944a3ff
-DIST vivaldi-snapshot-2.3.1440.4_p1-i386.deb 58193634 BLAKE2B 
2202d72b6a9687b08342f1c2bf6942cad1759ffb8ad6e579e43f67dae986cf005374d703ffed95063680aa91d6eda8b2482dfea8f61c42a17439a8f3181f237f
 SHA512 
d532f10d5aa67f9b75b248fb276395c6e44914f7d3ce4969e36c9c3e3dcd6b797a72331fccdfdc24561612e790cb2528e9237db3eb36ddf57cd13fb4f7953683

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-2.3.1440.4_p1.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-2.3.1440.4_p1.ebuild
deleted file mode 100644
index 91bde2d5746..000
--- a/www-client/vivaldi-snapshot/vivaldi-snapshot-2.3.1440.4_p1.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-CHROMIUM_LANGS="
-   am ar be bg bn ca cs da de el en-GB en-US eo es es-419 es-PE et eu fa fi
-   fil fr fy gl gu he hi hr hu hy id io is it ja jbo ka kn ko ku lt lv mk 
ml
-   mr ms nb nl nn pl pt-BR pt-PT ro ru sc sk sl sq sr sv sw ta te th tr uk 
vi
-   zh-CN zh-TW
-"
-inherit chromium-2 eutils gnome2-utils multilib unpacker toolchain-funcs 
xdg-utils
-
-VIVALDI_HOME="opt/${PN}"
-DESCRIPTION="A browser for our friends"
-HOMEPAGE="https://vivaldi.com/";
-VIVALDI_BASE_URI="https://downloads.vivaldi.com/snapshot/${PN}_${PV/_p/-}_";
-SRC_URI="
-   amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb )
-   arm64? ( ${VIVALDI_BASE_URI}arm64.deb -> ${P}-arm64.deb )
-   arm? ( ${VIVALDI_BASE_URI}armhf.deb -> ${P}-armhf.deb )
-   x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb )
-"
-
-LICENSE="Vivaldi"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~arm ~arm64 ~x86"
-RESTRICT="bindist mirror"
-
-DEPEND="
-   virtual/libiconv
-"
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   media-libs/speex
-   net-print/cups
-   sys-apps/dbus
-   sys-libs/libcap
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/li

[gentoo-commits] repo/gentoo:master commit in: www-client/vivaldi-snapshot/

2019-02-04 Thread Jeroen Roovers
commit: 4129c276d469cb6c4ab19e37b42a8b809c671ffb
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Feb  4 16:56:22 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Feb  4 16:57:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4129c276

www-client/vivaldi-snapshot: Version 2.3.1440.37_p1

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

 www-client/vivaldi-snapshot/Manifest   |   4 +
 .../vivaldi-snapshot-2.3.1440.37_p1.ebuild | 119 +
 2 files changed, 123 insertions(+)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index da4d4460a3b..0cbffe4a67c 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -2,6 +2,10 @@ DIST vivaldi-snapshot-2.3.1440.30_p1-amd64.deb 60082270 
BLAKE2B 46f87ffcaf403743
 DIST vivaldi-snapshot-2.3.1440.30_p1-arm64.deb 55528562 BLAKE2B 
67cf470363a74067253b88862436931bca147c259ce7b9d79d8ad590cd9a52d8972c4aae79b60ce409a2d920fdff5177e915a5faa4178a8891b3a5cb752b3ef6
 SHA512 
5eaab35442ce995d80638a8a4f253497840a0b760624f9660b7309634cc9bfbd75b99db4fc15e2ca186976ddcd0e27ca6535b5d137e4f472cdc3a6d559996b71
 DIST vivaldi-snapshot-2.3.1440.30_p1-armhf.deb 52627502 BLAKE2B 
c4a3fc76f0d94f1621eb6c85f46be71ca1c7dde71acddab5ec268f66b0a3cad50842efee869b9bd89137edd1646cc1fa4880b3c39013b8b63f5ba5dc62827196
 SHA512 
750eab86137c7e027bdee5399eef699021fd19d885f04b7f48aa5388c1ba53bee619fea859f3740efae70e34e1359e6daa10e4491b3669d7b284574058acafd7
 DIST vivaldi-snapshot-2.3.1440.30_p1-i386.deb 58219006 BLAKE2B 
06bdb5586fbda14e6d71a8d4ee520b1570bf8a74c939cdf3dafe5f1089d2be2d3f10819416a2342242fefe383ae2f900dcdcaa484ebc8e3315081dd1435b58ef
 SHA512 
ccb10b527bf7566fb8a161c7b51352c902bb241366e9d3c57436ead5d40dec5cc25bd8528b258f956dbed898f22d7cdbc9120b9c9836c485c193ba8f0de6a2d8
+DIST vivaldi-snapshot-2.3.1440.37_p1-amd64.deb 60025202 BLAKE2B 
f8322d7f22ad2c8a939d84bad2460eafa00d84040f2b56a8a01d0107307146a9b39dbf30e985f269f5670088036f161d498ecf76754a34cef0b90224ffed740f
 SHA512 
9ae6fad6cc4596704b9b334d873dec2f98232156280a63d7939f5f545f45093012026c09258fb536f23c9a0a4c83ac9aaaf4a95f73afe93c94bf51aecf592bca
+DIST vivaldi-snapshot-2.3.1440.37_p1-arm64.deb 55481990 BLAKE2B 
003e73de6e6eceea82a7e72a3580826f4da5381f6d52ded2849b538f6d09522cfab0d69b9efa77fb3e872b5e660f13880b7ab8139a821b5d9a2913ed770f3b72
 SHA512 
515a5a3c82f9193caab81c1ca3cbdc85a25253cdb006d30f940097d1c74b022947fa4cdf8172103aa8fd853ac7bd5cc1369d9da3e96b7d9a033b9060f918027e
+DIST vivaldi-snapshot-2.3.1440.37_p1-armhf.deb 52606638 BLAKE2B 
320adfd90742428618a9a1fccf63c435539ff65d4e4b9081d14aa032cc8fb8a2da14a3a2eb01dc7d0979b413f18a94207cee9fb5653f542c4f66ae061558b406
 SHA512 
06e31604433e7498449eccb582eabbd47e8bdd2e2276f2baeb134cb52bd63262cff732ebc8c34090c15d4a39736170926bb756a1b083ea84273feecddfe40511
+DIST vivaldi-snapshot-2.3.1440.37_p1-i386.deb 58155042 BLAKE2B 
46cd00a9cb79b6955dae4a828efbc1e0a9693809959a4c9a21838bc365b17cc7753feb60f5fcb1413d4878f5598b14efe6d699d949bb4bac967d0913af8c8994
 SHA512 
b94da8da50dae3e0c4e8c5f88069341fb9245c791f21ef49458586d6f63324f954d2fe2f95cfa1bef1f11a57303112199a46a18f8e470fb1a82eb75ff749c28e
 DIST vivaldi-snapshot-2.3.1440.4_p1-amd64.deb 60081518 BLAKE2B 
35c80dc7437febc019e5db3c1ba34217d8a4107c93cab64d44b07adaafc6505a18b14412ce1f08bda39d3045069d8e29573611190037e73d53686184b0ebcd82
 SHA512 
ea35cc1e3f39c484442a09d8be676308ac49b11e140eaddc2cdeb4ae1c5ef5cb41ef9ba6f13b1553e560479616fbfc502367d7fa6ac28326912cfab45ee34227
 DIST vivaldi-snapshot-2.3.1440.4_p1-arm64.deb 55537426 BLAKE2B 
e8d8cbe6594aaa98e694ccb86412314ab8f8a91ceaf7481a4dd42487d41ca3509895cbc81dc327ad89acfb7eddffb85815e9c082573966c5d69a2d9c9ab4005c
 SHA512 
afb3f52a607abddeb7b2172775b72990a987560ef23c94f313bfc6af5fb2ba7555999b77c90b6117d9077b01fc3a9f4598f605630fff273df01dfaba434485e2
 DIST vivaldi-snapshot-2.3.1440.4_p1-armhf.deb 52643462 BLAKE2B 
da86e557518f69bbafe6c9214775ea5a74e3953eb03af6c05cea01f989ee0fabe2b6b3cc3eaf01428c661945ee57cef83a6284a4ef7ae4b1d8dd2f0be386d272
 SHA512 
ffb3bc7952d857ba39e9b2b1ebf977e09c7a268adaf94cd8eba030c7365d385320e8bc7afd7c3160b0de6f5edbb89220f80e13354f3b43e2864a3773f944a3ff

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-2.3.1440.37_p1.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-2.3.1440.37_p1.ebuild
new file mode 100644
index 000..91bde2d5746
--- /dev/null
+++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-2.3.1440.37_p1.ebuild
@@ -0,0 +1,119 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+CHROMIUM_LANGS="
+   am ar be bg bn ca cs da de el en-GB en-US eo es es-419 es-PE et eu fa fi
+   fil fr fy gl gu he hi hr hu hy id io is it ja jbo ka kn ko ku lt lv mk 
ml
+   mr ms nb nl nn pl pt-BR pt-PT ro ru sc sk sl sq sr sv sw ta te th tr uk 
vi
+   zh-CN zh-TW
+"
+inherit chromium-2 eutils gno

[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-vfs-rar/

2019-02-04 Thread Craig Andrews
commit: 88537ce08352e91465d5ec3eb59cc933eb7e4953
Author: Craig Andrews  gentoo  org>
AuthorDate: Mon Feb  4 16:07:20 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Feb  4 16:08:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88537ce0

media-plugins/kodi-vfs-rar: 2.0.6 version bump

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

 media-plugins/kodi-vfs-rar/Manifest|  1 +
 .../kodi-vfs-rar/kodi-vfs-rar-2.0.6.ebuild | 34 ++
 2 files changed, 35 insertions(+)

diff --git a/media-plugins/kodi-vfs-rar/Manifest 
b/media-plugins/kodi-vfs-rar/Manifest
index 094d5f5d77d..1cfadb9b04f 100644
--- a/media-plugins/kodi-vfs-rar/Manifest
+++ b/media-plugins/kodi-vfs-rar/Manifest
@@ -1 +1,2 @@
 DIST kodi-vfs-rar-2.0.5.tar.gz 132264 BLAKE2B 
1c092fcc45a9b540ab43da9d93028bf3ecca5342fbe99e0380ccf1945be2bbe931e0c93454b69c8091c5919ea52347ab24ee27a72e96e202e6c38775640c016b
 SHA512 
46c17952b1933a5958082ecc6d904b3300acfc6982ef42fd63a15c68ce60c79528a52369fb7e5d0a912cd4346c7701b1aa07dedd882bec618d9e7343ffcbef73
+DIST kodi-vfs-rar-2.0.6.tar.gz 132265 BLAKE2B 
686e9e47680f701f68c44c597035ddc1051b16b2048f81060b656217497ebc368428462f7edbcebdcccf7275e6bde57ab8889644e265ebcd5aabba4f2cf364b9
 SHA512 
73112865d4c66653b565f7f52d557b68548b2077264088a03d8b2a49c9b84b366f5424bcc88bfc91d484f77424944a7191d4275f00255511b0c91ebdb3a30350

diff --git a/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.0.6.ebuild 
b/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.0.6.ebuild
new file mode 100644
index 000..26575d64ab3
--- /dev/null
+++ b/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.0.6.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils kodi-addon
+
+DESCRIPTION="RAR VFS addon for Kodi"
+HOMEPAGE="https://github.com/xbmc/vfs.rar";
+SRC_URI=""
+
+case ${PV} in
+)
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/xbmc/vfs.rar.git";
+   inherit git-r3
+   ;;
+*)
+   CODENAME="Leia"
+   KEYWORDS="~amd64 ~x86"
+   
SRC_URI="https://github.com/xbmc/vfs.rar/archive/${PV}-${CODENAME}.tar.gz -> 
${P}.tar.gz"
+   S="${WORKDIR}/vfs.rar-${PV}-${CODENAME}"
+   ;;
+esac
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+   =dev-libs/libplatform-2*
+   =media-libs/kodi-platform-18*
+   =media-tv/kodi-18*
+   "



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

2019-02-04 Thread Andreas Sturmlechner
commit: d58ac35454622d22e8a3e2ab27b599d82692a42d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Feb  4 13:41:29 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Feb  4 13:41:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d58ac354

dev-cpp/sourcetrail: Drop old

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

 dev-cpp/sourcetrail/sourcetrail-2018.3.55.ebuild | 89 
 1 file changed, 89 deletions(-)

diff --git a/dev-cpp/sourcetrail/sourcetrail-2018.3.55.ebuild 
b/dev-cpp/sourcetrail/sourcetrail-2018.3.55.ebuild
deleted file mode 100644
index 16d87f9d558..000
--- a/dev-cpp/sourcetrail/sourcetrail-2018.3.55.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit desktop gnome2-utils xdg-utils
-
-DESCRIPTION="A cross-platform source explorer for C/C++ and Java"
-HOMEPAGE="https://www.sourcetrail.com/";
-SRC_URI="https://www.sourcetrail.com/downloads/${PV}/linux/64bit -> 
${P}.tar.gz"
-
-LICENSE="Sourcetrail || ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="examples selinux"
-
-DEPEND="dev-util/patchelf"
-
-RDEPEND="
-   dev-libs/openssl
-   media-libs/fontconfig
-   media-libs/freetype
-   media-libs/libpng:1.2
-   sys-libs/libudev-compat
-   virtual/opengl
-   x11-libs/libdrm
-   x11-libs/libX11
-   x11-libs/libXau
-   x11-libs/libxcb
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrender
-   x11-libs/libXxf86vm
-   selinux? ( sys-libs/libselinux )
-"
-
-S="${WORKDIR}/Sourcetrail"
-QA_PREBUILT="*"
-
-src_install() {
-   # This removes the rpath entries with $$ORIGIN
-   # since they trigger warnings when merging
-   for f in "Sourcetrail" "sourcetrail_indexer"; do
-   rpath=$(patchelf --print-rpath "${f}" 2>/dev/null)
-   new_rpath=${rpath//\$\$ORIGIN\/lib\/:/}
-   patchelf --set-rpath "${new_rpath}" "${f}" || die
-   done
-
-   # Remove bundled libraries
-   rm -f lib/libXi.so.6 lib/libXxf86vm.so.1 lib/libXrender.so.1 
lib/libXfixes.so.3 lib/libXext.so.6 \
-   lib/libXdamage.so.1 lib/libxcb* lib/libXau.so.6 
lib/libX11-xcb.so.1 lib/libX11.so.6 \
-   lib/libudev.so.0 lib/libEGL.so.1 lib/libgbm.so.1 
lib/libglapi.so.0 lib/libGL.so.1 \
-   lib/libdrm.so.2 lib/libfontconfig.so.1 lib/libfreetype.so.6 
lib/libcrypto.so lib/libssl.so \
-   lib/libpng12.so.0 lib/libselinux.so.1
-   insinto /opt/sourcetrail
-   doins -r EULA.txt README data lib plugin
-   if use examples; then
-   doins -r user
-   fi
-   exeinto /opt/sourcetrail
-   doexe Sourcetrail sourcetrail_indexer Sourcetrail.sh resetPreferences.sh
-   into /opt
-   newbin - sourcetrail <<-EOF
-   #! /bin/sh
-   exec /opt/sourcetrail/Sourcetrail.sh "\$@"
-   EOF
-   local size
-   for size in 48 64 128 256 512; do
-   newicon -s ${size} 
"setup/share/icons/hicolor/${size}x${size}/apps/sourcetrail.png" \
-   "sourcetrail.png"
-   done
-   sed -i -e 's|Exec=/usr/bin/sourcetrail|Exec=/opt/bin/sourcetrail|' 
"setup/share/applications/sourcetrail.desktop" || die
-   sed -i -e 's/Utilities;//' 
"setup/share/applications/sourcetrail.desktop" || die
-   domenu "setup/share/applications/sourcetrail.desktop"
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-   xdg_mimeinfo_database_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-   xdg_mimeinfo_database_update
-   xdg_desktop_database_update
-}



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

2019-02-04 Thread Andreas Sturmlechner
commit: f8fbdc1c848d15a324da2742a2a322267b0964d6
Author: Tomas Mozes  sygic  com>
AuthorDate: Mon Feb  4 11:07:34 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Feb  4 13:39:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8fbdc1c

app-admin/syslog-ng: Revert "add version constraint on sys-devel/bison"

This reverts commit 644c4d2379e2c9a8930a2e50450ef54c74b77e47
because sys-devel/bison-3.3.2 fixed the issue.
Closes: https://bugs.gentoo.org/677040
Signed-off-by: Tomáš Mózes  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/10978
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-admin/syslog-ng/syslog-ng-3.19.1.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app-admin/syslog-ng/syslog-ng-3.19.1.ebuild 
b/app-admin/syslog-ng/syslog-ng-3.19.1.ebuild
index 11636df492d..db4299782e4 100644
--- a/app-admin/syslog-ng/syslog-ng-3.19.1.ebuild
+++ b/app-admin/syslog-ng/syslog-ng-3.19.1.ebuild
@@ -41,7 +41,6 @@ RDEPEND="
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )"
 DEPEND="${RDEPEND}
-   

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

2019-02-04 Thread Andreas Sturmlechner
commit: 07fad24c94cfa6f66609acf2647720976d6522d5
Author: David Hallas  davidhallas  dk>
AuthorDate: Fri Jan 11 07:06:05 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Feb  4 13:41:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07fad24c

dev-cpp/sourcetrail: Adjust openssl dependency

Adjust openssl dependency to depend on =dev-libs/openssl-1.0*:*.
The Sourcetrail package is built agains openssl-1.0.1 so depending
on =dev-libs/openssl-1.0*:0 should match the correct version.

Closes: https://bugs.gentoo.org/674788
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: David Hallas  davidhallas.dk>
Closes: https://github.com/gentoo/gentoo/pull/10777
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../sourcetrail/sourcetrail-2018.3.55-r1.ebuild| 89 ++
 1 file changed, 89 insertions(+)

diff --git a/dev-cpp/sourcetrail/sourcetrail-2018.3.55-r1.ebuild 
b/dev-cpp/sourcetrail/sourcetrail-2018.3.55-r1.ebuild
new file mode 100644
index 000..07a989c7d93
--- /dev/null
+++ b/dev-cpp/sourcetrail/sourcetrail-2018.3.55-r1.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit desktop gnome2-utils xdg-utils
+
+DESCRIPTION="A cross-platform source explorer for C/C++ and Java"
+HOMEPAGE="https://www.sourcetrail.com/";
+SRC_URI="https://www.sourcetrail.com/downloads/${PV}/linux/64bit -> 
${P}.tar.gz"
+
+LICENSE="Sourcetrail || ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="examples selinux"
+
+DEPEND="dev-util/patchelf"
+
+RDEPEND="
+   =dev-libs/openssl-1.0*:*
+   media-libs/fontconfig
+   media-libs/freetype
+   media-libs/libpng:1.2
+   sys-libs/libudev-compat
+   virtual/opengl
+   x11-libs/libdrm
+   x11-libs/libX11
+   x11-libs/libXau
+   x11-libs/libxcb
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   x11-libs/libXrender
+   x11-libs/libXxf86vm
+   selinux? ( sys-libs/libselinux )
+"
+
+S="${WORKDIR}/Sourcetrail"
+QA_PREBUILT="*"
+
+src_install() {
+   # This removes the rpath entries with $$ORIGIN
+   # since they trigger warnings when merging
+   for f in "Sourcetrail" "sourcetrail_indexer"; do
+   rpath=$(patchelf --print-rpath "${f}" 2>/dev/null)
+   new_rpath=${rpath//\$\$ORIGIN\/lib\/:/}
+   patchelf --set-rpath "${new_rpath}" "${f}" || die
+   done
+
+   # Remove bundled libraries
+   rm -f lib/libXi.so.6 lib/libXxf86vm.so.1 lib/libXrender.so.1 
lib/libXfixes.so.3 lib/libXext.so.6 \
+   lib/libXdamage.so.1 lib/libxcb* lib/libXau.so.6 
lib/libX11-xcb.so.1 lib/libX11.so.6 \
+   lib/libudev.so.0 lib/libEGL.so.1 lib/libgbm.so.1 
lib/libglapi.so.0 lib/libGL.so.1 \
+   lib/libdrm.so.2 lib/libfontconfig.so.1 lib/libfreetype.so.6 
lib/libcrypto.so lib/libssl.so \
+   lib/libpng12.so.0 lib/libselinux.so.1
+   insinto /opt/sourcetrail
+   doins -r EULA.txt README data lib plugin
+   if use examples; then
+   doins -r user
+   fi
+   exeinto /opt/sourcetrail
+   doexe Sourcetrail sourcetrail_indexer Sourcetrail.sh resetPreferences.sh
+   into /opt
+   newbin - sourcetrail <<-EOF
+   #! /bin/sh
+   exec /opt/sourcetrail/Sourcetrail.sh "\$@"
+   EOF
+   local size
+   for size in 48 64 128 256 512; do
+   newicon -s ${size} 
"setup/share/icons/hicolor/${size}x${size}/apps/sourcetrail.png" \
+   "sourcetrail.png"
+   done
+   sed -i -e 's|Exec=/usr/bin/sourcetrail|Exec=/opt/bin/sourcetrail|' 
"setup/share/applications/sourcetrail.desktop" || die
+   sed -i -e 's/Utilities;//' 
"setup/share/applications/sourcetrail.desktop" || die
+   domenu "setup/share/applications/sourcetrail.desktop"
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+   xdg_mimeinfo_database_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+   xdg_mimeinfo_database_update
+   xdg_desktop_database_update
+}



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

2019-02-04 Thread Andrey Grozin
commit: 74a53c829a3bb8619b12b2abd16479b00d9a0072
Author: Andrey Grozin  gentoo  org>
AuthorDate: Mon Feb  4 13:21:18 2019 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Mon Feb  4 13:21:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74a53c82

sci-mathematics/fricas: cleaning old versions

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

 sci-mathematics/fricas/Manifest|   2 -
 sci-mathematics/fricas/fricas-1.3.2.ebuild | 102 ---
 sci-mathematics/fricas/fricas-1.3.3.ebuild | 108 -
 3 files changed, 212 deletions(-)

diff --git a/sci-mathematics/fricas/Manifest b/sci-mathematics/fricas/Manifest
index ba10c2a8e47..4b47a405ff4 100644
--- a/sci-mathematics/fricas/Manifest
+++ b/sci-mathematics/fricas/Manifest
@@ -1,4 +1,2 @@
-DIST fricas-1.3.2-full.tar.bz2 10523665 BLAKE2B 
23de3147177e7c3c75dafa6de0f4f17432f323512aa38aef85e27c8cf1b9e335009870dc608219f0e1c4f53f1790a41b00b915aedd71633459f789cfda9f5244
 SHA512 
679dffbe8a991d4ae3d6667a6163337ffa24d48b9d1d776ba1a39569cb3b9f17e8d484075746b75b7eb6bbe5b9d26af3e526850a19118274988b9e88ad52a679
-DIST fricas-1.3.3-full.tar.bz2 10506559 BLAKE2B 
1a9822f0a94db5c7e7a3e2a52287b475c382caaaf9c5e1830621a17b6634f6f72958f0c81995463d135b4567a74c588f33c88d51a83b0a8749479d65645de4bc
 SHA512 
74ac88ffbbacba33883498a75382ef351003ce8499f6b458367ca0de3041a9bba496693eb90f798945aa6e11c5072137227efa385ee6d8e2051f93dfea6d7fbe
 DIST fricas-1.3.4-full.tar.bz2 10381144 BLAKE2B 
caff50ef2b2d8e9ef76448c265316ac8878010c505f9d871aa5579210ab2de3915f56a44687d3f96aba1f857efc8b3ec182b9b6c5c390e38dbdaf7cdba188dcc
 SHA512 
efee0d8a05979c806182e9e45f81b56037d1a660909971d6b94af1f97732cfb7b689709d8af4229b7f649506860b1ed915dd5afb91378f4c9d8a6e960a248170
 DIST fricas-1.3.5-full.tar.bz2 10477848 BLAKE2B 
2431e6dacbe1fc9069baa4335876809ee334b677d3d1bd9ddfbb6c23f6bdaaf2307ec994956c736d9dbbe07915cb1e51a235ef58d6307bdd239dca1c19d65552
 SHA512 
b800a9b3793506e49a4c5a63bd12a20f00b183d00ed9bd0061865f6cea39b05c026975458dcb3bb7da652fb75b3ce6417bbe1c16312da08cd6a366428ae9eaf9

diff --git a/sci-mathematics/fricas/fricas-1.3.2.ebuild 
b/sci-mathematics/fricas/fricas-1.3.2.ebuild
deleted file mode 100644
index 7006655bdef..000
--- a/sci-mathematics/fricas/fricas-1.3.2.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit multilib elisp-common
-
-DESCRIPTION="FriCAS is a fork of Axiom computer algebra system"
-HOMEPAGE="http://${PN}.sourceforge.net/";
-SRC_URI="mirror://sourceforge/${PN}/${P}-full.tar.bz2"
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-# Supported lisps, number 0 is the default
-LISPS=( sbcl cmucl gcl ecls clisp clozurecl )
-# Version restrictions, . means no restrictions
-REST=(  .. .   .. . )
-# command name: . means just ${LISP}
-COMS=(  .lisp  .   ecl  . ccl )
-
-IUSE="${LISPS[*]} X emacs gmp"
-RDEPEND="X? ( x11-libs/libXpm x11-libs/libICE )
-   emacs? ( virtual/emacs )
-   gmp? ( dev-libs/gmp:= )"
-
-# Generating lisp deps
-n=${#LISPS[*]}
-for ((n--; n > 0; n--)); do
-   LISP=${LISPS[$n]}
-   if [ "${REST[$n]}" = "." ]; then
-   DEP="dev-lisp/${LISP}"
-   else
-   DEP="${REST[$n]}"
-   fi
-   RDEPEND="${RDEPEND} ${LISP}? ( ${DEP}:= ) !${LISP}? ("
-done
-if [ "${REST[0]}" = "." ]; then
-   DEP="dev-lisp/${LISPS[0]}"
-else
-   DEP="${REST[0]}"
-fi
-RDEPEND="${RDEPEND} ${DEP}:="
-n=${#LISPS[*]}
-for ((n--; n > 0; n--)); do
-   RDEPEND="${RDEPEND} )"
-done
-
-DEPEND="${RDEPEND}"
-
-# necessary for clisp and gcl
-RESTRICT="strip"
-
-src_configure() {
-   local LISP n
-   LISP=sbcl
-   n=${#LISPS[*]}
-   for ((n--; n > 0; n--)); do
-   if use ${LISPS[$n]}; then
-   LISP=${COMS[$n]}
-   if [ "${LISP}" = "." ]; then
-   LISP=${LISPS[$n]}
-   fi
-   fi
-   done
-   einfo "Using lisp: ${LISP}"
-
-   # aldor is not yet in portage
-   econf --disable-aldor --with-lisp=${LISP} $(use_with X x) $(use_with 
gmp)
-}
-
-src_compile() {
-   # bug #300132
-   emake -j1
-}
-
-src_test() {
-   emake -j1 all-input
-}
-
-src_install() {
-   emake -j1 DESTDIR="${D}" install
-   dodoc README FAQ
-
-   if use emacs; then
-   sed -e "s|(setq load-path (cons (quote 
\"/usr/$(get_libdir)/fricas/emacs\") load-path)) ||" \
-   -i "${D}"/usr/bin/efricas \
-   || die "sed efricas failed"
-   elisp-install ${PN} "${D}"/usr/$(get_libdir)/${PN}/emacs/*.el
-   elisp-site-file-install "${FILESDIR}"/64${PN}-gentoo.el
-   else
-   rm "${D}"/usr/bin/efricas || die "rm efricas failed"
-   fi
-   rm -r "${D}"/usr/$(get_libd

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

2019-02-04 Thread Sergey Popov
commit: d61bafa81fc8d796dc0863ab0f11c41bca4bc25b
Author: Sergey Popov  gentoo  org>
AuthorDate: Mon Feb  4 13:20:41 2019 +
Commit: Sergey Popov  gentoo  org>
CommitDate: Mon Feb  4 13:20:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d61bafa8

sys-fs/rarfs: revision bump

Bump EAPI to 7. Use slotted sys-fs/fuse dependency

Signed-off-by: Sergey Popov  gentoo.org>
Closes: https://bugs.gentoo.org/673638
Package-Manager: Portage-2.3.51, Repoman-2.3.10

 sys-fs/rarfs/{rarfs-0.1.1-r1.ebuild => rarfs-0.1.1-r2.ebuild} | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/sys-fs/rarfs/rarfs-0.1.1-r1.ebuild 
b/sys-fs/rarfs/rarfs-0.1.1-r2.ebuild
similarity index 89%
rename from sys-fs/rarfs/rarfs-0.1.1-r1.ebuild
rename to sys-fs/rarfs/rarfs-0.1.1-r2.ebuild
index 2b9cc82b1b3..3b6ab99a1ee 100644
--- a/sys-fs/rarfs/rarfs-0.1.1-r1.ebuild
+++ b/sys-fs/rarfs/rarfs-0.1.1-r2.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 PYTHON_COMPAT=( python2_7 )
 
@@ -14,12 +14,11 @@ SRC_URI="mirror://sourceforge/rarfs/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 RDEPEND="
${PYTHON_DEPS}
-   sys-fs/fuse"
+   sys-fs/fuse:0"
 DEPEND="${RDEPEND}
virtual/pkgconfig"
 



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

2019-02-04 Thread Andrey Grozin
commit: cd64bac1b5b99ceb439883ce13b69aba9084a4c0
Author: Andrey Grozin  gentoo  org>
AuthorDate: Mon Feb  4 13:19:23 2019 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Mon Feb  4 13:19:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd64bac1

sci-mathematics/fricas: bump to 1.3.5

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

 sci-mathematics/fricas/Manifest|   1 +
 sci-mathematics/fricas/fricas-1.3.5.ebuild | 108 +
 2 files changed, 109 insertions(+)

diff --git a/sci-mathematics/fricas/Manifest b/sci-mathematics/fricas/Manifest
index 87e485c0458..ba10c2a8e47 100644
--- a/sci-mathematics/fricas/Manifest
+++ b/sci-mathematics/fricas/Manifest
@@ -1,3 +1,4 @@
 DIST fricas-1.3.2-full.tar.bz2 10523665 BLAKE2B 
23de3147177e7c3c75dafa6de0f4f17432f323512aa38aef85e27c8cf1b9e335009870dc608219f0e1c4f53f1790a41b00b915aedd71633459f789cfda9f5244
 SHA512 
679dffbe8a991d4ae3d6667a6163337ffa24d48b9d1d776ba1a39569cb3b9f17e8d484075746b75b7eb6bbe5b9d26af3e526850a19118274988b9e88ad52a679
 DIST fricas-1.3.3-full.tar.bz2 10506559 BLAKE2B 
1a9822f0a94db5c7e7a3e2a52287b475c382caaaf9c5e1830621a17b6634f6f72958f0c81995463d135b4567a74c588f33c88d51a83b0a8749479d65645de4bc
 SHA512 
74ac88ffbbacba33883498a75382ef351003ce8499f6b458367ca0de3041a9bba496693eb90f798945aa6e11c5072137227efa385ee6d8e2051f93dfea6d7fbe
 DIST fricas-1.3.4-full.tar.bz2 10381144 BLAKE2B 
caff50ef2b2d8e9ef76448c265316ac8878010c505f9d871aa5579210ab2de3915f56a44687d3f96aba1f857efc8b3ec182b9b6c5c390e38dbdaf7cdba188dcc
 SHA512 
efee0d8a05979c806182e9e45f81b56037d1a660909971d6b94af1f97732cfb7b689709d8af4229b7f649506860b1ed915dd5afb91378f4c9d8a6e960a248170
+DIST fricas-1.3.5-full.tar.bz2 10477848 BLAKE2B 
2431e6dacbe1fc9069baa4335876809ee334b677d3d1bd9ddfbb6c23f6bdaaf2307ec994956c736d9dbbe07915cb1e51a235ef58d6307bdd239dca1c19d65552
 SHA512 
b800a9b3793506e49a4c5a63bd12a20f00b183d00ed9bd0061865f6cea39b05c026975458dcb3bb7da652fb75b3ce6417bbe1c16312da08cd6a366428ae9eaf9

diff --git a/sci-mathematics/fricas/fricas-1.3.5.ebuild 
b/sci-mathematics/fricas/fricas-1.3.5.ebuild
new file mode 100644
index 000..b9e209804b8
--- /dev/null
+++ b/sci-mathematics/fricas/fricas-1.3.5.ebuild
@@ -0,0 +1,108 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit multilib elisp-common
+
+DESCRIPTION="FriCAS is a fork of Axiom computer algebra system"
+HOMEPAGE="http://${PN}.sourceforge.net/";
+SRC_URI="mirror://sourceforge/${PN}/${P}-full.tar.bz2"
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# Supported lisps, number 0 is the default
+LISPS=( sbcl cmucl gcl ecls clisp clozurecl )
+# Version restrictions, . means no restrictions
+REST=(  .. .   .. . )
+# command name: . means just ${LISP}
+COMS=(  .lisp  .   ecl  . ccl )
+
+IUSE="${LISPS[*]} X emacs gmp"
+RDEPEND="X? ( x11-libs/libXpm x11-libs/libICE )
+   emacs? ( virtual/emacs )
+   gmp? ( dev-libs/gmp:= )"
+
+# Generating lisp deps
+n=${#LISPS[*]}
+for ((n--; n > 0; n--)); do
+   LISP=${LISPS[$n]}
+   if [ "${REST[$n]}" = "." ]; then
+   DEP="dev-lisp/${LISP}"
+   else
+   DEP="${REST[$n]}"
+   fi
+   RDEPEND="${RDEPEND} ${LISP}? ( ${DEP}:= ) !${LISP}? ("
+done
+if [ "${REST[0]}" = "." ]; then
+   DEP="dev-lisp/${LISPS[0]}"
+else
+   DEP="${REST[0]}"
+fi
+RDEPEND="${RDEPEND} ${DEP}:="
+n=${#LISPS[*]}
+for ((n--; n > 0; n--)); do
+   RDEPEND="${RDEPEND} )"
+done
+
+DEPEND="${RDEPEND}"
+
+# necessary for clisp and gcl
+RESTRICT="strip"
+
+src_configure() {
+   local LISP n GMP
+   LISP=sbcl
+   n=${#LISPS[*]}
+   for ((n--; n > 0; n--)); do
+   if use ${LISPS[$n]}; then
+   LISP=${COMS[$n]}
+   if [ "${LISP}" = "." ]; then
+   LISP=${LISPS[$n]}
+   fi
+   fi
+   done
+   einfo "Using lisp: ${LISP}"
+
+   # bug #650788
+   if [[ ${LISP} = sbcl || ${LISP} = ccl ]]
+   then GMP=$(use_with gmp)
+   else GMP=''
+   fi
+
+   # aldor is not yet in portage
+   econf --disable-aldor --with-lisp=${LISP} $(use_with X x) ${GMP}
+}
+
+src_compile() {
+   # bug #300132
+   emake -j1
+}
+
+src_test() {
+   emake -j1 all-input
+}
+
+src_install() {
+   emake -j1 DESTDIR="${D}" install
+   dodoc README FAQ
+
+   if use emacs; then
+   sed -e "s|(setq load-path (cons (quote 
\"/usr/$(get_libdir)/fricas/emacs\") load-path)) ||" \
+   -i "${D}"/usr/bin/efricas \
+   || die "sed efricas failed"
+   elisp-install ${PN} "${D}"/usr/$(get_libdir)/${PN}/emacs/*.el
+   elisp-site-file-install "${FILESDIR}"/64${PN}-gentoo.el
+   else
+   rm "${D}"/usr/bin/efricas || die "rm efricas failed"
+  

[gentoo-commits] proj/musl:master commit in: media-libs/alsa-lib/

2019-02-04 Thread Anthony G. Basile
commit: e7fa0d3f23716be66c65632b1f8c18c2507ac2d7
Author: stefson  yahoo  de>
AuthorDate: Mon Feb  4 12:38:52 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Feb  4 12:44:16 2019 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=e7fa0d3f

media-libs/alsa: sync keywords with tree

Signed-off-by: Anthony G. Basile  gentoo.org>

 media-libs/alsa-lib/alsa-lib-1.1.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/alsa-lib/alsa-lib-1.1.6-r1.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.1.6-r1.ebuild
index 4aa8394..25a7eb3 100644
--- a/media-libs/alsa-lib/alsa-lib-1.1.6-r1.ebuild
+++ b/media-libs/alsa-lib/alsa-lib-1.1.6-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://alsaproject/lib/${P}.tar.bz2"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~sh ~sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~ia64 ~mips ppc ~sh sparc x86"
 IUSE="alisp debug doc elibc_uclibc python +thread-safety"
 
 RDEPEND="python? ( ${PYTHON_DEPS} )"



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

2019-02-04 Thread Sergey Popov
commit: 999b1a4ba89cdb5198ab496d4ad2e01edcb59d28
Author: Sergey Popov  gentoo  org>
AuthorDate: Mon Feb  4 12:32:37 2019 +
Commit: Sergey Popov  gentoo  org>
CommitDate: Mon Feb  4 12:33:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=999b1a4b

sys-fs/ext4magic: stable for amd64/x86

Reported-by: Göktürk Yüksek  gentoo.org>
Signed-off-by: Sergey Popov  gentoo.org>
Closes: https://bugs.gentoo.org/677010
Package-Manager: Portage-2.3.51, Repoman-2.3.10

 sys-fs/ext4magic/ext4magic-0.3.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/ext4magic/ext4magic-0.3.2-r1.ebuild 
b/sys-fs/ext4magic/ext4magic-0.3.2-r1.ebuild
index f26ce3b1d1d..8873a8aac0c 100644
--- a/sys-fs/ext4magic/ext4magic-0.3.2-r1.ebuild
+++ b/sys-fs/ext4magic/ext4magic-0.3.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="debug +expert-mode file-attr"
 
 RDEPEND="app-arch/bzip2



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

2019-02-04 Thread Sergey Popov
commit: de01a97f235747f84574bf184c4a4911637cbea9
Author: Sergey Popov  gentoo  org>
AuthorDate: Mon Feb  4 12:33:22 2019 +
Commit: Sergey Popov  gentoo  org>
CommitDate: Mon Feb  4 12:33:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de01a97f

sys-fs/ext4magic: drop old

Signed-off-by: Sergey Popov  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.10

 sys-fs/ext4magic/ext4magic-0.3.2.ebuild | 37 -
 1 file changed, 37 deletions(-)

diff --git a/sys-fs/ext4magic/ext4magic-0.3.2.ebuild 
b/sys-fs/ext4magic/ext4magic-0.3.2.ebuild
deleted file mode 100644
index 70ca6384478..000
--- a/sys-fs/ext4magic/ext4magic-0.3.2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="Tool for recovery of deleted or overwritten files on ext3/ext4 
filesystems"
-HOMEPAGE="https://sourceforge.net/projects/ext4magic/";
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="debug expert-mode file-attr"
-
-RDEPEND="app-arch/bzip2
-   >=sys-apps/file-5.04
-   sys-apps/util-linux
-   >=sys-fs/e2fsprogs-1.41.9
-   sys-libs/zlib"
-DEPEND="${RDEPEND}"
-
-DOCS="AUTHORS ChangeLog NEWS README TODO"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-sysmacros.patch #580192
-}
-
-src_configure() {
-   # build-system incorrectly recognizes '--disable-feature' options as 
enabled!
-   econf \
-   $(usex debug '--enable-debug' '') \
-   $(usex debug '--enable-debug-magic' '') \
-   $(usex expert-mode '--enable-expert-mode' '') \
-   $(usex file-attr '--enable-file-attr' '')
-}



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

2019-02-04 Thread Lars Wendler
commit: d71a47aee32a2d3ce7d0b064627a6bff86fa6fbc
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Feb  4 12:27:42 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Feb  4 12:28:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d71a47ae

net-wireless/iw: Bump to version 5.0

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

 net-wireless/iw/Manifest  |  1 +
 net-wireless/iw/iw-5.0.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/net-wireless/iw/Manifest b/net-wireless/iw/Manifest
index 9f5ea1cf78f..ba9a1faa506 100644
--- a/net-wireless/iw/Manifest
+++ b/net-wireless/iw/Manifest
@@ -4,3 +4,4 @@ DIST iw-4.14.tar.xz 114096 BLAKE2B 
2b2e4667e37864b9f9e490a47546f9a1f458da7b230e0
 DIST iw-4.3.tar.xz 98400 BLAKE2B 
7e76c85c43d82aed93827d8e534b10f9bbb96ba4e807481eabc502ba79860133aa1755c271ee12f6a504fa52663fbe180e5a4ca91c5ff5824a952e87f2c890d6
 SHA512 
ac2e15c4829ea7f47f56205942eb2ff5e26e5eeaeaf8991bd3910a758988263a24052b3b0d5fb7fed51456324524777f69e48991f99003ac7f6b2068aa18f9e8
 DIST iw-4.7.tar.xz 101800 BLAKE2B 
3bdf49c2717e400ef78965d6252f0162577ccae945d46706f7900344b8c2a7900b1d336c9840a742ae3e7584e9bfc431ceea00ef104728b2bb48a065c41e
 SHA512 
a43a61f6b10f1dc7ba69eea679aa82f041c8574f1323107581ee30e57296cdbaba80519a3e7d470ff3bbf2a7c2c7b687aae4839eb04b8938db1dacdb4610f5a1
 DIST iw-4.9.tar.xz 105764 BLAKE2B 
ad8105df91c4717293d5595b5ed9b4d022e455c608d70d1aeefc3d5516dcf92e507f38f424eca60f9d819e998286a4094a83002a1b9aaf4e204ca7a02fded67e
 SHA512 
3c99d8fc07d6d85b8304ff34b96573e22af65aea688a8cb08051ce4857d7ce9ac32a5acd3b30157c6c78e942f84a18f9229c17e353b7a6d01c80324729af18b3
+DIST iw-5.0.tar.xz 132672 BLAKE2B 
aeaa6067a220145f67ad731ddc76960f527a047d7c98669cd42b5994556aefcc3c5aa2b51afc4c12a60bd615118b31853cd628c71349265277ea89de2b1f93c6
 SHA512 
b5035e64a3b4cecec7beb7b0060090ae2e2dd9b0f8e46dac9dca4155f9f2b3e7aaa3dce12b61ff0775cbccd5edc290e27faba8a23fa5bc4b45cf97b9811b7d57

diff --git a/net-wireless/iw/iw-5.0.ebuild b/net-wireless/iw/iw-5.0.ebuild
new file mode 100644
index 000..dbd9e4048a5
--- /dev/null
+++ b/net-wireless/iw/iw-5.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="nl80211-based configuration utility for wireless devices using 
the mac80211 kernel stack"
+HOMEPAGE="https://wireless.kernel.org/en/users/Documentation/iw";
+SRC_URI="https://www.kernel.org/pub/software/network/${PN}/${P}.tar.xz";
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND="dev-libs/libnl:="
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+   default
+   tc-export CC LD PKG_CONFIG
+
+   # do not compress man pages by default.
+   sed 's@\(iw\.8\)\.gz@\1@' -i Makefile || die
+}
+
+src_compile() {
+   CFLAGS="${CFLAGS} ${CPPFLAGS}" \
+   LDFLAGS="${CFLAGS} ${LDFLAGS}" \
+   emake V=1
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
+}



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

2019-02-04 Thread Mike Pagano
commit: 0e4ea13ffdd4e36eb85c89290316437c663a0ace
Author: Mike Pagano  gentoo  org>
AuthorDate: Mon Feb  4 12:19:17 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Feb  4 12:19:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e4ea13f

sys-kernel/git-sources: Linux patch 5.0-rc5

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

 sys-kernel/git-sources/Manifest   |  1 +
 sys-kernel/git-sources/git-sources-5.0_rc5.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
index b286d474558..253a08821c2 100644
--- a/sys-kernel/git-sources/Manifest
+++ b/sys-kernel/git-sources/Manifest
@@ -3,3 +3,4 @@ DIST patch-5.0-rc1.patch 41507244 BLAKE2B 
4d66bc2d6be0f84b02a3baaaba02276d3258d7
 DIST patch-5.0-rc2.patch 41975987 BLAKE2B 
ddeb47fa996f2f84a9c9f1c81177d09035aceef0447cbe426d494c6a48d6fe9d650cec6776fb3e767d5f1bc0a8bd8a6eb193f598b7b547ee038dfcfe063bc9f3
 SHA512 
7e615b21a7f1ed3df5a13b84a4e07f5b7c73910f146b86185fd50bb6adb9a87021c7dabefddbe8c1e00e9a8d89dcfa94bf50b8c012bba4c80da05343de8fa77e
 DIST patch-5.0-rc3.patch 42400427 BLAKE2B 
53a5f97b618168122ac77a16323e45ac501acb2f4a8f4b8d015f4fa31d25874ec98b32b751b3b6ca5857c05cbd876fcabfd57f2616fe55a12b86565288453ca3
 SHA512 
e5d461982879935633bd0b35e94001a45d2bf71181f86f0871de2697a0aed5c1d19290089feb7eaf919f58c13b61878abcf0403239c66d96d0e7c05a658a99ca
 DIST patch-5.0-rc4.patch 42678556 BLAKE2B 
0b1610bb3bd444d70927ed64806ab3dd9e994de0f87c4d00a2b00c24158594b9595901a6943db4e31ebf5058d9587e2133e0a4cb9bde96580dbf0720199353ca
 SHA512 
4a531f46ebdc2ec0f39eaddc3b3362c792e235d591ca58571a9804ac180c546a34cada2c05bcc46828490d0563a0fdebe2b0932bf978f8762340019c61b1afc2
+DIST patch-5.0-rc5.patch 42841821 BLAKE2B 
f7e27c9e475480245484ca22bbcfdeaa258e3bd7f27d95c1e1508c8d910d4f36f8a984ebc45855ea660d828eebf678ba68358f6dec3b68dd3ded64dd2d1f2ba8
 SHA512 
04d05fe675d90644606d8c8d19bbf32d912c9ffd670b32abdb72f89492d04d5c4544910fe0f7695978ba6ae34bd41fedab0c7941d8c14cd32112ec6c142568ae

diff --git a/sys-kernel/git-sources/git-sources-5.0_rc5.ebuild 
b/sys-kernel/git-sources/git-sources-5.0_rc5.ebuild
new file mode 100644
index 000..10cee793e44
--- /dev/null
+++ b/sys-kernel/git-sources/git-sources-5.0_rc5.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+UNIPATCH_STRICTORDER="yes"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_NOUSEPR="yes"
+K_SECURITY_UNSUPPORTED="1"
+K_BASE_VER="4.20"
+K_EXP_GENPATCHES_NOUSE="1"
+K_FROM_GIT="yes"
+ETYPE="sources"
+CKV="${PVR/-r/-git}"
+
+# only use this if it's not an _rc/_pre release
+[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="The very latest -git version of the Linux kernel"
+HOMEPAGE="https://www.kernel.org";
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"
+IUSE=""
+
+K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and
+experimental nature. If you have any issues, try a matching vanilla-sources
+ebuild -- if the problem is not there, please contact the upstream kernel
+developers at https://bugzilla.kernel.org and on the linux-kernel mailing list 
to
+report the problem so it can be fixed in time for the next kernel release."
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   >=sys-devel/patch-2.7.5"
+
+pkg_postinst() {
+   postinst_sources
+}



[gentoo-commits] repo/gentoo:master commit in: app-shells/zsh/

2019-02-04 Thread Lars Wendler
commit: 8a013bba39fe6c55500499ed293e1f01341af386
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Feb  4 12:00:26 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Feb  4 12:00:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a013bba

app-shells/zsh: Bump to version 5.7.1

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

 app-shells/zsh/Manifest |   2 +
 app-shells/zsh/zsh-5.7.1.ebuild | 216 
 2 files changed, 218 insertions(+)

diff --git a/app-shells/zsh/Manifest b/app-shells/zsh/Manifest
index 382379183ed..b65727d06f4 100644
--- a/app-shells/zsh/Manifest
+++ b/app-shells/zsh/Manifest
@@ -1,4 +1,6 @@
 DIST zsh-5.6.2-doc.tar.xz 3198932 BLAKE2B 
7e701bb12e0114b7d9847caad1146fa3d538f8f6d859a765037660fb18341f1c79002811a42ec795e41eb2bbe899e12d4bcd055ea5c66e7b73bd488bdf8bbb55
 SHA512 
5102314e2857b032c6e6b4b715c261970b2f0c28663aff99fb87f7bb6c3971f88f8e8892ed349793570beae3fb68ff7923c82e99a3c1bb485e4639f01caaad4a
 DIST zsh-5.6.2.tar.xz 3077368 BLAKE2B 
8c6ce22436f9f51eff809c779efad02f4a0730b4431630ab305abc9f1ef722698f7c565d0aa421b0d94c21f2c830f9d529709fd62a4205be1a20acf0f94a845a
 SHA512 
f0a49e41b55eb478692ab5471d7c9828956b7e96bc82944202b0ef1c49a889b21a0e7682aa5f59fd0054ebfd866c2244c8a622e7aa46c13038af5c226c48a3a2
 DIST zsh-5.7-doc.tar.xz 3062428 BLAKE2B 
1ee818fd3625c3c96add6fb8f0ccb42dd05eeb33b4f4513e4e436974f835465fdb9dd4092c652bcda24762bc39307946e14c4969e03038ae43f77c24871a5449
 SHA512 
4b5f256ed39c0594daf2fdb2f995c60944c70556438b986fcf6f4e40dbfdc58e70eb65691c841d5dbb973a20b30255abe55ed140482b7afd446e1911c4efd395
+DIST zsh-5.7.1-doc.tar.xz 3062112 BLAKE2B 
cb67aada97d79b4b5b1116fb0737294785a2a510c2f4396cf77b671b62631e778ee9d57a32dcd257e079a9e4c35acaeeb68c0ec951b6ae8d8d8b647c05ef365c
 SHA512 
e51bc8eb408bcb20bf8a4f0b8588f7803fdd433445efa282f598a3bec4575cba7feaad117cd2d5077f51150bf0ba41a673ffb925ade33c435db498f1d791cc8c
+DIST zsh-5.7.1.tar.xz 3126308 BLAKE2B 
4f1aa2d5aea0341ba7839cf05687020889b5ca6879654a376ce838986211af4bddb7ab521a8a35cc06701f730a75a9778c633726b447f31845f5c140ec1e8d80
 SHA512 
a6aa88e1955a80229a4784a128866e325f79a8b5f73c922ab480048411036f1835cbb31daa30ab38bd16ab2a50040eda8f4f1f64704b21b6acc3051b1dbf18d0
 DIST zsh-5.7.tar.xz 3124708 BLAKE2B 
6b3822d3bb647aaf1072b9d499dbe9a65dc6cec0b83fb7fb09050e26bcc71fc0fb2846a1b754f9f206b602632add39e52465c1092f131f9000a149dbd2b469de
 SHA512 
cfef5604d6ff30aeb081ed2a2660c861027c0a90169231cdb6b19093ffa6d63946be7b1fde527769e60e5b14bb6853b590bf4a207b63d6ec66fffd30d9a94958

diff --git a/app-shells/zsh/zsh-5.7.1.ebuild b/app-shells/zsh/zsh-5.7.1.ebuild
new file mode 100644
index 000..7455f193772
--- /dev/null
+++ b/app-shells/zsh/zsh-5.7.1.ebuild
@@ -0,0 +1,216 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic prefix
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3 autotools
+   EGIT_REPO_URI="https://git.code.sf.net/p/zsh/code";
+else
+   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 ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+   SRC_URI="https://www.zsh.org/pub/${P}.tar.xz
+   https://www.zsh.org/pub/old/${P}.tar.xz
+   mirror://sourceforge/${PN}/${P}.tar.xz
+   doc? (
+   https://www.zsh.org/pub/${P}-doc.tar.xz
+   mirror://sourceforge/${PN}/${P}-doc.tar.xz
+   )"
+fi
+
+DESCRIPTION="UNIX Shell similar to the Korn shell"
+HOMEPAGE="https://www.zsh.org/";
+
+LICENSE="ZSH gdbm? ( GPL-2 )"
+SLOT="0"
+IUSE="caps debug doc examples gdbm maildir pcre static unicode"
+
+RDEPEND="
+   >=sys-libs/ncurses-5.1:0=
+   static? ( >=sys-libs/ncurses-5.7-r4:0=[static-libs] )
+   caps? ( sys-libs/libcap )
+   pcre? (
+   >=dev-libs/libpcre-3.9
+   static? ( >=dev-libs/libpcre-3.9[static-libs] )
+   )
+   gdbm? ( sys-libs/gdbm:= )
+   ! Doc/zshall.1 || die
+
+   # add openrc specific options for init.d completion
+   eapply "${FILESDIR}"/${PN}-5.3-init.d-gentoo.diff
+   fi
+
+   default
+
+   if [[ ${PV} == * ]] ; then
+   sed -i "/^VERSION=/s/=.*/=${PV}/" Config/version.mk || die
+   eautoreconf
+   fi
+}
+
+src_configure() {
+   local myconf=(
+   --bindir="${EPREFIX}"/bin
+   --libdir="${EPREFIX}"/usr/$(get_libdir)
+   --enable-etcdir="${EPREFIX}"/etc/zsh
+   --enable-runhelpdir="${EPREFIX}"/usr/share/zsh/${PV%_*}/help
+   --enable-fndir="${EPREFIX}"/usr/share/zsh/${PV%_*}/functions
+   --enable-site-fndir="${EPREFIX}"/usr/share/zsh/site-functions
+   --enable-function-

[gentoo-commits] repo/gentoo:master commit in: sys-firmware/intel-microcode/

2019-02-04 Thread Thomas Deutschmann
commit: 82665f9dfcac23836338e1c57ab64d0c4595617a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Feb  4 10:57:35 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Feb  4 10:58:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82665f9d

sys-firmware/intel-microcode: bump

- New microcodes:

  sig 0x000806ec, pf_mask 0x90, 2018-11-29, rev 0x00aa

- Updated microcodes:

  sig 0x000306f2, pf_mask 0x6f, 2018-04-20, rev 0x003d-> 2018-11-20, rev 
0x0041
  sig 0x000406f1, pf_mask 0xef, 2018-09-05, rev 0xb31 -> 2018-10-22, rev 
0xb33
  sig 0x00050656, pf_mask 0xbf, 2018-12-03, rev 0x413 -> 2018-12-17, rev 
0x414
  sig 0x00050657, pf_mask 0xbf, 2018-12-03, rev 0x513 -> 2018-12-17, rev 
0x514
  sig 0x000806eb, pf_mask 0xc0, 2018-07-16, rev 0x009a-> 2018-10-25, rev 
0x00a4
  sig 0x000906ea, pf_mask 0x22, 2018-07-16, rev 0x009a-> 2018-12-12, rev 
0x00aa
  sig 0x000906eb, pf_mask 0x02, 2018-10-24, rev 0x00a4-> 2018-12-12, rev 
0x00aa

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

 sys-firmware/intel-microcode/Manifest  |   1 +
 .../intel-microcode-20180807a_p20190204.ebuild | 239 +
 2 files changed, 240 insertions(+)

diff --git a/sys-firmware/intel-microcode/Manifest 
b/sys-firmware/intel-microcode/Manifest
index e6f978da207..4fc126450ce 100644
--- a/sys-firmware/intel-microcode/Manifest
+++ b/sys-firmware/intel-microcode/Manifest
@@ -1,2 +1,3 @@
 DIST intel-microcode-collection-20190112.tar.xz 4748576 BLAKE2B 
a6db3a1b357bdd1db65885b0de0d8a871573b6ec025eaff6c8991ef03eed6f32f298ecb736b42e09a94ca880ace984b276672245f5651982093d405abd588712
 SHA512 
6602772bd44aa9fad27275d515f73db041c3e18964fdfbea8d5f7917d456e5a5ca343999b7a9b48245b115290490c525e24cd575532ba8b2169a8229a69b9fa4
+DIST intel-microcode-collection-20190204.tar.xz 4917272 BLAKE2B 
d1934d764984452f45e48699d22599fa6583b5e06ac403c932203354c4043984dc64971a327d7e22a549bfb9aa612322f5c04a7cfdfcd37116570bbac94d3d0f
 SHA512 
02d693deb5e28eecbae5e5d6286418c68aa2d27d65f52bec93e4f0469a50e2476da8a3a2c205cff434ec9d16dbca619b1b7c5372043484be6dc02220e2ba556e
 DIST microcode-20180807a.tgz 1628061 BLAKE2B 
a6b5a07596a0b1687efb95c207b2194865b2f975cc0d761a687d5b9d8fea63e777eb73373113f356a18592fd53651cf37d044d4e98cdfe6b306393b54ac06129
 SHA512 
3cd6794a5ce26e86f7b644e523ba978699316046e593da215b73b17c4b43049ac4a81636e2ce3e727d06c2efbac98657764aa3ff355edb429127585bb49a9b10

diff --git 
a/sys-firmware/intel-microcode/intel-microcode-20180807a_p20190204.ebuild 
b/sys-firmware/intel-microcode/intel-microcode-20180807a_p20190204.ebuild
new file mode 100644
index 000..06557d9fb74
--- /dev/null
+++ b/sys-firmware/intel-microcode/intel-microcode-20180807a_p20190204.ebuild
@@ -0,0 +1,239 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit linux-info toolchain-funcs mount-boot
+
+# Find updates by searching and clicking the first link (hopefully it's the 
one):
+# 
https://www.intel.com/content/www/us/en/search.html?keyword=Processor+Microcode+Data+File
+
+COLLECTION_SNAPSHOT="${PV##*_p}"
+INTEL_SNAPSHOT="${PV/_p*}"
+NUM="28087"
+DESCRIPTION="Intel IA32/IA64 microcode update data"
+HOMEPAGE="http://inertiawar.com/microcode/ 
https://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=${NUM}";
+SRC_URI="https://downloadmirror.intel.com/${NUM}/eng/microcode-${INTEL_SNAPSHOT}.tgz
+   
https://dev.gentoo.org/~whissi/dist/intel-microcode/intel-microcode-collection-${COLLECTION_SNAPSHOT}.tar.xz";
+
+LICENSE="intel-ucode"
+SLOT="0"
+KEYWORDS="-* amd64 x86"
+IUSE="hostonly initramfs +split-ucode vanilla"
+REQUIRED_USE="|| ( initramfs split-ucode )"
+
+DEPEND="sys-apps/iucode_tool"
+
+# !&1)
+   if [[ -z "${_detected_processors}" ]]; then
+   ewarn "Looks like iucode_tool was unable to detect any 
processor!"
+   else
+   einfo "Only installing ucode(s) for 
${_detected_processors#iucode_tool: system has } due to USE=hostonly ..."
+   fi
+
+   opts=(
+   --scan-system
+   # be strict about what we are doing
+   --overwrite
+   --strict-checks
+   --no-ignore-broken
+   # we want to install latest version
+   --no-downgrade
+   # show everything we find
+   --list-all
+   # show what we selected
+   --list
+   )
+
+   # The earlyfw cpio needs to be in /boot because it must be 
loaded before
+   

[gentoo-commits] repo/gentoo:master commit in: sys-firmware/intel-microcode/

2019-02-04 Thread Thomas Deutschmann
commit: efb2ecfe3822426a9d9b5b78a2b2d15db3e63789
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Feb  4 10:58:22 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Feb  4 10:58:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efb2ecfe

sys-firmware/intel-microcode: drop old

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

 sys-firmware/intel-microcode/Manifest  |   1 -
 .../intel-microcode-20180807a_p20190112.ebuild | 239 -
 2 files changed, 240 deletions(-)

diff --git a/sys-firmware/intel-microcode/Manifest 
b/sys-firmware/intel-microcode/Manifest
index 4fc126450ce..933ab6b5a10 100644
--- a/sys-firmware/intel-microcode/Manifest
+++ b/sys-firmware/intel-microcode/Manifest
@@ -1,3 +1,2 @@
-DIST intel-microcode-collection-20190112.tar.xz 4748576 BLAKE2B 
a6db3a1b357bdd1db65885b0de0d8a871573b6ec025eaff6c8991ef03eed6f32f298ecb736b42e09a94ca880ace984b276672245f5651982093d405abd588712
 SHA512 
6602772bd44aa9fad27275d515f73db041c3e18964fdfbea8d5f7917d456e5a5ca343999b7a9b48245b115290490c525e24cd575532ba8b2169a8229a69b9fa4
 DIST intel-microcode-collection-20190204.tar.xz 4917272 BLAKE2B 
d1934d764984452f45e48699d22599fa6583b5e06ac403c932203354c4043984dc64971a327d7e22a549bfb9aa612322f5c04a7cfdfcd37116570bbac94d3d0f
 SHA512 
02d693deb5e28eecbae5e5d6286418c68aa2d27d65f52bec93e4f0469a50e2476da8a3a2c205cff434ec9d16dbca619b1b7c5372043484be6dc02220e2ba556e
 DIST microcode-20180807a.tgz 1628061 BLAKE2B 
a6b5a07596a0b1687efb95c207b2194865b2f975cc0d761a687d5b9d8fea63e777eb73373113f356a18592fd53651cf37d044d4e98cdfe6b306393b54ac06129
 SHA512 
3cd6794a5ce26e86f7b644e523ba978699316046e593da215b73b17c4b43049ac4a81636e2ce3e727d06c2efbac98657764aa3ff355edb429127585bb49a9b10

diff --git 
a/sys-firmware/intel-microcode/intel-microcode-20180807a_p20190112.ebuild 
b/sys-firmware/intel-microcode/intel-microcode-20180807a_p20190112.ebuild
deleted file mode 100644
index 06557d9fb74..000
--- a/sys-firmware/intel-microcode/intel-microcode-20180807a_p20190112.ebuild
+++ /dev/null
@@ -1,239 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit linux-info toolchain-funcs mount-boot
-
-# Find updates by searching and clicking the first link (hopefully it's the 
one):
-# 
https://www.intel.com/content/www/us/en/search.html?keyword=Processor+Microcode+Data+File
-
-COLLECTION_SNAPSHOT="${PV##*_p}"
-INTEL_SNAPSHOT="${PV/_p*}"
-NUM="28087"
-DESCRIPTION="Intel IA32/IA64 microcode update data"
-HOMEPAGE="http://inertiawar.com/microcode/ 
https://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=${NUM}";
-SRC_URI="https://downloadmirror.intel.com/${NUM}/eng/microcode-${INTEL_SNAPSHOT}.tgz
-   
https://dev.gentoo.org/~whissi/dist/intel-microcode/intel-microcode-collection-${COLLECTION_SNAPSHOT}.tar.xz";
-
-LICENSE="intel-ucode"
-SLOT="0"
-KEYWORDS="-* amd64 x86"
-IUSE="hostonly initramfs +split-ucode vanilla"
-REQUIRED_USE="|| ( initramfs split-ucode )"
-
-DEPEND="sys-apps/iucode_tool"
-
-# !&1)
-   if [[ -z "${_detected_processors}" ]]; then
-   ewarn "Looks like iucode_tool was unable to detect any 
processor!"
-   else
-   einfo "Only installing ucode(s) for 
${_detected_processors#iucode_tool: system has } due to USE=hostonly ..."
-   fi
-
-   opts=(
-   --scan-system
-   # be strict about what we are doing
-   --overwrite
-   --strict-checks
-   --no-ignore-broken
-   # we want to install latest version
-   --no-downgrade
-   # show everything we find
-   --list-all
-   # show what we selected
-   --list
-   )
-
-   # The earlyfw cpio needs to be in /boot because it must be 
loaded before
-   # rootfs is mounted.
-   use initramfs && opts+=( --write-earlyfw=${_initramfs_file} )
-
-   if use split-ucode; then
-   opts+=( 
--write-firmware="${ED%/}/lib/firmware/intel-ucode" )
-   fi
-
-   opts+=( "${ED%/}"/lib/firmware/intel-ucode-temp )
-
-   mv "${ED%/}"/lib/firmware/intel-ucode{,-temp} || die
-   keepdir /lib/firmware/intel-ucode
-
-   iucode_tool "${opts[@]}" || die "iucode_tool ${opts[@]}"
-
-   rm -r "${ED%/}"/lib/firmware/intel-ucode-temp || die
-
-   elif ! use split-ucode; then # hostonly disabled
-  

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

2019-02-04 Thread Alexys Jacob
commit: e566ac29717a005cbb5fd24a65f271cac33e1e44
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Jan 31 07:29:03 2019 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Feb  4 10:31:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e566ac29

sys-cluster/keepalived: bump to 2.0.12

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/10950
Signed-off-by: Alexys Jacob  gentoo.org>

 sys-cluster/keepalived/Manifest |  1 +
 sys-cluster/keepalived/keepalived-2.0.12.ebuild | 73 +
 2 files changed, 74 insertions(+)

diff --git a/sys-cluster/keepalived/Manifest b/sys-cluster/keepalived/Manifest
index 6f3691c188e..436e8947c39 100644
--- a/sys-cluster/keepalived/Manifest
+++ b/sys-cluster/keepalived/Manifest
@@ -1,2 +1,3 @@
 DIST keepalived-2.0.10.tar.gz 927631 BLAKE2B 
0cb4c5c613ae2c58f993930c446cdcafdff8a049a9fb1e31f61d7afe2406b2dde2258d450913577ef8ee18d0171f57e4ad01727d9e0f489cfe25b35826770181
 SHA512 
e76562e5d9d9dc945f0c9702f5f3c6be6acd8c66a59aea1f8287810a2eeb4c65b6cb7e1cd84c1e478978f7db94dba7f8a918ca4847f90a6554b20d757addd2db
 DIST keepalived-2.0.11.tar.gz 961182 BLAKE2B 
226bac3a544434a36b01ebdb43b166b3833fca3ec12014ba9a76e90f12663a5550271dff87155c74ba5eb908dd48fc9dd2cac810705e96ae3bd30df67a26e708
 SHA512 
ead982aeacdf329109089dfc58a42915ff44b0c4897006000c74642fa3747b2cac1a472faa438ce517f47b80d193d466875ab7130d2206400c8b2ad52f17c6d4
+DIST keepalived-2.0.12.tar.gz 947015 BLAKE2B 
c6c47bbc19bc8b31ae6c2d30616a5cfe90b1195c956b56731e702c909a1478e3793e22a7573f7b337d556c38d411d30f7aa5b4c0e45d14cfc18e17dfe46264d8
 SHA512 
345f7574cfe978194504691c0a7bcad76b1438bf8833911271647d445f0d1352972257554524e94be44e9d971299678d2f9a026e29088e844bbb3d2b25637076

diff --git a/sys-cluster/keepalived/keepalived-2.0.12.ebuild 
b/sys-cluster/keepalived/keepalived-2.0.12.ebuild
new file mode 100644
index 000..79fe86eb5c2
--- /dev/null
+++ b/sys-cluster/keepalived/keepalived-2.0.12.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools systemd
+
+DESCRIPTION="A strong & robust keepalive facility to the Linux Virtual Server 
project"
+HOMEPAGE="http://www.keepalived.org/";
+SRC_URI="http://www.keepalived.org/software/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+IUSE="dbus debug ipv6 -json snmp"
+
+RDEPEND="dev-libs/libnl:=
+   dev-libs/openssl:=
+   dev-libs/popt
+   net-libs/libnfnetlink
+   sys-apps/iproute2
+   dbus? ( sys-apps/dbus )
+   json? ( dev-libs/json-c:= )
+   snmp? ( net-analyzer/net-snmp )"
+DEPEND="${RDEPEND}
+   >=sys-kernel/linux-headers-4.4"
+
+DOCS=(
+   README CONTRIBUTORS INSTALL ChangeLog AUTHOR TODO
+   doc/keepalived.conf.SYNOPSIS doc/NOTE_vrrp_vmac.txt
+)
+
+src_prepare() {
+   default
+
+   eautoreconf
+}
+
+src_configure() {
+   STRIP=/bin/true \
+   econf \
+   --with-init=custom \
+   --with-kernel-dir=/usr \
+   --enable-sha1 \
+   --enable-vrrp \
+   $(use_enable dbus) \
+   $(use_enable dbus dbus-create-instance) \
+   $(use_enable debug) \
+   $(use_enable json) \
+   $(use_enable snmp)
+}
+
+src_install() {
+   default
+
+   newinitd "${FILESDIR}"/keepalived.init-r1 keepalived
+   newconfd "${FILESDIR}"/keepalived.confd-r1 keepalived
+
+   systemd_newunit "${FILESDIR}"/${PN}.service ${PN}.service
+   systemd_install_serviced "${FILESDIR}/${PN}.service.conf"
+
+   use snmp && dodoc doc/KEEPALIVED-MIB.txt
+
+   docinto genhash
+   dodoc genhash/README genhash/AUTHOR genhash/ChangeLog
+   # This was badly named by upstream, it's more HOWTO than anything else.
+   newdoc INSTALL INSTALL+HOWTO
+
+   # Security risk to bundle SSL certs
+   rm -v "${ED}"/etc/keepalived/samples/*.pem || die
+   # Clean up sysvinit files
+   rm -rv "${ED}"/etc/sysconfig || die
+}



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

2019-02-04 Thread Thomas Deutschmann
commit: 927971514c12e2d1769818b2c6b1ac979776d031
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Feb  4 10:22:00 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Feb  4 10:26:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92797151

media-gfx/imagemagick: move stable keywords

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

 media-gfx/imagemagick/Manifest |   2 -
 media-gfx/imagemagick/imagemagick-6.9.10.23.ebuild | 248 
 media-gfx/imagemagick/imagemagick-6.9.10.25.ebuild |   2 +-
 media-gfx/imagemagick/imagemagick-7.0.8.23.ebuild  | 256 -
 media-gfx/imagemagick/imagemagick-7.0.8.25.ebuild  |   2 +-
 5 files changed, 2 insertions(+), 508 deletions(-)

diff --git a/media-gfx/imagemagick/Manifest b/media-gfx/imagemagick/Manifest
index e72fc4398dd..9ccfdee2399 100644
--- a/media-gfx/imagemagick/Manifest
+++ b/media-gfx/imagemagick/Manifest
@@ -1,4 +1,2 @@
-DIST ImageMagick-6.9.10-23.tar.xz 8941044 BLAKE2B 
7fd7dc8dcff32d87eb02b6590600813e8c7359b3e8e36fdf4eae9abdaf39941c1f5b4fef398cbf271777c630f7f4d1b149a1685ce34af3607c839facde89cc09
 SHA512 
b46405916b6beb7048fd0a82426bd890d56584f910092753dd788124006687167321757b3c9a469bcfba7d38e7162ddcd977918f605e6e87c28895eadecc0063
 DIST ImageMagick-6.9.10-25.tar.xz 8938560 BLAKE2B 
26d00bee1a0a70596afd670c010b4a103ef97c930b4cb34db688615d88ff9f6d026b7dc5b4c647b0a5aca2846ed25affef1ab29eaaa253168b807cc175aa56ad
 SHA512 
6444ef305d36e515d94ee1d65a26049f7b7bcefea595796b7f01a27b10c474d9f35f585731c4d2e5e6f0034aea3d3db6c70bd6a40e88efbb2400fe285f20f776
-DIST ImageMagick-7.0.8-23.tar.xz 8636148 BLAKE2B 
6db61c1fa8481fe27311211371f626e8f0fbb544cb5bddb51dc62e0ca70aa72faa942a43cea173a1a86980d2798baee50130982bf67ba9b6cf2892935b36d66c
 SHA512 
8063903d9992d89db302f9f95acdf112d3d38609289af5fcef66acf7f684b3223fea64829a0f6dd15f71f6b6b52f74d3c716c2217ffd83558c5b8a4b7a4aec3f
 DIST ImageMagick-7.0.8-25.tar.xz 9429456 BLAKE2B 
9b5781bbc91059462e6f4356735ce49503b9fcdbbdd52acaba314d5736ef7b59a4b7b17500899728d9f735fd34f001d830ac6d59501602c394d207139918af37
 SHA512 
7fb3ebd3c77492a49d4b9d047d853de6eb1abea1614fed1f21b6b6c7de37093b53ade3f319fd74f87d76954392a5ec6ab5cf0df05db1fa73dbd73aee310edbf4

diff --git a/media-gfx/imagemagick/imagemagick-6.9.10.23.ebuild 
b/media-gfx/imagemagick/imagemagick-6.9.10.23.ebuild
deleted file mode 100644
index b6bca9ea8b2..000
--- a/media-gfx/imagemagick/imagemagick-6.9.10.23.ebuild
+++ /dev/null
@@ -1,248 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit eapi7-ver eutils flag-o-matic libtool perl-functions toolchain-funcs 
multilib
-
-MY_PV="$(ver_rs 3 '-')"
-MY_P="ImageMagick-${MY_PV}"
-
-DESCRIPTION="A collection of tools and libraries for many image formats"
-HOMEPAGE="https://www.imagemagick.org/";
-SRC_URI="mirror://${PN}/${MY_P}.tar.xz"
-
-LICENSE="imagemagick"
-SLOT="0/${PV}"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri heif jbig 
jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 
q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
-
-RESTRICT="perl? ( userpriv )"
-
-RDEPEND="
-   dev-libs/libltdl:0
-   bzip2? ( app-arch/bzip2 )
-   corefonts? ( media-fonts/corefonts )
-   djvu? ( app-text/djvu )
-   fftw? ( sci-libs/fftw:3.0 )
-   fontconfig? ( media-libs/fontconfig )
-   fpx? ( >=media-libs/libfpx-1.3.0-r1 )
-   graphviz? ( media-gfx/graphviz )
-   heif? ( media-libs/libheif:= )
-   jbig? ( >=media-libs/jbigkit-2:= )
-   jpeg? ( virtual/jpeg:0 )
-   jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 )
-   lcms? ( media-libs/lcms:2= )
-   lqr? ( media-libs/liblqr )
-   opencl? ( virtual/opencl )
-   openexr? ( media-libs/openexr:0= )
-   pango? ( x11-libs/pango )
-   perl? ( >=dev-lang/perl-5.8.8:0= )
-   png? ( media-libs/libpng:0= )
-   postscript? ( app-text/ghostscript-gpl )
-   raw? ( media-libs/libraw:= )
-   svg? ( gnome-base/librsvg )
-   tiff? ( media-libs/tiff:0= )
-   truetype? (
-   media-fonts/urw-fonts
-   >=media-libs/freetype-2
-   )
-   webp? ( media-libs/libwebp:0= )
-   wmf? ( media-libs/libwmf )
-   X? (
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libXext
-   x11-libs/libXt
-   )
-   xml? ( dev-libs/libxml2:= )
-   lzma? ( app-arch/xz-utils )
-   zlib? ( sys-libs/zlib:= )"
-DEPEND="${RDEPEND}
-   !media-gfx/graphicsmagick[imagemagick]
-   virtual/pkgconfig
-   X? ( x11-base/xorg-proto )"
-

[gentoo-commits] proj/java:master commit in: dev-java/gradle-bin/

2019-02-04 Thread Florian Schmaus
commit: bfb25ae5f259c3bb7f965ec65d2a4379f656f430
Author: Florian Schmaus  geekplace  eu>
AuthorDate: Mon Feb  4 09:01:27 2019 +
Commit: Florian Schmaus  geekplace  eu>
CommitDate: Mon Feb  4 10:24:19 2019 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=bfb25ae5

dev-java/gradle-bin: Add 5.1.1

Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Florian Schmaus  geekplace.eu>

 dev-java/gradle-bin/Manifest|  1 +
 dev-java/gradle-bin/gradle-bin-5.1.1.ebuild | 60 +
 2 files changed, 61 insertions(+)

diff --git a/dev-java/gradle-bin/Manifest b/dev-java/gradle-bin/Manifest
index 3f837b8b..f3667743 100644
--- a/dev-java/gradle-bin/Manifest
+++ b/dev-java/gradle-bin/Manifest
@@ -3,3 +3,4 @@ DIST gradle-4.10.2-all.zip 116855693 BLAKE2B 
43c12ad5eb9abc7349921a446f957cc1e58
 DIST gradle-4.4.1-all.zip 99180462 BLAKE2B 
8b961f3ef296191dbd3415d7428ba943fbcadca0d69d6b77ba60d91a50b69f55be86cb564672e5390caf8e753234aac572d8fce69c2a79321cacf3d3ea035e5b
 SHA512 
f281be409fee7c0b554c0920dd01a09eee0449cc8894e364a0174181836cf4ab986d078ea9fa48acfd16c8900d44cafedf3daeb804f0996f67af2438f5857233
 DIST gradle-4.5.1-all.zip 101862201 BLAKE2B 
f109a74c28dd839ed099aa8fb69a3397617ea1701230017dc778bacf320a9a864d95979960fe9b1a4ec3714d73bd590013a423aa553fcd37719ee4fbfda49d2e
 SHA512 
914fa381b996d91eb6ef57b4a4855d3cb6dd3ae05f3febed4bb6a114d47e166ed36c60f1277015c8ca21f7f727e3cc82ec208da85458ab9f56d7cad074b09caf
 DIST gradle-5.1-all.zip 130659636 BLAKE2B 
ecf2e5ece8063200a1878dd8dc37a77a8d5eec8d7d7484b3b96cd7850d205d4969083733982f4bca96d0bfc0d95fad6864d6516feea1295e20ebdc75f01250ec
 SHA512 
f2f08e6b29f065036e2e381d1ef5d77ab3f06a427a27b3f72137957b151b13ba74b67653595aeddd5f7e9b710a57b5abaefa7d1cbbc1ae9fb06cc630fff018ac
+DIST gradle-5.1.1-all.zip 130765970 BLAKE2B 
95b4ceb2e06b62607b9151bd085ab607c0939f3d6c5a1abf23e2f14ec54b5b3bc26c02fce2db9d3e77be6e219a72a7d0faa4d8edfaa072d2bcd9b65e03e98243
 SHA512 
31f43751d517f5ecf47ba66332563bc7ca1a3145adfb09190ec0232107fc812a7e8114a1d374aeb2378c88f6433b2d15f58f80706bb8e166e7a1be8a8a444d71

diff --git a/dev-java/gradle-bin/gradle-bin-5.1.1.ebuild 
b/dev-java/gradle-bin/gradle-bin-5.1.1.ebuild
new file mode 100644
index ..2ce1bb0f
--- /dev/null
+++ b/dev-java/gradle-bin/gradle-bin-5.1.1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit java-pkg-2
+
+MY_PN=${PN%%-bin}
+MY_P="${MY_PN}-${PV/_rc/-rc-}"
+
+DESCRIPTION="A project automation and build tool with a Groovy based DSL"
+SRC_URI="http://services.gradle.org/distributions/${MY_P}-all.zip";
+HOMEPAGE="http://www.gradle.org/";
+LICENSE="Apache-2.0"
+SLOT="${PV}"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="app-arch/zip
+   app-eselect/eselect-gradle"
+RDEPEND=">=virtual/jdk-1.6"
+
+IUSE="source doc examples"
+
+S="${WORKDIR}/${MY_P}"
+
+src_install() {
+   local gradle_dir="${EPREFIX}/usr/share/${PN}-${SLOT}"
+
+   dodoc docs/release-notes.html getting-started.html
+
+   insinto "${gradle_dir}"
+
+   # source
+   if use source ; then
+   java-pkg_dosrc src/*
+   fi
+
+   # docs
+   if use doc ; then
+   java-pkg_dojavadoc docs/javadoc
+   fi
+
+   # examples
+   if use examples ; then
+   java-pkg_doexamples samples
+   fi
+
+   insinto "${gradle_dir}"
+   doins -r bin/ lib/
+   fperms 755 "${gradle_dir}/bin/gradle"
+   dosym "${gradle_dir}/bin/gradle" "/usr/bin/${PN}-${SLOT}"
+}
+
+pkg_postinst() {
+   eselect gradle update ifunset
+}
+
+pkg_postrm() {
+   eselect gradle update ifunset
+}



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

2019-02-04 Thread Jeroen Roovers
commit: 63b67cdbeb0f4e4ff1cb6094e9436353b4621bdb
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Feb  4 10:22:26 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Feb  4 10:22:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63b67cdb

net-vpn/pptpd: metadata.xml: packages => packets

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

 net-vpn/pptpd/metadata.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-vpn/pptpd/metadata.xml b/net-vpn/pptpd/metadata.xml
index 32a22c503fb..8f69579af46 100644
--- a/net-vpn/pptpd/metadata.xml
+++ b/net-vpn/pptpd/metadata.xml
@@ -6,8 +6,8 @@
Sergey Popov


-   Log all GRE accepted packages 
when in debug
-   mode (required if you want upstream support)
+   Log all GRE accepted packets 
when in
+   debug mode (required if you want upstream support)


poptop



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

2019-02-04 Thread Lars Wendler
commit: 5cea866cd51e6c4cf0981c31bdcd0fd73be2ca6c
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Feb  4 09:04:25 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Feb  4 09:18:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cea866c

sys-devel/bison: Bump to version 3.3.2

Closes: https://bugs.gentoo.org/677244
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 sys-devel/bison/Manifest   |  1 +
 sys-devel/bison/bison-3.3.2.ebuild | 92 ++
 2 files changed, 93 insertions(+)

diff --git a/sys-devel/bison/Manifest b/sys-devel/bison/Manifest
index cb366449dbf..68022917cef 100644
--- a/sys-devel/bison/Manifest
+++ b/sys-devel/bison/Manifest
@@ -4,3 +4,4 @@ DIST bison-3.2.3-patches-01.tar.xz 9460 BLAKE2B 
3e9f3e636d774d005c861c4f5fe121a8
 DIST bison-3.2.4.tar.xz 2094568 BLAKE2B 
9b7617b25f1b151c3b86a5f57e733543160fb40f992ff968eaadfc91d8f1a67f56d0afeafbed5003ea1a5e0c861b12ef4cc27065d1b6cbc1d0845710164d84e2
 SHA512 
652b54fdee969bbc17eeb04d05d65f143e8e0e1b46ac2574e3a76687b9bd916c9a0c97658b4f8357958d64e87fe2a6a2a98a6c312970f0e74fb4445962e9daae
 DIST bison-3.3-patches-01.tar.xz 10768 BLAKE2B 
6b4df80d0cf6ff3445019bbc66063b794731d2c9869b20b0ace3ed9500e7ea4a30685a4084717871a68838b31392a90d2e1b52ef01eb2f62ea420e513268652c
 SHA512 
32accc5a9e7b18b8dd98c73e5da50018be68effed9b69ed4d30604c7e7ba4495eef54b7882c3fe32bdeffb9278165ac2b5f3164b7c122e2001e4dd60ac2f4d1a
 DIST bison-3.3.1.tar.xz 2106048 BLAKE2B 
998ab8cd014e0dde5a9a709ec8505e51ac5a85f3f88eb5c1a8dda7d2f1a8d82fbe6bd75b06b7a8ca3c67072f1ad09997c559a7584c443174165408f6200276ab
 SHA512 
8901a97adda0d6d62c06e85d12645b35fa624c9f05e40250c1bb387d5524ac52c2b7de0402ab970f6ccfaf99c9bb5356873daa20cdd0c37d73b4a6ed7b98c44f
+DIST bison-3.3.2.tar.xz 2108612 BLAKE2B 
84cf59c02ff4ba34c052ef2539cde8d5932145ab21b63c879eeb32d183cadba6cb6209278090e38f3f03085e58ad1fff71248e5729513d8dffdcc14e8f924dfc
 SHA512 
63c67291ea1bd00f4412fc589ffb891ede3e2577253016a9a185e00fb2d702371f3862486639a8f52f8a887f340a639575ff3b7ba93c152170cbfd8c9585c1dc

diff --git a/sys-devel/bison/bison-3.3.2.ebuild 
b/sys-devel/bison/bison-3.3.2.ebuild
new file mode 100644
index 000..ca879edb243
--- /dev/null
+++ b/sys-devel/bison/bison-3.3.2.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit flag-o-matic
+
+PATCHES="${PN}-3.3-patches-01.tar.xz"
+
+DESCRIPTION="A general-purpose (yacc-compatible) parser generator"
+HOMEPAGE="https://www.gnu.org/software/bison/";
+SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
+   https://dev.gentoo.org/~whissi/dist/bison/${PATCHES}
+   https://dev.gentoo.org/~polynomial-c/dist/bison/${PATCHES}";
+
+LICENSE="GPL-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="examples nls static test"
+
+RDEPEND=">=sys-devel/m4-1.4.16"
+DEPEND="${RDEPEND}
+   sys-devel/flex
+   examples? ( dev-lang/perl )
+   nls? ( sys-devel/gettext )
+   test? ( dev-lang/perl )"
+
+DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO ) # ChangeLog-2012 
ChangeLog-1998 PACKAGING README-alpha README-release
+
+PATCHES=(
+   "${WORKDIR}"/patches/${PN}-3.1-optional-perl.patch #538300
+   "${WORKDIR}"/patches/${PN}-3.3-avoid_autoreconf.patch
+)
+
+src_prepare() {
+   # Record date to avoid 'config.status --recheck' & regen of 
'tests/package.m4'
+   touch -r configure.ac old.configure.ac || die
+   touch -r configure old.configure || die
+
+   default
+
+   # Restore date after patching
+   touch -r old.configure.ac configure.ac || die
+   touch -r old.configure configure || die
+
+   # The makefiles make the man page depend on the configure script
+   # which we patched above.  Touch it to prevent regeneration.
+   touch doc/bison.1 || die #548778 #538300#9
+
+   # Avoid regenerating the info page when the timezone is diff. #574492
+   sed -i '2iexport TZ=UTC' build-aux/mdate-sh || die
+}
+
+src_configure() {
+   use static && append-ldflags -static
+
+   local myeconfargs=(
+   --docdir='$(datarootdir)'/doc/${PF}
+   $(use_enable examples)
+   $(use_enable nls)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+
+   # This one is installed by dev-util/yacc
+   mv "${ED%/}"/usr/bin/yacc{,.bison} || die
+   mv "${ED%/}"/usr/share/man/man1/yacc{,.bison}.1 || die
+
+   # We do not need liby.a
+   rm -r "${ED%/}"/usr/lib* || die
+
+   # Move to documentation directory and leave compressing for EAPI>=4
+   mv "${ED%/}"/usr/share/${PN}/README 
"${ED%/}"/usr/share/doc/${PF}/README.

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

2019-02-04 Thread Miroslav Šulc
commit: f93570510fee5845b3c7b569695c07a0fdfd8fcf
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Feb  4 09:05:31 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Feb  4 09:05:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9357051

media-gfx/sane-frontends-1.0.14-r4: added support for gimptool-2.99

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-gfx/sane-frontends/sane-frontends-1.0.14-r4.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/media-gfx/sane-frontends/sane-frontends-1.0.14-r4.ebuild 
b/media-gfx/sane-frontends/sane-frontends-1.0.14-r4.ebuild
index 7eb6ed27c10..8f9b6030f8c 100644
--- a/media-gfx/sane-frontends/sane-frontends-1.0.14-r4.ebuild
+++ b/media-gfx/sane-frontends/sane-frontends-1.0.14-r4.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=7
@@ -50,6 +50,8 @@ src_install() {
plugindir="$(gimptool --gimpplugindir)/plug-ins"
elif type gimptool-2.0 &>/dev/null; then
plugindir="$(gimptool-2.0 --gimpplugindir)/plug-ins"
+   elif type gimptool-2.99 &>/dev/null; then
+   plugindir="$(gimptool-2.99 --gimpplugindir)/plug-ins"
else
die "Can't find GIMP plugin directory."
fi