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

2017-11-07 Thread Marek Szuba
commit: c6de0eb2a14315c154945bd49f05ec30caae076b
Author: Marek Szuba  gentoo  org>
AuthorDate: Wed Nov  8 07:44:32 2017 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Wed Nov  8 07:44:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6de0eb2

net-p2p/syncthing: bump to 0.14.40

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 net-p2p/syncthing/Manifest |   1 +
 net-p2p/syncthing/syncthing-0.14.40.ebuild | 123 +
 2 files changed, 124 insertions(+)

diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest
index dbd2015b181..7632c78a54c 100644
--- a/net-p2p/syncthing/Manifest
+++ b/net-p2p/syncthing/Manifest
@@ -1,2 +1,3 @@
 DIST syncthing-0.14.35.tar.gz 8235883 SHA256 
58509294a150d137fbd005b5629d2859cce661d25e8063505813c4e7faa62fae SHA512 
2a3de76e7118be6e91b8bc6bc69b10e250755836b378fa762e0feaed280bb2206d2e4552f09fd230d51e246633108fd8cff343ac355742ebb1bd06c2145fe086
 WHIRLPOOL 
bdc971896378fe04576273cab23432f3dfdd96f77d464c0ea0bc8143771a40a15520d20ce2e76ccd790e78c04421f92e31ce1af04f66760a4f101b8b67b6c852
 DIST syncthing-0.14.38.tar.gz 8246629 SHA256 
76c1dab5873d6f3b9799ad3e5dcab4c17fb0f5a699fe845bd081f162d96f4477 SHA512 
be5f7527d63e8db427705c34b26d783d9abd7cb5727d3dcf08ee62b1ace5454b7dfed4f030ec53e847a34f560cf349460f68c859a1008c5105aef65ef42c5cc5
 WHIRLPOOL 
c71799207eaa6dfac7839ead25dd551c76f00823f70d9bfc1bc72409ef410dbdb28cf9df3742a97a56f12cf0c705262299eec164313a027118be177ce6b5458f
+DIST syncthing-0.14.40.tar.gz 8300965 SHA256 
b9820dceb472531f20ebd18ab53a66876970c9d78d22c93ff53c3c879363d6be SHA512 
3e79b034d71d1c862d21433f897dc774d3e421628804ed9c8304d4ed0dccb90fa8ec738aef476bf074ba70d4c9947114c5b6a8326faa5d6b6e5dcc03dacabecb
 WHIRLPOOL 
cad84ccdd6ed94cf2ea664f13c77b53a51cfa1928723e898134654a7cff9e05748438cc05620c9bae6f147a173f4ed4d564a1c48ccdb73b87c7d3f7a39089494

diff --git a/net-p2p/syncthing/syncthing-0.14.40.ebuild 
b/net-p2p/syncthing/syncthing-0.14.40.ebuild
new file mode 100644
index 000..d86360de0e7
--- /dev/null
+++ b/net-p2p/syncthing/syncthing-0.14.40.ebuild
@@ -0,0 +1,123 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGO_PN="github.com/${PN}/${PN}"
+
+inherit golang-vcs-snapshot systemd user versionator
+
+DESCRIPTION="Open Source Continuous File Synchronization"
+HOMEPAGE="https://syncthing.net;
+SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="selinux tools"
+
+RDEPEND="selinux? ( sec-policy/selinux-syncthing )"
+
+DOCS=( README.md AUTHORS CONTRIBUTING.md )
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
+
+   if use tools ; then
+   # separate user for the relay server
+   enewgroup strelaysrv
+   enewuser strelaysrv -1 -1 /var/lib/strelaysrv strelaysrv
+   # and his home folder
+   keepdir /var/lib/strelaysrv
+   fowners strelaysrv:strelaysrv /var/lib/strelaysrv
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i \
+   's|^ExecStart=.*|ExecStart=/usr/libexec/syncthing/strelaysrv|' \
+   
src/${EGO_PN}/cmd/strelaysrv/etc/linux-systemd/strelaysrv.service \
+   || die
+}
+
+src_compile() {
+   export GOPATH="${S}:$(get_golibdir_gopath)"
+   cd src/${EGO_PN} || die
+   go run build.go -version "v${PV}" -no-upgrade install \
+   $(usex tools "all" "") || die "build failed"
+}
+
+src_test() {
+   cd src/${EGO_PN} || die
+   go run build.go test || die "test failed"
+}
+
+src_install() {
+   pushd src/${EGO_PN} >& /dev/null || die
+   doman man/*.[157]
+   einstalldocs
+
+   dobin bin/syncthing
+   if use tools ; then
+   exeinto /usr/libexec/syncthing
+   local exe
+   for exe in bin/* ; do
+   [[ "${exe}" == "bin/syncthing" ]] || doexe "${exe}"
+   done
+   fi
+   popd >& /dev/null || die
+
+   # openrc and systemd service files
+   systemd_dounit 
src/${EGO_PN}/etc/linux-systemd/system/${PN}{@,-resume}.service
+   systemd_douserunit src/${EGO_PN}/etc/linux-systemd/user/${PN}.service
+   newconfd "${FILESDIR}/${PN}.confd" ${PN}
+   newinitd "${FILESDIR}/${PN}.initd" ${PN}
+
+   keepdir /var/{lib,log}/${PN}
+   fowners ${PN}:${PN} /var/{lib,log}/${PN}
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}/${PN}.logrotate" ${PN}
+
+   if use tools ; then
+   # openrc and systemd service files
+   systemd_dounit 
src/${EGO_PN}/cmd/strelaysrv/etc/linux-systemd/strelaysrv.service
+   newconfd "${FILESDIR}/strelaysrv.confd" strelaysrv
+   newinitd "${FILESDIR}/strelaysrv.initd" strelaysrv
+
+   insinto /etc/logrotate.d
+   newins 

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

2017-11-07 Thread Marek Szuba
commit: 9677e84c6a77c10907b7df828ee0cfcc86cee3cc
Author: Marek Szuba  gentoo  org>
AuthorDate: Wed Nov  8 07:47:43 2017 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Wed Nov  8 07:47:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9677e84c

net-p2p/syncthing: remove 0.14.35

This version has a major bug, see
https://github.com/syncthing/syncthing/issues/4297
for details.

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 net-p2p/syncthing/Manifest |   1 -
 net-p2p/syncthing/syncthing-0.14.35.ebuild | 123 -
 2 files changed, 124 deletions(-)

diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest
index 7632c78a54c..e8fe134fecd 100644
--- a/net-p2p/syncthing/Manifest
+++ b/net-p2p/syncthing/Manifest
@@ -1,3 +1,2 @@
-DIST syncthing-0.14.35.tar.gz 8235883 SHA256 
58509294a150d137fbd005b5629d2859cce661d25e8063505813c4e7faa62fae SHA512 
2a3de76e7118be6e91b8bc6bc69b10e250755836b378fa762e0feaed280bb2206d2e4552f09fd230d51e246633108fd8cff343ac355742ebb1bd06c2145fe086
 WHIRLPOOL 
bdc971896378fe04576273cab23432f3dfdd96f77d464c0ea0bc8143771a40a15520d20ce2e76ccd790e78c04421f92e31ce1af04f66760a4f101b8b67b6c852
 DIST syncthing-0.14.38.tar.gz 8246629 SHA256 
76c1dab5873d6f3b9799ad3e5dcab4c17fb0f5a699fe845bd081f162d96f4477 SHA512 
be5f7527d63e8db427705c34b26d783d9abd7cb5727d3dcf08ee62b1ace5454b7dfed4f030ec53e847a34f560cf349460f68c859a1008c5105aef65ef42c5cc5
 WHIRLPOOL 
c71799207eaa6dfac7839ead25dd551c76f00823f70d9bfc1bc72409ef410dbdb28cf9df3742a97a56f12cf0c705262299eec164313a027118be177ce6b5458f
 DIST syncthing-0.14.40.tar.gz 8300965 SHA256 
b9820dceb472531f20ebd18ab53a66876970c9d78d22c93ff53c3c879363d6be SHA512 
3e79b034d71d1c862d21433f897dc774d3e421628804ed9c8304d4ed0dccb90fa8ec738aef476bf074ba70d4c9947114c5b6a8326faa5d6b6e5dcc03dacabecb
 WHIRLPOOL 
cad84ccdd6ed94cf2ea664f13c77b53a51cfa1928723e898134654a7cff9e05748438cc05620c9bae6f147a173f4ed4d564a1c48ccdb73b87c7d3f7a39089494

diff --git a/net-p2p/syncthing/syncthing-0.14.35.ebuild 
b/net-p2p/syncthing/syncthing-0.14.35.ebuild
deleted file mode 100644
index 27a867b3aba..000
--- a/net-p2p/syncthing/syncthing-0.14.35.ebuild
+++ /dev/null
@@ -1,123 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGO_PN="github.com/${PN}/${PN}"
-
-inherit golang-vcs-snapshot systemd user versionator
-
-DESCRIPTION="Open Source Continuous File Synchronization"
-HOMEPAGE="https://syncthing.net;
-SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~arm"
-IUSE="selinux tools"
-
-RDEPEND="selinux? ( sec-policy/selinux-syncthing )"
-
-DOCS=( README.md AUTHORS CONTRIBUTING.md )
-
-pkg_setup() {
-   enewgroup ${PN}
-   enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
-
-   if use tools ; then
-   # separate user for the relay server
-   enewgroup strelaysrv
-   enewuser strelaysrv -1 -1 /var/lib/strelaysrv strelaysrv
-   # and his home folder
-   keepdir /var/lib/strelaysrv
-   fowners strelaysrv:strelaysrv /var/lib/strelaysrv
-   fi
-}
-
-src_prepare() {
-   default
-   sed -i \
-   's|^ExecStart=.*|ExecStart=/usr/libexec/syncthing/strelaysrv|' \
-   
src/${EGO_PN}/cmd/strelaysrv/etc/linux-systemd/strelaysrv.service \
-   || die
-}
-
-src_compile() {
-   export GOPATH="${S}:$(get_golibdir_gopath)"
-   cd src/${EGO_PN} || die
-   go run build.go -version "v${PV}" -no-upgrade install \
-   $(usex tools "all" "") || die "build failed"
-}
-
-src_test() {
-   cd src/${EGO_PN} || die
-   go run build.go test || die "test failed"
-}
-
-src_install() {
-   pushd src/${EGO_PN} >& /dev/null || die
-   doman man/*.[157]
-   einstalldocs
-
-   dobin bin/syncthing
-   if use tools ; then
-   exeinto /usr/libexec/syncthing
-   local exe
-   for exe in bin/* ; do
-   [[ "${exe}" == "bin/syncthing" ]] || doexe "${exe}"
-   done
-   fi
-   popd >& /dev/null || die
-
-   # openrc and systemd service files
-   systemd_dounit 
src/${EGO_PN}/etc/linux-systemd/system/${PN}{@,-resume}.service
-   systemd_douserunit src/${EGO_PN}/etc/linux-systemd/user/${PN}.service
-   newconfd "${FILESDIR}/${PN}.confd" ${PN}
-   newinitd "${FILESDIR}/${PN}.initd" ${PN}
-
-   keepdir /var/{lib,log}/${PN}
-   fowners ${PN}:${PN} /var/{lib,log}/${PN}
-   insinto /etc/logrotate.d
-   newins "${FILESDIR}/${PN}.logrotate" ${PN}
-
-   if use tools ; then
-   # openrc and systemd service files
-   systemd_dounit 
src/${EGO_PN}/cmd/strelaysrv/etc/linux-systemd/strelaysrv.service
-   newconfd "${FILESDIR}/strelaysrv.confd" strelaysrv
-   newinitd 

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

2017-11-07 Thread Patrick Lauer
commit: 1121291aa19bd791d1f07193e3e251b1bbfebc3e
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Nov  8 07:07:03 2017 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Nov  8 07:07:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1121291a

dev-python/pytest-isort: Add py36

Package-Manager: Portage-2.3.13, Repoman-2.3.4

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

diff --git a/dev-python/pytest-isort/pytest-isort-0.1.0.ebuild 
b/dev-python/pytest-isort/pytest-isort-0.1.0.ebuild
index d0c9bc036a4..8fe6efc963f 100644
--- a/dev-python/pytest-isort/pytest-isort-0.1.0.ebuild
+++ b/dev-python/pytest-isort/pytest-isort-0.1.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 
 inherit distutils-r1
 



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

2017-11-07 Thread Patrick Lauer
commit: c30f6e927437c73a8365241a762e83cab97d4ca9
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Nov  8 07:06:12 2017 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Nov  8 07:07:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c30f6e92

dev-python/pytest-flake8: Add py36

Package-Manager: Portage-2.3.13, Repoman-2.3.4

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

diff --git a/dev-python/pytest-flake8/pytest-flake8-0.8.1.ebuild 
b/dev-python/pytest-flake8/pytest-flake8-0.8.1.ebuild
index 3023f8be88d..a42af5a698e 100644
--- a/dev-python/pytest-flake8/pytest-flake8-0.8.1.ebuild
+++ b/dev-python/pytest-flake8/pytest-flake8-0.8.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 
 inherit distutils-r1
 



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

2017-11-07 Thread Patrick Lauer
commit: 9b4ff3c14d68cd418c468f424c11ca67b0bb9cb7
Author: Patrick Lauer  gentoo  org>
AuthorDate: Tue Nov  7 07:42:26 2017 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Nov  8 07:07:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b4ff3c1

dev-python/pdfrw: Bump

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-python/pdfrw/Manifest |  1 +
 dev-python/pdfrw/pdfrw-0.4.ebuild | 19 +++
 2 files changed, 20 insertions(+)

diff --git a/dev-python/pdfrw/Manifest b/dev-python/pdfrw/Manifest
index f4b2e8827cb..935e490dbba 100644
--- a/dev-python/pdfrw/Manifest
+++ b/dev-python/pdfrw/Manifest
@@ -1,2 +1,3 @@
 DIST pdfrw-0.2.tar.gz 69177 SHA256 
09f734df28f9ad712a2c14308b1d60e7202762c3ce2e32a6ad30e7ec149822b2 SHA512 
4f1ed3b7ddb42969110291b31e02e15e1f98316ede25eaa4d63cdbc443497a278267309769351e04cff52651cdbc44c93771e521cb953ba08d57152f81ee516f
 WHIRLPOOL 
efbe6fa4e2ce53f27f1aed76183d2098ff2e1a9792a581078a219c27ec02c787ad6252a3d0120beda01214bcb3aa85600d23f48e90d8deaf45eec49ae88cfade
 DIST pdfrw-0.3.tar.gz 71576 SHA256 
1af18af301d2c07d846cc7203e3c7ca77b2ed2a9eb3421335cc39f5e3e148f36 SHA512 
38b6e3dffcc00ae063b4a1184b2fd2444d7bb0e2a78a8262764e609c1ba0697b4c9daf83a986852c18ee3e56b945827816537f36071406f31e94ebac0369ad74
 WHIRLPOOL 
f3de427a5757324cc28f6ab6234573031d8a64d42a3d496124c4a919c5acfb710e3a1ba92f4a3c54b2a88b5998a1c45707d98038abca9bd3c90dad44bcba408f
+DIST pdfrw-0.4.tar.gz 95402 SHA256 
0dc0494a0e6561b268542b28ede2280387c2728114f117d3bb5d8e4787b93ef4 SHA512 
6c0b629e837f9bd479a288bcd040952b98920da345113bf90167becbdf2f90a9d6c082c5e7988c68118bd62a2a5a0d22f98523407996531bb5d3031e847e10b0
 WHIRLPOOL 
6fdf1c73f826bbceda23cc1f7102570d972a1509a394523b4d7938ea02f6712b0828dcdc9e0a6a1b677d537ed2a58d1397c70073b07e59ef1d7cc55ff69e4ba4

diff --git a/dev-python/pdfrw/pdfrw-0.4.ebuild 
b/dev-python/pdfrw/pdfrw-0.4.ebuild
new file mode 100644
index 000..ef4623dcce5
--- /dev/null
+++ b/dev-python/pdfrw/pdfrw-0.4.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="PDF file reader/writer library"
+HOMEPAGE="https://github.com/pmaupin/pdfrw;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2017-11-07 Thread Patrick Lauer
commit: 2f23eb6f303dc394d29ae530c5f97c865b0717d5
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Nov  8 07:05:22 2017 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Nov  8 07:07:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f23eb6f

dev-python/pyphen: Add py36

Package-Manager: Portage-2.3.13, Repoman-2.3.4

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

diff --git a/dev-python/pyphen/pyphen-0.9.4.ebuild 
b/dev-python/pyphen/pyphen-0.9.4.ebuild
index 9edcfbd4d31..5d5fed98ca2 100644
--- a/dev-python/pyphen/pyphen-0.9.4.ebuild
+++ b/dev-python/pyphen/pyphen-0.9.4.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 
 inherit distutils-r1
 



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

2017-11-07 Thread Patrick Lauer
commit: 2a17be29e71a022b89afde5cb94adf24787b65d7
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Nov  8 07:07:29 2017 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Nov  8 07:07:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a17be29

dev-python/weasyprint: Bump

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-python/weasyprint/Manifest   |  1 +
 dev-python/weasyprint/weasyprint-0.41.ebuild | 53 
 2 files changed, 54 insertions(+)

diff --git a/dev-python/weasyprint/Manifest b/dev-python/weasyprint/Manifest
index e91fd0c9d8c..8980ddc311c 100644
--- a/dev-python/weasyprint/Manifest
+++ b/dev-python/weasyprint/Manifest
@@ -1,3 +1,4 @@
 DIST WeasyPrint-0.29.tar.gz 1418105 SHA256 
4edf5538b330be3e559f006db76a5a948c25f3792746aafb20f2a9d6185f0e71 SHA512 
3875240b7bed6991372f6a45f82d32f0d2f3add29ab1937001c5559368405737d185aa85871358730989a91ee6b17e62cc21535735c884c47705d0d2d38bb167
 WHIRLPOOL 
cbefe32d42e5bbc26993b58f88b2ebc26291579dd717805c8fc9c54d41fe69b3a05eb8f301e9c21b426766404c9a683cce6c115ed8193456d17c83b44c8513a9
 DIST WeasyPrint-0.39.tar.gz 386613 SHA256 
ed0be652bd396a9b818f015c8bc5fb32040864ee86cda6f0160cdef1dd4f42d0 SHA512 
668eed8c4f2502b3412166ea8e7b15b838b971b175ac3ec2370097b83557070684fa7bc9c62c3222056294093781649f263aba756091fb87d50ceea339e32e43
 WHIRLPOOL 
d7b987dbef301346a83418f7a8796f0d7c3076c5b8aadc66da1779e86198864e8c6c91ea3edc7d3ebbe8820a0e5a73b11c07a7cf1b7b7a9a9c3aeebb900d7490
 DIST WeasyPrint-0.40.tar.gz 388586 SHA256 
b7e00cd5c4c3de4e659cca0e02670c37bf2fcf7a57251cbfe23e31cbf9782a6b SHA512 
9c0d082ed2c35f76fe8ca5d25b5e99a0f96a309b2c4715ca3bd72a3a9a11121d4f5046c4ff55f007ebf0404edb0e4f510e571f42c569778948320be0301b8c4d
 WHIRLPOOL 
209c3aed8a03212c34a523fb777c6626b860a3eabd9b3f8d2b6ea61f40f8e606ee59e92020116b61e76b514b9d17056237ef7c1e298fdc3e98e80781aca5dc43
+DIST WeasyPrint-0.41.tar.gz 393866 SHA256 
1905d906a5560472045e001779c37ccbad8f2c4fe7b9eee7999b4f2096157b23 SHA512 
44b2d9e0a186c5767cd01d6e66495241d088908467e0fa28cee114a9c480bfcb4ef393236e9304653603f3917c73c452c05a38286932e0a271946860120d9a1f
 WHIRLPOOL 
ddc5edfb8b171a52d9ad5f9a49906fb476c601291176366ae3b9f820c6ed15b1907e18993076a4dc235a956d7ee9c955c6406ec89691975573a361b09e6a0b68

diff --git a/dev-python/weasyprint/weasyprint-0.41.ebuild 
b/dev-python/weasyprint/weasyprint-0.41.ebuild
new file mode 100644
index 000..ef4488009e9
--- /dev/null
+++ b/dev-python/weasyprint/weasyprint-0.41.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+RESTRICT="test"
+
+inherit distutils-r1
+
+DESCRIPTION="Visual rendering engine for HTML and CSS that can export to PDF"
+MY_PN="WeasyPrint"
+MY_P="${MY_PN}-${PV}"
+SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
+HOMEPAGE="http://weasyprint.org https://github.com/Kozea/WeasyPrint;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="jpeg jpeg2k test tiff"
+
+# Note: specific subslot of pango since it inlines some of pango headers.
+RDEPEND="
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf[jpeg?,jpeg2k?,tiff?]
+   x11-libs/pango:0/0
+   >=dev-python/cairocffi-0.5[${PYTHON_USEDEP}]
+   >=dev-python/cffi-0.6:=[${PYTHON_USEDEP}]
+   >=dev-python/cssselect2-0.1[${PYTHON_USEDEP}]
+   >=dev-python/html5lib-0.9[${PYTHON_USEDEP}]
+   >=dev-python/lxml-3.0[${PYTHON_USEDEP}]
+   >=dev-python/pyphen-0.8[${PYTHON_USEDEP}]
+   >=dev-python/tinycss2-0.5[${PYTHON_USEDEP}]
+   >=media-gfx/cairosvg-1.0.20[${PYTHON_USEDEP}]
+   >=dev-python/pdfrw-0.4[${PYTHON_USEDEP}]
+"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+ ${RDEPEND}
+ dev-python/pytest-cov[${PYTHON_USEDEP}]
+ dev-python/pytest-flake8[${PYTHON_USEDEP}]
+ dev-python/pytest-isort[${PYTHON_USEDEP}]
+ dev-python/pytest[${PYTHON_USEDEP}]
+ media-fonts/ahem
+   )
+"
+
+S="${WORKDIR}/${MY_P}"
+
+python_test() {
+   py.test || die "testsuite failed under ${EPYTHON}"
+}



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

2017-11-07 Thread Patrick Lauer
commit: 4cb26e7b19f7d2d50357a848408fb78fa8768dd9
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Nov  8 07:04:52 2017 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Nov  8 07:07:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cb26e7b

media-gfx/cairosvg: Add py36

Package-Manager: Portage-2.3.13, Repoman-2.3.4

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

diff --git a/media-gfx/cairosvg/cairosvg-1.0.22.ebuild 
b/media-gfx/cairosvg/cairosvg-1.0.22.ebuild
index a601d0ad3a5..7683bb91e0a 100644
--- a/media-gfx/cairosvg/cairosvg-1.0.22.ebuild
+++ b/media-gfx/cairosvg/cairosvg-1.0.22.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 
 inherit distutils-r1
 



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

2017-11-07 Thread Patrick Lauer
commit: fc23d62cfb9f6965a0bf54a5e0cc5bf9bdf01b70
Author: Patrick Lauer  gentoo  org>
AuthorDate: Tue Nov  7 07:39:00 2017 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Nov  8 07:07:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc23d62c

dev-python/m2crypto: Bump, fix license

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-python/m2crypto/Manifest   |  1 +
 dev-python/m2crypto/m2crypto-0.27.0.ebuild | 44 ++
 2 files changed, 45 insertions(+)

diff --git a/dev-python/m2crypto/Manifest b/dev-python/m2crypto/Manifest
index f4f0dc5776d..5b8f4691caa 100644
--- a/dev-python/m2crypto/Manifest
+++ b/dev-python/m2crypto/Manifest
@@ -2,3 +2,4 @@ DIST M2Crypto-0.24.0.tar.gz 184457 SHA256 
80a56441a1d2c0cf27e725be7554c92598b938
 DIST M2Crypto-0.25.1.tar.gz 300904 SHA256 
ac303a1881307a51c85ee8b1d87844d9866ee823b4fdbc52f7e79187c2d9acef SHA512 
096d414efd5558f9ca4cebf46a297fa39f799e35c4325e031ee816689345e041370f2129650a10db66ebfcfe64309a7c7b49082306567baaf003b88ed9d60bda
 WHIRLPOOL 
c634685f8e096c41fc6caf9b364c5393b8f62fb585cd63f7599bb9cc10f910eb25cf48772616773ad9708d1f0fc25f139ee897d925d18432a03e18db552bfe7b
 DIST M2Crypto-0.26.0.tar.gz 305914 SHA256 
05d94fd9b2dae2fb8e072819a795f0e05d3611b09ea185f68e1630530ec09ae8 SHA512 
f6ba0173833d1b9a318402a3445fbb522f1848c7406face0cc08d384de6b6944395737f5871353ca1488c6655be7ffb0ad7b40b5e98d5954858da4540590d242
 WHIRLPOOL 
9984e4367ecca0e0fe2ca94db69db817660c9b045bdd45e117ffe23fb8ea5e522c342e08738328ed2769ee85d215e22d42e33ada806bf9de6555e28d4d31cc7c
 DIST M2Crypto-0.26.4.tar.gz 1116587 SHA256 
5cae7acc0b34821f8c0ddf6665e482893fe1f198ad6379e61ffa9d8e65f5c199 SHA512 
632b71850edd4f4e32d6d3aa83cb0e8068654c087498c88265f999180e0c58917aa6d29c5d1033f597397da98c3dc9acb9d21feddbb2f3da25a368f6a0af60f9
 WHIRLPOOL 
9388b016cf47f849379ef47a1819a9ee4fd647f8491a61e7381107032ba0e57f28bf6ebca868cf8cc6e4d6fb9341c77a01bc620b5133ea6e689aab72349a07d0
+DIST M2Crypto-0.27.0.tar.gz 1119288 SHA256 
82317459d653322d6b37f122ce916dc91ddcd9d1b814847497ac796c4549dd68 SHA512 
df0f6b16f7d00a19fafbb5da5a3ececff6b4627accd00ca65e0d6f9e752a97f41016d0072c8e681475fe1d87c89b7474067068c0bfce6c68a30baddeb31bfac2
 WHIRLPOOL 
678f19d7bcd0663b704761a78b8e2d39a1c62450f99d5b0aa513e8b8af717ef1935b274eef99d4e027e8e5992887806bd270fcba02fd3e650f086f8b87f5adc7

diff --git a/dev-python/m2crypto/m2crypto-0.27.0.ebuild 
b/dev-python/m2crypto/m2crypto-0.27.0.ebuild
new file mode 100644
index 000..5745a2aafe4
--- /dev/null
+++ b/dev-python/m2crypto/m2crypto-0.27.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+MY_PN="M2Crypto"
+
+DESCRIPTION="M2Crypto: A Python crypto and SSL toolkit"
+HOMEPAGE="https://gitlab.com/m2crypto/m2crypto 
https://pypi.python.org/pypi/M2Crypto;
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~amd64-linux ~x86-linux 
~x64-macos ~x86-macos"
+
+IUSE="libressl"
+
+RDEPEND="
+   !libressl? ( >=dev-libs/openssl-0.9.8:0= )
+   libressl? ( dev-libs/libressl:0= )
+   dev-python/typing[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   >=dev-lang/swig-1.3.28:0
+   dev-python/setuptools[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+# Tests access network, and fail randomly. Bug #431458.
+RESTRICT=test
+
+python_compile() {
+   distutils-r1_python_compile --openssl="${EPREFIX}"/usr
+}
+
+python_test() {
+   esetup.py test
+}



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

2017-11-07 Thread Jeroen Roovers
commit: 74bf3187bbf0645405d7dd1ba8ed503c0a8979d8
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Nov  8 06:50:28 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Nov  8 06:50:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74bf3187

net-misc/chrony: Old.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 net-misc/chrony/Manifest |   1 -
 net-misc/chrony/chrony-2.2.1.ebuild  | 113 
 net-misc/chrony/chrony-3.1-r1.ebuild | 121 ---
 3 files changed, 235 deletions(-)

diff --git a/net-misc/chrony/Manifest b/net-misc/chrony/Manifest
index 9cb038ea728..3d1ce32d366 100644
--- a/net-misc/chrony/Manifest
+++ b/net-misc/chrony/Manifest
@@ -1,4 +1,3 @@
-DIST chrony-2.2.1.tar.gz 340514 SHA256 
4776fa8e80d698723e9a88eb882170951f6c45860545d84ae9f9d8b9bbd73796 SHA512 
caa18a22e7e64186f24f474e02862296bfa74c99671bc98e926caf27b88ce3580282543594602e76ad4be9b7f9623350888def893a7c1d96a7370d13a636442f
 WHIRLPOOL 
77500bc25496dc15f17bce60023b86330205945999011b243272db26a924ac67193da70089c59e19bea7666c05059c8c4c1975ca19057775ec2dd8e468ab8dce
 DIST chrony-2.3.tar.gz 355113 SHA256 
58bffb523012fb0fa87cc0d94d6e36de9689fe9556519cbd0d1ba254af92ccb2 SHA512 
2a9cda6c2bc931438b798bd037614196bdb1533d12432467a690d57095c74013c80c92fcaadbd43fd5b0c816872822527a1ade3014add458d669d7813d5fa080
 WHIRLPOOL 
06864181ac74b2cf13baf7d9098404f8540c26db41035fe38005fbfea8e12f2de179008f5b1a2544e24ebb7e4cca712421746690edb7f36b90416ad87901e920
 DIST chrony-2.4.1.tar.gz 390641 SHA256 
0fd59e0ef625b4459e3a9c7f221c52f56596582bce31abfae5f7369702edb6e0 SHA512 
7772065103ad95706f80374d88ba452b76cf8e29689abf22b38e7eb5ad2fcc491593e11702400daa8bf908218614df21b08ff15ab2d3d2347876119cd80abc4d
 WHIRLPOOL 
ed2c2ac8e11371e009d3e96553bb73e58b410bb38e6123a9e39a3451e5dc6860d981d45e67b4e2dc47b39f616f95146feb35efd15dbaa90932f07837172c440a
 DIST chrony-3.1.tar.gz 424109 SHA256 
9d9107dcdb7768a03dc129d33b2a7a25f1eea2f5620bc85eb00cfea07c1b6075 SHA512 
4ba3a75c3634050bb63ba9ee80d9be7a295f44ce4d195a050e4be4738bd7dd807fe37f2289d7ead4a75272bd5ebadbd03c233c67f859e9b68871fca5a6671427
 WHIRLPOOL 
d1b499bbcdd74a049c972c183d4b88365db4c6512d8011ca8b87f15c4e0d1bc882bde4f742591f5cfe49e820a5884f6b1960d132d5787be02a36bd57b9e2605f

diff --git a/net-misc/chrony/chrony-2.2.1.ebuild 
b/net-misc/chrony/chrony-2.2.1.ebuild
deleted file mode 100644
index d634ac9ee97..000
--- a/net-misc/chrony/chrony-2.2.1.ebuild
+++ /dev/null
@@ -1,113 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils systemd toolchain-funcs
-
-DESCRIPTION="NTP client and server programs"
-HOMEPAGE="http://chrony.tuxfamily.org/;
-SRC_URI="http://download.tuxfamily.org/${PN}/${P/_/-}.tar.gz;
-LICENSE="GPL-2"
-SLOT="0"
-
-KEYWORDS="~alpha amd64 ~arm hppa ~mips ppc ppc64 sparc x86"
-IUSE="caps +cmdmon ipv6 libedit +ntp +phc +pps readline +refclock +rtc selinux 
+adns"
-REQUIRED_USE="
-   ?? ( libedit readline )
-"
-
-CDEPEND="
-   caps? ( sys-libs/libcap )
-   libedit? ( dev-libs/libedit )
-   readline? ( >=sys-libs/readline-4.1-r4:= )
-"
-DEPEND="
-   ${CDEPEND}
-   sys-apps/texinfo
-"
-RDEPEND="
-   ${CDEPEND}
-   selinux? ( sec-policy/selinux-chronyd )
-"
-
-RESTRICT=test
-
-S="${WORKDIR}/${P/_/-}"
-
-src_prepare() {
-   sed -i \
-   -e 's:/etc/chrony\.:/etc/chrony/chrony.:g' \
-   -e 's:/var/run:/run:g' \
-   conf.c chrony.texi.in examples/* || die
-}
-
-src_configure() {
-   tc-export CC
-
-   local CHRONY_EDITLINE
-   # ./configure legend:
-   # --disable-readline : disable line editing entirely
-   # --without-readline : do not use sys-libs/readline (enabled by default)
-   # --without-editline : do not use dev-libs/libedit (enabled by default)
-   if ! use readline && ! use libedit; then
-   CHRONY_EDITLINE='--disable-readline'
-   else
-   CHRONY_EDITLINE+=" $(usex readline '' --without-readline)"
-   CHRONY_EDITLINE+=" $(usex libedit '' --without-editline)"
-   fi
-
-   # not an autotools generated script
-   local CHRONY_CONFIGURE="
-   ./configure \
-   $(usex caps '' --disable-linuxcaps) \
-   $(usex cmdmon '' --disable-cmdmon) \
-   $(usex ipv6 '' --disable-ipv6) \
-   $(usex ntp '' --disable-ntp) \
-   $(usex phc '' --disable-phc) \
-   $(usex pps '' --disable-pps) \
-   $(usex rtc '' --disable-rtc) \
-   $(usex refclock '' --disable-refclock) \
-   $(usex adns '' --disable-asyncdns) \
-   ${CHRONY_EDITLINE} \
-   ${EXTRA_ECONF} \
-   --docdir=/usr/share/doc/${PF} \
-   --chronysockdir=/run/chrony \
-   --infodir=/usr/share/info \
-   

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

2017-11-07 Thread Hans de Graaff
commit: e5171d48f94f79e2a8c7eecd21a5917416eb9d9a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Nov  8 06:36:26 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Nov  8 06:36:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5171d48

dev-ruby/yajl-ruby: add 1.3.1, fixing bug 636474

Bug: https://bugs.gentoo.org/636474
Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-ruby/yajl-ruby/Manifest   |  1 +
 dev-ruby/yajl-ruby/yajl-ruby-1.3.1.ebuild | 45 +++
 2 files changed, 46 insertions(+)

diff --git a/dev-ruby/yajl-ruby/Manifest b/dev-ruby/yajl-ruby/Manifest
index 98fac4859e3..f27d973ee54 100644
--- a/dev-ruby/yajl-ruby/Manifest
+++ b/dev-ruby/yajl-ruby/Manifest
@@ -1,2 +1,3 @@
 DIST yajl-ruby-1.1.0.gem 557056 SHA256 
95b85940c96c0745e780f363170b8bd1b7b66d36073a061b1461b1788834446a SHA512 
bde81b5fbe467c6403d27b49075822ff07b5cf356c05f711757fea5162543af36846f1f1da36acd5da359133f05e2cb3186215dc5597f3255da74c76cc8bf3ec
 WHIRLPOOL 
baa8f6ec2bfe70cd8f3441c971b2854a99b9f132eb2cae22f9fe6a9de7c7ccbf84f0f3ec982296d4cbc998051529b464aaf16b268049193aa4170ec7ec1ca11b
 DIST yajl-ruby-1.3.0.gem 550912 SHA256 
f1941b3606aa8da0800ab0a5560929454a1ba9c7ec41cb5a2905eabb2f155069 SHA512 
351e46fb7037541096172bac5c3dcadaa6ac9650ac6aae46de2b4ba31b82427f596bade2b233d0d8e916927800e83b7930b5ceeb9d7340edd02c323f9c0b3116
 WHIRLPOOL 
8de8b6575f3972dbb2503315d33f5701f6141b0ce11f9f3b027a7c15ab257823e772d14400dc3db94b41135e90b25c89a89931fb2670a7e0de72a0ee40d885dc
+DIST yajl-ruby-1.3.1.gem 550912 SHA256 
60bc04e0e58ce689a4f37787ba152b037a960da48f8b229a072929e8129bc4e6 SHA512 
f18b47f1fd0b039bfec01db0ee298296199fbf91b22a00042e1220a1d8471f72424c082b696829e48ce7dee7514510dd731c2bc36fe29bd08ba7246c820621f4
 WHIRLPOOL 
369462f5104b826f9160215a06050bdc53f61ef937a8461d8e1a11b62d68267fec3a0cae087cf4be6f161e76d1b92c077f9d861c3ce027927308bbb6afab2709

diff --git a/dev-ruby/yajl-ruby/yajl-ruby-1.3.1.ebuild 
b/dev-ruby/yajl-ruby/yajl-ruby-1.3.1.ebuild
new file mode 100644
index 000..b8ecc24eded
--- /dev/null
+++ b/dev-ruby/yajl-ruby/yajl-ruby-1.3.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_TASK_DOC=""
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Ruby C bindings to the Yajl JSON stream-based parser library"
+HOMEPAGE="https://github.com/brianmario/yajl-ruby;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE=""
+
+RDEPEND="${RDEPEND} dev-libs/yajl"
+DEPEND="${DEPEND} dev-libs/yajl"
+
+each_ruby_prepare() {
+   # Make sure the right ruby interpreter is used
+   sed -e '/capture/ s:ruby:'${RUBY}':' -i 
spec/parsing/large_number_spec.rb || die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/yajl extconf.rb || die "extconf.rb failed"
+}
+
+each_ruby_compile() {
+   emake -Cext/yajl CFLAGS="${CFLAGS} -fPIC" archflag="${LDFLAGS}" V=1
+   cp ext/yajl/yajl$(get_modname) lib/yajl/ || die
+}
+
+each_ruby_test() {
+   # Set RUBYLIB to pass search path on to additional interpreters that
+   # are started.
+   RUBYLIB=lib ruby-ng_rspec || die
+}



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

2017-11-07 Thread Hans de Graaff
commit: 0259fd5121ec0c035183f1737e8ea5415bbb0fff
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Nov  8 06:26:04 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Nov  8 06:36:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0259fd51

dev-ruby/mini_mime: add 1.0.0

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-ruby/mini_mime/Manifest   |  1 +
 dev-ruby/mini_mime/mini_mime-1.0.0.ebuild | 27 +++
 2 files changed, 28 insertions(+)

diff --git a/dev-ruby/mini_mime/Manifest b/dev-ruby/mini_mime/Manifest
index 46ce11c485d..2cf23fce099 100644
--- a/dev-ruby/mini_mime/Manifest
+++ b/dev-ruby/mini_mime/Manifest
@@ -1 +1,2 @@
 DIST mini_mime-0.1.4.tar.gz 31171 SHA256 
20b9b9a2ca1661e237d523fb39f37a22aaabfe4d57bce980a8ecbede8663b6e0 SHA512 
7895ac02fd0cb376241cf6e769428c1587bd4b9a777a6f44cfa6496ddded34c78a253fd9146de883b108a67c02e8cdfba3af1997ba11f6775469c2ac55999157
 WHIRLPOOL 
b7510c8dd8704d59d1043801b0a104dfb86ab0b64e1d404499a6b07f675751140a47f2954bf9c03b4296832ec72d720554e64946514f021f6d74eb0eb4340f1e
+DIST mini_mime-1.0.0.tar.gz 31205 SHA256 
3f1f0f1203ee13914ad3306816ded277525427b89a93f3cccfd866256c091fe3 SHA512 
dbb976fa23679a42a2e28b06eb33f61ec991e7115e9bbadca7d09cb4b247a2345b14a2cb4fd4897aab5ffb40c710e931302d07ea3dff4ee64e935a70c9e88fff
 WHIRLPOOL 
a6cf6a5f292a66868d2629f8b2bfa892827b7737a120cdb6ab23e4699ead4acdf7461e8d13e12556ac7b55be615894fff2b02d0123517e0154520d4dcbf58f3a

diff --git a/dev-ruby/mini_mime/mini_mime-1.0.0.ebuild 
b/dev-ruby/mini_mime/mini_mime-1.0.0.ebuild
new file mode 100644
index 000..0b5b3fd28ce
--- /dev/null
+++ b/dev-ruby/mini_mime/mini_mime-1.0.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.md"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+RUBY_FAKEGEM_GEMSPEC="mini_mime.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A lightweight mime type lookup toy"
+HOMEPAGE="https://github.com/discourse/mini_mime;
+SRC_URI="https://github.com/discourse/mini_mime/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc"
+IUSE="test"
+
+all_ruby_prepare() {
+   sed -i -e 's/git ls-files -z/find . -print0/' ${RUBY_FAKEGEM_GEMSPEC} 
|| die
+}



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

2017-11-07 Thread Jason Zaman
commit: 8c44d2c6b308668ff14c079831b3f1bfcb609866
Author: Jason Zaman  gentoo  org>
AuthorDate: Wed Nov  8 06:35:17 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Nov  8 06:35:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c44d2c6

net-nds/gss-proxy: Add dep for selinux policy

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 net-nds/gss-proxy/gss-proxy-0.7.0-r1.ebuild | 89 +
 1 file changed, 89 insertions(+)

diff --git a/net-nds/gss-proxy/gss-proxy-0.7.0-r1.ebuild 
b/net-nds/gss-proxy/gss-proxy-0.7.0-r1.ebuild
new file mode 100644
index 000..6a690d58a4b
--- /dev/null
+++ b/net-nds/gss-proxy/gss-proxy-0.7.0-r1.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_P="${PN/-}-${PV}"
+
+DESCRIPTION="daemon to proxy GSSAPI context establishment and channel handling"
+HOMEPAGE="https://pagure.io/gssproxy;
+SRC_URI="http://releases.pagure.org/gssproxy/${MY_P}.tar.gz;
+
+LICENSE="BSD-1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+IUSE="debug selinux systemd hardened"
+
+COMMON_DEPEND=">=dev-libs/libverto-0.2.2
+   >=dev-libs/ding-libs-0.5.0
+   virtual/krb5
+   selinux? ( sys-libs/libselinux )"
+RDEPEND="${COMMON_DEPEND}
+   selinux? ( sec-policy/selinux-gssproxy )"
+# We need xml stuff to build the man pages, and people really want/need
+# the man pages for this package :). #585200
+DEPEND="${COMMON_DEPEND}
+   app-text/docbook-xml-dtd:4.4
+   dev-libs/libxslt
+   virtual/pkgconfig"
+
+S="${WORKDIR}/${MY_P}"
+
+# Many requirements to run tests, including running slapd as root, hence
+# unfeasible.
+RESTRICT="test"
+
+# pkg_setup() {
+#  # Here instead of flag-logic in DEPEND, since virtual/krb5 does not
+#  # allow to specify the openldap use flag, which heimdal doesn't
+#  # support.
+#  # Using mit-krb5 explicitly because heimdal doesn't install kerberos
+#  # schemata required for the tests of gss-proxy.
+#  if use test && ! has_version "app-crypt/mit-krb5[openldap]"; then
+#  eerror "Tests of this package require the kerberos schemata 
installed from app-crypt/mit-krb5[openldap]."
+#  die "Tests enabled but no app-crypt/mit-krb5[openldap] being 
installed."
+#  fi
+# }
+
+# Was required in 0.7.0 to fix the schema- and slapd-path. Reason for
+# comment: see RESTRICT comment
+# src_prepare() {
+#  default
+#  # The tests look for kerberos schemata in the documentation
+#  # directory of krb5, however these are installed in /etc/openldap
+#  # and only if the openldap useflag is supplied
+#  sed -i \
+#  -e 's#/usr/share/doc/krb5-server-ldap*#/etc/openldap/schema#' \
+#  -e 
"s#\(subprocess.Popen..\"\)slapd#\1/usr/$(get_libdir)/openldap/slapd#" \
+#  "${S}/tests/testlib.py" || die
+# }
+
+src_configure() {
+   local myeconfargs=(
+   # The build assumes localstatedir is /var and takes care of
+   # using all the right subdirs itself.
+   "--localstatedir=${EPREFIX}/var"
+   "--with-os=gentoo"
+   "--with-initscript=$(usex systemd systemd none)"
+   "$(use_with selinux)"
+   "$(use_with debug gssidebug)"
+   "$(use_with hardened hardening)"
+   )
+
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+   # This is a plugin module, so no need for la file.
+   find "${ED%/}"/usr -name proxymech.la -delete
+
+   doinitd "${FILESDIR}"/gssproxy
+   insinto /etc/gssproxy
+   doins examples/*.conf
+   insinto /etc/gss/mech.d
+   newins examples/mech gssproxy.conf
+
+   # The build installs a bunch of empty dirs, so prune them.
+   find "${ED}" -depth -type d -exec rmdir {} + 2>/dev/null
+}



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-gssproxy/

2017-11-07 Thread Jason Zaman
commit: 35788b54157326dae9b5c8b63c51d18ef64c4f77
Author: Jason Zaman  gentoo  org>
AuthorDate: Wed Nov  8 03:51:43 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Nov  8 03:59:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35788b54

sec-policy/selinux-gssproxy: new policy package

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 sec-policy/selinux-gssproxy/Manifest  |  2 ++
 sec-policy/selinux-gssproxy/metadata.xml  |  9 +
 .../selinux-gssproxy-2.20170805-r3.ebuild | 15 +++
 sec-policy/selinux-gssproxy/selinux-gssproxy-.ebuild  | 15 +++
 4 files changed, 41 insertions(+)

diff --git a/sec-policy/selinux-gssproxy/Manifest 
b/sec-policy/selinux-gssproxy/Manifest
new file mode 100644
index 000..34875471649
--- /dev/null
+++ b/sec-policy/selinux-gssproxy/Manifest
@@ -0,0 +1,2 @@
+DIST patchbundle-selinux-base-policy-2.20170805-r3.tar.bz2 324834 SHA256 
15fd073f54df243224ab08018a8c1067281e3db0a0d003750981ad8c3cb6d081 SHA512 
62ec2e70397d06d464e95305a4c0699cc07063d879d986a74442955fb8076a00cbe4a4f7a3cda46876cbf2ad38189be06f0c05ce9698aadafa6e9f02a8daf668
 WHIRLPOOL 
068ca0eca80b5ff09e6566846583eb42b00e895170b55171d60be28c87ed8120618f3f24e0c12f8954aa53284ee8d9b3e74b4be014c7387b6c5aec98c6b30264
+DIST refpolicy-2.20170805.tar.bz2 740430 SHA256 
045709f5e44199f402149b31c6aab9666bdb1540a5c5ed0312a46c90dedfa52d SHA512 
dbb6809b028ae75296ad26d5997cc21d835c49555a0e37957cb39b36b144af6e817320073a29247448eba1876ab9e29d3956ff4456f1542b66ba38af459ec586
 WHIRLPOOL 
94320a34f0ae6a7a2c67ef335b9fc2007b55fdac282d6b602979571b8f47049535a8d0d1d1310e420f94aefaf95da065c398d4f724a73c74df52e8ef95209219

diff --git a/sec-policy/selinux-gssproxy/metadata.xml 
b/sec-policy/selinux-gssproxy/metadata.xml
new file mode 100644
index 000..a06bcc5d14e
--- /dev/null
+++ b/sec-policy/selinux-gssproxy/metadata.xml
@@ -0,0 +1,9 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   seli...@gentoo.org
+   SELinux Team
+   
+   Gentoo SELinux policy for gssproxy
+

diff --git a/sec-policy/selinux-gssproxy/selinux-gssproxy-2.20170805-r3.ebuild 
b/sec-policy/selinux-gssproxy/selinux-gssproxy-2.20170805-r3.ebuild
new file mode 100644
index 000..c4d41d41b47
--- /dev/null
+++ b/sec-policy/selinux-gssproxy/selinux-gssproxy-2.20170805-r3.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+IUSE=""
+MODS="gssproxy"
+
+inherit selinux-policy-2
+
+DESCRIPTION="SELinux policy for gssproxy"
+
+if [[ ${PV} != * ]] ; then
+   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+fi

diff --git a/sec-policy/selinux-gssproxy/selinux-gssproxy-.ebuild 
b/sec-policy/selinux-gssproxy/selinux-gssproxy-.ebuild
new file mode 100644
index 000..c4d41d41b47
--- /dev/null
+++ b/sec-policy/selinux-gssproxy/selinux-gssproxy-.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+IUSE=""
+MODS="gssproxy"
+
+inherit selinux-policy-2
+
+DESCRIPTION="SELinux policy for gssproxy"
+
+if [[ ${PV} != * ]] ; then
+   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+fi



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

2017-11-07 Thread Aric Belsito
commit: e7919125b9e7d470eb3ad1b5c535c2ffd8bd314d
Author: Aric Belsito  gmail  com>
AuthorDate: Wed Nov  8 03:12:03 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Wed Nov  8 03:12:03 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=e7919125

media-libs/mesa: version bump to 17.3.0_rc3

 media-libs/mesa/Manifest   | 4 +++-
 media-libs/mesa/mesa-17.3.0_rc2.ebuild | 3 +++
 media-libs/mesa/{mesa-17.3.0_rc2.ebuild => mesa-17.3.0_rc3.ebuild} | 3 +++
 3 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest
index d2e7353..357eae3 100644
--- a/media-libs/mesa/Manifest
+++ b/media-libs/mesa/Manifest
@@ -15,6 +15,7 @@ DIST mesa-17.2.2.tar.xz 10359156 SHA256 
cf522244d6a5a1ecde3fc00e7c96935253fe22f8
 DIST mesa-17.2.3.tar.xz 10344180 SHA256 
a0b0ec8f7b24dd044d7ab30a8c7e6d3767521e245f88d4ed5dd93315dc56f837 SHA512 
749a0a46b772974633e405804ace7f509afb79f47811dbbdd390333721d744f2ac64f985ff1fd6c5aa3019b700be70bc1f75f60745ed9f4c5b08a9a8f77dfc76
 WHIRLPOOL 
333bdb9dd15726a4a19fa7a87d2044aba6ebaea2eb83dd436f916020221a8bc46d667e8710a701c52930217292ecdfd468b654a7846357aa8881356987f394c0
 DIST mesa-17.2.4.tar.xz 10381984 SHA256 
5ba408fecd6e1132e5490eec1a2f04466214e4c65c8b89b331be844768c2e550 SHA512 
665b63aab6af3f8f263f182d85d9ad71db7a23bcbaf67d62fe53c258cb0f600266ac82e72d681ec20cf7c66b47d4076aad5c3f553519f19110ee577da2707085
 WHIRLPOOL 
29750c50a496cb27e0b4466bf0d1496434330a96259616dd7c368adc3d9478aa6ba1facf11ec4ff231a244f890781c12637327b1675c423786693c40f787945d
 DIST mesa-17.3.0-rc2.tar.xz 10658696 SHA256 
13b2c085a54836465a3b6814ad4bc2dae0a502f43405e75ced67789d5afc18cd SHA512 
749cca3e0875dbff7b6fab4d646974ecbcc7659ec82ad025bc386372d6e0e050d84d5e05fb68c5099e685557d85daf55c6a5db7bd89a7323778ae7e87e01215e
 WHIRLPOOL 
4007e6641de55145b9bf8bf7aa567c284d3a4b29ea6b83fb5ba3324abf757cf72cf1f1bc0cd3011e58b3d0c6cc6fa7f7c03b1affb7f0ba7c4a5e7ade398bf2f3
+DIST mesa-17.3.0-rc3.tar.xz 10664384 SHA256 
1f3677429018f6ef4167b31db9eef558827a649239aa685f54c1a400ff5462d9 SHA512 
403da79ac87325f2f0962e9be406edf4d009b6f5d479c2943be5bc1a26ad201d96072461a0d041b5a59abe327829eeba0dfb44abce217074079c47811729b058
 WHIRLPOOL 
91a5f65bc1dc9dc27bcd8492d82c80d2827d2408030890fdcaa653993d9a1deec983b00cb48c0675f3234d36512396c03cc7659bd30cadd6e536f5bef90d65d9
 EBUILD mesa-13.0.5.ebuild 13700 SHA256 
976acd2588bdad196db14ea94d7908257aae3b4a3647e0b67c2a98991ce505c1 SHA512 
5b7118bf47b32a108907674754a96ba6660561ee5f2e02e9b65cd55fbfc9e9af6b09d1e63d7cb6a1366b6ca048bf6bb64c04d357cb24eed05e171e6a1fc5a1dd
 WHIRLPOOL 
6e709af9862d4e71de9eaf8736c0515c98713424dd8e4a9842b3ef24311edd3f0344c6b1c377c42f2213019c0251ba13410c4ed1c11ca6ad94708caa6d663580
 EBUILD mesa-13.0.6.ebuild 13626 SHA256 
8c52b73f947625e30b63ebf09f7ef24ca1253924369ba16f462ee51ddae1f710 SHA512 
ef98945307ca3a6e157a0e68f333dd06eda8b6ff053d8663f99bc17e352f5db10aebc4f8cb514b68e4abf06a97f278740b4d2aa97b2e2bc8d3a5fce43ece37f2
 WHIRLPOOL 
5292e8d17f5e1d09a44a8260b1e2f99af87dc0348c61efd64a54b2b88edb0dda14813d7aec53c37133e16de1b339ec7c45c6c7f2edc9c655f062361812aa565a
 EBUILD mesa-17.0.6.ebuild 13633 SHA256 
1b72648e1c77ecae4bbd639a4bc93f25be477b764ce4fdff0a5867334e22bea1 SHA512 
2a8ab4f22d6dbba9fadee3e566931104fff23e58ee3ed9a358dbe4a946acdca067c753a865c471342cef6d9a564efd688e3d46f2c8df5f138ee40409436cb434
 WHIRLPOOL 
e156696276d32c8359d002baa620cf54bd8827bfe427f45212541e875d39d3b544d7a011d37d02fff5f4d855f20275e3fec1e9a481f5ed07cb27296b454cba9b
@@ -26,5 +27,6 @@ EBUILD mesa-17.2.1.ebuild 14997 SHA256 
59ee3e1c8413ea9508ec31ec20b5e017d27cdf78d
 EBUILD mesa-17.2.2.ebuild 14997 SHA256 
59ee3e1c8413ea9508ec31ec20b5e017d27cdf78d0c0ffcc21507137defd93e3 SHA512 
f9cf8c28a2316ab9e8cfc6efb597a51b17767c83c4fa73b0e76cc90fccc47321c42a475e9c2b0ad5caec1565b1b196541142a2cb5064e8ddbb3d00093efb7006
 WHIRLPOOL 
05153ed20702f1a2b96d1200d0145e886037d5cb0d694912e86151e594156ce25d25d59d39395745de8d4a26b13ce414e9834c08ebbecac913fc605a4be6b5fe
 EBUILD mesa-17.2.3.ebuild 15077 SHA256 
dc48c165743a2194ba57d77d9863cc6a5b580920fce1e182aea663e56e21305e SHA512 
ab86432dd09f71544ace6e0682029358ac50eef85ba2dc77f78ee1bcb301147ed18d591b45b0d9aa75f9e8e61b2803385f3434b55bcb3970ed786f014b67393d
 WHIRLPOOL 
a2d02280edbfec04e546a9633252acb920dd8d83983ffc0725a62d4b6a1b018c2eb89c3505ccbdc591dd62595770888772fa7f786e61ffa4606118065e6a97f8
 EBUILD mesa-17.2.4.ebuild 15077 SHA256 
dc48c165743a2194ba57d77d9863cc6a5b580920fce1e182aea663e56e21305e SHA512 
ab86432dd09f71544ace6e0682029358ac50eef85ba2dc77f78ee1bcb301147ed18d591b45b0d9aa75f9e8e61b2803385f3434b55bcb3970ed786f014b67393d
 WHIRLPOOL 
a2d02280edbfec04e546a9633252acb920dd8d83983ffc0725a62d4b6a1b018c2eb89c3505ccbdc591dd62595770888772fa7f786e61ffa4606118065e6a97f8
-EBUILD mesa-17.3.0_rc2.ebuild 15151 SHA256 
0a3642c285e84fc7a67d39f83cad3ded4ebb94093bf7d8940796ed4a39b7d3e0 SHA512 

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

2017-11-07 Thread Sergei Trofimovich
commit: 988a4482ed5f7d16172e8775423c9d9d5e958032
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 23:17:03 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 23:17:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=988a4482

dev-util/systemtap: cover mainloop.c as well, bug #510134

Bug: https://bugs.gentoo.org/510134
Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-util/systemtap/files/systemtap-3.1-ia64.patch | 14 --
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/dev-util/systemtap/files/systemtap-3.1-ia64.patch 
b/dev-util/systemtap/files/systemtap-3.1-ia64.patch
index 4750207a6ff..832bfc1a47f 100644
--- a/dev-util/systemtap/files/systemtap-3.1-ia64.patch
+++ b/dev-util/systemtap/files/systemtap-3.1-ia64.patch
@@ -6,8 +6,6 @@ for PROBE2 macro.
 
 Reported-by: Émeric Maschino
 Bug: https://bugs.gentoo.org/510134
-diff --git a/cache.cxx b/cache.cxx
-index 3546b30..2710abf 100644
 --- a/cache.cxx
 +++ b/cache.cxx
 @@ -8,2 +8,10 @@
@@ -21,3 +19,15 @@ index 3546b30..2710abf 100644
 +#endif
 +
  #include "config.h"
+--- a/staprun/mainloop.c
 b/staprun/mainloop.c
+@@ -1 +1,9 @@
++#ifdef __ia64__
++// Default is: nor
++// We disable 'o' because gcc fails to select register
++// constraint for second instruction in 'add_script_to_cache'
++// https://bugs.gentoo.org/510134
++#define STAP_SDT_ARG_CONSTRAINT nr
++#endif
++
+ /* -*- linux-c -*-



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

2017-11-07 Thread Michał Górny
commit: 007c84b4e5169d1cf44dc7c59c8b3ea793a18bc2
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov  7 23:14:17 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov  7 23:14:41 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=007c84b4

Quickfix handling manifest-required-hashes = None

 pym/portage/package/ebuild/digestgen.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/pym/portage/package/ebuild/digestgen.py 
b/pym/portage/package/ebuild/digestgen.py
index 40c1b7288..6f3f877cd 100644
--- a/pym/portage/package/ebuild/digestgen.py
+++ b/pym/portage/package/ebuild/digestgen.py
@@ -11,6 +11,7 @@ portage.proxy.lazyimport.lazyimport(globals(),
 )
 
 from portage import os
+from portage.const import MANIFEST2_HASH_DEFAULTS
 from portage.dbapi.porttree import FetchlistDict
 from portage.dep import use_reduce
 from portage.exception import InvalidDependString, FileNotFound, \
@@ -58,6 +59,8 @@ def digestgen(myarchives=None, mysettings=None, 
myportdb=None):
mf = 
mysettings.repositories.get_repo_for_location(mytree)
 
repo_required_hashes = mf.manifest_required_hashes
+   if repo_required_hashes is None:
+   repo_required_hashes = MANIFEST2_HASH_DEFAULTS
mf = mf.load_manifest(mysettings["O"], mysettings["DISTDIR"],
fetchlist_dict=fetchlist_dict)
 



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

2017-11-07 Thread Sergei Trofimovich
commit: aba6b82f56ee4e00781f4c22fcd5b6f86554215b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 23:07:52 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 23:07:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aba6b82f

dev-util/systemtap: tweak operand constraints for ia64, bug #510134

Reported-by: Émeric Maschino
Closes: https://bugs.gentoo.org/510134
Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-util/systemtap/files/systemtap-3.1-ia64.patch | 23 +++
 dev-util/systemtap/systemtap-3.1-r1.ebuild|  2 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-util/systemtap/files/systemtap-3.1-ia64.patch 
b/dev-util/systemtap/files/systemtap-3.1-ia64.patch
new file mode 100644
index 000..4750207a6ff
--- /dev/null
+++ b/dev-util/systemtap/files/systemtap-3.1-ia64.patch
@@ -0,0 +1,23 @@
+Workaround build failure on ia64
+
+Avoid 'o' constraint to allow gcc to select register operand.
+That way instruction selector can satisfy all constraints
+for PROBE2 macro.
+
+Reported-by: Émeric Maschino
+Bug: https://bugs.gentoo.org/510134
+diff --git a/cache.cxx b/cache.cxx
+index 3546b30..2710abf 100644
+--- a/cache.cxx
 b/cache.cxx
+@@ -8,2 +8,10 @@
+ 
++#ifdef __ia64__
++// Default is: nor
++// We disable 'o' because gcc fails to select register
++// constraint for second instruction in 'add_script_to_cache'
++// https://bugs.gentoo.org/510134
++#define STAP_SDT_ARG_CONSTRAINT nr
++#endif
++
+ #include "config.h"

diff --git a/dev-util/systemtap/systemtap-3.1-r1.ebuild 
b/dev-util/systemtap/systemtap-3.1-r1.ebuild
index cd13a9e21c2..bfd2527d954 100644
--- a/dev-util/systemtap/systemtap-3.1-r1.ebuild
+++ b/dev-util/systemtap/systemtap-3.1-r1.ebuild
@@ -33,6 +33,8 @@ ERROR_DEBUG_FS="${PN} works best with support for Debug 
Filesystem (DEBUG_FS) -
 
 DOCS="AUTHORS HACKING NEWS README"
 
+PATCHES=("${FILESDIR}"/${PN}-3.1-ia64.patch)
+
 pkg_setup() {
linux-info_pkg_setup
python-single-r1_pkg_setup



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

2017-11-07 Thread Sergei Trofimovich
commit: cac4e82dcfbff6c15d459a604a0e5a26db12c5d8
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 23:00:19 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 23:00:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cac4e82d

sys-apps/util-linux: stable 2.30.2 for ia64, bug #636626

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="ia64"

 sys-apps/util-linux/util-linux-2.30.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/util-linux/util-linux-2.30.2.ebuild 
b/sys-apps/util-linux/util-linux-2.30.2.ebuild
index f52b484c959..55eb08b882f 100644
--- a/sys-apps/util-linux/util-linux-2.30.2.ebuild
+++ b/sys-apps/util-linux/util-linux-2.30.2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} ==  ]] ; then

EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git"
 else
[[ "${PV}" = *_rc* ]] || \
-   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc x86 ~amd64-linux ~arm-linux ~x86-linux"

SRC_URI="mirror://kernel/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.xz"
 fi
 



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

2017-11-07 Thread Patrice Clement
commit: 59446412849af9496fca0dc9c53002e4db3a8362
Author: Mathy Vanvoorden  vanvoorden  be>
AuthorDate: Tue Nov  7 19:24:22 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Nov  7 22:58:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59446412

net-vpn/openfortivpn: version bump to 1.5.0.

Closes: https://bugs.gentoo.org/631006
Closes: https://github.com/gentoo/gentoo/pull/6144
Package-Manager: Portage-2.3.8, Repoman-2.3.4

 net-vpn/openfortivpn/Manifest   | 2 +-
 .../{openfortivpn-1.3.0.ebuild => openfortivpn-1.5.0.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/openfortivpn/Manifest b/net-vpn/openfortivpn/Manifest
index 0777d328909..7ecda3080fb 100644
--- a/net-vpn/openfortivpn/Manifest
+++ b/net-vpn/openfortivpn/Manifest
@@ -1 +1 @@
-DIST openfortivpn-1.3.0.tar.gz 48414 SHA256 
a7dee87a9ef56c5d5a5d7288ae047f51f29472b2156e7d59bf9301aad6ac44ce SHA512 
cedcb5677c03981cb255475113ebd06392edcbf4a57538515ff616db22334f4bef2e379d11eaa5a02f5d6a380ddf4b13bb6718269d01dea91a1ba25833dee107
 WHIRLPOOL 
164a44416db29acc2ebd9208a08ff9cb9578404739f1e6c5630eeede344a2dd15ae630437a417e382358b8dc44e6c73c431e94ae56f1ec844f96ca43a42965e7
+DIST openfortivpn-1.5.0.tar.gz 52302 SHA256 
a96016826bf85435c26ef0e58d14ae91990a08aaf67c701dfa56345dd851c185 SHA512 
2ee56baf83b4ca604512dfb0f518c03731be18c08399a4482190ea9c8cf0c14a570e31ae3b1bcd32067203a008d02a7d4414000f817b178b4cdbd171035be76c
 WHIRLPOOL 
98e08de0090c16f70a98320d9a2a99a82dc859a9cac24265d4ad94f31ea68cb5edbc5c552614762b22c2a35c9df3e05a1839a4cf2d94e17b89a09f348135e189

diff --git a/net-vpn/openfortivpn/openfortivpn-1.3.0.ebuild 
b/net-vpn/openfortivpn/openfortivpn-1.5.0.ebuild
similarity index 100%
rename from net-vpn/openfortivpn/openfortivpn-1.3.0.ebuild
rename to net-vpn/openfortivpn/openfortivpn-1.5.0.ebuild



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

2017-11-07 Thread Patrice Clement
commit: fffd4eeec18894724408f7930599b707504121a1
Author: Mathy Vanvoorden  vanvoorden  be>
AuthorDate: Tue Nov  7 19:33:37 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Nov  7 22:58:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fffd4eee

net-misc/networkmanager-fortisslvpn-1.2.6: fix dependency on nm-utils.

This applies upstream patch 4195187fbe5be348222c9a8472f7c9cf0e51d346 to
prevent the error 'undefined symbol: _nm_utils_ascii_str_to_int64' from
happening.

Closes: https://bugs.gentoo.org/631008
Closes: https://github.com/gentoo/gentoo/pull/6144
Package-Manager: Portage-2.3.8, Repoman-2.3.4

 ...r-fortisslvpn-1.2.6-nm-utils-dependency-fix.diff | 21 +
 .../networkmanager-fortisslvpn-1.2.6.ebuild |  2 ++
 2 files changed, 23 insertions(+)

diff --git 
a/net-misc/networkmanager-fortisslvpn/files/networkmanager-fortisslvpn-1.2.6-nm-utils-dependency-fix.diff
 
b/net-misc/networkmanager-fortisslvpn/files/networkmanager-fortisslvpn-1.2.6-nm-utils-dependency-fix.diff
new file mode 100644
index 000..f882679954f
--- /dev/null
+++ 
b/net-misc/networkmanager-fortisslvpn/files/networkmanager-fortisslvpn-1.2.6-nm-utils-dependency-fix.diff
@@ -0,0 +1,21 @@
+diff --git a/Makefile.am b/Makefile.am
+index 6bef38ed5..951b829e3 100644
+--- a/Makefile.am
 b/Makefile.am
+@@ -95,6 +95,7 @@ pppd_plugindir = $(PPPD_PLUGIN_DIR)
+ pppd_plugin_LTLIBRARIES = src/nm-fortisslvpn-pppd-plugin.la
+ 
+ src_nm_fortisslvpn_pppd_plugin_la_SOURCES = \
++  shared/nm-utils/nm-shared-utils.c \
+   src/nm-fortisslvpn-pppd-plugin.c \
+   src/nm-ppp-status.h
+ src_nm_fortisslvpn_pppd_plugin_la_CPPFLAGS = $(src_cppflags)
+@@ -102,7 +103,7 @@ src_nm_fortisslvpn_pppd_plugin_la_LDFLAGS = \
+   -module -avoid-version
+ src_nm_fortisslvpn_pppd_plugin_la_LIBADD = \
+   src/libnm-fortisslvpn-pppd-service-dbus.la \
+-  $(GLIB_LIBS)
++  $(GLIB_LIBS) \
+   $(LIBNM_LIBS)
+ 
+ 
###

diff --git 
a/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.6.ebuild 
b/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.6.ebuild
index 98442620baa..94074c6b078 100644
--- 
a/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.6.ebuild
+++ 
b/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.6.ebuild
@@ -36,6 +36,8 @@ DEPEND="${RDEPEND}
 PATCHES=(
# Upstream patch e5d476076e068f58ef4fa938f09945159fce36a6
"${FILESDIR}"/${P}-location-fix.diff
+   # Upstream patch 4195187fbe5be348222c9a8472f7c9cf0e51d346
+   "${FILESDIR}"/${P}-nm-utils-dependency-fix.diff
 )
 
 src_configure() {



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

2017-11-07 Thread Patrice Clement
commit: cfd9dd6fff0d5e9c5046fcca2d60e62beba3943a
Author: Tomáš Mózes  gmail  com>
AuthorDate: Sat Nov  4 20:29:36 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Nov  7 22:56:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfd9dd6f

dev-python/elasticsearch-curator: version bump to 5.3.0.

Closes: https://github.com/gentoo/gentoo/pull/6123

 dev-python/elasticsearch-curator/Manifest  |   2 +
 .../elasticsearch-curator-5.3.0.ebuild | 120 +
 2 files changed, 122 insertions(+)

diff --git a/dev-python/elasticsearch-curator/Manifest 
b/dev-python/elasticsearch-curator/Manifest
index 16e08a0eaff..d65bb6f6fab 100644
--- a/dev-python/elasticsearch-curator/Manifest
+++ b/dev-python/elasticsearch-curator/Manifest
@@ -1,6 +1,8 @@
 DIST elasticsearch-5.1.2.tar.gz 33299777 SHA256 
74d752f9a8b46898d306ad169b72f328e17215c0909149e156a576089ef11c42 SHA512 
1867626e8a87f11ed109e1325fd1d16c9e0af06ebe6a30c78ea679ab533ab377f5da8ea55af6871be33af226f02187a2aadd77e5e23c097dd24055be21e9d691
 WHIRLPOOL 
2e9df71c915343e2cc8ad82c59b877f41f5e093cbeba21f471c32cb51a195eccc6223bc48da48bb4af2e6bea9f2539f2e93b866963148f4ca2940ba4466e614e
 DIST elasticsearch-5.5.1.tar.gz 33476827 SHA256 
e0924ae2af5f4435cef009ad3a567169e9653263e7a3b8693dba932698ea7e34 SHA512 
9bedd48396cdd6c39c107a7951eba8446b8574493bd44c17a79ba3443670a48b72c053006821cf69dc17bf49ff1c05904db14a07d8a6403b2d2061fc605937bd
 WHIRLPOOL 
770b2eab9d67212fde7bafb5eaa885c13195f3ecb41897c261bac405987397e299d064badda454d12901ed86a8f9a4e87ab0242ccf5f6971005397ad9061f8c6
 DIST elasticsearch-5.5.2.tar.gz 33485703 SHA256 
0870e2c0c72e6eda976effa07aa1cdd06a9500302320b5c22ed292ce21665bf1 SHA512 
62048f15b43e38a61e3a19a1599c25cd0d9009cc1172db5b450b04dec349ecd313b1f20e3d1c7ed1c101ae3e6f6c6d2cdf004a9713ad803576277f93e3adbdb9
 WHIRLPOOL 
3a71cef2858b76b11e1693907e745912a83f23e26c35a3456c6324fc19c317c53d4404e20134b034e41e162c1ea8d58c38bbd4afe0394d886ab32f6b698172ec
+DIST elasticsearch-5.6.3.tar.gz 33774486 SHA256 
492b7e59d5204b3dc7eb13b611c33b3db36b392bdd6a4c004ba99c6543fc28f9 SHA512 
ee57d010e196eb25e5296fe95ab2de5e503d4d66f7eec8c8f6ac2ff9ddbc1a8dc1514202d705e291ee49d3e04650b597a9afc5f92f179b8faa5e2fe3c662f33e
 WHIRLPOOL 
bda081e6b91d1076a39e0af75b44d7f877f28178281de1f22c5177abf804c9395dacabb3c93ec93aff65223df42353bc955bbf60e74fb07f99320096dd97173a
 DIST elasticsearch-curator-4.2.6.tar.gz 228342 SHA256 
bebc7f6b53a4147e92004dd63d2349bb18170feed12b9219206d0d074b0643ae SHA512 
e42d9f3c6122ba9cfc0bc90323f12d7ebf09902d04138472999b63fc59742f2f461b889dd98fca98f321d4975a3c05bc2aae5d211a774abd49b628ea318f5f64
 WHIRLPOOL 
63eed5c64f3a08f44d6feb8eb56b7698e8081a948b67daae91bb692d69e3ed1166c2fb867cb61f3f114eed74d05251b3aae68a8c475bf75ce318d53435e27b7e
 DIST elasticsearch-curator-5.1.2.tar.gz 290616 SHA256 
e2f4f6db735223b8bf2bf84924b6edb23d1c3b9a6ebd3ad3bebfcc23f38e0434 SHA512 
4ac0ae789fe662d352c3d228acc6aaf78873bb02b7108f985fd0a048d0b90cb2b30572eaa5f984025ab0d4209eda9d6fe6ac66cd8cc856f0707e3f12bb2e574d
 WHIRLPOOL 
143f7b8704d73db92524e25a51074dc96385089aac0c88d197b12668afe10eaf7d686a2d03a1c81dc988a158e6d9e9b9e419b50450d474ec75ef90cc56d502b7
 DIST elasticsearch-curator-5.2.0.tar.gz 301134 SHA256 
e79e0804b6629fa4669570052379e98d5e10c07879c132e1636f26d6e038c159 SHA512 
5aba1c3fb1c76f2389902024190ba23567107e3655987014c9250ae46a9199daaad18cd6e9f2595458bf4abb6ac3d4d76c241907d1c0009eb2a15ef638e99d23
 WHIRLPOOL 
20ccff30bff5f52d05d5804a660dad35a2908479789bfe1d08052428c7c1352c30cbd11623d603ded8fd37b162252bfc24030731443ae7e120f5de7de88faace
+DIST elasticsearch-curator-5.3.0.tar.gz 292274 SHA256 
241dcda173aa3ba79b2b0f8f8ec31c8729fa0448f710f6cba10d2d20fcaaacf4 SHA512 
23a94c0a8b78cd0f3a27af76131c267c407dbafb504a4503e8c954e69cdb527ed334fbfcda068b2f1d28479762c430f665f661f827bdf3066f5bcdd50c82dc53
 WHIRLPOOL 
d37e553ad79b79e5b92271ced40534942b2ef6d75ff62afd7903771d41887c17f1f7fd96219942db2d3d7122c92cef6953cd59a57ad61f9af825fd060ec33428

diff --git 
a/dev-python/elasticsearch-curator/elasticsearch-curator-5.3.0.ebuild 
b/dev-python/elasticsearch-curator/elasticsearch-curator-5.3.0.ebuild
new file mode 100644
index 000..01cb9487818
--- /dev/null
+++ b/dev-python/elasticsearch-curator/elasticsearch-curator-5.3.0.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+MY_PN="curator"
+ES_VERSION="5.6.3"
+
+# tests fail in chroot
+# https://github.com/elastic/elasticsearch/issues/12018
+RESTRICT="test"
+
+# running tests in non-chroot environments:
+# FEATURES="test -usersandbox" emerge dev-python/elasticsearch-curator
+
+inherit distutils-r1
+
+DESCRIPTION="Tending time-series indices in Elasticsearch"
+HOMEPAGE="https://github.com/elasticsearch/curator;
+SRC_URI="https://github.com/elasticsearch/${MY_PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz
+   test? ( 

[gentoo-commits] proj/portage:master commit in: pym/portage/_emirrordist/, pym/portage/tests/ebuild/, pym/portage/, ...

2017-11-07 Thread Michał Górny
commit: e1de82ebe6ef2dbaab7b56bcf2bb6ff75743a000
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Nov  6 15:05:47 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov  7 22:56:07 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=e1de82eb

Make manifest-required-hashes configurable

The set of required hashes specify which hashes must be present for
a distfile not to be refetched. It makes little sense to hardcode this
value, and it is mostly useful for transition periods, so make it
configurable via layout.conf and default to all hashes
in manifest-hashes.

Reviewed-by: Zac Medico  gentoo.org>

 man/portage.5   | 13 +++---
 pym/portage/_emirrordist/FetchTask.py   |  2 +-
 pym/portage/const.py|  2 +-
 pym/portage/manifest.py | 26 +---
 pym/portage/package/ebuild/digestgen.py |  4 ++--
 pym/portage/repository/config.py| 42 ++---
 pym/portage/tests/ebuild/test_config.py |  1 +
 repoman/pym/repoman/repos.py| 14 +++
 8 files changed, 74 insertions(+), 30 deletions(-)

diff --git a/man/portage.5 b/man/portage.5
index 7605d7cfa..e724e1f08 100644
--- a/man/portage.5
+++ b/man/portage.5
@@ -1260,9 +1260,16 @@ for every file), "true" (if an entry exists for a file, 
enforce it), or "false"
 (don't check Manifest files at all).
 .TP
 .BR manifest\-hashes
-List of hashes to generate/check in Manifest files.  Valid hashes depend on the
-current version of portage; see the portage.checksum module for the current
-list.
+List of hashes to generate in new/updated entries Manifest files.  Valid hashes
+depend on the current version of portage; see the portage.checksum module for
+the current list.  Portage will not rewrite old entries if they satisfy
+manifest\-required\-hashes.
+.TP
+.BR manifest\-required\-hashes
+List of hashes that must be used in all Manifest entries.  If the hashes listed
+here are not present in the Manifest, Portage will refetch all distfiles
+and update the respective entries to include them.  Must be a subset
+of manifest\-hashes.  If not specified, defaults to all manifest\-hashes.
 .TP
 .BR update\-changelog " = [true|" false "]"
 The default setting for repoman's --echangelog option.

diff --git a/pym/portage/_emirrordist/FetchTask.py 
b/pym/portage/_emirrordist/FetchTask.py
index 203b8c213..47908cb6b 100644
--- a/pym/portage/_emirrordist/FetchTask.py
+++ b/pym/portage/_emirrordist/FetchTask.py
@@ -20,7 +20,7 @@ from portage.util._async.PipeLogger import PipeLogger
 from portage.util._async.PopenProcess import PopenProcess
 from _emerge.CompositeTask import CompositeTask
 
-default_hash_name = portage.const.MANIFEST2_REQUIRED_HASH
+default_hash_name = portage.const.MANIFEST2_HASH_DEFAULT
 
 # Use --no-check-certificate since Manifest digests should provide
 # enough security, and certificates can be self-signed or whatnot.

diff --git a/pym/portage/const.py b/pym/portage/const.py
index 0af57d0e2..ec877b841 100644
--- a/pym/portage/const.py
+++ b/pym/portage/const.py
@@ -207,7 +207,7 @@ EAPI = 6
 HASHING_BLOCKSIZE= 32768
 
 MANIFEST2_HASH_DEFAULTS = frozenset(["SHA256", "SHA512", "WHIRLPOOL"])
-MANIFEST2_REQUIRED_HASH  = "SHA512"
+MANIFEST2_HASH_DEFAULT  = "SHA512"
 
 MANIFEST2_IDENTIFIERS= ("AUX", "MISC", "DIST", "EBUILD")
 

diff --git a/pym/portage/manifest.py b/pym/portage/manifest.py
index 36c82690c..4ec20515e 100644
--- a/pym/portage/manifest.py
+++ b/pym/portage/manifest.py
@@ -26,8 +26,7 @@ from portage import _unicode_encode
 from portage.exception import DigestException, FileNotFound, \
InvalidDataType, MissingParameter, PermissionDenied, \
PortageException, PortagePackageException
-from portage.const import (MANIFEST2_HASH_DEFAULTS,
-   MANIFEST2_IDENTIFIERS, MANIFEST2_REQUIRED_HASH)
+from portage.const import (MANIFEST2_HASH_DEFAULTS, MANIFEST2_IDENTIFIERS)
 from portage.localization import _
 
 _manifest_re = re.compile(
@@ -128,7 +127,7 @@ class Manifest(object):
parsers = (parseManifest2,)
def __init__(self, pkgdir, distdir=None, fetchlist_dict=None,
manifest1_compat=DeprecationWarning, from_scratch=False, 
thin=False,
-   allow_missing=False, allow_create=True, hashes=None,
+   allow_missing=False, allow_create=True, hashes=None, 
required_hashes=None,
find_invalid_path_char=None, strict_misc_digests=True):
""" Create new Manifest instance for package in pkgdir.
Do not parse Manifest file if from_scratch == True (only 
for internal use)
@@ -148,15 +147,21 @@ class Manifest(object):
self.pkgdir = _unicode_decode(pkgdir).rstrip(os.sep) + os.sep
self.fhashdict = {}
self.hashes = set()
+   self.required_hashes = set()
 
if hashes is None:

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

2017-11-07 Thread Sergei Trofimovich
commit: bbf325c74397db9a3e7d48e1445be4ce0d14714d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:50:54 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:50:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbf325c7

dev-python/pysmi: keyworded 0.1.3 for sparc, bug #626124 (thanks to Rolf Eike 
Beer)

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"

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

diff --git a/dev-python/pysmi/pysmi-0.1.3.ebuild 
b/dev-python/pysmi/pysmi-0.1.3.ebuild
index 42dccdce4f1..6fa611d7e85 100644
--- a/dev-python/pysmi/pysmi-0.1.3.ebuild
+++ b/dev-python/pysmi/pysmi-0.1.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
 IUSE=""
 
 RDEPEND="



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

2017-11-07 Thread Sergei Trofimovich
commit: be7cbeed9a44669e3c11b18ededf953074001830
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:47:27 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:47:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be7cbeed

dev-ml/facile: stable 1.1.3 for hppa, bug #636624

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="hppa"

 dev-ml/facile/facile-1.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/facile/facile-1.1.3.ebuild 
b/dev-ml/facile/facile-1.1.3.ebuild
index 9776d254556..efc317295af 100644
--- a/dev-ml/facile/facile-1.1.3.ebuild
+++ b/dev-ml/facile/facile-1.1.3.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://opti.recherche.enac.fr/facile/distrib/${P}.tar.gz;
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="~alpha ~amd64 ~hppa ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 hppa ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/ExtUtils-Config/

2017-11-07 Thread Sergei Trofimovich
commit: b2cc4f6853142484844d4ebe245e5579af6408cd
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:51:18 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:51:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2cc4f68

dev-perl/ExtUtils-Config: stable 0.8.0 for sparc, bug #617120 (thanks to Rolf 
Eike Beer)

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"

 dev-perl/ExtUtils-Config/ExtUtils-Config-0.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/ExtUtils-Config/ExtUtils-Config-0.8.0.ebuild 
b/dev-perl/ExtUtils-Config/ExtUtils-Config-0.8.0.ebuild
index 7f14845159d..7d89179a7e5 100644
--- a/dev-perl/ExtUtils-Config/ExtUtils-Config-0.8.0.ebuild
+++ b/dev-perl/ExtUtils-Config/ExtUtils-Config-0.8.0.ebuild
@@ -8,7 +8,7 @@ inherit perl-module
 
 DESCRIPTION="A wrapper for perl's configuration"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 sparc x86"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/namespace-clean/

2017-11-07 Thread Sergei Trofimovich
commit: ed58dcc3a87bbd0b523b66837b3ee07fde3aa9e2
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:51:37 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:51:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed58dcc3

dev-perl/namespace-clean: stable 0.270.0 for sparc, bug #617120 (thanks to Rolf 
Eike Beer)

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"

 dev-perl/namespace-clean/namespace-clean-0.270.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/namespace-clean/namespace-clean-0.270.0.ebuild 
b/dev-perl/namespace-clean/namespace-clean-0.270.0.ebuild
index 3d8dd2d2c57..98c4403ee0d 100644
--- a/dev-perl/namespace-clean/namespace-clean-0.270.0.ebuild
+++ b/dev-perl/namespace-clean/namespace-clean-0.270.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Keep imports and functions out of your namespace"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~ppc-aix 
~x86-fbsd ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~ppc-aix 
~x86-fbsd ~x64-macos"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-proxy/squid/

2017-11-07 Thread Sergei Trofimovich
commit: 23cfffce0ef58cfe8f338832e0c1dd9068640d85
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:47:31 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:47:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23cfffce

net-proxy/squid: stable 3.5.26 for sparc, bug #613302 (thanks to Rolf Eike Beer)

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"

 net-proxy/squid/squid-3.5.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/squid/squid-3.5.26.ebuild 
b/net-proxy/squid/squid-3.5.26.ebuild
index 6a79f8eeb07..8133824d9a7 100644
--- a/net-proxy/squid/squid-3.5.26.ebuild
+++ b/net-proxy/squid/squid-3.5.26.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://www.squid-cache.org/Versions/v3/3.5/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="caps ipv6 pam ldap libressl samba sasl kerberos nis radius ssl snmp 
selinux logrotate test \
ecap esi ssl-crtd \
mysql postgres sqlite \



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Moose/

2017-11-07 Thread Sergei Trofimovich
commit: 28151e754489013b751100b705881f28c3754226
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:51:32 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:51:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28151e75

dev-perl/Moose: stable 2.160.500 for sparc, bug #617120 (thanks to Rolf Eike 
Beer)

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"

 dev-perl/Moose/Moose-2.160.500.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Moose/Moose-2.160.500.ebuild 
b/dev-perl/Moose/Moose-2.160.500.ebuild
index 8ee8fbe7a5e..89aa40c5a0a 100644
--- a/dev-perl/Moose/Moose-2.160.500.ebuild
+++ b/dev-perl/Moose/Moose-2.160.500.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="A postmodern object system for Perl 5"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ppc ppc64 x86 ~x86-fbsd ~x64-macos"
+KEYWORDS="amd64 ~arm ~hppa ppc ppc64 sparc x86 ~x86-fbsd ~x64-macos"
 IUSE="test"
 
 CONFLICTS="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/ExtUtils-InstallPaths/

2017-11-07 Thread Sergei Trofimovich
commit: 28c45b9f42ae814cbe66ec433d6514deae78
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:51:25 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:51:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28c4

dev-perl/ExtUtils-InstallPaths: stable 0.11.0 for sparc, bug #617120 (thanks to 
Rolf Eike Beer)

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"

 dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.11.0.ebuild 
b/dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.11.0.ebuild
index ec11e3437b9..ae04ae9ee8a 100644
--- a/dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.11.0.ebuild
+++ b/dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.11.0.ebuild
@@ -8,7 +8,7 @@ inherit perl-module
 
 DESCRIPTION="Build.PL install path logic made easy"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 sparc x86"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-Find-Rule-Perl/

2017-11-07 Thread Sergei Trofimovich
commit: 25b0f9a2d99e9026b7236458732f1b1016e52a69
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:51:28 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:51:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25b0f9a2

dev-perl/File-Find-Rule-Perl: stable 1.150.0 for sparc, bug #617120 (thanks to 
Rolf Eike Beer)

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"

 dev-perl/File-Find-Rule-Perl/File-Find-Rule-Perl-1.150.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-Find-Rule-Perl/File-Find-Rule-Perl-1.150.0.ebuild 
b/dev-perl/File-Find-Rule-Perl/File-Find-Rule-Perl-1.150.0.ebuild
index 8585df20ae5..df574ec16f6 100644
--- a/dev-perl/File-Find-Rule-Perl/File-Find-Rule-Perl-1.150.0.ebuild
+++ b/dev-perl/File-Find-Rule-Perl/File-Find-Rule-Perl-1.150.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Common rules for searching for Perl things"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ppc ppc64 x86"
+KEYWORDS="amd64 ~arm ~hppa ppc ppc64 sparc x86"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Digest-GOST/

2017-11-07 Thread Sergei Trofimovich
commit: 2e71845af44786d2e1b65785c61b0550b92ecd70
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:51:04 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:51:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e71845a

dev-perl/Digest-GOST: keyworded 0.60.0-r1 for sparc, bug #605004 (thanks to 
Rolf Eike Beer)

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"

 dev-perl/Digest-GOST/Digest-GOST-0.60.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Digest-GOST/Digest-GOST-0.60.0-r1.ebuild 
b/dev-perl/Digest-GOST/Digest-GOST-0.60.0-r1.ebuild
index 4867e42cb23..fd3d25583f3 100644
--- a/dev-perl/Digest-GOST/Digest-GOST-0.60.0-r1.ebuild
+++ b/dev-perl/Digest-GOST/Digest-GOST-0.60.0-r1.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="Perl interface to the GOST R 34.11-94 digest algorithm"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ppc ppc64 x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ppc ppc64 ~sparc x86"
 IUSE="test"
 
 RDEPEND="



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

2017-11-07 Thread Sergei Trofimovich
commit: 9cfdd05c0345436aee482975b7e2382bc2644d44
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:50:57 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:50:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cfdd05c

dev-libs/libressl: keyworded 2.5.4 for sparc, bug #605004 (thanks to Rolf Eike 
Beer)

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"

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

diff --git a/dev-libs/libressl/libressl-2.5.4.ebuild 
b/dev-libs/libressl/libressl-2.5.4.ebuild
index d87e79cad65..c3786d800a1 100644
--- a/dev-libs/libressl/libressl-2.5.4.ebuild
+++ b/dev-libs/libressl/libressl-2.5.4.ebuild
@@ -14,7 +14,7 @@ LICENSE="ISC openssl"
 # we'll try to use the max of either.  However, if either change between
 # versions, we have to change the subslot to trigger rebuild of consumers.
 SLOT="0/43"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="+asm static-libs"
 
 RDEPEND="!dev-libs/openssl:0"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-DNS/

2017-11-07 Thread Sergei Trofimovich
commit: 62b8ec5e5ae5a5ec29e49caae36ed7725223019c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:51:07 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:51:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62b8ec5e

dev-perl/Net-DNS: keyworded 1.100.0 for sparc, bug #605004 (thanks to Rolf Eike 
Beer)

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"

 dev-perl/Net-DNS/Net-DNS-1.100.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Net-DNS/Net-DNS-1.100.0.ebuild 
b/dev-perl/Net-DNS/Net-DNS-1.100.0.ebuild
index 2f8ee3b294b..449f72517be 100644
--- a/dev-perl/Net-DNS/Net-DNS-1.100.0.ebuild
+++ b/dev-perl/Net-DNS/Net-DNS-1.100.0.ebuild
@@ -11,7 +11,7 @@ inherit toolchain-funcs perl-module
 DESCRIPTION="Perl Net::DNS - Perl DNS Resolver Module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ppc ppc64 x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ppc ppc64 ~sparc x86"
 IUSE="+ipv6 test minimal"
 
 PDEPEND="!minimal? ( >=dev-perl/Net-DNS-SEC-1.10.0 )"



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

2017-11-07 Thread Sergei Trofimovich
commit: c7d43eb2997842e657cd7d5a752bfb116322a979
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:47:23 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:47:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7d43eb2

sys-apps/util-linux: stable 2.30.2 for hppa, bug #636626

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="hppa"

 sys-apps/util-linux/util-linux-2.30.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/util-linux/util-linux-2.30.2.ebuild 
b/sys-apps/util-linux/util-linux-2.30.2.ebuild
index a3ad7e4bd00..f52b484c959 100644
--- a/sys-apps/util-linux/util-linux-2.30.2.ebuild
+++ b/sys-apps/util-linux/util-linux-2.30.2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} ==  ]] ; then

EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git"
 else
[[ "${PV}" = *_rc* ]] || \
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc x86 ~amd64-linux ~arm-linux ~x86-linux"

SRC_URI="mirror://kernel/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.xz"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/ExtUtils-Helpers/

2017-11-07 Thread Sergei Trofimovich
commit: bb08998ae19fa770533db5f0351cd79a4d036a92
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:51:21 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:51:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb08998a

dev-perl/ExtUtils-Helpers: stable 0.26.0 for sparc, bug #617120 (thanks to Rolf 
Eike Beer)

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"

 dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.26.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.26.0.ebuild 
b/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.26.0.ebuild
index 9be259d192e..7e7b0da9545 100644
--- a/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.26.0.ebuild
+++ b/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.26.0.ebuild
@@ -8,7 +8,7 @@ inherit perl-module
 
 DESCRIPTION="Various portability utilities for module builders"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 sparc x86"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-OpenSSL-DSA/

2017-11-07 Thread Sergei Trofimovich
commit: c3352b9c95291db3f771fe5607ae7451531f96fc
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:51:00 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:51:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3352b9c

dev-perl/Crypt-OpenSSL-DSA: keyworded 0.190.0 for sparc, bug #605004 (thanks to 
Rolf Eike Beer)

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"

 dev-perl/Crypt-OpenSSL-DSA/Crypt-OpenSSL-DSA-0.190.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Crypt-OpenSSL-DSA/Crypt-OpenSSL-DSA-0.190.0.ebuild 
b/dev-perl/Crypt-OpenSSL-DSA/Crypt-OpenSSL-DSA-0.190.0.ebuild
index 4f3a3493255..6cb5907b6ff 100644
--- a/dev-perl/Crypt-OpenSSL-DSA/Crypt-OpenSSL-DSA-0.190.0.ebuild
+++ b/dev-perl/Crypt-OpenSSL-DSA/Crypt-OpenSSL-DSA-0.190.0.ebuild
@@ -8,7 +8,7 @@ inherit perl-module
 
 DESCRIPTION='Digital Signature Algorithm using OpenSSL'
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ppc ppc64 x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ppc ppc64 ~sparc x86"
 IUSE="libressl"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-DNS-SEC/

2017-11-07 Thread Sergei Trofimovich
commit: 385b60d4503964cefaaccab98edb9b1ea850
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:51:10 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:51:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=385b60d4

dev-perl/Net-DNS-SEC: keyworded 1.20.0 for sparc, bug #605004 (thanks to Rolf 
Eike Beer)

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"

 dev-perl/Net-DNS-SEC/Net-DNS-SEC-1.20.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Net-DNS-SEC/Net-DNS-SEC-1.20.0.ebuild 
b/dev-perl/Net-DNS-SEC/Net-DNS-SEC-1.20.0.ebuild
index 90e64ee85c7..925d30cfcd0 100644
--- a/dev-perl/Net-DNS-SEC/Net-DNS-SEC-1.20.0.ebuild
+++ b/dev-perl/Net-DNS-SEC/Net-DNS-SEC-1.20.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION='DNSSEC extensions to Net::DNS'
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ppc ppc64 x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ppc ppc64 ~sparc x86"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Expect/

2017-11-07 Thread Sergei Trofimovich
commit: eb5865ce15535154bada2c1963391c7266bf7e14
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:43:31 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:44:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb5865ce

dev-perl/Expect: keyworded 1.350.0 for ia64, bug #636702

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="ia64"

 dev-perl/Expect/Expect-1.350.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Expect/Expect-1.350.0.ebuild 
b/dev-perl/Expect/Expect-1.350.0.ebuild
index 3b7f480def2..22b1b6f7a1a 100644
--- a/dev-perl/Expect/Expect-1.350.0.ebuild
+++ b/dev-perl/Expect/Expect-1.350.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Expect for Perl"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="test minimal"
 
 RDEPEND="



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

2017-11-07 Thread Sergei Trofimovich
commit: 502123eab707cd83b845be72063314856a9b255e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:42:53 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:44:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=502123ea

sys-apps/coreutils: keyworded 8.28-r1 for ia64, bug #636702

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="ia64"

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

diff --git a/sys-apps/coreutils/coreutils-8.28-r1.ebuild 
b/sys-apps/coreutils/coreutils-8.28-r1.ebuild
index 3cc503652bc..9950e816892 100644
--- a/sys-apps/coreutils/coreutils-8.28-r1.ebuild
+++ b/sys-apps/coreutils/coreutils-8.28-r1.ebuild
@@ -24,7 +24,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~m68k ~ppc ~s390 ~sh ~sparc ~x86 ~arm-linux ~x86-linux"
+KEYWORDS="~amd64 ~ia64 ~m68k ~ppc ~s390 ~sh ~sparc ~x86 ~arm-linux ~x86-linux"
 IUSE="acl caps gmp hostname kill multicall nls selinux static test 
userland_BSD vanilla xattr"
 
 LIB_DEPEND="acl? ( sys-apps/acl[static-libs] )



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Expect/

2017-11-07 Thread Sergei Trofimovich
commit: 86351e720d0ed819af7637b68f17076e3dd6ee5e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:42:59 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:44:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86351e72

dev-perl/Expect: keyworded 1.320.0-r1 for ia64, bug #636702

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="ia64"

 dev-perl/Expect/Expect-1.320.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Expect/Expect-1.320.0-r1.ebuild 
b/dev-perl/Expect/Expect-1.320.0-r1.ebuild
index 6db10d3ec27..568d60c4c33 100644
--- a/dev-perl/Expect/Expect-1.320.0-r1.ebuild
+++ b/dev-perl/Expect/Expect-1.320.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Expect for Perl"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ppc ~ppc64 sparc x86"
+KEYWORDS="amd64 ~arm ~ia64 ppc ~ppc64 sparc x86"
 IUSE="test minimal"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Expect/

2017-11-07 Thread Sergei Trofimovich
commit: 9032cb0a48a1ff9d76c50feeb3efc123f12f24e0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:43:27 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:44:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9032cb0a

dev-perl/Expect: keyworded 1.330.0 for ia64, bug #636702

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="ia64"

 dev-perl/Expect/Expect-1.330.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Expect/Expect-1.330.0.ebuild 
b/dev-perl/Expect/Expect-1.330.0.ebuild
index 033ff0032bd..78d1ca443f3 100644
--- a/dev-perl/Expect/Expect-1.330.0.ebuild
+++ b/dev-perl/Expect/Expect-1.330.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Expect for Perl"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="test minimal"
 
 S="${WORKDIR}/expect.pm-${DIST_P}" # ugh, github



[gentoo-commits] repo/gentoo:master commit in: dev-perl/IO-Stty/

2017-11-07 Thread Sergei Trofimovich
commit: 395966ba65819027d824936b0777c6863fc69e6e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:42:36 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:44:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=395966ba

dev-perl/IO-Stty: keyworded 0.30.0 for ia64, bug #636702

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="ia64"

 dev-perl/IO-Stty/IO-Stty-0.30.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/IO-Stty/IO-Stty-0.30.0.ebuild 
b/dev-perl/IO-Stty/IO-Stty-0.30.0.ebuild
index a066fb1fc9c..05c3a957e3a 100644
--- a/dev-perl/IO-Stty/IO-Stty-0.30.0.ebuild
+++ b/dev-perl/IO-Stty/IO-Stty-0.30.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Change and print terminal line settings"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ppc ~ppc64 sparc x86"
+KEYWORDS="amd64 ~arm ~ia64 ppc ~ppc64 sparc x86"
 IUSE="test"
 
 RDEPEND=""



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

2017-11-07 Thread Sergei Trofimovich
commit: a4b933f1cec5abc86623c8477110c74e2fdbd734
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:42:48 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:44:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4b933f1

dev-python/pyinotify: keyworded 0.9.6 for ia64, bug #636702

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="ia64"

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

diff --git a/dev-python/pyinotify/pyinotify-0.9.6.ebuild 
b/dev-python/pyinotify/pyinotify-0.9.6.ebuild
index 6579604fd3a..6d1f0d41c2f 100644
--- a/dev-python/pyinotify/pyinotify-0.9.6.ebuild
+++ b/dev-python/pyinotify/pyinotify-0.9.6.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="http://seb.dbzteam.org/pub/pyinotify/releases/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ppc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 ~ia64 ppc x86 ~amd64-linux ~x86-linux"
 IUSE="examples"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2017-11-07 Thread Thomas Deutschmann
commit: 2be06567df3badbd14d4cea90276070b0719b9fb
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Nov  7 18:31:41 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Nov  7 22:30:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2be06567

dev-go/siphash: x86 stable (bug #626778)

Package-Manager: Portage-2.3.13, Repoman-2.3.4

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

diff --git a/dev-go/siphash/siphash-1.0.0.ebuild 
b/dev-go/siphash/siphash-1.0.0.ebuild
index 661097863e1..c047c565485 100644
--- a/dev-go/siphash/siphash-1.0.0.ebuild
+++ b/dev-go/siphash/siphash-1.0.0.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/dchest/siphash/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 DESCRIPTION="Go implementation of SipHash-2.4"
 HOMEPAGE="https://github.com/dchest/siphash;
 
-KEYWORDS="~amd64 arm ~x86"
+KEYWORDS="~amd64 arm x86"
 
 LICENSE="CC0-1.0"
 SLOT="0"



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

2017-11-07 Thread Thomas Deutschmann
commit: f4ef463cd630330096062760097080c226479a48
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Nov  7 20:25:52 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Nov  7 22:30:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4ef463c

app-office/lyx: x86 stable (bug #621902)

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 app-office/lyx/lyx-2.2.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/lyx/lyx-2.2.3-r1.ebuild 
b/app-office/lyx/lyx-2.2.3-r1.ebuild
index db2d7677649..65fa670ae72 100644
--- a/app-office/lyx/lyx-2.2.3-r1.ebuild
+++ b/app-office/lyx/lyx-2.2.3-r1.ebuild
@@ -18,7 +18,7 @@ SRC_URI="ftp://ftp.lyx.org/pub/lyx/stable/2.2.x/${MY_P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~hppa ia64 ppc ppc64 ~sparc ~x86 ~x64-macos ~x86-macos"
+KEYWORDS="alpha ~amd64 ~hppa ia64 ppc ppc64 ~sparc x86 ~x64-macos ~x86-macos"
 IUSE="aspell cups debug docbook dia dot enchant gnumeric html +hunspell +latex 
monolithic-build nls +qt5 rcs rtf subversion svg"
 
 LANGS="ar ca cs da de el en es eu fi fr gl he hu ia id it ja nb nn pl pt_BR 
pt_PT ro ru sk sr sv tr uk zh_CN zh_TW"



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

2017-11-07 Thread Thomas Deutschmann
commit: 89dbbe5fdbe5e5f2ccbcf9019410943f7ce35e82
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Nov  7 22:30:14 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Nov  7 22:30:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89dbbe5f

kde-misc/kio-gdrive: x86 stable (bug #636630)

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 kde-misc/kio-gdrive/kio-gdrive-1.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-misc/kio-gdrive/kio-gdrive-1.2.1-r1.ebuild 
b/kde-misc/kio-gdrive/kio-gdrive-1.2.1-r1.ebuild
index eb038573f39..3d124c2cd46 100644
--- a/kde-misc/kio-gdrive/kio-gdrive-1.2.1-r1.ebuild
+++ b/kde-misc/kio-gdrive/kio-gdrive-1.2.1-r1.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://phabricator.kde.org/project/profile/72/;
 
 if [[ ${KDE_BUILD_TYPE} != live ]] ; then
SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-   KEYWORDS="amd64 ~x86"
+   KEYWORDS="amd64 x86"
 fi
 
 IUSE="+kaccounts"



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

2017-11-07 Thread William Hubbs
commit: c44cd56a1c56425cd691aea0b6643a80f054366c
Author: William Hubbs  gentoo  org>
AuthorDate: Tue Nov  7 22:18:42 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Nov  7 22:19:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c44cd56a

sys-apps/openrc: 0.34.6 version bump

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 sys-apps/openrc/Manifest |   1 +
 sys-apps/openrc/openrc-0.34.6.ebuild | 329 +++
 2 files changed, 330 insertions(+)

diff --git a/sys-apps/openrc/Manifest b/sys-apps/openrc/Manifest
index bff5421b829..079fda4e39a 100644
--- a/sys-apps/openrc/Manifest
+++ b/sys-apps/openrc/Manifest
@@ -14,4 +14,5 @@ DIST openrc-0.34.2.tar.gz 226006 SHA256 
f2b81f2661a1834db6477f5af9363334370874fa
 DIST openrc-0.34.3.tar.gz 226693 SHA256 
8e4c1f99727b7b91766fcd65e0a303240528bf0cb123a65e33adc904c67bf2bd SHA512 
516849d20fba93cf560aaeb51b29fa495265b317b37fc48e193876b131f770665235560fcb2e64e7c7a8046699daafee170887cdb19144938cbf669724505f3b
 WHIRLPOOL 
286ecab65a1a1de429ad5f9a4241b25d0aef146d3a47429550d05f7cc68fdc4c36bff933eaff77c6b1bfa3e18a313e19dc5a531fd35cace825e54e67d0f7d163
 DIST openrc-0.34.4.tar.gz 227129 SHA256 
b9d70a8e32a9fa4078864a9aad4e60efba3c0ccfa54ac777a538f62a2c1eebe5 SHA512 
f502a8411929d153d4d2e5e4f4052691c6ff85432eb0b8a5534c7880d9b58b3ac919f04af1f1be38c76cd8dec3740bc718b486c06f06f08ba41d311d963250ec
 WHIRLPOOL 
56e34c17ecacc9b42611815a757da33db84571bf2d7c39d8cdc252b170a8c5a5b811b50c0a7d0671dd1c71679d6625deadce10f025ec066d4a6fdf559587af59
 DIST openrc-0.34.5.tar.gz 227278 SHA256 
dad1ccddd3adef9ac3039e1402ad530cc5a54b351ceddbfefc3ad1b96298f97e SHA512 
2e743b7d8f287bab8c74e9cac46935a7895483fd181d969a8e3a6709ccd6d55b509730b9165f191626774fc372e426049678796d72e4d43541b8232674c7
 WHIRLPOOL 
855497ba5a444afa3eb1445f92169944115385ba9637ccc05da1bb8943c49fcee2eb7378be3d33d2bff420d8b5a663e2c6176a036a71bbfb08e15213dc9dcd9d
+DIST openrc-0.34.6.tar.gz 227096 SHA256 
e4e6a1cb1e764c0a81831be72e08009ce6c1381adb3b96f115a2f8d72a666e2c SHA512 
2e17fbc628c0753f4459678764911d787b8d40f309f978ddbdfdc4dfc5d3033a2ac35be00fb9ad558030249d215b9494a0e5eb43e41d3123aeca032032c82541
 WHIRLPOOL 
c41365081fdc1eecde817e23ec665f80c28065fac72a1d58edeee676b83c53db7a422524a00ded35de818a1d775f9719afb7ce608d3d974a5e3e89fc86844f3b
 DIST openrc-0.34.tar.gz 225678 SHA256 
fa95e111d884f60f967bfa78353f683615f599bbf449b89c0663eb173769fc73 SHA512 
8ff0e3234db06ddeb7c930251f13ec9e4488e4c9776dfe46bb0c1af09835cb34655084bebb6638eb07e47a7f5ef95c1aaed9d06dfa3eaef9e36e9b7a7910f820
 WHIRLPOOL 
aacc1b4636bbbf29d091d7322154898c98cd13947450a0d81cacc080803c1241fe3cbe3e731553c94e5e5ddb2e9c626de53efa9885a4e7be23399637099f1e4d

diff --git a/sys-apps/openrc/openrc-0.34.6.ebuild 
b/sys-apps/openrc/openrc-0.34.6.ebuild
new file mode 100644
index 000..15376774cd7
--- /dev/null
+++ b/sys-apps/openrc/openrc-0.34.6.ebuild
@@ -0,0 +1,329 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit flag-o-matic pam toolchain-funcs
+
+DESCRIPTION="OpenRC manages the services, startup and shutdown of a host"
+HOMEPAGE="https://github.com/openrc/openrc/;
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="https://github.com/OpenRC/${PN}.git;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+fi
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE="audit debug ncurses pam newnet prefix +netifrc selinux static-libs
+   unicode kernel_linux kernel_FreeBSD"
+
+COMMON_DEPEND="kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-ubin-9.0_rc 
sys-process/fuser-bsd ) )
+   ncurses? ( sys-libs/ncurses:0= )
+   pam? (
+   sys-auth/pambase
+   virtual/pam
+   )
+   audit? ( sys-process/audit )
+   kernel_linux? (
+   sys-process/psmisc
+   !=sys-libs/libselinux-2.6
+   )
+   !test
+# a value of "#" will just comment out the option
+set_config() {
+   local file="${ED}/$1" var=$2 val com
+   eval "${@:5}" && val=$3 || val=$4
+   [[ ${val} == "#" ]] && com="#" && val='\2'
+   sed -i -r -e "/^#?${var}=/{s:=([\"'])?([^ 
]*)\1?:=\1${val}\1:;s:^#?:${com}:}" "${file}"
+}
+
+set_config_yes_no() {
+   set_config "$1" "$2" YES NO "${@:3}"
+}
+
+src_install() {
+   emake ${MAKE_ARGS} DESTDIR="${D}" install
+
+   # move the shared libs back to /usr so ldscript can install
+   # more of a minimal set of files
+   # disabled for now due to #270646
+   #mv "${ED}"/$(get_libdir)/lib{einfo,rc}* "${ED}"/usr/$(get_libdir)/ || 
die
+   #gen_usr_ldscript -a einfo rc
+   gen_usr_ldscript libeinfo.so
+   gen_usr_ldscript librc.so
+
+   if ! use kernel_linux; then
+   keepdir 

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

2017-11-07 Thread Sven Wegener
commit: 1a72ff34671348a4b91ae3b34065bf8ccc3fc6c4
Author: Sven Wegener  gentoo  org>
AuthorDate: Tue Nov  7 21:25:52 2017 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Tue Nov  7 21:36:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a72ff34

app-admin/collectd: Add libsigrok sub-slot dependency

Package-Manager: Portage-2.3.8, Repoman-2.3.4

 app-admin/collectd/collectd-5.6.2-r4.ebuild | 2 +-
 app-admin/collectd/collectd-5.7.1.ebuild| 2 +-
 app-admin/collectd/collectd-5.7.2.ebuild| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-admin/collectd/collectd-5.6.2-r4.ebuild 
b/app-admin/collectd/collectd-5.6.2-r4.ebuild
index 58308c78b1d..af56c138d93 100644
--- a/app-admin/collectd/collectd-5.6.2-r4.ebuild
+++ b/app-admin/collectd/collectd-5.6.2-r4.ebuild
@@ -114,7 +114,7 @@ COMMON_DEPEND="
collectd_plugins_rrdcached? ( net-analyzer/rrdtool:= )
collectd_plugins_rrdtool?   ( net-analyzer/rrdtool:= )
collectd_plugins_sensors?   ( sys-apps/lm_sensors )
-   collectd_plugins_sigrok?( 

[gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/

2017-11-07 Thread Sven Wegener
commit: 2a0f494b077a24ab1529ce412b0e571804ec1115
Author: Sven Wegener  gentoo  org>
AuthorDate: Mon Oct 30 22:25:32 2017 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Tue Nov  7 21:36:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a0f494b

sci-electronics/pulseview: Add libsigrok sub-slot dependency

Package-Manager: Portage-2.3.8, Repoman-2.3.4

 sci-electronics/pulseview/pulseview-0.4.0.ebuild | 4 ++--
 sci-electronics/pulseview/pulseview-.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sci-electronics/pulseview/pulseview-0.4.0.ebuild 
b/sci-electronics/pulseview/pulseview-0.4.0.ebuild
index 0b7e367cae1..6409ce513f8 100644
--- a/sci-electronics/pulseview/pulseview-0.4.0.ebuild
+++ b/sci-electronics/pulseview/pulseview-0.4.0.ebuild
@@ -27,13 +27,13 @@ RDEPEND="
>=dev-libs/boost-1.55:=
>=dev-libs/glib-2.28.0:2
>=dev-cpp/glibmm-2.28.0:2
-   >=sci-libs/libsigrok-0.5.0[cxx]
+   >=sci-libs/libsigrok-0.5.0:=[cxx]
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
dev-qt/qtsvg:5
decode? (
-   >=sci-libs/libsigrokdecode-0.5.0[${PYTHON_USEDEP}]
+   >=sci-libs/libsigrokdecode-0.5.0:=[${PYTHON_USEDEP}]
${PYTHON_DEPS}
)"
 DEPEND="${RDEPEND}

diff --git a/sci-electronics/pulseview/pulseview-.ebuild 
b/sci-electronics/pulseview/pulseview-.ebuild
index bb4428d95b8..7e6e167635a 100644
--- a/sci-electronics/pulseview/pulseview-.ebuild
+++ b/sci-electronics/pulseview/pulseview-.ebuild
@@ -27,13 +27,13 @@ RDEPEND="
>=dev-libs/boost-1.55:=
>=dev-libs/glib-2.28.0:2
>=dev-cpp/glibmm-2.28.0:2
-   >=sci-libs/libsigrok-0.6.0[cxx]
+   >=sci-libs/libsigrok-0.6.0:=[cxx]
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
dev-qt/qtsvg:5
decode? (
-   >=sci-libs/libsigrokdecode-0.6.0[${PYTHON_USEDEP}]
+   >=sci-libs/libsigrokdecode-0.6.0:=[${PYTHON_USEDEP}]
${PYTHON_DEPS}
)"
 DEPEND="${RDEPEND}



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

2017-11-07 Thread Sven Wegener
commit: 3305f2bf41fa5d1b8a4ae53d2d36d23fe8656427
Author: Sven Wegener  gentoo  org>
AuthorDate: Mon Oct 30 22:22:46 2017 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Tue Nov  7 21:35:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3305f2bf

sci-libs/libsigrokdecode: Add sub-slot

Package-Manager: Portage-2.3.8, Repoman-2.3.4

 sci-libs/libsigrokdecode/libsigrokdecode-0.3.0.ebuild | 4 ++--
 sci-libs/libsigrokdecode/libsigrokdecode-0.4.0.ebuild | 2 +-
 sci-libs/libsigrokdecode/libsigrokdecode-0.4.1.ebuild | 2 +-
 sci-libs/libsigrokdecode/libsigrokdecode-0.5.0.ebuild | 2 +-
 sci-libs/libsigrokdecode/libsigrokdecode-.ebuild  | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/sci-libs/libsigrokdecode/libsigrokdecode-0.3.0.ebuild 
b/sci-libs/libsigrokdecode/libsigrokdecode-0.3.0.ebuild
index 7bc6975993c..93750d53273 100644
--- a/sci-libs/libsigrokdecode/libsigrokdecode-0.3.0.ebuild
+++ b/sci-libs/libsigrokdecode/libsigrokdecode-0.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -18,7 +18,7 @@ DESCRIPTION="provide (streaming) protocol decoding 
functionality"
 HOMEPAGE="http://sigrok.org/wiki/Libsigrokdecode;
 
 LICENSE="GPL-3"
-SLOT="0"
+SLOT="0/2"
 IUSE="static-libs"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 

diff --git a/sci-libs/libsigrokdecode/libsigrokdecode-0.4.0.ebuild 
b/sci-libs/libsigrokdecode/libsigrokdecode-0.4.0.ebuild
index fdb04d42365..0fad9796fd4 100644
--- a/sci-libs/libsigrokdecode/libsigrokdecode-0.4.0.ebuild
+++ b/sci-libs/libsigrokdecode/libsigrokdecode-0.4.0.ebuild
@@ -19,7 +19,7 @@ DESCRIPTION="provide (streaming) protocol decoding 
functionality"
 HOMEPAGE="http://sigrok.org/wiki/Libsigrokdecode;
 
 LICENSE="GPL-3"
-SLOT="0"
+SLOT="0/3"
 IUSE="static-libs"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 

diff --git a/sci-libs/libsigrokdecode/libsigrokdecode-0.4.1.ebuild 
b/sci-libs/libsigrokdecode/libsigrokdecode-0.4.1.ebuild
index b73e6e5f4b7..dfce6f7f040 100644
--- a/sci-libs/libsigrokdecode/libsigrokdecode-0.4.1.ebuild
+++ b/sci-libs/libsigrokdecode/libsigrokdecode-0.4.1.ebuild
@@ -19,7 +19,7 @@ DESCRIPTION="provide (streaming) protocol decoding 
functionality"
 HOMEPAGE="http://sigrok.org/wiki/Libsigrokdecode;
 
 LICENSE="GPL-3"
-SLOT="0"
+SLOT="0/3"
 IUSE="static-libs"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 

diff --git a/sci-libs/libsigrokdecode/libsigrokdecode-0.5.0.ebuild 
b/sci-libs/libsigrokdecode/libsigrokdecode-0.5.0.ebuild
index b73e6e5f4b7..e185d3d1a83 100644
--- a/sci-libs/libsigrokdecode/libsigrokdecode-0.5.0.ebuild
+++ b/sci-libs/libsigrokdecode/libsigrokdecode-0.5.0.ebuild
@@ -19,7 +19,7 @@ DESCRIPTION="provide (streaming) protocol decoding 
functionality"
 HOMEPAGE="http://sigrok.org/wiki/Libsigrokdecode;
 
 LICENSE="GPL-3"
-SLOT="0"
+SLOT="0/4"
 IUSE="static-libs"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 

diff --git a/sci-libs/libsigrokdecode/libsigrokdecode-.ebuild 
b/sci-libs/libsigrokdecode/libsigrokdecode-.ebuild
index b73e6e5f4b7..ee7e6bf6990 100644
--- a/sci-libs/libsigrokdecode/libsigrokdecode-.ebuild
+++ b/sci-libs/libsigrokdecode/libsigrokdecode-.ebuild
@@ -19,7 +19,7 @@ DESCRIPTION="provide (streaming) protocol decoding 
functionality"
 HOMEPAGE="http://sigrok.org/wiki/Libsigrokdecode;
 
 LICENSE="GPL-3"
-SLOT="0"
+SLOT="0/"
 IUSE="static-libs"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 



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

2017-11-07 Thread Sven Wegener
commit: adddf67c8dbbccdb06305669dcc50cd68f4ce633
Author: Sven Wegener  gentoo  org>
AuthorDate: Fri Nov  3 16:00:05 2017 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Tue Nov  7 21:36:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adddf67c

net-dns/pdns: Version bump

Package-Manager: Portage-2.3.8, Repoman-2.3.4

 net-dns/pdns/Manifest | 2 +-
 net-dns/pdns/{pdns-4.1.0_rc1.ebuild => pdns-4.1.0_rc2.ebuild} | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-dns/pdns/Manifest b/net-dns/pdns/Manifest
index 5efd44bfb6c..d63fe85d884 100644
--- a/net-dns/pdns/Manifest
+++ b/net-dns/pdns/Manifest
@@ -1,2 +1,2 @@
 DIST pdns-4.0.4.tar.bz2 1320327 SHA256 
d974ab89de69477c7f581a3233bc731eacbb43d479291e472b2c531c83b6d763 SHA512 
4ef4705cd990b03976775167c7c37850d45907e198549feda5f5701172e008e3f1f74a35a9bebdb24b63dec15ff63cb2cc9dfc8f92e4e1012e0539c5a88b845b
 WHIRLPOOL 
5ac68a15155424d42fb4b84be1b34eb2e51498ae5193ae104215e4bb52a72845923f82dc6b112ce165444cdbfe3aaf01557d2f6ab42f6531dd525aee15ee1b19
-DIST pdns-4.1.0-rc1.tar.bz2 1106039 SHA256 
a973202ca1c9333c236d76286ab1d8566d420a877a003130381150171d63d4ff SHA512 
7356277126578b34587579039d4c63e9ba7822ddd39810b4a43eb06d076c2d247d8b8db7162b2aafd1cb73fd83047b0b5584d4d8bb333ec77597717bac76b450
 WHIRLPOOL 
19a003a7564691f5ba812f34b376d79c6acbb538df7e4b978a7058f919ef71d778770527d7a091a689a433e915cfccfc22152bc4da46e36ba6c335a31bcdb40f
+DIST pdns-4.1.0-rc2.tar.bz2 544 SHA256 
eab533102dace8f934732678269ae676ab2852ebd04a79e449ec33b9f7b65c9d SHA512 
01c90f071d6e95fc313a30087e6dcca5383ca1858194a32367af60759786d906c980f5c46233bffb5ce3f7926109b987653be8e5b0cebf420f31052d0df9d61b
 WHIRLPOOL 
291c07e8db02395c66d6b432583a8feffae1848cd47dc8a483a429a1b7c6c9837391bbefa29188c5dacc208b34483d41bec130a0a775fa25e172549924084746

diff --git a/net-dns/pdns/pdns-4.1.0_rc1.ebuild 
b/net-dns/pdns/pdns-4.1.0_rc2.ebuild
similarity index 98%
rename from net-dns/pdns/pdns-4.1.0_rc1.ebuild
rename to net-dns/pdns/pdns-4.1.0_rc2.ebuild
index 95b9943f9c6..8ec74d1ac28 100644
--- a/net-dns/pdns/pdns-4.1.0_rc1.ebuild
+++ b/net-dns/pdns/pdns-4.1.0_rc2.ebuild
@@ -26,7 +26,7 @@ RDEPEND="
libressl? ( dev-libs/libressl:= )
!libressl? ( dev-libs/openssl:= )
>=dev-libs/boost-1.35:=
-   botan? ( =dev-libs/botan-1.10*[threads] )
+   botan? ( dev-libs/botan:2= )
lua? ( dev-lang/lua:= )
luajit? ( dev-lang/luajit:= )
mysql? ( virtual/mysql )
@@ -67,7 +67,7 @@ src_configure() {
--with-modules= \
--with-dynmodules="${dynmodules}" \
--with-mysql-lib=/usr/$(get_libdir) \
-   $(use_enable botan botan1.10) \
+   $(use_enable botan) \
$(use_enable debug verbose-logging) \
$(use_enable test unit-tests) \
$(use_enable tools) \



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

2017-11-07 Thread Sven Wegener
commit: c1f678131d1ae9026a4128d18d02ac67cefd6b5f
Author: Sven Wegener  gentoo  org>
AuthorDate: Mon Oct 30 22:20:53 2017 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Tue Nov  7 21:35:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1f67813

sci-libs/libsigrok: Add sub-slot

Package-Manager: Portage-2.3.8, Repoman-2.3.4

 sci-libs/libsigrok/libsigrok-0.3.0.ebuild | 2 +-
 sci-libs/libsigrok/libsigrok-0.4.0.ebuild | 2 +-
 sci-libs/libsigrok/libsigrok-0.5.0.ebuild | 2 +-
 sci-libs/libsigrok/libsigrok-.ebuild  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sci-libs/libsigrok/libsigrok-0.3.0.ebuild 
b/sci-libs/libsigrok/libsigrok-0.3.0.ebuild
index 21530e0ef70..d978f928e0c 100644
--- a/sci-libs/libsigrok/libsigrok-0.3.0.ebuild
+++ b/sci-libs/libsigrok/libsigrok-0.3.0.ebuild
@@ -17,7 +17,7 @@ DESCRIPTION="basic hardware drivers for logic analyzers and 
input/output file fo
 HOMEPAGE="http://sigrok.org/wiki/Libsigrok;
 
 LICENSE="GPL-3"
-SLOT="0"
+SLOT="0/2"
 IUSE="ftdi serial static-libs test usb"
 
 # We also support librevisa, but that isn't in the tree ...

diff --git a/sci-libs/libsigrok/libsigrok-0.4.0.ebuild 
b/sci-libs/libsigrok/libsigrok-0.4.0.ebuild
index 8d30801c100..63e4b5773b7 100644
--- a/sci-libs/libsigrok/libsigrok-0.4.0.ebuild
+++ b/sci-libs/libsigrok/libsigrok-0.4.0.ebuild
@@ -19,7 +19,7 @@ DESCRIPTION="basic hardware drivers for logic analyzers and 
input/output file fo
 HOMEPAGE="http://sigrok.org/wiki/Libsigrok;
 
 LICENSE="GPL-3"
-SLOT="0"
+SLOT="0/3"
 IUSE="cxx ftdi java parport python serial static-libs test usb"
 REQUIRED_USE="java? ( cxx ) python? ( cxx ${PYTHON_REQUIRED_USE} )"
 

diff --git a/sci-libs/libsigrok/libsigrok-0.5.0.ebuild 
b/sci-libs/libsigrok/libsigrok-0.5.0.ebuild
index 8d30801c100..b39a7f58ecd 100644
--- a/sci-libs/libsigrok/libsigrok-0.5.0.ebuild
+++ b/sci-libs/libsigrok/libsigrok-0.5.0.ebuild
@@ -19,7 +19,7 @@ DESCRIPTION="basic hardware drivers for logic analyzers and 
input/output file fo
 HOMEPAGE="http://sigrok.org/wiki/Libsigrok;
 
 LICENSE="GPL-3"
-SLOT="0"
+SLOT="0/4"
 IUSE="cxx ftdi java parport python serial static-libs test usb"
 REQUIRED_USE="java? ( cxx ) python? ( cxx ${PYTHON_REQUIRED_USE} )"
 

diff --git a/sci-libs/libsigrok/libsigrok-.ebuild 
b/sci-libs/libsigrok/libsigrok-.ebuild
index 8d30801c100..4f4a05a4047 100644
--- a/sci-libs/libsigrok/libsigrok-.ebuild
+++ b/sci-libs/libsigrok/libsigrok-.ebuild
@@ -19,7 +19,7 @@ DESCRIPTION="basic hardware drivers for logic analyzers and 
input/output file fo
 HOMEPAGE="http://sigrok.org/wiki/Libsigrok;
 
 LICENSE="GPL-3"
-SLOT="0"
+SLOT="0/"
 IUSE="cxx ftdi java parport python serial static-libs test usb"
 REQUIRED_USE="java? ( cxx ) python? ( cxx ${PYTHON_REQUIRED_USE} )"
 



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/sigrok-cli/

2017-11-07 Thread Sven Wegener
commit: 72e08186dc04983effe40046f22a18fa6fe51986
Author: Sven Wegener  gentoo  org>
AuthorDate: Mon Oct 30 22:26:31 2017 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Tue Nov  7 21:36:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72e08186

sci-electronics/sigrok-cli: Add libsigrok sub-slot dependency

Package-Manager: Portage-2.3.8, Repoman-2.3.4

 sci-electronics/sigrok-cli/sigrok-cli-0.7.0.ebuild | 4 ++--
 sci-electronics/sigrok-cli/sigrok-cli-.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sci-electronics/sigrok-cli/sigrok-cli-0.7.0.ebuild 
b/sci-electronics/sigrok-cli/sigrok-cli-0.7.0.ebuild
index 5cf98183b06..479d36c1ef7 100644
--- a/sci-electronics/sigrok-cli/sigrok-cli-0.7.0.ebuild
+++ b/sci-electronics/sigrok-cli/sigrok-cli-0.7.0.ebuild
@@ -24,9 +24,9 @@ IUSE="+decode"
 REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
 
 RDEPEND=">=dev-libs/glib-2.32.0
-   >=sci-libs/libsigrok-0.5.0
+   >=sci-libs/libsigrok-0.5.0:=
decode? (
-   >=sci-libs/libsigrokdecode-0.5.0[${PYTHON_USEDEP}]
+   >=sci-libs/libsigrokdecode-0.5.0:=[${PYTHON_USEDEP}]
${PYTHON_DEPS}
)"
 DEPEND="${RDEPEND}

diff --git a/sci-electronics/sigrok-cli/sigrok-cli-.ebuild 
b/sci-electronics/sigrok-cli/sigrok-cli-.ebuild
index 5cf98183b06..479d36c1ef7 100644
--- a/sci-electronics/sigrok-cli/sigrok-cli-.ebuild
+++ b/sci-electronics/sigrok-cli/sigrok-cli-.ebuild
@@ -24,9 +24,9 @@ IUSE="+decode"
 REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
 
 RDEPEND=">=dev-libs/glib-2.32.0
-   >=sci-libs/libsigrok-0.5.0
+   >=sci-libs/libsigrok-0.5.0:=
decode? (
-   >=sci-libs/libsigrokdecode-0.5.0[${PYTHON_USEDEP}]
+   >=sci-libs/libsigrokdecode-0.5.0:=[${PYTHON_USEDEP}]
${PYTHON_DEPS}
)"
 DEPEND="${RDEPEND}



[gentoo-commits] proj/openrc: New tag: 0.34.6

2017-11-07 Thread William Hubbs
commit: 
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Nov  7 22:11:33 2017 +

New tag: 0.34.6




[gentoo-commits] proj/openrc:0.34.x commit in: /

2017-11-07 Thread William Hubbs
commit: b98e83ee9195eb052fafebc440515f0b2d055a91
Author: William Hubbs  gmail  com>
AuthorDate: Tue Nov  7 22:01:08 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Nov  7 22:01:08 2017 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=b98e83ee

Update ChangeLog

 ChangeLog | 61 +
 1 file changed, 21 insertions(+), 40 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index a8ec51db..ec1142d8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,24 @@
+commit d59197fafef164fe7319f9d87f544a8cc8e25044
+Author: William Hubbs 
+Commit: William Hubbs 
+
+start-stop-daemon: do not use do_stop to verify whether a daemon is running
+
+X-Gentoo-Bug: 636574
+X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=636574
+
+commit b66c86c9ee6d34d0a9d77140b8e7612709ba19d1
+Author: William Hubbs 
+Commit: William Hubbs 
+
+version 0.34.6
+
+commit f7eb236f6fd8c10af211c6667940e8e1650c12da
+Author: William Hubbs 
+Commit: William Hubbs 
+
+Update ChangeLog
+
 commit 1936d73eb1aecf31029d53e75e6bb14e307f8e1c
 Author: William Hubbs 
 Commit: William Hubbs 
@@ -1580,43 +1601,3 @@ Commit: William Hubbs 
 selinux: fix SIGSEGV with invalid contexts
 
 Fixes: https://github.com/openrc/openrc/issues/104
-
-commit 4f9bd7e4db185ce6debbebb5242344d8ffadc3ae
-Author: William Hubbs 
-Commit: William Hubbs 
-
-init.d/loopback.in: drop the route to the loopback interface on Linux
-
-This is related to #103.
-
-commit bf539f2196290864ce5c5fd0d679b74ee016e2da
-Author: William Hubbs 
-Commit: William Hubbs 
-
-init.d/mount-ro: do not remount /usr read only if it is premounted
-
-X-Gentoo-Bug: 573760
-X-Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=573760
-
-commit 20b60ea904612669dfb744beffcd8e7e447f69ef
-Author: William Hubbs 
-Commit: William Hubbs 
-
-conf.d/net-online: clarify comment about interfaces setting
-
-This setting refers to all interfaces that support ethernet
-
-commit f53c8baef3a6215077c00901759cbbcbe8f10e9b
-Author: William Hubbs 
-Commit: William Hubbs 
-
-init.d/net-online: remove interfaces and timeout from local declarations
-
-X-Gentoo-Bug:  598621
-X-Gentoo-Bug-URL:  https://bugs.gentoo.org/show_bug.cgi?id=598621
-
-commit be06cd250e12e63b8eb704bb2508e06fb9791251
-Author: William Hubbs 
-Commit: William Hubbs 
-
-src/rc/rc: do not try to start services if fork fails



[gentoo-commits] proj/openrc:0.34.x commit in: src/rc/

2017-11-07 Thread William Hubbs
commit: d59197fafef164fe7319f9d87f544a8cc8e25044
Author: William Hubbs  gmail  com>
AuthorDate: Tue Nov  7 21:30:21 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Nov  7 21:38:11 2017 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=d59197fa

start-stop-daemon: do not use do_stop to verify whether a daemon is running

X-Gentoo-Bug: 636574
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=636574

 src/rc/start-stop-daemon.c | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/rc/start-stop-daemon.c b/src/rc/start-stop-daemon.c
index dab8b3b1..e98f8ba3 100644
--- a/src/rc/start-stop-daemon.c
+++ b/src/rc/start-stop-daemon.c
@@ -279,6 +279,7 @@ int main(int argc, char **argv)
int stdout_fd;
int stderr_fd;
pid_t pid, spid;
+   RC_PIDLIST *pids;
int i;
char *svcname = getenv("RC_SVCNAME");
RC_STRINGLIST *env_list;
@@ -683,10 +684,14 @@ int main(int argc, char **argv)
else
pid = 0;
 
-   if (do_stop(applet, exec, (const char * const *)margv, pid, uid,
-   0, test, false) > 0)
+   if (pid)
+   pids = rc_find_pids(NULL, NULL, 0, pid);
+   else
+   pids = rc_find_pids(exec, (const char * const *) argv, uid, 0);
+   if (pids)
eerrorx("%s: %s is already running", applet, exec);
 
+   free(pids);
if (test) {
if (rc_yesno(getenv("EINFO_QUIET")))
exit (EXIT_SUCCESS);



[gentoo-commits] proj/openrc:0.34.x commit in: /

2017-11-07 Thread William Hubbs
commit: f7eb236f6fd8c10af211c6667940e8e1650c12da
Author: William Hubbs  gmail  com>
AuthorDate: Mon Oct 30 23:23:40 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Oct 30 23:23:40 2017 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=f7eb236f

Update ChangeLog

 ChangeLog | 18 ++
 1 file changed, 18 insertions(+)

diff --git a/ChangeLog b/ChangeLog
index f0434048..a8ec51db 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,21 @@
+commit 1936d73eb1aecf31029d53e75e6bb14e307f8e1c
+Author: William Hubbs 
+Commit: William Hubbs 
+
+fix issue with --reexec call
+
+commit 58872fc090af5047547bc561a5e58c50be0fc235
+Author: William Hubbs 
+Commit: William Hubbs 
+
+version 0.34.5
+
+commit fc35eb90cab625966ca718a80dd0d38dfffe05b8
+Author: William Hubbs 
+Commit: William Hubbs 
+
+Update ChangeLog
+
 commit b18be3f970eba04589977438faaa726b5c3a6cd2
 Author: William Hubbs 
 Commit: William Hubbs 



[gentoo-commits] proj/openrc:0.34.x commit in: src/rc/

2017-11-07 Thread William Hubbs
commit: 1936d73eb1aecf31029d53e75e6bb14e307f8e1c
Author: William Hubbs  gmail  com>
AuthorDate: Mon Oct 30 23:21:39 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Oct 30 23:23:11 2017 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=1936d73e

fix issue with --reexec call

 src/rc/supervise-daemon.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/rc/supervise-daemon.c b/src/rc/supervise-daemon.c
index 3989cbc7..f3f51ff0 100644
--- a/src/rc/supervise-daemon.c
+++ b/src/rc/supervise-daemon.c
@@ -162,7 +162,8 @@ static void cleanup(void)
 static void re_exec(void)
 {
syslog(LOG_WARNING, "Re-executing for %s", svcname);
-   execlp("supervise-daemon", "supervise-daemon", "--reexec", (char *) 
NULL);
+   execlp("supervise-daemon", "supervise-daemon", svcname, "--reexec",
+   (char *) NULL);
syslog(LOG_ERR, "Unable to execute supervise-daemon: %s",
strerror(errno));
exit(EXIT_FAILURE);



[gentoo-commits] proj/openrc:0.34.x commit in: /

2017-11-07 Thread William Hubbs
commit: b66c86c9ee6d34d0a9d77140b8e7612709ba19d1
Author: William Hubbs  gmail  com>
AuthorDate: Tue Nov  7 21:37:43 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Nov  7 21:37:43 2017 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=b66c86c9

version 0.34.6

 Makefile.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.inc b/Makefile.inc
index 66475805..8fc131d3 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
 NAME=  openrc
-VERSION=   0.34.5
+VERSION=   0.34.6
 PKG=   ${NAME}-${VERSION}



[gentoo-commits] proj/openrc:0.34.x commit in: /

2017-11-07 Thread William Hubbs
commit: 58872fc090af5047547bc561a5e58c50be0fc235
Author: William Hubbs  gmail  com>
AuthorDate: Mon Oct 30 23:23:00 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Oct 30 23:23:00 2017 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=58872fc0

version 0.34.5

 Makefile.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.inc b/Makefile.inc
index 842bf12f..66475805 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
 NAME=  openrc
-VERSION=   0.34.4
+VERSION=   0.34.5
 PKG=   ${NAME}-${VERSION}



[gentoo-commits] proj/openrc:master commit in: src/rc/

2017-11-07 Thread William Hubbs
commit: a3d1c8a0e7d5586be13e2cd9b5029fd729bc1594
Author: William Hubbs  gmail  com>
AuthorDate: Mon Oct 30 23:21:39 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Oct 30 23:21:39 2017 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=a3d1c8a0

fix issue with --reexec call

 src/rc/supervise-daemon.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/rc/supervise-daemon.c b/src/rc/supervise-daemon.c
index 3989cbc7..f3f51ff0 100644
--- a/src/rc/supervise-daemon.c
+++ b/src/rc/supervise-daemon.c
@@ -162,7 +162,8 @@ static void cleanup(void)
 static void re_exec(void)
 {
syslog(LOG_WARNING, "Re-executing for %s", svcname);
-   execlp("supervise-daemon", "supervise-daemon", "--reexec", (char *) 
NULL);
+   execlp("supervise-daemon", "supervise-daemon", svcname, "--reexec",
+   (char *) NULL);
syslog(LOG_ERR, "Unable to execute supervise-daemon: %s",
strerror(errno));
exit(EXIT_FAILURE);



[gentoo-commits] proj/openrc:master commit in: sh/, src/rc/

2017-11-07 Thread William Hubbs
commit: 913b2ca53771742385d5c69164aefcaab634f012
Author: William Hubbs  gmail  com>
AuthorDate: Sat Oct 28 00:22:09 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sat Oct 28 00:22:09 2017 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=913b2ca5

supervise-daemon: use RC_SVCNAME as the first argument to the daemon

This makes ps show which service the supervisor is monitoring.

 sh/supervise-daemon.sh|  4 ++--
 src/rc/supervise-daemon.c | 24 
 2 files changed, 18 insertions(+), 10 deletions(-)

diff --git a/sh/supervise-daemon.sh b/sh/supervise-daemon.sh
index e5d8d461..f6e599d5 100644
--- a/sh/supervise-daemon.sh
+++ b/sh/supervise-daemon.sh
@@ -22,7 +22,7 @@ supervise_start()
# The eval call is necessary for cases like:
# command_args="this \"is a\" test"
# to work properly.
-   eval supervise-daemon --start \
+   eval supervise-daemon "${RC_SVCNAME}" --start \
${retry:+--retry} $retry \
${chroot:+--chroot} $chroot \
${pidfile:+--pidfile} $pidfile \
@@ -49,7 +49,7 @@ supervise_stop()
pidfile="${startpidfile:-$pidfile}"
[ -n "$pidfile" ] || return 0
ebegin "Stopping ${name:-$RC_SVCNAME}"
-   supervise-daemon --stop \
+   supervise-daemon "${RC_SVCNAME}" --stop \
${pidfile:+--pidfile} $chroot$pidfile \
${stopsig:+--signal} $stopsig
 

diff --git a/src/rc/supervise-daemon.c b/src/rc/supervise-daemon.c
index 1d0c3407..3989cbc7 100644
--- a/src/rc/supervise-daemon.c
+++ b/src/rc/supervise-daemon.c
@@ -561,8 +561,13 @@ int main(int argc, char **argv)
applet = basename_c(argv[0]);
atexit(cleanup);
svcname = getenv("RC_SVCNAME");
+   if (!svcname)
+   eerrorx("%s: The RC_SVCNAME environment variable is not set", 
applet);
openlog(applet, LOG_PID, LOG_DAEMON);
 
+   if (argc >= 1 && svcname && strcmp(argv[1], svcname))
+   eerrorx("%s: the first argument must be %s", applet, svcname);
+
if ((tmp = getenv("SSD_NICELEVEL")))
if (sscanf(tmp, "%d", ) != 1)
eerror("%s: invalid nice level `%s' (SSD_NICELEVEL)",
@@ -583,6 +588,17 @@ int main(int argc, char **argv)
}
}
 
+   *cmdline = '\0';
+   c = argv;
+   while (c && *c) {
+   strcat(cmdline, *c);
+   strcat(cmdline, " ");
+   c++;
+   }
+   if (svcname) {
+   argc--;
+   argv++;
+   }
while ((opt = getopt_long(argc, argv, getoptstring, longopts,
(int *) 0)) != -1)
switch (opt) {
@@ -721,14 +737,6 @@ int main(int argc, char **argv)
 
if (!pidfile && !reexec)
eerrorx("%s: --pidfile must be specified", applet);
-
-   *cmdline = '\0';
-   c = argv;
-   while (c && *c) {
-   strcat(cmdline, *c);
-   strcat(cmdline, " ");
-   c++;
-   }
endpwent();
argc -= optind;
argv += optind;



[gentoo-commits] proj/openrc:master commit in: src/rc/

2017-11-07 Thread William Hubbs
commit: 90d9ea656ff7c6b5d618df4e4261ebfa4033f1a8
Author: William Hubbs  gmail  com>
AuthorDate: Tue Nov  7 21:30:21 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Nov  7 21:30:34 2017 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=90d9ea65

start-stop-daemon: do not use do_stop to verify whether a daemon is running

X-Gentoo-Bug: 636574
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=636574

 src/rc/start-stop-daemon.c | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/rc/start-stop-daemon.c b/src/rc/start-stop-daemon.c
index dab8b3b1..e98f8ba3 100644
--- a/src/rc/start-stop-daemon.c
+++ b/src/rc/start-stop-daemon.c
@@ -279,6 +279,7 @@ int main(int argc, char **argv)
int stdout_fd;
int stderr_fd;
pid_t pid, spid;
+   RC_PIDLIST *pids;
int i;
char *svcname = getenv("RC_SVCNAME");
RC_STRINGLIST *env_list;
@@ -683,10 +684,14 @@ int main(int argc, char **argv)
else
pid = 0;
 
-   if (do_stop(applet, exec, (const char * const *)margv, pid, uid,
-   0, test, false) > 0)
+   if (pid)
+   pids = rc_find_pids(NULL, NULL, 0, pid);
+   else
+   pids = rc_find_pids(exec, (const char * const *) argv, uid, 0);
+   if (pids)
eerrorx("%s: %s is already running", applet, exec);
 
+   free(pids);
if (test) {
if (rc_yesno(getenv("EINFO_QUIET")))
exit (EXIT_SUCCESS);



[gentoo-commits] proj/openrc:master commit in: src/rc/

2017-11-07 Thread William Hubbs
commit: 27b8183de2f2bfd7411c14c1ec28543ca8a36602
Author: William Hubbs  gmail  com>
AuthorDate: Fri Oct 27 20:32:26 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Oct 27 20:33:47 2017 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=27b8183d

log as supervise-daemon not the service

 src/rc/supervise-daemon.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/rc/supervise-daemon.c b/src/rc/supervise-daemon.c
index 3c3d7c7e..bf27ad18 100644
--- a/src/rc/supervise-daemon.c
+++ b/src/rc/supervise-daemon.c
@@ -561,7 +561,7 @@ int main(int argc, char **argv)
applet = basename_c(argv[0]);
atexit(cleanup);
svcname = getenv("RC_SVCNAME");
-   openlog(svcname, LOG_PID, LOG_DAEMON);
+   openlog(applet, LOG_PID, LOG_DAEMON);
 
if ((tmp = getenv("SSD_NICELEVEL")))
if (sscanf(tmp, "%d", ) != 1)



[gentoo-commits] proj/openrc:master commit in: src/rc/

2017-11-07 Thread William Hubbs
commit: 3fe99c8b8264269dd935d52a1a52581cc0f14e8e
Author: William Hubbs  gmail  com>
AuthorDate: Fri Oct 27 22:34:29 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Oct 27 22:34:29 2017 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=3fe99c8b

supervise-daemon: fix logging for reexec and the child command line

 src/rc/supervise-daemon.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/rc/supervise-daemon.c b/src/rc/supervise-daemon.c
index bf27ad18..1d0c3407 100644
--- a/src/rc/supervise-daemon.c
+++ b/src/rc/supervise-daemon.c
@@ -161,7 +161,7 @@ static void cleanup(void)
 
 static void re_exec(void)
 {
-   syslog(LOG_WARNING, "Re-executing supervise-daemon");
+   syslog(LOG_WARNING, "Re-executing for %s", svcname);
execlp("supervise-daemon", "supervise-daemon", "--reexec", (char *) 
NULL);
syslog(LOG_ERR, "Unable to execute supervise-daemon: %s",
strerror(errno));
@@ -402,7 +402,7 @@ static void child_process(char *exec, char **argv)
strcat(cmdline, " ");
c++;
}
-   syslog(LOG_INFO, "Running command line: %s", cmdline);
+   syslog(LOG_INFO, "Child command line: %s", cmdline);
execvp(exec, argv);
 
 #ifdef HAVE_PAM



[gentoo-commits] data/glep:master commit in: /

2017-11-07 Thread Ulrich Müller
commit: 01adb34515cbcb515cdf9c2dd3bd194e474cc42d
Author: Ulrich Müller  gentoo  org>
AuthorDate: Tue Nov  7 19:13:08 2017 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Tue Nov  7 19:13:08 2017 +
URL:https://gitweb.gentoo.org/data/glep.git/commit/?id=01adb345

glep-0010: Licensed under CC-BY-SA-3.0.

The initial version of GLEP 10 authored by Sven Vermeulen had been
placed in the public domain. (That notice got lost with dertobi123's
updates in commit 21d3ba39ad06b493897ecaf6ed4a869f43ef8772.)

Tobias Scherbaum has agreed on 2017-10-03 that his modifications can
be distributed under CC-BY-SA-3.0, with e-mail to glep  gentoo.org:
<1509725544.2298668.1160706712.4BECDD9B  webmail.messagingengine.com>

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

 glep-0010.rst | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/glep-0010.rst b/glep-0010.rst
index e5e6422..a2f7927 100644
--- a/glep-0010.rst
+++ b/glep-0010.rst
@@ -7,7 +7,7 @@ Type: Standards Track
 Status: Deferred
 Version: 1
 Created: 2003-08-04
-Last-Modified: 2014-01-15
+Last-Modified: 2017-11-07
 Post-History: 2003-08-04, 2003-08-22, 2004-03-14, 2004-05-02, 2004-08-22
 Content-Type: text/x-rst
 ---
@@ -149,3 +149,10 @@ whole site.
 .. [#gentoo] http://www.gentoo.org
 .. [#gdp] https://wiki.gentoo.org/wiki/Project:Documentation
 
+
+Copyright
+=
+
+This work is licensed under the Creative Commons Attribution-ShareAlike 3.0
+Unported License.  To view a copy of this license, visit
+http://creativecommons.org/licenses/by-sa/3.0/.



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

2017-11-07 Thread Pacho Ramos
commit: df60c8d3d7de4d1e4335c013aeeb1e89e84545dc
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov  7 20:14:36 2017 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov  7 20:15:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df60c8d3

dev-python/matplotlib: Version bump (#635882), disable qt4 support (#634952), 
fix build failure with docs (#636176 by Serge Gavrilov).

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-python/matplotlib/Manifest|   1 +
 dev-python/matplotlib/matplotlib-2.1.0.ebuild | 250 ++
 2 files changed, 251 insertions(+)

diff --git a/dev-python/matplotlib/Manifest b/dev-python/matplotlib/Manifest
index 78018b44cef..d3db25ffa58 100644
--- a/dev-python/matplotlib/Manifest
+++ b/dev-python/matplotlib/Manifest
@@ -1,3 +1,4 @@
 DIST matplotlib-1.4.3.tar.gz 49933525 SHA256 
5b9544472d9d6ab3d47423bdb5a0e64fdf913e505c1c083f25283dd0362bc0b6 SHA512 
51b0f58b2618b47b653e17e4f6b6a1215d3a3b0f1331ce3555cc7435e365d9c75693f289ce12fe3bf8f69fd57b663e545f0f1c2c94e81eaa661cac0689e125f5
 WHIRLPOOL 
160ca48ecb44db58f1c56bd6e89592c5d1badd8e434fc25d32aa6d4d7a346ae7c7444d1c8e0c2ca2bf5c3246fd56cd93856ec7b1e3e51f5e471b9b55a0f2c1ad
 DIST matplotlib-1.5.3.tar.gz 51606089 SHA256 
a0a5dc39f785014f2088fed2c6d2d129f0444f71afbb9c44f7bdf1b14d86ebbc SHA512 
553be9f661a1923d8ec7504a11dd3317e5ffb429c19339c58047715f4c28358d6d2ac38d46bd27ecd1dcf7159f157aab80d90713fbc4071e2e395bbf11ee6385
 WHIRLPOOL 
7e2b0472bb7d913e78260da95c93c3243562e76352790318286e5d194f88ac05a9f51fa029a7b0ad17d0dc9658769fe6301b544ec03f1ab5c205835ea894
 DIST matplotlib-2.0.2.tar.gz 53879938 SHA256 
0ffbc44faa34a8b1704bc108c451ecf87988f900ef7ce757b8e2e84383121ff1 SHA512 
39d68aee87fac2c246cdee7941ffaae1b8d586fa75c351bc94f963def66df32c3aba13fa0be94e1f8d21f06e068565b1a79c6d4f65589d8dd23cd48b32ab474f
 WHIRLPOOL 
5ab8f9edb4591205d61bd47c5125520c0d24b8ce44e0041b99a5a0c692ffd3ff581cd6e092d18a64ddf6fb4f43ace6ee8c2bce19f5acd01d022d8a46e472b2df
+DIST matplotlib-2.1.0.tar.gz 35727251 SHA256 
4b5f16c9cefde553ea79975305dcaa67c8e13d927b6e55aa14b4a8d867e25387 SHA512 
8f512400f1f15d5400e23dd8e402783c54f62567d412863530a982c6513206d49fb91fadb3ef477648a4a38d6dd032eb90741ff4495d2be71911f83677d768b4
 WHIRLPOOL 
4795f3d49e3a624a22debe738cbe42ce3594c91880b3e6273f7ee05ecb7016353550cb39367f1edc6588d0e75d227d79f29af709e9471147171dd7ea5b6aa687

diff --git a/dev-python/matplotlib/matplotlib-2.1.0.ebuild 
b/dev-python/matplotlib/matplotlib-2.1.0.ebuild
new file mode 100644
index 000..766e5f93a00
--- /dev/null
+++ b/dev-python/matplotlib/matplotlib-2.1.0.ebuild
@@ -0,0 +1,250 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+PYTHON_REQ_USE='tk?,threads(+)'
+
+inherit distutils-r1 flag-o-matic virtualx toolchain-funcs prefix
+
+DESCRIPTION="Pure python plotting library with matlab like syntax"
+HOMEPAGE="http://matplotlib.org/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+# Main license: matplotlib
+# Some modules: BSD
+# matplotlib/backends/qt4_editor: MIT
+# Fonts: BitstreamVera, OFL-1.1
+LICENSE="BitstreamVera BSD matplotlib MIT OFL-1.1"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="cairo doc excel examples gtk2 gtk3 latex pyside qt5 test tk wxwidgets"
+
+PY2_FLAGS="|| ( $(python_gen_useflags python2_7) )"
+REQUIRED_USE="
+   doc? ( ${PY2_FLAGS} )
+   excel? ( ${PY2_FLAGS} )
+   gtk2? ( ${PY2_FLAGS} )
+   wxwidgets? ( ${PY2_FLAGS} )
+   test? (
+   cairo latex qt5 tk wxwidgets
+   || ( gtk2 gtk3 )
+   )"
+
+# #456704 -- a lot of py2-only deps
+PY2_USEDEP=$(python_gen_usedep python2_7)
+COMMON_DEPEND="
+   dev-python/cycler[${PYTHON_USEDEP}]
+   dev-python/functools32[${PY2_USEDEP}]
+   >=dev-python/numpy-1.7.1[${PYTHON_USEDEP}]
+   dev-python/python-dateutil:0[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   >=dev-python/six-1.10[${PYTHON_USEDEP}]
+   dev-python/subprocess32[${PY2_USEDEP}]
+   media-fonts/stix-fonts
+   media-libs/freetype:2
+   media-libs/libpng:0
+   >=media-libs/qhull-2013
+   cairo? ( dev-python/cairocffi[${PYTHON_USEDEP}] )
+   gtk2? (
+   dev-libs/glib:2=
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:2
+   dev-python/pygtk[${PY2_USEDEP}] )
+   wxwidgets? ( >=dev-python/wxpython-2.8:*[${PY2_USEDEP}] )"
+
+# internal copy of pycxx highly patched
+#  dev-python/pycxx
+
+DEPEND="${COMMON_DEPEND}
+   dev-python/versioneer[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   virtual/pkgconfig
+   doc? (
+   app-text/dvipng
+   dev-python/colorspacious[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/ipython[${PYTHON_USEDEP}]
+   

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

2017-11-07 Thread Matt Turner
commit: 03505343ef566447483923d9942e4960d680e95a
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Nov  7 19:40:20 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Nov  7 19:40:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03505343

x11-apps/bdftopcf: Version bump to 1.1

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 x11-apps/bdftopcf/Manifest|  1 +
 x11-apps/bdftopcf/bdftopcf-1.1.ebuild | 13 +
 2 files changed, 14 insertions(+)

diff --git a/x11-apps/bdftopcf/Manifest b/x11-apps/bdftopcf/Manifest
index dca685eabfa..d6c0d10d04d 100644
--- a/x11-apps/bdftopcf/Manifest
+++ b/x11-apps/bdftopcf/Manifest
@@ -1,2 +1,3 @@
 DIST bdftopcf-1.0.4.tar.bz2 116380 SHA256 
eaf59057ba3d7cffe29526562ce50868da7da823487a4cfb3e16946e5ffd2798 SHA512 
af18bd3a68d4811ab70f69fa7e871ca87650a4a28e13567db5ed40cba6a0c8006928ad5828dcc16a624bc38917f53bcf7470f3b1b3b2fca0379ecf03114a3a52
 WHIRLPOOL 
ce7115361d65d2df657ee134b6090dc7394e54909de93bfc961ce0ab3e63bd73d9321f412f998ab86b04f8416b6d0a2d266c8632047f826b63223f2fc0e6aa74
 DIST bdftopcf-1.0.5.tar.bz2 123291 SHA256 
38f447be0c61f94c473f128cf519dd0cff63b5d7775240a2e895a183a61e2026 SHA512 
9c6a156c8932579ee37699efaee3b1421d04d55ca0a62ca850a69cc65c21c7d9366b5a090b6a40e927504df16fecfdb484606052adc1038ca25e797f7e8c86c3
 WHIRLPOOL 
6cc6ac1099a98e35ff1c6ff6d410f6e2c33c812c637517b6e8c32c6f041f56364b5b826d25f7b67bca581c9e8cee408b123dcabb49494556948e822aa7f0376e
+DIST bdftopcf-1.1.tar.bz2 150815 SHA256 
4b4df05fc53f1e98993638d6f7e178d95b31745c4568cee407e167491fd311a2 SHA512 
7b790e8d512ca2812ac889c156ef91c48798b4744a6857e5b17e0128764b5afa8c5426fe5de05a9819d64745116718db4221b3e657e3c2633465e87179c44bec
 WHIRLPOOL 
6fe5753668c84a2e6d0155f47cf0bcefddbb0ae44dabdcde26968a2bf2d4ab88fd4ad815f4bf68ceb6f1e868cddda638a074a8949af97a72aa7c51933d4cb08f

diff --git a/x11-apps/bdftopcf/bdftopcf-1.1.ebuild 
b/x11-apps/bdftopcf/bdftopcf-1.1.ebuild
new file mode 100644
index 000..5e3350ff2b0
--- /dev/null
+++ b/x11-apps/bdftopcf/bdftopcf-1.1.ebuild
@@ -0,0 +1,13 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit xorg-2
+
+DESCRIPTION="X.Org bdftopcf application"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE=""
+RDEPEND=""
+DEPEND="${RDEPEND}"



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

2017-11-07 Thread Lars Wendler
commit: 23fefafd6fb6fab7d950b17997fa9e41219df893
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Nov  7 19:33:36 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Nov  7 19:33:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23fefafd

app-admin/monit: Bump to version 5.25.0

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 app-admin/monit/Manifest|  1 +
 app-admin/monit/monit-5.25.0.ebuild | 51 +
 2 files changed, 52 insertions(+)

diff --git a/app-admin/monit/Manifest b/app-admin/monit/Manifest
index 815d7ecfa0a..ecec04bb9e0 100644
--- a/app-admin/monit/Manifest
+++ b/app-admin/monit/Manifest
@@ -1,3 +1,4 @@
 DIST monit-5.20.0.tar.gz 1267991 SHA256 
ebac395ec50c1ae64d568db1260bc049d0e0e624c00e79d7b1b9a59c2679b98d SHA512 
653cba9d63fad42acf8c27ee9c050d047fc78e0b7e8cdb0f3d0a533d5b5e01ccf1b82d443cb6518d286547087a021e37a59cbffedbb3daf49ff8f95e8c64b884
 WHIRLPOOL 
28f9fcfa86c346fb390654e4730cc52ce30b794b2dc1e02a484079b55a8bcb50d78a71e2e856f1ce1e161dc99bcd6913b4db92ed0deab64e969c5c6a464c584d
 DIST monit-5.23.0.tar.gz 1298472 SHA256 
dd39fe3a379c02402ba9c44c201b3ba925ebdc8f04225918820607b6c5d56713 SHA512 
6ca3de51c7fdb8a677feafb684dc459f4064539fe5501dfa53a2027bb7b1e6f6121b7fa593c9e373f009d2fd0eeca2b9dd659c337f056dfe769908a3aa7ec5b8
 WHIRLPOOL 
1d02ec6ca5152c9df3131e851354ae5af58f8526f7934184c5d4f423bbba9a620c70a6d2731336aa8862d4e33cf4bebdc9b7ef1d3950bea1b49caa2dd660ca88
 DIST monit-5.24.0.tar.gz 1352660 SHA256 
754d1f0e165e5a26d4639a6a83f44ccf839e381f2622e0946d5302fa1f2d2414 SHA512 
5260a1b543495c650e2e91ad38129c65253ce6649150e0e51d11b2902723cb7dd8e1a874c473bec3ba5b51721f2b61fdec92cf445f11cc217c1a6fcc0fab1a1e
 WHIRLPOOL 
2d12934af302f084d4657e7a57f5dc19e76ac17c7aced46181806af12c1f214f2c1f37a7cb54c47e003f78a5d94f91d590bee69cd9669edd9501d977fe5305e7
+DIST monit-5.25.0.tar.gz 1353674 SHA256 
8949b99716581c5550bbbfb1009190f0e70f84b804d39902e55c5c3d095c2c32 SHA512 
6a0a3e81a97846420785026d108f2640986d0c24ecde55faf522dd7891ecdc2237c40667ec7b63a53358539c18870927cd75eb4c24cbb4b8ff73c54c267e70c5
 WHIRLPOOL 
1bfe8ec4e5512928fa2fc39486e2fa2539eeb7afe14a09573699510120af824b2e585cb9bc96931d83409caa8b42ac3247881836ada737662ef6edb60ff71caa

diff --git a/app-admin/monit/monit-5.25.0.ebuild 
b/app-admin/monit/monit-5.25.0.ebuild
new file mode 100644
index 000..0cbe4359523
--- /dev/null
+++ b/app-admin/monit/monit-5.25.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit pam systemd
+
+DESCRIPTION="Monitoring and managing daemons or similar programs running on a 
Unix system"
+HOMEPAGE="http://mmonit.com/monit/;
+SRC_URI="http://mmonit.com/monit/dist/${P}.tar.gz;
+
+LICENSE="AGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux"
+IUSE="libressl pam ssl"
+
+RDEPEND="
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )"
+DEPEND="${RDEPEND}
+   sys-devel/flex
+   sys-devel/bison
+   pam? ( virtual/pam )"
+
+src_prepare() {
+   default
+
+   sed -i -e '/^INSTALL_PROG/s/-s//' Makefile.in || die "sed failed in 
Makefile.in"
+}
+
+src_configure() {
+   econf $(use_with ssl) $(use_with pam)
+}
+
+src_install() {
+   default
+
+   dodoc README
+
+   insinto /etc; insopts -m600; doins monitrc
+   newinitd "${FILESDIR}"/monit.initd-5.0-r1 monit
+   systemd_dounit "${FILESDIR}"/${PN}.service
+
+   use pam && newpamd "${FILESDIR}"/${PN}.pamd ${PN}
+}
+
+pkg_postinst() {
+   elog "Sample configurations are available at:"
+   elog "http://mmonit.com/monit/documentation/;
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ros/image_rotate/

2017-11-07 Thread Alexis Ballier
commit: 9e35b30ff38991ac14c17358e5fdfa74821fba51
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:20:28 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e35b30f

dev-ros/image_rotate: Bump to 1.12.21.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-ros/image_rotate/Manifest|  1 +
 dev-ros/image_rotate/image_rotate-1.12.21.ebuild | 29 
 2 files changed, 30 insertions(+)

diff --git a/dev-ros/image_rotate/Manifest b/dev-ros/image_rotate/Manifest
index f6e12d8df50..ae432943f4c 100644
--- a/dev-ros/image_rotate/Manifest
+++ b/dev-ros/image_rotate/Manifest
@@ -1 +1,2 @@
 DIST image_pipeline-1.12.20.tar.gz 137888 SHA256 
b69307689c7fb4e62464254fc24ede26c85087b51519f0b43a33e995dabe1a53 SHA512 
37a45cfcc8bdb8b40477860e29f72671d423d4531156f5901128c32a6c41d27f235cdac216502d614ab7ddab5e66c2f343baaa0fd22cf83cb38e667fbbc111c5
 WHIRLPOOL 
8dda5d84af0929a983e6a2cb54697ee50d3036399a05bff50ae711fb4e8638e8763de407b65beb14d65b2cd48e3b200c84af95cee7da48609448f102d0bfdadc
+DIST image_pipeline-1.12.21.tar.gz 139264 SHA256 
5e358bbbd3283e7f6175fbe55b965b8028e81b95ca54c5ae7a551833b7c61d3e SHA512 
76f06e7a1effb3098454496e01a8c14b34a37a3ea96ac51a0deb860b6891b37d354dcf7d9c06389476decaa90c3097c4495e34d04f70ad6a571fc5469eda2f6c
 WHIRLPOOL 
a682666c96bdd95ffdad48c25e4b0109014957ca56c4c265d923c8ff35005bfbddfededd639d6694b229f60beac75f04f02b8ab1e654213ee312393038aab4cd

diff --git a/dev-ros/image_rotate/image_rotate-1.12.21.ebuild 
b/dev-ros/image_rotate/image_rotate-1.12.21.ebuild
new file mode 100644
index 000..8d00fbdb327
--- /dev/null
+++ b/dev-ros/image_rotate/image_rotate-1.12.21.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/image_pipeline;
+KEYWORDS="~amd64 ~arm"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Rotates an image stream minimizing the angle between an arbitrary 
vector and the camera frame"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/cv_bridge
+   media-libs/opencv:=
+   dev-ros/dynamic_reconfigure
+   dev-ros/eigen_conversions
+   dev-ros/image_transport
+   dev-ros/nodelet
+   dev-ros/roscpp
+   dev-ros/tf2
+   dev-ros/tf2_geometry_msgs
+   dev-libs/boost:=
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/image_proc/

2017-11-07 Thread Alexis Ballier
commit: b0f7051e95a3543be13c0231e28d0a3d0ed292ba
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:20:21 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0f7051e

dev-ros/image_proc: Bump to 1.12.21.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-ros/image_proc/Manifest  |  1 +
 dev-ros/image_proc/image_proc-1.12.21.ebuild | 28 
 2 files changed, 29 insertions(+)

diff --git a/dev-ros/image_proc/Manifest b/dev-ros/image_proc/Manifest
index b50ff7ba4d9..fe129ee2a3c 100644
--- a/dev-ros/image_proc/Manifest
+++ b/dev-ros/image_proc/Manifest
@@ -1,2 +1,3 @@
 DIST image_pipeline-1.12.19.tar.gz 130635 SHA256 
fc3073428fc930523efd6ed4a86d838ab0f0ff04a312eb4188c72a854d300e97 SHA512 
f0677e4a811622ffc19792af828f4766408b6a051d271950a8a096d064b043dae1457b2a6f2d59fe5c2971795db04e7abf5e0878ead1428a4da19033693829ba
 WHIRLPOOL 
ecb1cdcc07109d3781bb82e88c0fe7e91754b2dfac0bfc7f5d053e6df9ce78b95b4131a9b65715fbce1b44b0acab6f833bd9c0d4f2fb68718fee4f4bfd586c63
 DIST image_pipeline-1.12.20.tar.gz 137888 SHA256 
b69307689c7fb4e62464254fc24ede26c85087b51519f0b43a33e995dabe1a53 SHA512 
37a45cfcc8bdb8b40477860e29f72671d423d4531156f5901128c32a6c41d27f235cdac216502d614ab7ddab5e66c2f343baaa0fd22cf83cb38e667fbbc111c5
 WHIRLPOOL 
8dda5d84af0929a983e6a2cb54697ee50d3036399a05bff50ae711fb4e8638e8763de407b65beb14d65b2cd48e3b200c84af95cee7da48609448f102d0bfdadc
+DIST image_pipeline-1.12.21.tar.gz 139264 SHA256 
5e358bbbd3283e7f6175fbe55b965b8028e81b95ca54c5ae7a551833b7c61d3e SHA512 
76f06e7a1effb3098454496e01a8c14b34a37a3ea96ac51a0deb860b6891b37d354dcf7d9c06389476decaa90c3097c4495e34d04f70ad6a571fc5469eda2f6c
 WHIRLPOOL 
a682666c96bdd95ffdad48c25e4b0109014957ca56c4c265d923c8ff35005bfbddfededd639d6694b229f60beac75f04f02b8ab1e654213ee312393038aab4cd

diff --git a/dev-ros/image_proc/image_proc-1.12.21.ebuild 
b/dev-ros/image_proc/image_proc-1.12.21.ebuild
new file mode 100644
index 000..c70f308ec81
--- /dev/null
+++ b/dev-ros/image_proc/image_proc-1.12.21.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/image_pipeline;
+KEYWORDS="~amd64 ~arm"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Single image rectification and color processing"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/cv_bridge
+   dev-ros/dynamic_reconfigure
+   dev-ros/image_geometry
+   dev-ros/image_transport
+   dev-ros/nodelet
+   dev-ros/roscpp
+   dev-ros/sensor_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   media-libs/opencv:=
+   dev-libs/boost:=[threads]
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/cv_bridge/

2017-11-07 Thread Alexis Ballier
commit: 57be517535695c2d39aa979c928ec4c817ef70e8
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:22:36 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57be5175

dev-ros/cv_bridge: Bump to 1.12.5.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-ros/cv_bridge/Manifest|  1 +
 dev-ros/cv_bridge/cv_bridge-1.12.5.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-ros/cv_bridge/Manifest b/dev-ros/cv_bridge/Manifest
index 25646649314..6a55e45ecd7 100644
--- a/dev-ros/cv_bridge/Manifest
+++ b/dev-ros/cv_bridge/Manifest
@@ -1 +1,2 @@
 DIST vision_opencv-1.12.4.tar.gz 80675 SHA256 
37a7d85de5217d29689c7b18efdacb273fdc411176350bafff378f974d29def2 SHA512 
9ed426ddae7af343eed01d6ebf2769d654476bb28b095d67394e75feeec8440859aca34f62c9faff81018cf98fe58b731b96f3f7ffeaa459d14e6a3c59ad02e5
 WHIRLPOOL 
b5c829711a9ffac0b27f0f44fac253c2feb3c7ad236d9d17de74296cdf871f70b036c203781e55d54f685f20ada927cdfa7761446d849c40159e00ff801e6c55
+DIST vision_opencv-1.12.5.tar.gz 81739 SHA256 
2709e5f70f14bfba47117930f796474e8c340093b0b1cf4d20bbab1b974b669f SHA512 
df3ad951262a692124eead5751f64c04fbf831486db8c000e23e2f0b10f645d830c38cf2d99d23b696b96cd0388c4d732ddda4e5d8e8b7cb88a3fd5909c62c71
 WHIRLPOOL 
536300854a3a4fa417743617d47d09c948e97e5049d5274f60aca305b9e2e294fa8d74ae819f336344f040a8050a84cd9e1ff91af1897f4a6d27fa28f74edf6f

diff --git a/dev-ros/cv_bridge/cv_bridge-1.12.5.ebuild 
b/dev-ros/cv_bridge/cv_bridge-1.12.5.ebuild
new file mode 100644
index 000..5d7daa44a09
--- /dev/null
+++ b/dev-ros/cv_bridge/cv_bridge-1.12.5.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv;
+KEYWORDS="~amd64 ~arm"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Converts between ROS Image messages and OpenCV images"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/rosconsole
+   media-libs/opencv:=[contrib(+)]
+   dev-libs/boost:=[threads,python,${PYTHON_USEDEP}]
+   
dev-ros/sensor_msgs[${CATKIN_MESSAGES_CXX_USEDEP},${CATKIN_MESSAGES_PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/camera_calibration/

2017-11-07 Thread Alexis Ballier
commit: db5cb2a48e1a92b59aae83338396b8be71168679
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:20:14 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db5cb2a4

dev-ros/camera_calibration: Bump to 1.12.21.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-ros/camera_calibration/Manifest|  1 +
 .../camera_calibration-1.12.21.ebuild  | 27 ++
 2 files changed, 28 insertions(+)

diff --git a/dev-ros/camera_calibration/Manifest 
b/dev-ros/camera_calibration/Manifest
index 14de50e4dbc..af47f96cb9c 100644
--- a/dev-ros/camera_calibration/Manifest
+++ b/dev-ros/camera_calibration/Manifest
@@ -4,3 +4,4 @@ DIST image_pipeline-1.12.16.tar.gz 126407 SHA256 
af0d7e43de48457ca591c4908d5771c
 DIST image_pipeline-1.12.18.tar.gz 127899 SHA256 
7f356c7a020d4acf5acd2973180cf356329186606586bd37f8103597a0312b05 SHA512 
9a9d671d31d3c6a9343836fa8c7a5566fb9e032330dbc57adeab35510263aca0482a8a8413716e79c49e2e187c3892ab200c92435e8797d4b69e3332771b64da
 WHIRLPOOL 
eed95a909a7a9b99cf313ceea4417a80d433f6b6d24053e4f6705993899d5c2b9fd14ef7ad2b07bf584c79a83f45b232b259f3cd8e3eeedcd61d17449667fe47
 DIST image_pipeline-1.12.19.tar.gz 130635 SHA256 
fc3073428fc930523efd6ed4a86d838ab0f0ff04a312eb4188c72a854d300e97 SHA512 
f0677e4a811622ffc19792af828f4766408b6a051d271950a8a096d064b043dae1457b2a6f2d59fe5c2971795db04e7abf5e0878ead1428a4da19033693829ba
 WHIRLPOOL 
ecb1cdcc07109d3781bb82e88c0fe7e91754b2dfac0bfc7f5d053e6df9ce78b95b4131a9b65715fbce1b44b0acab6f833bd9c0d4f2fb68718fee4f4bfd586c63
 DIST image_pipeline-1.12.20.tar.gz 137888 SHA256 
b69307689c7fb4e62464254fc24ede26c85087b51519f0b43a33e995dabe1a53 SHA512 
37a45cfcc8bdb8b40477860e29f72671d423d4531156f5901128c32a6c41d27f235cdac216502d614ab7ddab5e66c2f343baaa0fd22cf83cb38e667fbbc111c5
 WHIRLPOOL 
8dda5d84af0929a983e6a2cb54697ee50d3036399a05bff50ae711fb4e8638e8763de407b65beb14d65b2cd48e3b200c84af95cee7da48609448f102d0bfdadc
+DIST image_pipeline-1.12.21.tar.gz 139264 SHA256 
5e358bbbd3283e7f6175fbe55b965b8028e81b95ca54c5ae7a551833b7c61d3e SHA512 
76f06e7a1effb3098454496e01a8c14b34a37a3ea96ac51a0deb860b6891b37d354dcf7d9c06389476decaa90c3097c4495e34d04f70ad6a571fc5469eda2f6c
 WHIRLPOOL 
a682666c96bdd95ffdad48c25e4b0109014957ca56c4c265d923c8ff35005bfbddfededd639d6694b229f60beac75f04f02b8ab1e654213ee312393038aab4cd

diff --git a/dev-ros/camera_calibration/camera_calibration-1.12.21.ebuild 
b/dev-ros/camera_calibration/camera_calibration-1.12.21.ebuild
new file mode 100644
index 000..f447ac323c6
--- /dev/null
+++ b/dev-ros/camera_calibration/camera_calibration-1.12.21.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/image_pipeline;
+KEYWORDS="~amd64 ~arm"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Calibration of monocular or stereo cameras using a checkerboard 
calibration target"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/cv_bridge[${PYTHON_USEDEP}]
+   dev-ros/image_geometry[${PYTHON_USEDEP}]
+   || ( media-libs/opencv[python,${PYTHON_USEDEP}] 
media-libs/opencv[python,python_single_target_python2_7] )
+   dev-ros/message_filters[${PYTHON_USEDEP}]
+   dev-ros/rospy[${PYTHON_USEDEP}]
+   dev-ros/std_srvs[${PYTHON_USEDEP}]
+   dev-ros/sensor_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/depth_image_proc/

2017-11-07 Thread Alexis Ballier
commit: 4411e6398fdf9fee9c694f067c6ed638e554da55
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:20:18 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4411e639

dev-ros/depth_image_proc: Bump to 1.12.21.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-ros/depth_image_proc/Manifest  |  1 +
 .../depth_image_proc-1.12.21.ebuild| 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-ros/depth_image_proc/Manifest 
b/dev-ros/depth_image_proc/Manifest
index f6e12d8df50..ae432943f4c 100644
--- a/dev-ros/depth_image_proc/Manifest
+++ b/dev-ros/depth_image_proc/Manifest
@@ -1 +1,2 @@
 DIST image_pipeline-1.12.20.tar.gz 137888 SHA256 
b69307689c7fb4e62464254fc24ede26c85087b51519f0b43a33e995dabe1a53 SHA512 
37a45cfcc8bdb8b40477860e29f72671d423d4531156f5901128c32a6c41d27f235cdac216502d614ab7ddab5e66c2f343baaa0fd22cf83cb38e667fbbc111c5
 WHIRLPOOL 
8dda5d84af0929a983e6a2cb54697ee50d3036399a05bff50ae711fb4e8638e8763de407b65beb14d65b2cd48e3b200c84af95cee7da48609448f102d0bfdadc
+DIST image_pipeline-1.12.21.tar.gz 139264 SHA256 
5e358bbbd3283e7f6175fbe55b965b8028e81b95ca54c5ae7a551833b7c61d3e SHA512 
76f06e7a1effb3098454496e01a8c14b34a37a3ea96ac51a0deb860b6891b37d354dcf7d9c06389476decaa90c3097c4495e34d04f70ad6a571fc5469eda2f6c
 WHIRLPOOL 
a682666c96bdd95ffdad48c25e4b0109014957ca56c4c265d923c8ff35005bfbddfededd639d6694b229f60beac75f04f02b8ab1e654213ee312393038aab4cd

diff --git a/dev-ros/depth_image_proc/depth_image_proc-1.12.21.ebuild 
b/dev-ros/depth_image_proc/depth_image_proc-1.12.21.ebuild
new file mode 100644
index 000..87c9e41d1a1
--- /dev/null
+++ b/dev-ros/depth_image_proc/depth_image_proc-1.12.21.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/image_pipeline;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Nodelets for processing depth images such as those produced by 
OpenNI camera"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/cv_bridge
+   media-libs/opencv:=
+   dev-ros/eigen_conversions
+   dev-ros/image_geometry
+   dev-ros/image_transport
+   dev-ros/message_filters
+   dev-ros/nodelet
+   dev-ros/sensor_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-ros/stereo_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-ros/tf2
+   dev-ros/tf2_ros
+   dev-libs/boost:=
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/image_transport/

2017-11-07 Thread Alexis Ballier
commit: d6578135fcce05362a96bacca11c7f41ff11d130
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:16:08 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6578135

dev-ros/image_transport: Bump to 1.11.13.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-ros/image_transport/Manifest   |  1 +
 .../image_transport/image_transport-1.11.13.ebuild | 25 ++
 2 files changed, 26 insertions(+)

diff --git a/dev-ros/image_transport/Manifest b/dev-ros/image_transport/Manifest
index a6154495b82..2816f47d9a9 100644
--- a/dev-ros/image_transport/Manifest
+++ b/dev-ros/image_transport/Manifest
@@ -1,6 +1,7 @@
 DIST image_common-1.11.10.tar.gz 52212 SHA256 
a0d31e59f3cd67ae37be980b8e208d7315b483b025b8f01de17757d045ccf111 SHA512 
dac26cf9f3a7f0660f513fdcfbcf42ff2b772aaa03dd7422e5b7ede6f2f5724e7ba6c50b2511168fbb7f576d05beda786eec1ac86b3b31b6429341dc1657
 WHIRLPOOL 
4dad1490313d9e2e27a72c5bb47c5ff2425332a22c88f64fff5c9e68fd7479cea715fd6d1b09b047b28ef2b40391a3649b5aa8bf77adfc18b4da23035b4989af
 DIST image_common-1.11.11.tar.gz 52591 SHA256 
e0d5c01e160ceb82aa8c394d40b9f39deb1f005027eefe1e0d29c0417ae47353 SHA512 
3693647935620bc0b223b80c515e2d02718b96eb5d61f57c436098cc635764f359de0f762e5e5e3746b6fbd06e99a490d4cecc33ea38e760f1126e4b321f78f8
 WHIRLPOOL 
34f2b301fda117fdd504b1b09d03c9b5fdf4f3a87ee5c61c484f7f9cac2bb3f567a667475a54270cbaf3bcf5187fe59d80eddbc5aaee595f7b33d17fdcb4b433
 DIST image_common-1.11.12.tar.gz 53920 SHA256 
13d434e2d46e13af05398f3cbacffb2c69e2d015f6827d848f799a28d23e816d SHA512 
cd64edd658092c88060a99bbf2cd501cd27441123c34914fc4c8d8c8a8a1fe6d4a929211e71d813b6eb72e1d844842ee3e12567bc40d32981db9ee430e61fb10
 WHIRLPOOL 
1f1922d9b004e4af7b2f42839b0cdaa8c31c8b187618267b3780f34a56f90a2f471b68bae3dd9bb8ccbb80d35dba41e05d49fcac6a1156e1c5ab2b8e79d3032d
+DIST image_common-1.11.13.tar.gz 54731 SHA256 
32a2e07724dec6eaaace21eae006274436d70d40bfe205249438570275c43cac SHA512 
154a1acfc3ee1be83828f7b86de8a5e02d7613d724f734409c5b93b1505bcf911b95f20fe43435932f49e03e286ed7055e2b7abeb1c5292f540a2299dd424bfa
 WHIRLPOOL 
fed16f5148355b3e9e64e734b6f22c37f310e58c22e86446f1068bf00e155fe0b2c20a546da03edc75ddbd87d3528cc4d397f46b55599b59df4700163fa724b9
 DIST image_common-1.11.7.tar.gz 49437 SHA256 
1a739aef8ea597f6e7eaad26c031ad90e797efcb9cae764cd352bb124e9744ca SHA512 
7408b641c75b6227130218862674609521d8465680ac15d45fc296de6ad3372ef1dde225a812740e0d5200f5923b52b4e9c2fca4dd4f96104f0bfe901400f456
 WHIRLPOOL 
1c8aee3e738ced0d4b45695a7dd10b1140a330abd8b121c91e2816bed329fc23a1ae39b8150fc81f81b9b586d3a747a9e4d6541914f1caabf6df06cf7cf57441
 DIST image_common-1.11.8.tar.gz 49596 SHA256 
14b5a067791c74d922ab39fbf773a08fc98b3ca3d6f920c8798713e4e551711c SHA512 
448a10466c6ac04d2193ce87741658073c70f629b554df484decfba107c5bc67d9fcf660a12a1dc31ce2c570d69004207c47249e5523276a425e38f330d17f35
 WHIRLPOOL 
9b0c7fed36bfabf0f7126a887fc3926989fc178ad4f49192ee47fc9538816c55516b4624a542e13cfcb88515bc4927718ec26cb9212775e54f304bd9c665833b
 DIST image_common-1.11.9.tar.gz 52035 SHA256 
a01db99c066ba9e69132368c47427297d51865880899dff428bae1c3e78a457c SHA512 
465b66731197384105dff0c499b89ab48d68859aae95411cf7d675fcb911018c7f2d79d3825b17ebcba8297b244491ef848b1b0cf70e620b93b9d73dc9b5bd77
 WHIRLPOOL 
e946257a988e735969744093f1d5c5eba974ed0660c850fc5e04370580f59957070530fd539d35c2490091deccb99ffc2c57008ce6ec750c492edf275e7af68e

diff --git a/dev-ros/image_transport/image_transport-1.11.13.ebuild 
b/dev-ros/image_transport/image_transport-1.11.13.ebuild
new file mode 100644
index 000..afe27ee6903
--- /dev/null
+++ b/dev-ros/image_transport/image_transport-1.11.13.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/image_common;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Transparent support for transporting images in low-bandwidth 
compressed formats"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/message_filters
+   dev-ros/pluginlib
+   dev-ros/rosconsole
+   dev-ros/roscpp
+   dev-ros/roslib
+   dev-ros/sensor_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-libs/boost:=
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/camera_calibration_parsers/

2017-11-07 Thread Alexis Ballier
commit: 4d53cbe2926530214f55b8773b3b2d45a2f2d7e7
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:16:01 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d53cbe2

dev-ros/camera_calibration_parsers: Bump to 1.11.13.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-ros/camera_calibration_parsers/Manifest|  1 +
 .../camera_calibration_parsers-1.11.13.ebuild  | 27 ++
 2 files changed, 28 insertions(+)

diff --git a/dev-ros/camera_calibration_parsers/Manifest 
b/dev-ros/camera_calibration_parsers/Manifest
index 6b743a505cb..339b23d8bfc 100644
--- a/dev-ros/camera_calibration_parsers/Manifest
+++ b/dev-ros/camera_calibration_parsers/Manifest
@@ -1 +1,2 @@
 DIST image_common-1.11.12.tar.gz 53920 SHA256 
13d434e2d46e13af05398f3cbacffb2c69e2d015f6827d848f799a28d23e816d SHA512 
cd64edd658092c88060a99bbf2cd501cd27441123c34914fc4c8d8c8a8a1fe6d4a929211e71d813b6eb72e1d844842ee3e12567bc40d32981db9ee430e61fb10
 WHIRLPOOL 
1f1922d9b004e4af7b2f42839b0cdaa8c31c8b187618267b3780f34a56f90a2f471b68bae3dd9bb8ccbb80d35dba41e05d49fcac6a1156e1c5ab2b8e79d3032d
+DIST image_common-1.11.13.tar.gz 54731 SHA256 
32a2e07724dec6eaaace21eae006274436d70d40bfe205249438570275c43cac SHA512 
154a1acfc3ee1be83828f7b86de8a5e02d7613d724f734409c5b93b1505bcf911b95f20fe43435932f49e03e286ed7055e2b7abeb1c5292f540a2299dd424bfa
 WHIRLPOOL 
fed16f5148355b3e9e64e734b6f22c37f310e58c22e86446f1068bf00e155fe0b2c20a546da03edc75ddbd87d3528cc4d397f46b55599b59df4700163fa724b9

diff --git 
a/dev-ros/camera_calibration_parsers/camera_calibration_parsers-1.11.13.ebuild 
b/dev-ros/camera_calibration_parsers/camera_calibration_parsers-1.11.13.ebuild
new file mode 100644
index 000..e319da058e8
--- /dev/null
+++ 
b/dev-ros/camera_calibration_parsers/camera_calibration_parsers-1.11.13.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/image_common;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit ros-catkin
+
+DESCRIPTION="Routines for reading and writing camera calibration parameters"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   
dev-ros/sensor_msgs[${CATKIN_MESSAGES_CXX_USEDEP},${CATKIN_MESSAGES_PYTHON_USEDEP}]
+   dev-libs/boost:=[python,${PYTHON_USEDEP}]
+   dev-ros/rosconsole
+   >=dev-cpp/yaml-cpp-0.5
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   test? ( dev-python/nose )
+"
+PATCHES=( "${FILESDIR}/boostpython.patch" )



[gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/

2017-11-07 Thread Alexis Ballier
commit: 6278cb1eeadcfd16655eca739d74a8564c169ecd
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:22:44 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6278cb1e

dev-ros/opencv_tests: Bump to 1.12.5.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-ros/opencv_tests/Manifest   |  1 +
 dev-ros/opencv_tests/opencv_tests-1.12.5.ebuild | 32 +
 2 files changed, 33 insertions(+)

diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
index 5d311223cb9..5ef2ac7e3a2 100644
--- a/dev-ros/opencv_tests/Manifest
+++ b/dev-ros/opencv_tests/Manifest
@@ -2,3 +2,4 @@ DIST vision_opencv-1.12.1.tar.gz 79203 SHA256 
ad0b66e5523b6862ada185f5064b2d9979
 DIST vision_opencv-1.12.2.tar.gz 79771 SHA256 
e0123ad457d33cfd1ca562c023e2bfb4305e1d363cb8165f54f2494e3e73c798 SHA512 
823e7e122d351e615e95093f6962b38ff76c01a876f71f4810fa2014ee9c71ec0c1e63d3d5a01a0297d6c58012e6b6a14ee850f57feda83d4d7125b9e0bd12c0
 WHIRLPOOL 
13c9e1f0149cfb5b8e467619ddf6da1327545ef6a7cba23dc58980da109473f6c6fbf7ded2e3f76e8f1fe170b05bcd1f40cadcfffe96d86cd8d1be82ce4de586
 DIST vision_opencv-1.12.3.tar.gz 80497 SHA256 
2bcc51cdb8236594ae92c9d0b9d930934529434d7b8efd25b86199aca87d0be9 SHA512 
2f732c7f9d9b5aa68b775fa08c8836bfb01cd3fe0fee9bd9bf862fecb26a23a58d754a96e723b420663b48b590f24e454e5a1871b6f4dcd4219d3c3e413ade3c
 WHIRLPOOL 
c0836bc766b9aa899c55d4caab7afe9008a7f38d2317548a0e312ba738193dfd69ac4b5c0c96c37aa6d01903187a8eccb12cfe03cc64289a18025efbf3ab373b
 DIST vision_opencv-1.12.4.tar.gz 80675 SHA256 
37a7d85de5217d29689c7b18efdacb273fdc411176350bafff378f974d29def2 SHA512 
9ed426ddae7af343eed01d6ebf2769d654476bb28b095d67394e75feeec8440859aca34f62c9faff81018cf98fe58b731b96f3f7ffeaa459d14e6a3c59ad02e5
 WHIRLPOOL 
b5c829711a9ffac0b27f0f44fac253c2feb3c7ad236d9d17de74296cdf871f70b036c203781e55d54f685f20ada927cdfa7761446d849c40159e00ff801e6c55
+DIST vision_opencv-1.12.5.tar.gz 81739 SHA256 
2709e5f70f14bfba47117930f796474e8c340093b0b1cf4d20bbab1b974b669f SHA512 
df3ad951262a692124eead5751f64c04fbf831486db8c000e23e2f0b10f645d830c38cf2d99d23b696b96cd0388c4d732ddda4e5d8e8b7cb88a3fd5909c62c71
 WHIRLPOOL 
536300854a3a4fa417743617d47d09c948e97e5049d5274f60aca305b9e2e294fa8d74ae819f336344f040a8050a84cd9e1ff91af1897f4a6d27fa28f74edf6f

diff --git a/dev-ros/opencv_tests/opencv_tests-1.12.5.ebuild 
b/dev-ros/opencv_tests/opencv_tests-1.12.5.ebuild
new file mode 100644
index 000..96b12009c60
--- /dev/null
+++ b/dev-ros/opencv_tests/opencv_tests-1.12.5.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv;
+KEYWORDS="~amd64 ~arm"
+# Be careful: It needs opencv with python support but opencv is 
python-single-r1
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for ROS OpenCV integration"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/cv_bridge[${PYTHON_USEDEP}]
+   dev-ros/rospy[${PYTHON_USEDEP}]
+   media-libs/opencv[python,${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+   ros-catkin_src_install
+   insinto /usr/share/${PN}/launch
+   doins launch/*.launch
+   exeinto /usr/libexec/${PN}
+   doexe nodes/*
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ros/image_view/

2017-11-07 Thread Alexis Ballier
commit: be9f291727f67c67db411a384f9efa420dbc77d2
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:20:32 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be9f2917

dev-ros/image_view: Bump to 1.12.21.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-ros/image_view/Manifest  |  1 +
 dev-ros/image_view/image_view-1.12.21.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/dev-ros/image_view/Manifest b/dev-ros/image_view/Manifest
index b50ff7ba4d9..fe129ee2a3c 100644
--- a/dev-ros/image_view/Manifest
+++ b/dev-ros/image_view/Manifest
@@ -1,2 +1,3 @@
 DIST image_pipeline-1.12.19.tar.gz 130635 SHA256 
fc3073428fc930523efd6ed4a86d838ab0f0ff04a312eb4188c72a854d300e97 SHA512 
f0677e4a811622ffc19792af828f4766408b6a051d271950a8a096d064b043dae1457b2a6f2d59fe5c2971795db04e7abf5e0878ead1428a4da19033693829ba
 WHIRLPOOL 
ecb1cdcc07109d3781bb82e88c0fe7e91754b2dfac0bfc7f5d053e6df9ce78b95b4131a9b65715fbce1b44b0acab6f833bd9c0d4f2fb68718fee4f4bfd586c63
 DIST image_pipeline-1.12.20.tar.gz 137888 SHA256 
b69307689c7fb4e62464254fc24ede26c85087b51519f0b43a33e995dabe1a53 SHA512 
37a45cfcc8bdb8b40477860e29f72671d423d4531156f5901128c32a6c41d27f235cdac216502d614ab7ddab5e66c2f343baaa0fd22cf83cb38e667fbbc111c5
 WHIRLPOOL 
8dda5d84af0929a983e6a2cb54697ee50d3036399a05bff50ae711fb4e8638e8763de407b65beb14d65b2cd48e3b200c84af95cee7da48609448f102d0bfdadc
+DIST image_pipeline-1.12.21.tar.gz 139264 SHA256 
5e358bbbd3283e7f6175fbe55b965b8028e81b95ca54c5ae7a551833b7c61d3e SHA512 
76f06e7a1effb3098454496e01a8c14b34a37a3ea96ac51a0deb860b6891b37d354dcf7d9c06389476decaa90c3097c4495e34d04f70ad6a571fc5469eda2f6c
 WHIRLPOOL 
a682666c96bdd95ffdad48c25e4b0109014957ca56c4c265d923c8ff35005bfbddfededd639d6694b229f60beac75f04f02b8ab1e654213ee312393038aab4cd

diff --git a/dev-ros/image_view/image_view-1.12.21.ebuild 
b/dev-ros/image_view/image_view-1.12.21.ebuild
new file mode 100644
index 000..477a6ade7dc
--- /dev/null
+++ b/dev-ros/image_view/image_view-1.12.21.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/image_pipeline;
+KEYWORDS="~amd64 ~arm"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Simple viewer for ROS image topics"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-libs/boost:=[threads]
+   media-libs/opencv:=
+   x11-libs/gtk+:2
+   dev-ros/camera_calibration_parsers
+   >=dev-ros/cv_bridge-1.11.10
+   dev-ros/image_transport
+   dev-ros/message_filters
+   dev-ros/nodelet
+   dev-ros/rosconsole
+   dev-ros/roscpp
+   dev-ros/stereo_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-ros/sensor_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-ros/std_srvs[${CATKIN_MESSAGES_CXX_USEDEP}]
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/image_geometry/

2017-11-07 Thread Alexis Ballier
commit: 4a512276916a7f1fc051427cf7c17a4a08748574
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:22:40 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a512276

dev-ros/image_geometry: Bump to 1.12.5.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-ros/image_geometry/Manifest|  1 +
 .../image_geometry/image_geometry-1.12.5.ebuild| 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-ros/image_geometry/Manifest b/dev-ros/image_geometry/Manifest
index 40d3ead9125..5566673b6cd 100644
--- a/dev-ros/image_geometry/Manifest
+++ b/dev-ros/image_geometry/Manifest
@@ -1,2 +1,3 @@
 DIST vision_opencv-1.12.3.tar.gz 80497 SHA256 
2bcc51cdb8236594ae92c9d0b9d930934529434d7b8efd25b86199aca87d0be9 SHA512 
2f732c7f9d9b5aa68b775fa08c8836bfb01cd3fe0fee9bd9bf862fecb26a23a58d754a96e723b420663b48b590f24e454e5a1871b6f4dcd4219d3c3e413ade3c
 WHIRLPOOL 
c0836bc766b9aa899c55d4caab7afe9008a7f38d2317548a0e312ba738193dfd69ac4b5c0c96c37aa6d01903187a8eccb12cfe03cc64289a18025efbf3ab373b
 DIST vision_opencv-1.12.4.tar.gz 80675 SHA256 
37a7d85de5217d29689c7b18efdacb273fdc411176350bafff378f974d29def2 SHA512 
9ed426ddae7af343eed01d6ebf2769d654476bb28b095d67394e75feeec8440859aca34f62c9faff81018cf98fe58b731b96f3f7ffeaa459d14e6a3c59ad02e5
 WHIRLPOOL 
b5c829711a9ffac0b27f0f44fac253c2feb3c7ad236d9d17de74296cdf871f70b036c203781e55d54f685f20ada927cdfa7761446d849c40159e00ff801e6c55
+DIST vision_opencv-1.12.5.tar.gz 81739 SHA256 
2709e5f70f14bfba47117930f796474e8c340093b0b1cf4d20bbab1b974b669f SHA512 
df3ad951262a692124eead5751f64c04fbf831486db8c000e23e2f0b10f645d830c38cf2d99d23b696b96cd0388c4d732ddda4e5d8e8b7cb88a3fd5909c62c71
 WHIRLPOOL 
536300854a3a4fa417743617d47d09c948e97e5049d5274f60aca305b9e2e294fa8d74ae819f336344f040a8050a84cd9e1ff91af1897f4a6d27fa28f74edf6f

diff --git a/dev-ros/image_geometry/image_geometry-1.12.5.ebuild 
b/dev-ros/image_geometry/image_geometry-1.12.5.ebuild
new file mode 100644
index 000..8206600adc3
--- /dev/null
+++ b/dev-ros/image_geometry/image_geometry-1.12.5.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv;
+KEYWORDS="~amd64 ~arm"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="C++ and Python libraries for interpreting images geometrically"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   media-libs/opencv:=
+   
dev-ros/sensor_msgs[${CATKIN_MESSAGES_CXX_USEDEP},${CATKIN_MESSAGES_PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   test? ( dev-python/nose[${PYTHON_USEDEP}] dev-cpp/gtest )"



[gentoo-commits] repo/gentoo:master commit in: ros-meta/image_common/

2017-11-07 Thread Alexis Ballier
commit: 0e748d178dc45f1e8634a67d36183fd09df0ada6
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:14:22 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e748d17

ros-meta/image_common: Remove old

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 ros-meta/image_common/Manifest|  5 -
 ros-meta/image_common/image_common-1.11.10.ebuild | 22 --
 ros-meta/image_common/image_common-1.11.11.ebuild | 22 --
 ros-meta/image_common/image_common-1.11.7.ebuild  | 22 --
 ros-meta/image_common/image_common-1.11.8.ebuild  | 22 --
 ros-meta/image_common/image_common-1.11.9.ebuild  | 22 --
 6 files changed, 115 deletions(-)

diff --git a/ros-meta/image_common/Manifest b/ros-meta/image_common/Manifest
index a6154495b82..6b743a505cb 100644
--- a/ros-meta/image_common/Manifest
+++ b/ros-meta/image_common/Manifest
@@ -1,6 +1 @@
-DIST image_common-1.11.10.tar.gz 52212 SHA256 
a0d31e59f3cd67ae37be980b8e208d7315b483b025b8f01de17757d045ccf111 SHA512 
dac26cf9f3a7f0660f513fdcfbcf42ff2b772aaa03dd7422e5b7ede6f2f5724e7ba6c50b2511168fbb7f576d05beda786eec1ac86b3b31b6429341dc1657
 WHIRLPOOL 
4dad1490313d9e2e27a72c5bb47c5ff2425332a22c88f64fff5c9e68fd7479cea715fd6d1b09b047b28ef2b40391a3649b5aa8bf77adfc18b4da23035b4989af
-DIST image_common-1.11.11.tar.gz 52591 SHA256 
e0d5c01e160ceb82aa8c394d40b9f39deb1f005027eefe1e0d29c0417ae47353 SHA512 
3693647935620bc0b223b80c515e2d02718b96eb5d61f57c436098cc635764f359de0f762e5e5e3746b6fbd06e99a490d4cecc33ea38e760f1126e4b321f78f8
 WHIRLPOOL 
34f2b301fda117fdd504b1b09d03c9b5fdf4f3a87ee5c61c484f7f9cac2bb3f567a667475a54270cbaf3bcf5187fe59d80eddbc5aaee595f7b33d17fdcb4b433
 DIST image_common-1.11.12.tar.gz 53920 SHA256 
13d434e2d46e13af05398f3cbacffb2c69e2d015f6827d848f799a28d23e816d SHA512 
cd64edd658092c88060a99bbf2cd501cd27441123c34914fc4c8d8c8a8a1fe6d4a929211e71d813b6eb72e1d844842ee3e12567bc40d32981db9ee430e61fb10
 WHIRLPOOL 
1f1922d9b004e4af7b2f42839b0cdaa8c31c8b187618267b3780f34a56f90a2f471b68bae3dd9bb8ccbb80d35dba41e05d49fcac6a1156e1c5ab2b8e79d3032d
-DIST image_common-1.11.7.tar.gz 49437 SHA256 
1a739aef8ea597f6e7eaad26c031ad90e797efcb9cae764cd352bb124e9744ca SHA512 
7408b641c75b6227130218862674609521d8465680ac15d45fc296de6ad3372ef1dde225a812740e0d5200f5923b52b4e9c2fca4dd4f96104f0bfe901400f456
 WHIRLPOOL 
1c8aee3e738ced0d4b45695a7dd10b1140a330abd8b121c91e2816bed329fc23a1ae39b8150fc81f81b9b586d3a747a9e4d6541914f1caabf6df06cf7cf57441
-DIST image_common-1.11.8.tar.gz 49596 SHA256 
14b5a067791c74d922ab39fbf773a08fc98b3ca3d6f920c8798713e4e551711c SHA512 
448a10466c6ac04d2193ce87741658073c70f629b554df484decfba107c5bc67d9fcf660a12a1dc31ce2c570d69004207c47249e5523276a425e38f330d17f35
 WHIRLPOOL 
9b0c7fed36bfabf0f7126a887fc3926989fc178ad4f49192ee47fc9538816c55516b4624a542e13cfcb88515bc4927718ec26cb9212775e54f304bd9c665833b
-DIST image_common-1.11.9.tar.gz 52035 SHA256 
a01db99c066ba9e69132368c47427297d51865880899dff428bae1c3e78a457c SHA512 
465b66731197384105dff0c499b89ab48d68859aae95411cf7d675fcb911018c7f2d79d3825b17ebcba8297b244491ef848b1b0cf70e620b93b9d73dc9b5bd77
 WHIRLPOOL 
e946257a988e735969744093f1d5c5eba974ed0660c850fc5e04370580f59957070530fd539d35c2490091deccb99ffc2c57008ce6ec750c492edf275e7af68e

diff --git a/ros-meta/image_common/image_common-1.11.10.ebuild 
b/ros-meta/image_common/image_common-1.11.10.ebuild
deleted file mode 100644
index 05a7465d1dd..000
--- a/ros-meta/image_common/image_common-1.11.10.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/image_common;
-KEYWORDS="~amd64 ~arm"
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Common code for working with images in ROS"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   dev-ros/camera_calibration_parsers
-   dev-ros/camera_info_manager
-   dev-ros/image_transport
-   dev-ros/polled_camera
-"
-DEPEND="${RDEPEND}"

diff --git a/ros-meta/image_common/image_common-1.11.11.ebuild 
b/ros-meta/image_common/image_common-1.11.11.ebuild
deleted file mode 100644
index 53acefbdbe5..000
--- a/ros-meta/image_common/image_common-1.11.11.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/image_common;
-KEYWORDS="~amd64 ~arm"
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Common code for working with images in ROS"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   dev-ros/camera_calibration_parsers
-   dev-ros/camera_info_manager
-   dev-ros/image_transport
-   dev-ros/polled_camera
-"
-DEPEND="${RDEPEND}"

diff --git 

[gentoo-commits] repo/gentoo:master commit in: ros-meta/vision_opencv/

2017-11-07 Thread Alexis Ballier
commit: 3a08b2a815e677b753181b59ff387c526b1f3657
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:22:47 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a08b2a8

ros-meta/vision_opencv: Bump to 1.12.5.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 ros-meta/vision_opencv/Manifest|  1 +
 ros-meta/vision_opencv/vision_opencv-1.12.5.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/ros-meta/vision_opencv/Manifest b/ros-meta/vision_opencv/Manifest
index 25646649314..6a55e45ecd7 100644
--- a/ros-meta/vision_opencv/Manifest
+++ b/ros-meta/vision_opencv/Manifest
@@ -1 +1,2 @@
 DIST vision_opencv-1.12.4.tar.gz 80675 SHA256 
37a7d85de5217d29689c7b18efdacb273fdc411176350bafff378f974d29def2 SHA512 
9ed426ddae7af343eed01d6ebf2769d654476bb28b095d67394e75feeec8440859aca34f62c9faff81018cf98fe58b731b96f3f7ffeaa459d14e6a3c59ad02e5
 WHIRLPOOL 
b5c829711a9ffac0b27f0f44fac253c2feb3c7ad236d9d17de74296cdf871f70b036c203781e55d54f685f20ada927cdfa7761446d849c40159e00ff801e6c55
+DIST vision_opencv-1.12.5.tar.gz 81739 SHA256 
2709e5f70f14bfba47117930f796474e8c340093b0b1cf4d20bbab1b974b669f SHA512 
df3ad951262a692124eead5751f64c04fbf831486db8c000e23e2f0b10f645d830c38cf2d99d23b696b96cd0388c4d732ddda4e5d8e8b7cb88a3fd5909c62c71
 WHIRLPOOL 
536300854a3a4fa417743617d47d09c948e97e5049d5274f60aca305b9e2e294fa8d74ae819f336344f040a8050a84cd9e1ff91af1897f4a6d27fa28f74edf6f

diff --git a/ros-meta/vision_opencv/vision_opencv-1.12.5.ebuild 
b/ros-meta/vision_opencv/vision_opencv-1.12.5.ebuild
new file mode 100644
index 000..b99326ff8c7
--- /dev/null
+++ b/ros-meta/vision_opencv/vision_opencv-1.12.5.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Converts between ROS Image messages and OpenCV images"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/cv_bridge
+   dev-ros/image_geometry
+   dev-ros/opencv_tests
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: ros-meta/vision_opencv/

2017-11-07 Thread Alexis Ballier
commit: 65b123b68b9a2f311b6cc350476f563113af0509
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:21:41 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65b123b6

ros-meta/vision_opencv: Remove old

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 ros-meta/vision_opencv/Manifest|  4 
 ros-meta/vision_opencv/vision_opencv-1.12.0.ebuild | 22 --
 ros-meta/vision_opencv/vision_opencv-1.12.1.ebuild | 21 -
 ros-meta/vision_opencv/vision_opencv-1.12.2.ebuild | 21 -
 ros-meta/vision_opencv/vision_opencv-1.12.3.ebuild | 21 -
 5 files changed, 89 deletions(-)

diff --git a/ros-meta/vision_opencv/Manifest b/ros-meta/vision_opencv/Manifest
index a84b686c863..25646649314 100644
--- a/ros-meta/vision_opencv/Manifest
+++ b/ros-meta/vision_opencv/Manifest
@@ -1,5 +1 @@
-DIST vision_opencv-1.12.0.tar.gz 110922 SHA256 
bff37fe2d80d1fe125aa514791fe4aef5042d7715f621e39af696629881bf4ac SHA512 
9aa5764cb97ab48b96484cfd1bcf492f726cdeb9a75338945f8a65c9fcf753e339fc1738d96091a01884a5f5b66af710c6ade651b09459c5f3cd08180cd135b4
 WHIRLPOOL 
e214a7a03011ad66611ceb10a9fb88de03975538f8d52c44d0d4c82830c5c6b7e8fd3a6fe901faa7f1415f483acceb46b30db88f72125aed45fb6bda485ec231
-DIST vision_opencv-1.12.1.tar.gz 79203 SHA256 
ad0b66e5523b6862ada185f5064b2d9979b28d46e2b2eb42308e260dabae8c83 SHA512 
f95b3247eed1d5f4403b1a123a033a5178d3491cf5deee27bf8386a9dab66475ef7889d0787483a03545ba9fc11e039b4ab0beedfa09121562cabd1bd33b5f88
 WHIRLPOOL 
647eb428982ecc57aca41db893cf738d0c4b6870c5b54ddf79181f7e07a83f0738c18421d213f3463e64e4b8658b8ef643fd6c9c7c10ee62a011df5311d45c33
-DIST vision_opencv-1.12.2.tar.gz 79771 SHA256 
e0123ad457d33cfd1ca562c023e2bfb4305e1d363cb8165f54f2494e3e73c798 SHA512 
823e7e122d351e615e95093f6962b38ff76c01a876f71f4810fa2014ee9c71ec0c1e63d3d5a01a0297d6c58012e6b6a14ee850f57feda83d4d7125b9e0bd12c0
 WHIRLPOOL 
13c9e1f0149cfb5b8e467619ddf6da1327545ef6a7cba23dc58980da109473f6c6fbf7ded2e3f76e8f1fe170b05bcd1f40cadcfffe96d86cd8d1be82ce4de586
-DIST vision_opencv-1.12.3.tar.gz 80497 SHA256 
2bcc51cdb8236594ae92c9d0b9d930934529434d7b8efd25b86199aca87d0be9 SHA512 
2f732c7f9d9b5aa68b775fa08c8836bfb01cd3fe0fee9bd9bf862fecb26a23a58d754a96e723b420663b48b590f24e454e5a1871b6f4dcd4219d3c3e413ade3c
 WHIRLPOOL 
c0836bc766b9aa899c55d4caab7afe9008a7f38d2317548a0e312ba738193dfd69ac4b5c0c96c37aa6d01903187a8eccb12cfe03cc64289a18025efbf3ab373b
 DIST vision_opencv-1.12.4.tar.gz 80675 SHA256 
37a7d85de5217d29689c7b18efdacb273fdc411176350bafff378f974d29def2 SHA512 
9ed426ddae7af343eed01d6ebf2769d654476bb28b095d67394e75feeec8440859aca34f62c9faff81018cf98fe58b731b96f3f7ffeaa459d14e6a3c59ad02e5
 WHIRLPOOL 
b5c829711a9ffac0b27f0f44fac253c2feb3c7ad236d9d17de74296cdf871f70b036c203781e55d54f685f20ada927cdfa7761446d849c40159e00ff801e6c55

diff --git a/ros-meta/vision_opencv/vision_opencv-1.12.0.ebuild 
b/ros-meta/vision_opencv/vision_opencv-1.12.0.ebuild
deleted file mode 100644
index 5bc9f8ec85b..000
--- a/ros-meta/vision_opencv/vision_opencv-1.12.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/vision_opencv;
-KEYWORDS="~amd64 ~arm"
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Converts between ROS Image messages and OpenCV images"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   dev-ros/cv_bridge
-   dev-ros/image_geometry
-   dev-ros/opencv_tests
-   dev-ros/opencv_apps
-"
-DEPEND="${RDEPEND}"

diff --git a/ros-meta/vision_opencv/vision_opencv-1.12.1.ebuild 
b/ros-meta/vision_opencv/vision_opencv-1.12.1.ebuild
deleted file mode 100644
index a3fa5bdf9d5..000
--- a/ros-meta/vision_opencv/vision_opencv-1.12.1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/vision_opencv;
-KEYWORDS="~amd64 ~arm"
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Converts between ROS Image messages and OpenCV images"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   dev-ros/cv_bridge
-   dev-ros/image_geometry
-   dev-ros/opencv_tests
-"
-DEPEND="${RDEPEND}"

diff --git a/ros-meta/vision_opencv/vision_opencv-1.12.2.ebuild 
b/ros-meta/vision_opencv/vision_opencv-1.12.2.ebuild
deleted file mode 100644
index a3fa5bdf9d5..000
--- a/ros-meta/vision_opencv/vision_opencv-1.12.2.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/vision_opencv;
-KEYWORDS="~amd64 ~arm"
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Converts 

[gentoo-commits] repo/gentoo:master commit in: ros-meta/image_common/

2017-11-07 Thread Alexis Ballier
commit: d485f3ba530aa827a4abe65def5b8a71ebfa401d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:16:15 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d485f3ba

ros-meta/image_common: Bump to 1.11.13.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 ros-meta/image_common/Manifest|  1 +
 ros-meta/image_common/image_common-1.11.13.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/ros-meta/image_common/Manifest b/ros-meta/image_common/Manifest
index 6b743a505cb..339b23d8bfc 100644
--- a/ros-meta/image_common/Manifest
+++ b/ros-meta/image_common/Manifest
@@ -1 +1,2 @@
 DIST image_common-1.11.12.tar.gz 53920 SHA256 
13d434e2d46e13af05398f3cbacffb2c69e2d015f6827d848f799a28d23e816d SHA512 
cd64edd658092c88060a99bbf2cd501cd27441123c34914fc4c8d8c8a8a1fe6d4a929211e71d813b6eb72e1d844842ee3e12567bc40d32981db9ee430e61fb10
 WHIRLPOOL 
1f1922d9b004e4af7b2f42839b0cdaa8c31c8b187618267b3780f34a56f90a2f471b68bae3dd9bb8ccbb80d35dba41e05d49fcac6a1156e1c5ab2b8e79d3032d
+DIST image_common-1.11.13.tar.gz 54731 SHA256 
32a2e07724dec6eaaace21eae006274436d70d40bfe205249438570275c43cac SHA512 
154a1acfc3ee1be83828f7b86de8a5e02d7613d724f734409c5b93b1505bcf911b95f20fe43435932f49e03e286ed7055e2b7abeb1c5292f540a2299dd424bfa
 WHIRLPOOL 
fed16f5148355b3e9e64e734b6f22c37f310e58c22e86446f1068bf00e155fe0b2c20a546da03edc75ddbd87d3528cc4d397f46b55599b59df4700163fa724b9

diff --git a/ros-meta/image_common/image_common-1.11.13.ebuild 
b/ros-meta/image_common/image_common-1.11.13.ebuild
new file mode 100644
index 000..b7135e7f74b
--- /dev/null
+++ b/ros-meta/image_common/image_common-1.11.13.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/image_common;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Common code for working with images in ROS"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/camera_calibration_parsers
+   dev-ros/camera_info_manager
+   dev-ros/image_transport
+   dev-ros/polled_camera
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/polled_camera/

2017-11-07 Thread Alexis Ballier
commit: 32402c6a6165bd05783b0964d8d7c5affc8bbb5a
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:16:12 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32402c6a

dev-ros/polled_camera: Bump to 1.11.13.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-ros/polled_camera/Manifest |  1 +
 dev-ros/polled_camera/polled_camera-1.11.13.ebuild | 24 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-ros/polled_camera/Manifest b/dev-ros/polled_camera/Manifest
index 6b743a505cb..339b23d8bfc 100644
--- a/dev-ros/polled_camera/Manifest
+++ b/dev-ros/polled_camera/Manifest
@@ -1 +1,2 @@
 DIST image_common-1.11.12.tar.gz 53920 SHA256 
13d434e2d46e13af05398f3cbacffb2c69e2d015f6827d848f799a28d23e816d SHA512 
cd64edd658092c88060a99bbf2cd501cd27441123c34914fc4c8d8c8a8a1fe6d4a929211e71d813b6eb72e1d844842ee3e12567bc40d32981db9ee430e61fb10
 WHIRLPOOL 
1f1922d9b004e4af7b2f42839b0cdaa8c31c8b187618267b3780f34a56f90a2f471b68bae3dd9bb8ccbb80d35dba41e05d49fcac6a1156e1c5ab2b8e79d3032d
+DIST image_common-1.11.13.tar.gz 54731 SHA256 
32a2e07724dec6eaaace21eae006274436d70d40bfe205249438570275c43cac SHA512 
154a1acfc3ee1be83828f7b86de8a5e02d7613d724f734409c5b93b1505bcf911b95f20fe43435932f49e03e286ed7055e2b7abeb1c5292f540a2299dd424bfa
 WHIRLPOOL 
fed16f5148355b3e9e64e734b6f22c37f310e58c22e86446f1068bf00e155fe0b2c20a546da03edc75ddbd87d3528cc4d397f46b55599b59df4700163fa724b9

diff --git a/dev-ros/polled_camera/polled_camera-1.11.13.ebuild 
b/dev-ros/polled_camera/polled_camera-1.11.13.ebuild
new file mode 100644
index 000..d25529b4d8a
--- /dev/null
+++ b/dev-ros/polled_camera/polled_camera-1.11.13.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/image_common;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+CATKIN_HAS_MESSAGES=yes
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+CATKIN_MESSAGES_TRANSITIVE_DEPS="dev-ros/std_msgs dev-ros/sensor_msgs"
+
+inherit ros-catkin
+
+DESCRIPTION="C++ helper classes for implementing a polled camera driver node 
and requesting images from it"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/roscpp
+   dev-ros/image_transport
+   dev-ros/rosconsole
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/camera_info_manager/

2017-11-07 Thread Alexis Ballier
commit: 743b00c3f150c32653c439b325002d4e9c15bebb
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:16:05 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=743b00c3

dev-ros/camera_info_manager: Bump to 1.11.13.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-ros/camera_info_manager/Manifest   |  1 +
 .../camera_info_manager-1.11.13.ebuild | 24 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-ros/camera_info_manager/Manifest 
b/dev-ros/camera_info_manager/Manifest
index a6154495b82..2816f47d9a9 100644
--- a/dev-ros/camera_info_manager/Manifest
+++ b/dev-ros/camera_info_manager/Manifest
@@ -1,6 +1,7 @@
 DIST image_common-1.11.10.tar.gz 52212 SHA256 
a0d31e59f3cd67ae37be980b8e208d7315b483b025b8f01de17757d045ccf111 SHA512 
dac26cf9f3a7f0660f513fdcfbcf42ff2b772aaa03dd7422e5b7ede6f2f5724e7ba6c50b2511168fbb7f576d05beda786eec1ac86b3b31b6429341dc1657
 WHIRLPOOL 
4dad1490313d9e2e27a72c5bb47c5ff2425332a22c88f64fff5c9e68fd7479cea715fd6d1b09b047b28ef2b40391a3649b5aa8bf77adfc18b4da23035b4989af
 DIST image_common-1.11.11.tar.gz 52591 SHA256 
e0d5c01e160ceb82aa8c394d40b9f39deb1f005027eefe1e0d29c0417ae47353 SHA512 
3693647935620bc0b223b80c515e2d02718b96eb5d61f57c436098cc635764f359de0f762e5e5e3746b6fbd06e99a490d4cecc33ea38e760f1126e4b321f78f8
 WHIRLPOOL 
34f2b301fda117fdd504b1b09d03c9b5fdf4f3a87ee5c61c484f7f9cac2bb3f567a667475a54270cbaf3bcf5187fe59d80eddbc5aaee595f7b33d17fdcb4b433
 DIST image_common-1.11.12.tar.gz 53920 SHA256 
13d434e2d46e13af05398f3cbacffb2c69e2d015f6827d848f799a28d23e816d SHA512 
cd64edd658092c88060a99bbf2cd501cd27441123c34914fc4c8d8c8a8a1fe6d4a929211e71d813b6eb72e1d844842ee3e12567bc40d32981db9ee430e61fb10
 WHIRLPOOL 
1f1922d9b004e4af7b2f42839b0cdaa8c31c8b187618267b3780f34a56f90a2f471b68bae3dd9bb8ccbb80d35dba41e05d49fcac6a1156e1c5ab2b8e79d3032d
+DIST image_common-1.11.13.tar.gz 54731 SHA256 
32a2e07724dec6eaaace21eae006274436d70d40bfe205249438570275c43cac SHA512 
154a1acfc3ee1be83828f7b86de8a5e02d7613d724f734409c5b93b1505bcf911b95f20fe43435932f49e03e286ed7055e2b7abeb1c5292f540a2299dd424bfa
 WHIRLPOOL 
fed16f5148355b3e9e64e734b6f22c37f310e58c22e86446f1068bf00e155fe0b2c20a546da03edc75ddbd87d3528cc4d397f46b55599b59df4700163fa724b9
 DIST image_common-1.11.7.tar.gz 49437 SHA256 
1a739aef8ea597f6e7eaad26c031ad90e797efcb9cae764cd352bb124e9744ca SHA512 
7408b641c75b6227130218862674609521d8465680ac15d45fc296de6ad3372ef1dde225a812740e0d5200f5923b52b4e9c2fca4dd4f96104f0bfe901400f456
 WHIRLPOOL 
1c8aee3e738ced0d4b45695a7dd10b1140a330abd8b121c91e2816bed329fc23a1ae39b8150fc81f81b9b586d3a747a9e4d6541914f1caabf6df06cf7cf57441
 DIST image_common-1.11.8.tar.gz 49596 SHA256 
14b5a067791c74d922ab39fbf773a08fc98b3ca3d6f920c8798713e4e551711c SHA512 
448a10466c6ac04d2193ce87741658073c70f629b554df484decfba107c5bc67d9fcf660a12a1dc31ce2c570d69004207c47249e5523276a425e38f330d17f35
 WHIRLPOOL 
9b0c7fed36bfabf0f7126a887fc3926989fc178ad4f49192ee47fc9538816c55516b4624a542e13cfcb88515bc4927718ec26cb9212775e54f304bd9c665833b
 DIST image_common-1.11.9.tar.gz 52035 SHA256 
a01db99c066ba9e69132368c47427297d51865880899dff428bae1c3e78a457c SHA512 
465b66731197384105dff0c499b89ab48d68859aae95411cf7d675fcb911018c7f2d79d3825b17ebcba8297b244491ef848b1b0cf70e620b93b9d73dc9b5bd77
 WHIRLPOOL 
e946257a988e735969744093f1d5c5eba974ed0660c850fc5e04370580f59957070530fd539d35c2490091deccb99ffc2c57008ce6ec750c492edf275e7af68e

diff --git a/dev-ros/camera_info_manager/camera_info_manager-1.11.13.ebuild 
b/dev-ros/camera_info_manager/camera_info_manager-1.11.13.ebuild
new file mode 100644
index 000..16533def62e
--- /dev/null
+++ b/dev-ros/camera_info_manager/camera_info_manager-1.11.13.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/image_common;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="C++ interface for camera calibration information"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/camera_calibration_parsers
+   dev-ros/image_transport
+   dev-ros/roscpp
+   dev-ros/roslib
+   dev-ros/sensor_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-libs/boost:=
+"
+DEPEND="${RDEPEND} test? ( dev-ros/rostest )"



[gentoo-commits] repo/gentoo:master commit in: ros-meta/image_pipeline/

2017-11-07 Thread Alexis Ballier
commit: c3d798968d8045b4fe8574d1b568b57f98cc4a8f
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:20:39 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3d79896

ros-meta/image_pipeline: Bump to 1.12.21.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 ros-meta/image_pipeline/Manifest   |  1 +
 .../image_pipeline/image_pipeline-1.12.21.ebuild   | 25 ++
 2 files changed, 26 insertions(+)

diff --git a/ros-meta/image_pipeline/Manifest b/ros-meta/image_pipeline/Manifest
index b50ff7ba4d9..fe129ee2a3c 100644
--- a/ros-meta/image_pipeline/Manifest
+++ b/ros-meta/image_pipeline/Manifest
@@ -1,2 +1,3 @@
 DIST image_pipeline-1.12.19.tar.gz 130635 SHA256 
fc3073428fc930523efd6ed4a86d838ab0f0ff04a312eb4188c72a854d300e97 SHA512 
f0677e4a811622ffc19792af828f4766408b6a051d271950a8a096d064b043dae1457b2a6f2d59fe5c2971795db04e7abf5e0878ead1428a4da19033693829ba
 WHIRLPOOL 
ecb1cdcc07109d3781bb82e88c0fe7e91754b2dfac0bfc7f5d053e6df9ce78b95b4131a9b65715fbce1b44b0acab6f833bd9c0d4f2fb68718fee4f4bfd586c63
 DIST image_pipeline-1.12.20.tar.gz 137888 SHA256 
b69307689c7fb4e62464254fc24ede26c85087b51519f0b43a33e995dabe1a53 SHA512 
37a45cfcc8bdb8b40477860e29f72671d423d4531156f5901128c32a6c41d27f235cdac216502d614ab7ddab5e66c2f343baaa0fd22cf83cb38e667fbbc111c5
 WHIRLPOOL 
8dda5d84af0929a983e6a2cb54697ee50d3036399a05bff50ae711fb4e8638e8763de407b65beb14d65b2cd48e3b200c84af95cee7da48609448f102d0bfdadc
+DIST image_pipeline-1.12.21.tar.gz 139264 SHA256 
5e358bbbd3283e7f6175fbe55b965b8028e81b95ca54c5ae7a551833b7c61d3e SHA512 
76f06e7a1effb3098454496e01a8c14b34a37a3ea96ac51a0deb860b6891b37d354dcf7d9c06389476decaa90c3097c4495e34d04f70ad6a571fc5469eda2f6c
 WHIRLPOOL 
a682666c96bdd95ffdad48c25e4b0109014957ca56c4c265d923c8ff35005bfbddfededd639d6694b229f60beac75f04f02b8ab1e654213ee312393038aab4cd

diff --git a/ros-meta/image_pipeline/image_pipeline-1.12.21.ebuild 
b/ros-meta/image_pipeline/image_pipeline-1.12.21.ebuild
new file mode 100644
index 000..e534a16e7b7
--- /dev/null
+++ b/ros-meta/image_pipeline/image_pipeline-1.12.21.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/image_pipeline;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Fills the gap between getting raw images from a camera driver and 
higher-level vision processing"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/camera_calibration
+   dev-ros/depth_image_proc
+   dev-ros/image_proc
+   dev-ros/image_publisher
+   dev-ros/image_rotate
+   dev-ros/image_view
+   dev-ros/stereo_image_proc
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/stereo_image_proc/

2017-11-07 Thread Alexis Ballier
commit: 1fd013cdec20ea1355999cf1ad4a13d7fbbfc9b5
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:20:35 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fd013cd

dev-ros/stereo_image_proc: Bump to 1.12.21.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-ros/stereo_image_proc/Manifest |  1 +
 .../stereo_image_proc-1.12.21.ebuild   | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-ros/stereo_image_proc/Manifest 
b/dev-ros/stereo_image_proc/Manifest
index b50ff7ba4d9..fe129ee2a3c 100644
--- a/dev-ros/stereo_image_proc/Manifest
+++ b/dev-ros/stereo_image_proc/Manifest
@@ -1,2 +1,3 @@
 DIST image_pipeline-1.12.19.tar.gz 130635 SHA256 
fc3073428fc930523efd6ed4a86d838ab0f0ff04a312eb4188c72a854d300e97 SHA512 
f0677e4a811622ffc19792af828f4766408b6a051d271950a8a096d064b043dae1457b2a6f2d59fe5c2971795db04e7abf5e0878ead1428a4da19033693829ba
 WHIRLPOOL 
ecb1cdcc07109d3781bb82e88c0fe7e91754b2dfac0bfc7f5d053e6df9ce78b95b4131a9b65715fbce1b44b0acab6f833bd9c0d4f2fb68718fee4f4bfd586c63
 DIST image_pipeline-1.12.20.tar.gz 137888 SHA256 
b69307689c7fb4e62464254fc24ede26c85087b51519f0b43a33e995dabe1a53 SHA512 
37a45cfcc8bdb8b40477860e29f72671d423d4531156f5901128c32a6c41d27f235cdac216502d614ab7ddab5e66c2f343baaa0fd22cf83cb38e667fbbc111c5
 WHIRLPOOL 
8dda5d84af0929a983e6a2cb54697ee50d3036399a05bff50ae711fb4e8638e8763de407b65beb14d65b2cd48e3b200c84af95cee7da48609448f102d0bfdadc
+DIST image_pipeline-1.12.21.tar.gz 139264 SHA256 
5e358bbbd3283e7f6175fbe55b965b8028e81b95ca54c5ae7a551833b7c61d3e SHA512 
76f06e7a1effb3098454496e01a8c14b34a37a3ea96ac51a0deb860b6891b37d354dcf7d9c06389476decaa90c3097c4495e34d04f70ad6a571fc5469eda2f6c
 WHIRLPOOL 
a682666c96bdd95ffdad48c25e4b0109014957ca56c4c265d923c8ff35005bfbddfededd639d6694b229f60beac75f04f02b8ab1e654213ee312393038aab4cd

diff --git a/dev-ros/stereo_image_proc/stereo_image_proc-1.12.21.ebuild 
b/dev-ros/stereo_image_proc/stereo_image_proc-1.12.21.ebuild
new file mode 100644
index 000..825abc908cb
--- /dev/null
+++ b/dev-ros/stereo_image_proc/stereo_image_proc-1.12.21.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/image_pipeline;
+KEYWORDS="~amd64 ~arm"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Stereo and single image rectification and disparity processing"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/cv_bridge
+   dev-ros/dynamic_reconfigure
+   dev-ros/image_geometry
+   dev-ros/image_proc
+   dev-ros/image_transport
+   dev-ros/message_filters
+   dev-ros/nodelet
+   dev-ros/sensor_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-ros/stereo_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   media-libs/opencv:=
+   dev-libs/boost:=[threads]
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/image_publisher/

2017-11-07 Thread Alexis Ballier
commit: f035e243090cb0c8b9ce5595d4cfc4f8ab9c4d5a
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Nov  7 19:20:25 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov  7 19:23:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f035e243

dev-ros/image_publisher: Bump to 1.12.21.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-ros/image_publisher/Manifest   |  1 +
 .../image_publisher/image_publisher-1.12.21.ebuild | 28 ++
 2 files changed, 29 insertions(+)

diff --git a/dev-ros/image_publisher/Manifest b/dev-ros/image_publisher/Manifest
index f6e12d8df50..ae432943f4c 100644
--- a/dev-ros/image_publisher/Manifest
+++ b/dev-ros/image_publisher/Manifest
@@ -1 +1,2 @@
 DIST image_pipeline-1.12.20.tar.gz 137888 SHA256 
b69307689c7fb4e62464254fc24ede26c85087b51519f0b43a33e995dabe1a53 SHA512 
37a45cfcc8bdb8b40477860e29f72671d423d4531156f5901128c32a6c41d27f235cdac216502d614ab7ddab5e66c2f343baaa0fd22cf83cb38e667fbbc111c5
 WHIRLPOOL 
8dda5d84af0929a983e6a2cb54697ee50d3036399a05bff50ae711fb4e8638e8763de407b65beb14d65b2cd48e3b200c84af95cee7da48609448f102d0bfdadc
+DIST image_pipeline-1.12.21.tar.gz 139264 SHA256 
5e358bbbd3283e7f6175fbe55b965b8028e81b95ca54c5ae7a551833b7c61d3e SHA512 
76f06e7a1effb3098454496e01a8c14b34a37a3ea96ac51a0deb860b6891b37d354dcf7d9c06389476decaa90c3097c4495e34d04f70ad6a571fc5469eda2f6c
 WHIRLPOOL 
a682666c96bdd95ffdad48c25e4b0109014957ca56c4c265d923c8ff35005bfbddfededd639d6694b229f60beac75f04f02b8ab1e654213ee312393038aab4cd

diff --git a/dev-ros/image_publisher/image_publisher-1.12.21.ebuild 
b/dev-ros/image_publisher/image_publisher-1.12.21.ebuild
new file mode 100644
index 000..165d0170001
--- /dev/null
+++ b/dev-ros/image_publisher/image_publisher-1.12.21.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/image_pipeline;
+KEYWORDS="~amd64 ~arm"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Publish an image stream from single image file or avi file."
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/cv_bridge
+   media-libs/opencv:=
+   dev-ros/dynamic_reconfigure
+   dev-ros/camera_info_manager
+   dev-ros/image_transport
+   dev-ros/nodelet
+   dev-ros/roscpp
+   dev-ros/sensor_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-libs/boost:=
+"
+DEPEND="${RDEPEND}"



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

2017-11-07 Thread Zac Medico
commit: 85d4a5455574734bbb97c5218541a9617ebd2f9b
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Nov  7 18:59:56 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Nov  7 19:03:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85d4a545

dev-python/pyghmi: blocker older cli_helpers (bug 636824)

This fixes the following build failure:

>>> Compiling source in 
>>> /var/tmp/portage/dev-python/pyghmi-1.0.22/work/pyghmi-1.0.22 ...
 * python2_7: running distutils-r1_run_phase distutils-r1_python_compile
/usr/bin/python2.7 setup.py build
ERROR:root:Error parsing
Traceback (most recent call last):
  File "/usr/lib64/python2.7/site-packages/pbr/core.py", line 111, in pbr
attrs = util.cfg_to_args(path, dist.script_args)
  File "/usr/lib64/python2.7/site-packages/pbr/util.py", line 267, in 
cfg_to_args
wrap_commands(kwargs)
  File "/usr/lib64/python2.7/site-packages/pbr/util.py", line 569, in 
wrap_commands
cmdclass = ep.resolve()
  File "/usr/lib64/python2.7/site-packages/pkg_resources/__init__.py", line 
2415, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
ImportError: No module named tasks
error in setup command: Error parsing 
/var/tmp/portage/dev-python/pyghmi-1.0.22/work/pyghmi-1.0.22/setup.cfg: 
ImportError: No module named tasks

See: https://github.com/dbcli/cli_helpers/issues/25
Closes: https://bugs.gentoo.org/636824
Package-Manager: Portage-2.3.13, Repoman-2.3.3

 dev-python/pyghmi/pyghmi-1.0.22.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-python/pyghmi/pyghmi-1.0.22.ebuild 
b/dev-python/pyghmi/pyghmi-1.0.22.ebuild
index 7af3e3962a6..3be2b5d11b8 100644
--- a/dev-python/pyghmi/pyghmi-1.0.22.ebuild
+++ b/dev-python/pyghmi/pyghmi-1.0.22.ebuild
@@ -17,7 +17,9 @@ IUSE="test"
 
 RDEPEND="dev-python/pbr[${PYTHON_USEDEP}]
>=dev-python/pycrypto-2.6[${PYTHON_USEDEP}]"
+#636824 older versions of cli_helpers break the build
 DEPEND="${RDEPEND}
+   !=dev-python/coverage-3.6[${PYTHON_USEDEP}]



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

2017-11-07 Thread Zac Medico
commit: faf200a2246623dbba5eb2d805df8c03818a719c
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Nov  7 18:49:46 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Nov  7 19:03:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faf200a2

dev-python/tabulate: version bump to 0.8.1

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 dev-python/tabulate/Manifest  |  1 +
 dev-python/tabulate/tabulate-0.8.1.ebuild | 34 +++
 2 files changed, 35 insertions(+)

diff --git a/dev-python/tabulate/Manifest b/dev-python/tabulate/Manifest
index af0bd3f5225..cf55c561b07 100644
--- a/dev-python/tabulate/Manifest
+++ b/dev-python/tabulate/Manifest
@@ -1 +1,2 @@
 DIST tabulate-0.7.7.tar.gz 39140 SHA256 
83a0b8e17c09f012090a50e1e97ae897300a72b35e0c86c0b53d3bd2ae86d8c6 SHA512 
36ea77577e36fad28efa9b1c10686a4a795acdea77be4f8b442b38f45d70993245b4b473b0ce146f3d24eb49f186ec47ada332a9a3973ac2786d5a46b7358213
 WHIRLPOOL 
7d64e01b9a2d4ed41733b67e4108e233ba97ca95029f4f82c1b73f489dd0e17589cfbe071fd83969422779e73eb7fc1e5b7d48c891b3dcd647a9d4266900a462
+DIST tabulate-0.8.1.tar.gz 45666 SHA256 
b9b4d2fc712c1e3b8f2970edf6d83fd8a329d0148de78bbe2755a79a96c190fa SHA512 
f724fbabee53c738c846a5cf645470f5f97074e2b33eb030b4859478931661dac53e5446d77a656553e2dec323230bb116d350997e1407d794382f537e6dfdf5
 WHIRLPOOL 
53f1324078a4971720a27d66d97ffef96a514a0ae229007c1d9893b0b4cb8424a1256e3cae23ed3ee41bb8f6dd58115d50b8e24de0d351f89306b967002afe99

diff --git a/dev-python/tabulate/tabulate-0.8.1.ebuild 
b/dev-python/tabulate/tabulate-0.8.1.ebuild
new file mode 100644
index 000..a9180017960
--- /dev/null
+++ b/dev-python/tabulate/tabulate-0.8.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Pretty-print tabular data"
+HOMEPAGE="https://pypi.python.org/pypi/tabulate;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   test? ( virtual/python-funcsigs[${PYTHON_USEDEP}] )
+"
+
+# Missing something in tarball
+#
+# from common import assert_equal
+RESTRICT=test
+
+python_test() {
+   local testcase
+   for testcase in test/*py; do
+   ${PYTHON} ${testcase} || die
+   done
+}



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

2017-11-07 Thread Zac Medico
commit: a1026cccdaeede73cd5b2a562d13472a9aacfc17
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Nov  7 18:54:38 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Nov  7 19:03:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1026ccc

dev-python/cli_helpers: version bump to 1.0.0 (bug 636824)

Bug: https://bugs.gentoo.org/636824
Package-Manager: Portage-2.3.13, Repoman-2.3.3

 dev-python/cli_helpers/Manifest |  1 +
 dev-python/cli_helpers/cli_helpers-1.0.0.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-python/cli_helpers/Manifest b/dev-python/cli_helpers/Manifest
index 4fba07b2f8e..57ae74547d4 100644
--- a/dev-python/cli_helpers/Manifest
+++ b/dev-python/cli_helpers/Manifest
@@ -1 +1,2 @@
 DIST cli_helpers-0.2.0.tar.gz 33855 SHA256 
cbaeaf5da217d5cbc53d7750aaec75eab14410510c3c4afefc2d809015af4fab SHA512 
7dfa9791f472ccba3d49d0e87daf859257e74349cfbd8920a624f3e8d6905d8c8b7fa7be70eda97091963e548fa16dfbb1171e198cbbaa9d7810bff2321ebe54
 WHIRLPOOL 
8c73ff8f3fe4f248bd90319519928ecf76582a69d5f68b7cee4c15cf2deefbafac612107602af55d83362cb35bd18c4a015aca9045df367dd035ea92f1b1e0f5
+DIST cli_helpers-1.0.0.tar.gz 23269 SHA256 
eb584402ca198c4e442fd7e80d586ab361a25f613be8c7427c741d8a41c87b6e SHA512 
8137b081cfe3d226c63cc7c17165f884a42147ea184d11a1e0ee5805f2d22bce37ded580a0c15566bcb057df4c39f2685595d74b2e21d46932e2e635f77eec68
 WHIRLPOOL 
5d003965be32ea79172a665d8a11eed2887f2492d5407e6b8224519e13c02c59bdb9845f45e4eece5bbc1659ace8e982a1dc92bf65a054fc19381ed2ad6d1154

diff --git a/dev-python/cli_helpers/cli_helpers-1.0.0.ebuild 
b/dev-python/cli_helpers/cli_helpers-1.0.0.ebuild
new file mode 100644
index 000..08b9d0efe19
--- /dev/null
+++ b/dev-python/cli_helpers/cli_helpers-1.0.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
+inherit distutils-r1
+
+DESCRIPTION="Python helpers for common CLI tasks"
+
+HOMEPAGE="http://cli-helpers.rtfd.io/;
+SRC_URI="https://github.com/dbcli/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="
+   >=dev-python/tabulate-0.8.0[${PYTHON_USEDEP}]
+   >=dev-python/terminaltables-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/pygments-2.0[${PYTHON_USEDEP}]
+"



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

2017-11-07 Thread Michał Górny
commit: 213207bd5a089bfd21690435a5fdd8a336dda406
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov  7 18:50:48 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov  7 18:51:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=213207bd

dev-python/clang-python: Enable python3

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

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

diff --git a/dev-python/clang-python/clang-python-.ebuild 
b/dev-python/clang-python/clang-python-.ebuild
index dbdb74a06f0..9e661ff1a4b 100644
--- a/dev-python/clang-python/clang-python-.ebuild
+++ b/dev-python/clang-python/clang-python-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 inherit git-r3 python-r1
 
 DESCRIPTION="Python bindings for sys-devel/clang"



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

2017-11-07 Thread Pacho Ramos
commit: 212f0e390d3e57ad98a6a9417148537d94bfb55e
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov  7 18:48:17 2017 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov  7 18:48:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=212f0e39

media-libs/wxsvg: amd64 stable, bug #625188

Package-Manager: Portage-2.3.13, Repoman-2.3.4

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

diff --git a/media-libs/wxsvg/wxsvg-1.5.11.ebuild 
b/media-libs/wxsvg/wxsvg-1.5.11.ebuild
index 71422e8fa65..e0f16fc8b69 100644
--- a/media-libs/wxsvg/wxsvg-1.5.11.ebuild
+++ b/media-libs/wxsvg/wxsvg-1.5.11.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
 
 LICENSE="wxWinLL-3"
 SLOT="0/3" # based on SONAME of libwxsvg.so
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="static-libs libav"
 
 RDEPEND=">=dev-libs/expat-2:=



[gentoo-commits] proj/kde:master commit in: kde-apps/libkgapi/

2017-11-07 Thread Andreas Sturmlechner
commit: aa992b7b5878f6e7d25ba501b7fd88bdf13db0f6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Nov  7 18:43:58 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Nov  7 18:43:58 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=aa992b7b

kde-apps/libkgapi: Add missing DEPEND

Bug: https://bugs.gentoo.org/636808
Package-Manager: Portage-2.3.8, Repoman-2.3.4

 kde-apps/libkgapi/libkgapi-17.08.3.ebuild   | 2 +-
 kde-apps/libkgapi/libkgapi-17.08.49..ebuild | 2 +-
 kde-apps/libkgapi/libkgapi-.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-apps/libkgapi/libkgapi-17.08.3.ebuild 
b/kde-apps/libkgapi/libkgapi-17.08.3.ebuild
index e63b55ef58..8da8115320 100644
--- a/kde-apps/libkgapi/libkgapi-17.08.3.ebuild
+++ b/kde-apps/libkgapi/libkgapi-17.08.3.ebuild
@@ -22,7 +22,7 @@ COMMON_DEPEND="
$(add_kdeapps_dep kcontacts)
$(add_qt_dep qtgui)
$(add_qt_dep qtnetwork)
-   $(add_qt_dep qtwebengine)
+   $(add_qt_dep qtwebengine 'widgets')
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
 "

diff --git a/kde-apps/libkgapi/libkgapi-17.08.49..ebuild 
b/kde-apps/libkgapi/libkgapi-17.08.49..ebuild
index b4b047d62d..4c57058aa6 100644
--- a/kde-apps/libkgapi/libkgapi-17.08.49..ebuild
+++ b/kde-apps/libkgapi/libkgapi-17.08.49..ebuild
@@ -22,7 +22,7 @@ COMMON_DEPEND="
$(add_kdeapps_dep kcontacts)
$(add_qt_dep qtgui)
$(add_qt_dep qtnetwork)
-   $(add_qt_dep qtwebengine)
+   $(add_qt_dep qtwebengine 'widgets')
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
 "

diff --git a/kde-apps/libkgapi/libkgapi-.ebuild 
b/kde-apps/libkgapi/libkgapi-.ebuild
index b4b047d62d..4c57058aa6 100644
--- a/kde-apps/libkgapi/libkgapi-.ebuild
+++ b/kde-apps/libkgapi/libkgapi-.ebuild
@@ -22,7 +22,7 @@ COMMON_DEPEND="
$(add_kdeapps_dep kcontacts)
$(add_qt_dep qtgui)
$(add_qt_dep qtnetwork)
-   $(add_qt_dep qtwebengine)
+   $(add_qt_dep qtwebengine 'widgets')
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
 "



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

2017-11-07 Thread Andreas Sturmlechner
commit: c19765efb2f064240e8c13136f569624bfa7a8d5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Nov  7 18:43:34 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Nov  7 18:44:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c19765ef

kde-apps/libkgapi: Add missing DEPEND

Closes: https://bugs.gentoo.org/636808
Package-Manager: Portage-2.3.8, Repoman-2.3.4

 kde-apps/libkgapi/libkgapi-17.04.3.ebuild | 2 +-
 kde-apps/libkgapi/libkgapi-17.08.2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-apps/libkgapi/libkgapi-17.04.3.ebuild 
b/kde-apps/libkgapi/libkgapi-17.04.3.ebuild
index c398567f372..a4cbd7726b2 100644
--- a/kde-apps/libkgapi/libkgapi-17.04.3.ebuild
+++ b/kde-apps/libkgapi/libkgapi-17.04.3.ebuild
@@ -22,7 +22,7 @@ COMMON_DEPEND="
$(add_kdeapps_dep kcontacts)
$(add_qt_dep qtgui)
$(add_qt_dep qtnetwork)
-   $(add_qt_dep qtwebengine)
+   $(add_qt_dep qtwebengine 'widgets')
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
 "

diff --git a/kde-apps/libkgapi/libkgapi-17.08.2.ebuild 
b/kde-apps/libkgapi/libkgapi-17.08.2.ebuild
index e63b55ef58b..8da81153202 100644
--- a/kde-apps/libkgapi/libkgapi-17.08.2.ebuild
+++ b/kde-apps/libkgapi/libkgapi-17.08.2.ebuild
@@ -22,7 +22,7 @@ COMMON_DEPEND="
$(add_kdeapps_dep kcontacts)
$(add_qt_dep qtgui)
$(add_qt_dep qtnetwork)
-   $(add_qt_dep qtwebengine)
+   $(add_qt_dep qtwebengine 'widgets')
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
 "



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

2017-11-07 Thread Patrick McLean
commit: 9cd0550422415ec40e4bf7c04acca139e9dee75c
Author: Patrick McLean  gentoo  org>
AuthorDate: Tue Nov  7 18:42:10 2017 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Nov  7 18:42:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cd05504

net-misc/openssh: Restore 7.6_p1-r0 ebuild

Some users aren't affected by bug #634594, rather than forcing them
to downgrade or fork, we should keep the ebuild with hpn around.

Bug: https://bugs.gentoo.org/634594
Package-Manager: Portage-2.3.13, Repoman-2.3.4

 net-misc/openssh/Manifest  |   1 +
 net-misc/openssh/openssh-7.6_p1.ebuild | 336 +
 2 files changed, 337 insertions(+)

diff --git a/net-misc/openssh/Manifest b/net-misc/openssh/Manifest
index df01594ce28..c9efd08b421 100644
--- a/net-misc/openssh/Manifest
+++ b/net-misc/openssh/Manifest
@@ -5,6 +5,7 @@ DIST openssh-7.5p1-hpnssh14v12.tar.xz 23068 SHA256 
8a1ed99c121a4ad21d7a26cd32627
 DIST openssh-7.5p1.tar.gz 1510857 SHA256 
9846e3c5fab9f0547400b4d2c017992f914222b3fd1f8eee6c7dc6bc5e59f9f0 SHA512 
58c542e8a110fb4316a68db94abb663fa1c810becd0638d45281df8aeca62c1f705090437a80e788e6c29121769b72a505feced537d3118c933fde01b5285c81
 WHIRLPOOL 
1a42c68d8e350bc4790dd4c1a98dd6571bfa353ad6871b1462c53b6412f752719daabd1a13bb4434d294de966a00428ac66334bab45f371420029b5e34a6914c
 DIST openssh-7.6_p1-sctp.patch.xz 6996 SHA256 
ca61f0b015d2f7131620a2a4901800b70026755a52a7b882d437cd9813c2652d SHA512 
8445a9a8ae8e8baa67c8f386117877ba3f39f33c9cdaff341c8d5fb4ce9dfe22f26d5aedc2b0d4aab67864994ec5a6a487d18b728bd5d5c6efe14175eb9c8151
 WHIRLPOOL 
27125d4a7d45f0bc67f424598542cf97e123824bce7911732891531b6a0aa37b7598f636e1643a6114626c2ccc622a50928ffcdb4357c7dc3d9c3d8c161d9626
 DIST openssh-7.6p1+x509-11.0.diff.gz 440219 SHA256 
bc4175ed8efce14579f10e242b25a23c959b1ff0e63b7c15493503eb654a960e SHA512 
add86ecdaa696d997f869e6878aaaef285590cc5eddf301be651944bbc6c80af6a891bad6f6aaa4b6e9919ad865a27dc6f45a6e0b923ca52c04f06523fa3197a
 WHIRLPOOL 
1b324f72a6cb0c895b3994d59f3505ff2a4a0529829cea07344a33a68ee4d43c22ba534a55454792618cd9f766cd40fa5af73cc054ee3a08bccdb6e8d0073b29
+DIST openssh-7.6p1-hpnssh14v12.tar.xz 15392 SHA256 
4ccb05096556233d81b68b330463ef2bd84384734ff3a8693ad28ac2d4681227 SHA512 
0e2c62cdec360090b359edfd5bbe894fb25d22e387677e8a5d6cf6a0807b0572fda30b90c30390d5b68e359e9958cb1c65abae4afd9af5892c3f64f6f8001956
 WHIRLPOOL 
c7bdc79d849bacaf1a6fb262a11b3b6cf905e95c11e9818c4434559fcea3bc5273496bb8d29e3a5edb116420b4dabc3ef17789e66864c488006c660331c18bc4
 DIST openssh-7.6p1.tar.gz 1489788 SHA256 
a323caeeddfe145baaa0db16e98d784b1fbc7dd436a6bf1f479dfd5cd1d21723 SHA512 
de17fdcb8239401f76740c8d689a8761802f6df94e68d953f3c70b9f4f8bdb403617c48c1d01cc8c368d88e9d50aee540bf03d5a36687dfb39dfd28d73029d72
 WHIRLPOOL 
537b94555c7b36b2f7ef2ecd89e6671028f7cff9be758e631690ecd068510d59d6518077bf951e779e3c8a39706adb1682c6d5305edd6fc611ec19ce7953c751
 DIST openssh-lpk-7.5p1-0.3.14.patch.xz 17040 SHA256 
11060be996b291b8d78de698c68a92428430e4ff440553f5045c6de5c0e1dab3 SHA512 
9ce5d7e5d831c972f0f866b686bf93a048a03979ab38627973f5491eeeaa45f9faab0520b3a7ed90a13a67213fdc9cd4cf11e423acad441ea91b71037c8b435b
 WHIRLPOOL 
58526777475786bb5efa193f3a3ec0500c4d48b18fef67698f8b1999cb07f04fbca7b7d3ece469f3a1e1ceca5152cdd08d3dbe7cfa4e7494740dc2c233101b93
 DIST openssh-lpk-7.6p1-0.3.14.patch.xz 17044 SHA256 
fd877cf084d4eb682c503b6e5f363b0564da2b50561367558a50ab239adf4017 SHA512 
e9a2b18fd6a58354198b6e48199059d055451a5f09c99bf7293d0d54137a59c581a9cb3bd906f31589e03d8450fb017b9015e18c67b7b6ae840e336039436974
 WHIRLPOOL 
8410dc9dad24d8b3065ba85e7a7a66322b4d37eac0ef68e72143afa3aba2706e91c324798236b9d3e320e6903d27a7e426621bde92ded89ce26a16535e8c3d3c

diff --git a/net-misc/openssh/openssh-7.6_p1.ebuild 
b/net-misc/openssh/openssh-7.6_p1.ebuild
new file mode 100644
index 000..a932f59b746
--- /dev/null
+++ b/net-misc/openssh/openssh-7.6_p1.ebuild
@@ -0,0 +1,336 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit user flag-o-matic multilib autotools pam systemd versionator
+
+# Make it more portable between straight releases
+# and _p? releases.
+PARCH=${P/_}
+
+HPN_PATCH="${PARCH}-hpnssh14v12.tar.xz"
+SCTP_PATCH="${PN}-7.6_p1-sctp.patch.xz"
+LDAP_PATCH="${PN}-lpk-7.6p1-0.3.14.patch.xz"
+X509_VER="11.0" X509_PATCH="${PN}-${PV/_}+x509-${X509_VER}.diff.gz"
+
+DESCRIPTION="Port of OpenBSD's free SSH release"
+HOMEPAGE="http://www.openssh.org/;
+SRC_URI="mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
+   ${SCTP_PATCH:+https://dev.gentoo.org/~polynomial-c/${SCTP_PATCH}}
+   ${HPN_PATCH:+hpn? ( mirror://gentoo/${HPN_PATCH} )}
+   ${LDAP_PATCH:+ldap? ( 
https://dev.gentoo.org/~polynomial-c/${LDAP_PATCH} )}
+   ${X509_PATCH:+X509? ( 
http://roumenpetrov.info/openssh/x509-${X509_VER}/${X509_PATCH} )}
+   "
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 

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

2017-11-07 Thread Matt Turner
commit: 9961985b859e3e4f59c9a8f21a1f1e9a64d28f6d
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Nov  7 18:10:23 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Nov  7 18:24:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9961985b

media-libs/mesa: Version bump to 17.3.0_rc3

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 media-libs/mesa/Manifest   |   1 +
 media-libs/mesa/mesa-17.3.0_rc3.ebuild | 585 +
 2 files changed, 586 insertions(+)

diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest
index ff8a5fbd199..23d2500718e 100644
--- a/media-libs/mesa/Manifest
+++ b/media-libs/mesa/Manifest
@@ -10,3 +10,4 @@ DIST mesa-17.2.2.tar.xz 10359156 SHA256 
cf522244d6a5a1ecde3fc00e7c96935253fe22f8
 DIST mesa-17.2.3.tar.xz 10344180 SHA256 
a0b0ec8f7b24dd044d7ab30a8c7e6d3767521e245f88d4ed5dd93315dc56f837 SHA512 
749a0a46b772974633e405804ace7f509afb79f47811dbbdd390333721d744f2ac64f985ff1fd6c5aa3019b700be70bc1f75f60745ed9f4c5b08a9a8f77dfc76
 WHIRLPOOL 
333bdb9dd15726a4a19fa7a87d2044aba6ebaea2eb83dd436f916020221a8bc46d667e8710a701c52930217292ecdfd468b654a7846357aa8881356987f394c0
 DIST mesa-17.2.4.tar.xz 10381984 SHA256 
5ba408fecd6e1132e5490eec1a2f04466214e4c65c8b89b331be844768c2e550 SHA512 
665b63aab6af3f8f263f182d85d9ad71db7a23bcbaf67d62fe53c258cb0f600266ac82e72d681ec20cf7c66b47d4076aad5c3f553519f19110ee577da2707085
 WHIRLPOOL 
29750c50a496cb27e0b4466bf0d1496434330a96259616dd7c368adc3d9478aa6ba1facf11ec4ff231a244f890781c12637327b1675c423786693c40f787945d
 DIST mesa-17.3.0-rc2.tar.xz 10658696 SHA256 
13b2c085a54836465a3b6814ad4bc2dae0a502f43405e75ced67789d5afc18cd SHA512 
749cca3e0875dbff7b6fab4d646974ecbcc7659ec82ad025bc386372d6e0e050d84d5e05fb68c5099e685557d85daf55c6a5db7bd89a7323778ae7e87e01215e
 WHIRLPOOL 
4007e6641de55145b9bf8bf7aa567c284d3a4b29ea6b83fb5ba3324abf757cf72cf1f1bc0cd3011e58b3d0c6cc6fa7f7c03b1affb7f0ba7c4a5e7ade398bf2f3
+DIST mesa-17.3.0-rc3.tar.xz 10664384 SHA256 
1f3677429018f6ef4167b31db9eef558827a649239aa685f54c1a400ff5462d9 SHA512 
403da79ac87325f2f0962e9be406edf4d009b6f5d479c2943be5bc1a26ad201d96072461a0d041b5a59abe327829eeba0dfb44abce217074079c47811729b058
 WHIRLPOOL 
91a5f65bc1dc9dc27bcd8492d82c80d2827d2408030890fdcaa653993d9a1deec983b00cb48c0675f3234d36512396c03cc7659bd30cadd6e536f5bef90d65d9

diff --git a/media-libs/mesa/mesa-17.3.0_rc3.ebuild 
b/media-libs/mesa/mesa-17.3.0_rc3.ebuild
new file mode 100644
index 000..03a35c8a2c1
--- /dev/null
+++ b/media-libs/mesa/mesa-17.3.0_rc3.ebuild
@@ -0,0 +1,585 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_REPO_URI="https://anongit.freedesktop.org/git/mesa/mesa.git;
+
+if [[ ${PV} =  ]]; then
+   GIT_ECLASS="git-r3"
+   EXPERIMENTAL="true"
+fi
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools llvm multilib-minimal python-any-r1 pax-utils ${GIT_ECLASS}
+
+OPENGL_DIR="xorg-x11"
+
+MY_P="${P/_/-}"
+
+DESCRIPTION="OpenGL-like graphic library for Linux"
+HOMEPAGE="https://www.mesa3d.org/ https://mesa.freedesktop.org/;
+
+if [[ $PV ==  ]]; then
+   SRC_URI=""
+else
+   SRC_URI="https://mesa.freedesktop.org/archive/${MY_P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~sparc-solaris ~x64-solaris ~x86-solaris"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+RESTRICT="!bindist? ( bindist )"
+
+RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
+VIDEO_CARDS="${RADEON_CARDS} freedreno i915 i965 imx intel nouveau vc4 virgl 
vivante vmware"
+for card in ${VIDEO_CARDS}; do
+   IUSE_VIDEO_CARDS+=" video_cards_${card}"
+done
+
+IUSE="${IUSE_VIDEO_CARDS}
+   bindist +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 gles2 unwind
+   +llvm +nptl opencl osmesa pax_kernel openmax pic selinux vaapi valgrind
+   vdpau vulkan wayland xvmc xa"
+
+REQUIRED_USE="
+   d3d9?   ( dri3 gallium )
+   llvm?   ( gallium )
+   opencl? ( gallium llvm )
+   openmax? ( gallium )
+   gles1?  ( egl )
+   gles2?  ( egl )
+   vaapi? ( gallium )
+   vdpau? ( gallium )
+   vulkan? ( || ( video_cards_i965 video_cards_radeonsi )
+ video_cards_radeonsi? ( llvm ) )
+   wayland? ( egl gbm )
+   xa?  ( gallium )
+   video_cards_freedreno?  ( gallium )
+   video_cards_intel?  ( classic )
+   video_cards_i915?   ( || ( classic gallium ) )
+   video_cards_i965?   ( classic )
+   video_cards_imx?( gallium video_cards_vivante )
+   video_cards_nouveau? ( || ( classic gallium ) )
+   video_cards_radeon? ( || ( classic gallium )
+ gallium? ( x86? ( llvm ) 
amd64? ( llvm ) ) )
+   video_cards_r100?   ( classic )
+   video_cards_r200?   ( classic )
+   video_cards_r300?   ( gallium x86? ( llvm ) amd64? ( llvm 

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

2017-11-07 Thread Thomas Deutschmann
commit: 1d30fedeae7373d134e46dd4c6eea0d026c2ea9a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Nov  7 18:20:20 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Nov  7 18:22:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d30fede

media-libs/wxsvg: x86 stable (bug #625188)

Package-Manager: Portage-2.3.13, Repoman-2.3.4

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

diff --git a/media-libs/wxsvg/wxsvg-1.5.11.ebuild 
b/media-libs/wxsvg/wxsvg-1.5.11.ebuild
index c9910271cb8..71422e8fa65 100644
--- a/media-libs/wxsvg/wxsvg-1.5.11.ebuild
+++ b/media-libs/wxsvg/wxsvg-1.5.11.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
 
 LICENSE="wxWinLL-3"
 SLOT="0/3" # based on SONAME of libwxsvg.so
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="static-libs libav"
 
 RDEPEND=">=dev-libs/expat-2:=



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

2017-11-07 Thread Thomas Deutschmann
commit: d786b1455c6acd5dc00927e123f1489e6aedd79b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Nov  7 18:14:10 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Nov  7 18:22:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d786b145

net-libs/loudmouth: x86 stable (bug #619488)

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild 
b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
index 42a2e52e051..321edd00966 100644
--- a/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ia64 ~ppc ppc64 sparc ~x86 ~ppc-macos"
+KEYWORDS="alpha amd64 ~arm ia64 ~ppc ppc64 sparc x86 ~ppc-macos"
 
 IUSE="asyncns ssl openssl static-libs test"
 



  1   2   3   >