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

2016-05-06 Thread William Hubbs
commit: 9ce68d620a137a70349b2320dcea36597501adca
Author: William Hubbs  gentoo  org>
AuthorDate: Sat May  7 04:58:52 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sat May  7 05:00:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ce68d62

net-misc/dhcpcd: version bump

Package-Manager: portage-2.2.26

 net-misc/dhcpcd/Manifest |   1 +
 net-misc/dhcpcd/dhcpcd-6.10.3.ebuild | 115 +++
 2 files changed, 116 insertions(+)

diff --git a/net-misc/dhcpcd/Manifest b/net-misc/dhcpcd/Manifest
index 331b373..df54eae 100644
--- a/net-misc/dhcpcd/Manifest
+++ b/net-misc/dhcpcd/Manifest
@@ -1,3 +1,4 @@
 DIST dhcpcd-6.10.0.tar.xz 179804 SHA256 
ab56af9b2e86913c55a965cb0f835e87749df78318564acf90d5d698f413ad35 SHA512 
f31c95beaa7668deb03e3d657660cd32434dbb0ef440e9bc568bb4a672a510bffb5e79e15d139b40fa7730e9a642c3c2167aaa1389fb8c449bfbcd0039ed30f0
 WHIRLPOOL 
70a18c39f317cb2cf51ec0a44d79d7fba99e381c47ecd2753bef41b68994193e9c846789aa2c1725a6261e82324434bee3231b056b93a8af3e10e9d26815a5b0
 DIST dhcpcd-6.10.1.tar.xz 180112 SHA256 
284abf8c3be0580bbac5eaca95359346ab0d78d4072317b6ce87cc68f2e8ae7b SHA512 
f323c155cff47f21dde181c216408b79f10e6ed923aa3d1f3482feff47a1e88e02193ec82f831da4ef63d3703ca1837715c36a47cf3f5d09f117f6eb53bfcf67
 WHIRLPOOL 
805e8a1b4dad400825197dae7918a2172093d152986d5d97f4d1993f2c27cf3fbe097a5dc4f7a5292e98676b5d7fad6079ed64e4bffabeb7ccf9d91f4db80de9
 DIST dhcpcd-6.10.2.tar.xz 184512 SHA256 
64a0ff84ba7f1e820b2ccfe08980b3b73e96bb072274b21de523f1da83a94e09 SHA512 
66e472b32373328fb18723d7efa9f200befb35762449a26a81d4c137eb17aae1d86bce59cc057dfb328e83061d7747a8c6facac2f0304750acfb4c634e896a65
 WHIRLPOOL 
e92e64b36c26d651b8cd9ddc4c6902e351afe28c71a16a3f6bd069d1414eebf85791abb8eee3a6272134e5fec73f0ac4c0225c8b20ca2be07f2ac210b134bf7f
+DIST dhcpcd-6.10.3.tar.xz 185520 SHA256 
b586c1f770373f83e3f574c683c66bea217a6d6c89b8e91dbdb6f75aa654c8d5 SHA512 
6ebcb720909f4d167d064d5e8ed961c331470762e89f4e5c145f048424ef170ffc218e9a9dcc94e3a8dce6ccc147710ec2ef17627a708918203858f3dcdca43d
 WHIRLPOOL 
4c9844de4b6e69a761c7a5a9c34da7f97e906a379b837ccfe647f1fab5e648193298744a8eded6f46379c056cb8fcb8148af1f0e5e95d5726529a3cc2686b27f

diff --git a/net-misc/dhcpcd/dhcpcd-6.10.3.ebuild 
b/net-misc/dhcpcd/dhcpcd-6.10.3.ebuild
new file mode 100644
index 000..0b616f0
--- /dev/null
+++ b/net-misc/dhcpcd/dhcpcd-6.10.3.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+if [[ ${PV} == "" ]]; then
+   FOSSIL_URI="http://roy.marples.name/projects/dhcpcd;
+else
+   MY_P="${P/_alpha/-alpha}"
+   MY_P="${MY_P/_beta/-beta}"
+   MY_P="${MY_P/_rc/-rc}"
+   SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+inherit eutils systemd toolchain-funcs
+
+DESCRIPTION="A fully featured, yet light weight RFC2131 compliant DHCP client"
+HOMEPAGE="http://roy.marples.name/projects/dhcpcd/;
+LICENSE="BSD-2"
+SLOT="0"
+IUSE="elibc_glibc +embedded ipv6 kernel_linux +udev"
+
+COMMON_DEPEND="udev? ( virtual/udev )"
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}"
+
+if [[ ${PV} == "" ]]; then
+   DEPEND+=" dev-vcs/fossil"
+
+   src_unpack()
+   {
+   local distdir=${PORTAGE_ACTUAL_DISTDIR:-${DISTDIR}}
+   local repo=${distdir}/fossil/${PN}.fossil
+
+   addwrite "${distdir}"
+
+   if [[ -e "${repo}" ]]; then
+   fossil pull "${FOSSIL_URI}" -R "${repo}" || die
+   else
+   mkdir -p "${distdir}/fossil" || die
+   fossil clone "${FOSSIL_URI}" "${repo}" || die
+   fi
+
+   mkdir -p "${S}" || die
+   cd "${S}" || die
+   fossil open "${repo}" || die
+   }
+fi
+
+src_configure()
+{
+   local dev hooks rundir
+   use udev || dev="--without-dev --without-udev"
+   hooks="--with-hook=ntp.conf"
+   use elibc_glibc && hooks="${hooks} --with-hook=yp.conf"
+   use kernel_linux && rundir="--rundir=${EPREFIX}/run"
+   econf \
+   --prefix="${EPREFIX}" \
+   --libexecdir="${EPREFIX}/lib/dhcpcd" \
+   --dbdir="${EPREFIX}/var/lib/dhcpcd" \
+   --localstatedir="${EPREFIX}/var" \
+   ${rundir} \
+   $(use_enable embedded) \
+   $(use_enable ipv6) \
+   ${dev} \
+   CC="$(tc-getCC)" \
+   ${hooks}
+}
+
+src_install()
+{
+   default
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   systemd_dounit "${FILESDIR}"/${PN}.service
+}
+
+pkg_postinst()
+{
+   # Upgrade the duid file to the new format if needed
+   

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

2016-05-06 Thread Hans de Graaff
commit: 488d86cbb7b33bb68ace1df18aeb8c2425430113
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat May  7 04:55:06 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat May  7 04:55:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=488d86cb

dev-ruby/ruby-yadis: add ruby23

Package-Manager: portage-2.2.26

 dev-ruby/ruby-yadis/ruby-yadis-0.3.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/ruby-yadis/ruby-yadis-0.3.4-r2.ebuild 
b/dev-ruby/ruby-yadis/ruby-yadis-0.3.4-r2.ebuild
index a93903d..dd17012 100644
--- a/dev-ruby/ruby-yadis/ruby-yadis-0.3.4-r2.ebuild
+++ b/dev-ruby/ruby-yadis/ruby-yadis-0.3.4-r2.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_TASK_TEST=""



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

2016-05-06 Thread Hans de Graaff
commit: 8cce838d80cae9b8d5c1f1be057931433891503e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat May  7 04:41:04 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat May  7 04:41:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cce838d

dev-ruby/hiera: add 3.1.2

Package-Manager: portage-2.2.26

 dev-ruby/hiera/Manifest   |  1 +
 dev-ruby/hiera/hiera-3.1.2.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/dev-ruby/hiera/Manifest b/dev-ruby/hiera/Manifest
index a2454c4..434efcd 100644
--- a/dev-ruby/hiera/Manifest
+++ b/dev-ruby/hiera/Manifest
@@ -5,3 +5,4 @@ DIST hiera-3.0.5.gem 36352 SHA256 
197fc593eff00b84c27ae115ca6d4768ec7fc0004d57ff
 DIST hiera-3.0.6.gem 36352 SHA256 
ce02aa03416d13aadbd36f87fc8bdfb7271313e7bbfa325ee7210f33d956664f SHA512 
ce543973305aeccab29f1cf17fad54edbd5a8d1d201ca687d31bd4d6ee0f13f4250c7f1d87154bcfc911d8e13ea703aa7140e319d594d3709145b596643d488f
 WHIRLPOOL 
d0b60718b5c30f869bc8bc97693974b8675aa26ba5ac61a144ec08f0d9356491b72bbf251ebf7f6dc32fe52264b84ae811d97a599cafa7579399c0de99eae3c1
 DIST hiera-3.1.0.gem 37376 SHA256 
dfb9408e5e3c492e6bed72324ed5b6367667f7520571cdc60710737f4f9a1c17 SHA512 
a42820e0a0f3b14443cfa09bd773bc5f1517ca1dea511e3ec2a1e51f999511a73f92baea055a7725b52a416c4eb85276bcd0b8676183011789d7f00e251a56ec
 WHIRLPOOL 
1ecabd43da78b64b23deb1d76b84aa981d2b00311f2373b6c3e654b6f920d880a5876c4e08492ff1b3d4a400a6f9714005bf19edd2a8c3016fd3a300b9084b72
 DIST hiera-3.1.1.gem 39424 SHA256 
03ca00c411506ad8c24f86f1d491d86731b8e5c1aea95c036a6793966ffd9790 SHA512 
0684e0d5959881cc5363a1509e18cfd8c312814be2df9c13eb0c09eb4540e723dc6b6df0db8c7954bbb2040909dd549035e9c204adc071fc42ab5d61f8639b2f
 WHIRLPOOL 
d38af352c32c1bac574bc840630e48094973227a8ec51d79a98a2e4809a0a52ab25b9e5d827c08d905c6478645991c73cc6c1f2b8796b4341e5d3962e5ba
+DIST hiera-3.1.2.gem 39424 SHA256 
5178bc9428d7cae2415c4baebebc3924fda5bba98d0f7683198b65dd91a8c1a7 SHA512 
315bba226095d44611a775d61efd4764fe8911af89648ed072ed6a0b5e35c5420279ccdd8d4ec561b19726af79fb6aee7136fee8b3f0ffed6741d0db620c673a
 WHIRLPOOL 
689869b8cf209fbe87f7f50fe440aef97a4e1c1b318869dfc93e1a6340ccd034e047e0abd6f776b185367a406aac0eba3bd7a0955e83c8a536200292a4256d44

diff --git a/dev-ruby/hiera/hiera-3.1.2.ebuild 
b/dev-ruby/hiera/hiera-3.1.2.ebuild
new file mode 100644
index 000..2cc9248
--- /dev/null
+++ b/dev-ruby/hiera/hiera-3.1.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A simple pluggable Hierarchical Database"
+HOMEPAGE="http://projects.puppetlabs.com/;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+KEYWORDS="~amd64 ~hppa ~x86"
+
+ruby_add_bdepend "test? ( dev-ruby/mocha )"
+
+ruby_add_rdepend "dev-ruby/json
+   dev-ruby/deep_merge"
+
+all_ruby_prepare() {
+   # Our json package is either the compiled version or the pure
+   # version. Fix gemspec accordingly.
+   sed -i -e 's/json_pure/json/' ../metadata || die
+}



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

2016-05-06 Thread Hans de Graaff
commit: 936042bac0e488f23853a2aba8220d0f263be667
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat May  7 04:53:31 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat May  7 04:53:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=936042ba

dev-ruby/ruby-yadis: drop ruby19

Package-Manager: portage-2.2.26

 dev-ruby/ruby-yadis/ruby-yadis-0.3.4-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/ruby-yadis/ruby-yadis-0.3.4-r2.ebuild 
b/dev-ruby/ruby-yadis/ruby-yadis-0.3.4-r2.ebuild
index 9b1a67f..a93903d 100644
--- a/dev-ruby/ruby-yadis/ruby-yadis-0.3.4-r2.ebuild
+++ b/dev-ruby/ruby-yadis/ruby-yadis-0.3.4-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_TASK_TEST=""



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

2016-05-06 Thread Ian Delaney
commit: a304eacf6e52fb889fbf7f940af18138e68f70c6
Author: Ian Delaney  gentoo  org>
AuthorDate: Sat May  7 03:50:34 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Sat May  7 04:31:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a304eacf

dev-python/ipy: add py3.5 support to vn. 0.83

Package-Manager: portage-2.2.28

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

diff --git a/dev-python/ipy/ipy-0.83.ebuild b/dev-python/ipy/ipy-0.83.ebuild
index b5c1f08..bef4ee9 100644
--- a/dev-python/ipy/ipy-0.83.ebuild
+++ b/dev-python/ipy/ipy-0.83.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI="5"
 
-PYTHON_COMPAT=( python2_7 python3_{3,4} pypy )
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy )
 
 inherit distutils-r1
 



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

2016-05-06 Thread Ian Delaney
commit: 94aae1d07f5d7b747927bff4b841a8f62f8a866c
Author: Ian Delaney  gentoo  org>
AuthorDate: Sat May  7 04:12:43 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Sat May  7 04:31:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94aae1d0

dev-python/socketio-client: add py3.5 support

Package-Manager: portage-2.2.28

 dev-python/socketio-client/socketio-client-0.6.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/socketio-client/socketio-client-0.6.5.ebuild 
b/dev-python/socketio-client/socketio-client-0.6.5.ebuild
index 788c192..e223b49 100644
--- a/dev-python/socketio-client/socketio-client-0.6.5.ebuild
+++ b/dev-python/socketio-client/socketio-client-0.6.5.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_{3,4}} )
+PYTHON_COMPAT=( python{2_7,3_{3,4,5}} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: www-client/ripe-atlas-cousteau/

2016-05-06 Thread Ian Delaney
commit: d103a76e21c143a79ce50ee8be741fb4ecc0b180
Author: Ian Delaney  gentoo  org>
AuthorDate: Sat May  7 04:28:39 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Sat May  7 04:31:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d103a76e

www-client/ripe-atlas-cousteau: add py3.5 support to vn. 1.2

Package-Manager: portage-2.2.28

 www-client/ripe-atlas-cousteau/Manifest   | 4 
 www-client/ripe-atlas-cousteau/ripe-atlas-cousteau-1.2.ebuild | 4 ++--
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/www-client/ripe-atlas-cousteau/Manifest 
b/www-client/ripe-atlas-cousteau/Manifest
index 3e6ecb2..2a8dce4 100644
--- a/www-client/ripe-atlas-cousteau/Manifest
+++ b/www-client/ripe-atlas-cousteau/Manifest
@@ -1,7 +1,3 @@
 DIST ripe.atlas.cousteau-1.0.6.tar.gz 45467 SHA256 
1407b003a03f359739d35010812af2841bc9df2784cd2078e55ac34d0a858ad6 SHA512 
212c9890af269f945d01a1b587ba87583cbde87ce0a64b09e053644f9fa4cd01414a1092a39d0d21d68b3bd5977e0159c6a32196aaadbd78940fd4675b791daf
 WHIRLPOOL 
b65e12a89a3cfee2ca5da4311392a1ecca4fc11c4b38ca911a526cc925491b799d1504581a955dd5bd5c1feb3e71d5a73c06e5b07c26a8fbfdb28bcc748f6a1d
 DIST ripe.atlas.cousteau-1.0.7.tar.gz 45757 SHA256 
4f99abf9e985109174bc5dae38e958dfc85dc41a872bbf916763a1f53a9e4b6b SHA512 
921526beef43b666f6c64480e14f3d9d73e980ea6696964791c8f663c218f2c1c5658f2d9dc9ef4e9d40687b244d98b7775b3eeda74bd4886842f18e073765de
 WHIRLPOOL 
1916a0af20a60b1435bb3e02d7791237c4913453d5180e8f004572e4d5c7dcecfe46afd11b11c46a64162aa146aa492f9df2d002d51567a89b9248fb5038a960
 DIST ripe.atlas.cousteau-1.2.tar.gz 47015 SHA256 
0b4ed516478fb6a9e2268dc68eca86722961ec4209f9e54fe37564765c56025e SHA512 
06df80499aa3696450396b1dec66360b3996d56c98dbec52d9192c8e2442a63f3cc334a815a4615d5f9d87fc3f0facb26875f2ad3a5cdbd5047aaad506974c8e
 WHIRLPOOL 
66e3504747d4fd87313ba4c74b6e25a2481f60a37573676e6f083fa2259a85c62fb15bdb02848ea60a21d0918268d8f6b13dab6575c9ee29d23f0d8d9764322c
-EBUILD ripe-atlas-cousteau-1.0.6.ebuild 937 SHA256 
b8b08a040230a6c3bc45a388c71c0dde74f47894bccfc656066dc0e80c264ca7 SHA512 
fefda75c507fe675e44784ed6a0c2045b057288bd68a4ff36a449c7a207bc9c04d8add2112748ff55d4e77c5f8d54c417017fc74958b7c95f5d3d371e670df62
 WHIRLPOOL 
27ba1bb1b85f7f3b146f5d02924e7158c371500c4766f348232faab031a7a776682227ea4757e9877ef49aa517e15ee1d57e8d9d243c653ec868543f91312b38
-EBUILD ripe-atlas-cousteau-1.0.7.ebuild 937 SHA256 
b8b08a040230a6c3bc45a388c71c0dde74f47894bccfc656066dc0e80c264ca7 SHA512 
fefda75c507fe675e44784ed6a0c2045b057288bd68a4ff36a449c7a207bc9c04d8add2112748ff55d4e77c5f8d54c417017fc74958b7c95f5d3d371e670df62
 WHIRLPOOL 
27ba1bb1b85f7f3b146f5d02924e7158c371500c4766f348232faab031a7a776682227ea4757e9877ef49aa517e15ee1d57e8d9d243c653ec868543f91312b38
-EBUILD ripe-atlas-cousteau-1.2.ebuild 967 SHA256 
3370c064caa6c8a65a912d0e89b001fe087f9fcc7d69d0644bcadfd9e2ad04af SHA512 
e0ffa7f4efa8142e2cc3c78dfe01d3adf51e86040a7b72040ba2caf39ad0b67e70ecc07c450062c4342e387af743e123393646cbacd30d8b57460f5fc5ada89e
 WHIRLPOOL 
bf360fed039845474f6394ba516541f49928a1948cf66cd4acf9a5191cbe3d43abc6e3a69c71c6b8bded57f814f23e4b3ebb338b93a56e2265ada6b097c8799e
-MISC metadata.xml 526 SHA256 
d9f69de4de8675031e775c6694dbd252be3f0b6b4da412c5a0f5a8a55b1f6bbd SHA512 
16280b20671035afbaa5f046b95bd3a2c6942c0d3e728fce4dfe226b62242810cf5b97fefc66c04ea54eb51e027645066c4d8250d83cd5b673a247d57bc41c08
 WHIRLPOOL 
ffc308f5669e46218e13de8a307f37133620df16dbbd62e4b36ea708f02ceca117d008312a794ad539032369d102b84e9119fdc9d26ed28a7cefc4e066f5b5b1

diff --git a/www-client/ripe-atlas-cousteau/ripe-atlas-cousteau-1.2.ebuild 
b/www-client/ripe-atlas-cousteau/ripe-atlas-cousteau-1.2.ebuild
index f9de2ae..6652ad7 100644
--- a/www-client/ripe-atlas-cousteau/ripe-atlas-cousteau-1.2.ebuild
+++ b/www-client/ripe-atlas-cousteau/ripe-atlas-cousteau-1.2.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_4 )
+PYTHON_COMPAT=( python2_7 python{3_4,3_5} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: net-libs/ripe-atlas-sagan/

2016-05-06 Thread Ian Delaney
commit: a62750b2d5ca924f99fc88f2e85ac42abd2a1183
Author: Ian Delaney  gentoo  org>
AuthorDate: Sat May  7 04:08:32 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Sat May  7 04:31:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a62750b2

net-libs/ripe-atlas-sagan: bump all to EAPI6, add py3.5 support

Package-Manager: portage-2.2.28

 net-libs/ripe-atlas-sagan/ripe-atlas-sagan-1.1.10.ebuild | 4 ++--
 net-libs/ripe-atlas-sagan/ripe-atlas-sagan-1.1.8.ebuild  | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/net-libs/ripe-atlas-sagan/ripe-atlas-sagan-1.1.10.ebuild 
b/net-libs/ripe-atlas-sagan/ripe-atlas-sagan-1.1.10.ebuild
index 3691913..a3f0b78 100644
--- a/net-libs/ripe-atlas-sagan/ripe-atlas-sagan-1.1.10.ebuild
+++ b/net-libs/ripe-atlas-sagan/ripe-atlas-sagan-1.1.10.ebuild
@@ -2,9 +2,9 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_4 )
+PYTHON_COMPAT=( python2_7 python{3_4,3_5} )
 
 inherit distutils-r1
 

diff --git a/net-libs/ripe-atlas-sagan/ripe-atlas-sagan-1.1.8.ebuild 
b/net-libs/ripe-atlas-sagan/ripe-atlas-sagan-1.1.8.ebuild
index 8a26303..f586ce6 100644
--- a/net-libs/ripe-atlas-sagan/ripe-atlas-sagan-1.1.8.ebuild
+++ b/net-libs/ripe-atlas-sagan/ripe-atlas-sagan-1.1.8.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_4 )
+PYTHON_COMPAT=( python2_7 python{3_4,3_5} )
 
 inherit distutils-r1
 



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

2016-05-06 Thread William Hubbs
commit: d7087fa26676b5230a2fbf6ac33d3fa91e4c7416
Author: William Hubbs  gentoo  org>
AuthorDate: Sat May  7 04:24:18 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sat May  7 04:24:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7087fa2

net-misc/openconnect: Update service scripts to use /sbin/openrc-run

Package-Manager: portage-2.2.26

 net-misc/openconnect/files/openconnect.init.in| 2 +-
 net-misc/openconnect/files/openconnect.init.in-r2 | 2 +-
 net-misc/openconnect/files/openconnect.init.in-r3 | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-misc/openconnect/files/openconnect.init.in 
b/net-misc/openconnect/files/openconnect.init.in
index 939d02f..d88b2a3 100644
--- a/net-misc/openconnect/files/openconnect.init.in
+++ b/net-misc/openconnect/files/openconnect.init.in
@@ -1,4 +1,4 @@
-#!/sbin/runscript
+#!/sbin/openrc-run
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$

diff --git a/net-misc/openconnect/files/openconnect.init.in-r2 
b/net-misc/openconnect/files/openconnect.init.in-r2
index a945a4b..338afb8 100644
--- a/net-misc/openconnect/files/openconnect.init.in-r2
+++ b/net-misc/openconnect/files/openconnect.init.in-r2
@@ -1,4 +1,4 @@
-#!/sbin/runscript
+#!/sbin/openrc-run
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$

diff --git a/net-misc/openconnect/files/openconnect.init.in-r3 
b/net-misc/openconnect/files/openconnect.init.in-r3
index 1f51fd4..daaec8e 100644
--- a/net-misc/openconnect/files/openconnect.init.in-r3
+++ b/net-misc/openconnect/files/openconnect.init.in-r3
@@ -1,4 +1,4 @@
-#!/sbin/runscript
+#!/sbin/openrc-run
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$



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

2016-05-06 Thread William Hubbs
commit: fb8d7b766fb3e0f02e70361001a0c637aa8e033e
Author: William Hubbs  gentoo  org>
AuthorDate: Sat May  7 04:17:23 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sat May  7 04:17:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb8d7b76

net-misc/dhcpcd:  update service script to use /sbin/openrc-run

Package-Manager: portage-2.2.26

 net-misc/dhcpcd/files/dhcpcd.initd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/dhcpcd/files/dhcpcd.initd 
b/net-misc/dhcpcd/files/dhcpcd.initd
index d88b061..d3f4d76 100644
--- a/net-misc/dhcpcd/files/dhcpcd.initd
+++ b/net-misc/dhcpcd/files/dhcpcd.initd
@@ -1,4 +1,4 @@
-#!/sbin/runscript
+#!/sbin/openrc-run
 # Copyright 2007-2008 Roy Marples 
 # All rights reserved. Released under the 2-clause BSD license.
 



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

2016-05-06 Thread William Hubbs
commit: 01e39a428e5822a7bc3145f1e54036277fde987a
Author: William Hubbs  gentoo  org>
AuthorDate: Sat May  7 04:05:23 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sat May  7 04:08:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01e39a42

net-misc/badvpn: Update service scripts to use /sbin/openrc-run

Package-Manager: portage-2.2.26

 net-misc/badvpn/files/badvpn-1.999.127-ncd.init | 2 +-
 net-misc/badvpn/files/badvpn-ncd.init   | 2 +-
 net-misc/badvpn/files/badvpn-server.init| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-misc/badvpn/files/badvpn-1.999.127-ncd.init 
b/net-misc/badvpn/files/badvpn-1.999.127-ncd.init
index 509a17f..69f7ba4 100644
--- a/net-misc/badvpn/files/badvpn-1.999.127-ncd.init
+++ b/net-misc/badvpn/files/badvpn-1.999.127-ncd.init
@@ -1,4 +1,4 @@
-#!/sbin/runscript
+#!/sbin/openrc-run
 # Copyright 1999-2013 Gentoo Foundation
 # Released under the 3-clause BSD license.
 

diff --git a/net-misc/badvpn/files/badvpn-ncd.init 
b/net-misc/badvpn/files/badvpn-ncd.init
index e07af67..e408075 100644
--- a/net-misc/badvpn/files/badvpn-ncd.init
+++ b/net-misc/badvpn/files/badvpn-ncd.init
@@ -1,4 +1,4 @@
-#!/sbin/runscript
+#!/sbin/openrc-run
 # Copyright 1999-2012 Gentoo Foundation
 # Released under the 3-clause BSD license.
 

diff --git a/net-misc/badvpn/files/badvpn-server.init 
b/net-misc/badvpn/files/badvpn-server.init
index 94e3518..32ee7fe 100644
--- a/net-misc/badvpn/files/badvpn-server.init
+++ b/net-misc/badvpn/files/badvpn-server.init
@@ -1,4 +1,4 @@
-#!/sbin/runscript
+#!/sbin/openrc-run
 # Copyright 1999-2012 Gentoo Foundation
 # Released under the 3-clause BSD license.
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/nginx/files/, www-servers/nginx/

2016-05-06 Thread Zac Medico
commit: b5ba1ddb6b1eb7fb418d9e8f268fae2dd06d44d2
Author: Zac Medico  gentoo  org>
AuthorDate: Sat May  7 03:11:26 2016 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat May  7 03:15:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5ba1ddb

www-servers/nginx: add segfault fix to 1.10.0 for http_upstream_check (bug 
582316)

Package-Manager: portage-2.2.28

 .../files/check-0.3.0-segfault-on-reload.patch | 26 ++
 www-servers/nginx/nginx-1.10.0.ebuild  |  3 +++
 2 files changed, 29 insertions(+)

diff --git a/www-servers/nginx/files/check-0.3.0-segfault-on-reload.patch 
b/www-servers/nginx/files/check-0.3.0-segfault-on-reload.patch
new file mode 100644
index 000..f556aab
--- /dev/null
+++ b/www-servers/nginx/files/check-0.3.0-segfault-on-reload.patch
@@ -0,0 +1,26 @@
+From 2a52fbf565d0d5bdc9f25382b5af6e952216831f Mon Sep 17 00:00:00 2001
+From: Dmitry Saprykin 
+Date: Fri, 5 Dec 2014 11:46:18 +0300
+Subject: [PATCH] * serfault on reload fix
+
+---
+ ngx_http_upstream_check_module.c | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/ngx_http_upstream_check_module.c 
b/ngx_http_upstream_check_module.c
+index e2a4030..41aa63a 100644
+--- a/ngx_http_upstream_check_module.c
 b/ngx_http_upstream_check_module.c
+@@ -3991,9 +3991,9 @@ 
ngx_http_upstream_check_find_shm_peer(ngx_http_upstream_check_peers_shm_t *p,
+ continue;
+ }
+ 
+-if ((ngx_memcmp(addr->sockaddr, peer_shm->sockaddr, addr->socklen) == 
0)
+-&& (ngx_strncmp(upstream_name->data, 
peer_shm->upstream_name->data,
+-upstream_name->len) == 0)) {
++if (ngx_memcmp(addr->sockaddr, peer_shm->sockaddr, addr->socklen) == 0
++&& upstream_name->len == peer_shm->upstream_name->len
++&& ngx_strncmp(upstream_name->data, 
peer_shm->upstream_name->data, upstream_name->len) == 0) {
+ return peer_shm;
+ }
+ }

diff --git a/www-servers/nginx/nginx-1.10.0.ebuild 
b/www-servers/nginx/nginx-1.10.0.ebuild
index 159f891..ef851c4 100644
--- a/www-servers/nginx/nginx-1.10.0.ebuild
+++ b/www-servers/nginx/nginx-1.10.0.ebuild
@@ -329,6 +329,9 @@ src_prepare() {
 
if use nginx_modules_http_upstream_check; then
eapply -p0 "${FILESDIR}/check-1.9.2".patch
+   pushd "${HTTP_UPSTREAM_CHECK_MODULE_WD}" >/dev/null
+   eapply -p1 "${FILESDIR}/check-0.3.0-segfault-on-reload".patch
+   popd >/dev/null
fi
 
if use nginx_modules_http_lua; then



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

2016-05-06 Thread William Hubbs
commit: 31912fe989d2245a42d7c37d30afa40af2039df6
Author: William Hubbs  gentoo  org>
AuthorDate: Sat May  7 02:58:05 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sat May  7 02:58:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31912fe9

app-emulation/docker: remove unused files

Package-Manager: portage-2.2.26

 app-emulation/docker/files/15404-fix-go14_15.patch | 85 --
 .../docker/files/18074-disable-journald-arm.patch  | 30 
 .../docker/files/7179-add-audit_write-cap.patch| 29 
 app-emulation/docker/files/docker-r2.confd | 18 -
 app-emulation/docker/files/docker-r2.initd | 54 --
 app-emulation/docker/files/docker-r3.confd | 13 
 app-emulation/docker/files/docker-r3.initd | 31 
 app-emulation/docker/files/docker.initd| 31 
 app-emulation/docker/files/docker.service  | 12 ---
 9 files changed, 303 deletions(-)

diff --git a/app-emulation/docker/files/15404-fix-go14_15.patch 
b/app-emulation/docker/files/15404-fix-go14_15.patch
deleted file mode 100644
index 7cda1f9..000
--- a/app-emulation/docker/files/15404-fix-go14_15.patch
+++ /dev/null
@@ -1,85 +0,0 @@
-From f83d05c3be3c3bcc84f6fa229504848ee8078321 Mon Sep 17 00:00:00 2001
-From: Vincent Batts 
-Date: Fri, 7 Aug 2015 10:18:20 -0400
-Subject: [PATCH] devicemapper: fix zero-sized field access
-
-Fixes: #15279
-
-Due to
-https://github.com/golang/go/commit/7904946eeb35faece61bbf6f5b3cc8be2f519c17
-the devices field is dropped.
-
-This solution works on go1.4 and go1.5
-
-Signed-off-by: Vincent Batts 

- daemon/graphdriver/devmapper/deviceset.go | 14 +-
- pkg/devicemapper/devmapper_wrapper.go | 18 +++---
- 2 files changed, 24 insertions(+), 8 deletions(-)
-
-diff --git a/daemon/graphdriver/devmapper/deviceset.go 
b/daemon/graphdriver/devmapper/deviceset.go
-index 6dddeb1..97e2032 100644
 a/daemon/graphdriver/devmapper/deviceset.go
-+++ b/daemon/graphdriver/devmapper/deviceset.go
-@@ -1509,12 +1509,16 @@ func (devices *DeviceSet) deactivatePool() error {
-   if err != nil {
-   return err
-   }
--  if d, err := devicemapper.GetDeps(devname); err == nil {
--  // Access to more Debug output
--  logrus.Debugf("[devmapper] devicemapper.GetDeps() %s: %#v", 
devname, d)
-+
-+  if devinfo.Exists == 0 {
-+  return nil
-   }
--  if devinfo.Exists != 0 {
--  return devicemapper.RemoveDevice(devname)
-+  if err := devicemapper.RemoveDevice(devname); err != nil {
-+  return err
-+  }
-+
-+  if d, err := devicemapper.GetDeps(devname); err == nil {
-+  logrus.Warnf("[devmapper] device %s still has %d active 
dependents", devname, d.Count)
-   }
- 
-   return nil
-diff --git a/pkg/devicemapper/devmapper_wrapper.go 
b/pkg/devicemapper/devmapper_wrapper.go
-index 87c2003..44ca772 100644
 a/pkg/devicemapper/devmapper_wrapper.go
-+++ b/pkg/devicemapper/devmapper_wrapper.go
-@@ -38,7 +38,10 @@ static void log_with_errno_init()
- */
- import "C"
- 
--import "unsafe"
-+import (
-+  "reflect"
-+  "unsafe"
-+)
- 
- type (
-   CDmTask C.struct_dm_task
-@@ -184,12 +187,21 @@ func dmTaskGetDepsFct(task *CDmTask) *Deps {
-   if Cdeps == nil {
-   return nil
-   }
-+
-+  // golang issue: https://github.com/golang/go/issues/11925
-+  hdr := reflect.SliceHeader{
-+  Data: uintptr(unsafe.Pointer(uintptr(unsafe.Pointer(Cdeps)) + 
unsafe.Sizeof(*Cdeps))),
-+  Len:  int(Cdeps.count),
-+  Cap:  int(Cdeps.count),
-+  }
-+  devices := *(*[]C.uint64_t)(unsafe.Pointer())
-+
-   deps := {
-   Count:  uint32(Cdeps.count),
-   Filler: uint32(Cdeps.filler),
-   }
--  for _, device := range Cdeps.device {
--  deps.Device = append(deps.Device, (uint64)(device))
-+  for _, device := range devices {
-+  deps.Device = append(deps.Device, uint64(device))
-   }
-   return deps
- }

diff --git a/app-emulation/docker/files/18074-disable-journald-arm.patch 
b/app-emulation/docker/files/18074-disable-journald-arm.patch
deleted file mode 100644
index e7c9a2f..000
--- a/app-emulation/docker/files/18074-disable-journald-arm.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-diff --git a/daemon/logger/journald/journald.go 
b/daemon/logger/journald/journald.go
-index c729b56..97c379c 100644
 a/daemon/logger/journald/journald.go
-+++ b/daemon/logger/journald/journald.go
-@@ -1,4 +1,4 @@
--// +build linux
-+// +build linux,!arm
- 
- // Package journald provides the log driver for forwarding server logs
- // to endpoints that receive the systemd format.
-diff --git a/daemon/logger/journald/journald_unsupported.go 
b/daemon/logger/journald/journald_unsupported.go
-index 

[gentoo-commits] repo/gentoo:master commit in: mate-extra/caja-dropbox/

2016-05-06 Thread NP Hardass
commit: 0dfabaec0a2bb3f4ee70beb32f3ac7458f546e17
Author: NP-Hardass  gentoo  org>
AuthorDate: Sat May  7 02:43:34 2016 +
Commit: NP Hardass  gentoo  org>
CommitDate: Sat May  7 02:45:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dfabaec

mate-extra/caja-dropbox: Fix ebuild regression in 1.10, #566538

Package-Manager: portage-2.2.26

 mate-extra/caja-dropbox/caja-dropbox-1.10.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mate-extra/caja-dropbox/caja-dropbox-1.10.1.ebuild 
b/mate-extra/caja-dropbox/caja-dropbox-1.10.1.ebuild
index d58a5c7..6b025a0 100644
--- a/mate-extra/caja-dropbox/caja-dropbox-1.10.1.ebuild
+++ b/mate-extra/caja-dropbox/caja-dropbox-1.10.1.ebuild
@@ -39,14 +39,14 @@ DEPEND="${RDEPEND}
dev-python/docutils:0
virtual/pkgconfig:*"
 
-G2CONF="${G2CONF} $(use_enable debug) --disable-static"
-
 CONFIG_CHECK="~INOTIFY_USER"
 
 pkg_setup () {
python-single-r1_pkg_setup
check_extra_config
enewgroup dropbox
+
+   G2CONF="${G2CONF} $(use_enable debug) --disable-static"
 }
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeakup/

2016-05-06 Thread William Hubbs
commit: a6029c1e887b2492496f230b6546956c7e75fb48
Author: William Hubbs  gentoo  org>
AuthorDate: Sat May  7 02:32:07 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sat May  7 02:32:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6029c1e

app-accessibility/espeakup: remove old version

Package-Manager: portage-2.2.26

 app-accessibility/espeakup/espeakup-0.71.ebuild | 59 -
 1 file changed, 59 deletions(-)

diff --git a/app-accessibility/espeakup/espeakup-0.71.ebuild 
b/app-accessibility/espeakup/espeakup-0.71.ebuild
deleted file mode 100644
index cf5d429..000
--- a/app-accessibility/espeakup/espeakup-0.71.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit linux-info
-
-DESCRIPTION="espeakup is a small lightweight connector for espeak and speakup"
-HOMEPAGE="http://www.linux-speakup.org;
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-COMMON_DEPEND="|| (
-   app-accessibility/espeak[portaudio]
-   app-accessibility/espeak[pulseaudio] )"
-DEPEND="${COMMON_DEPEND}"
-RDEPEND="${COMMON_DEPEND}"
-
-CONFIG_CHECK="~SPEAKUP ~SPEAKUP_SYNTH_SOFT"
-ERROR_SPEAKUP="CONFIG_SPEAKUP is not enabled in this kernel!"
-ERROR_SPEAKUP_SYNTH_SOFT="CONFIG_SPEAKUP_SYNTH_SOFT is not enabled in this 
kernel!"
-
-pkg_setup() {
-   if kernel_is -ge 2 6 37; then
-   check_extra_config
-   elif ! has_version app-accessibility/speakup; then
-   ewarn "Cannot find speakup on your system."
-   ewarn "Please upgrade your kernel to 2.6.37 or later and enable 
the"
-   ewarn "CONFIG_SPEAKUP and CONFIG_SPEAKUP_SYNTH_SOFT options"
-   ewarn "or install app-accessibility/speakup."
-   fi
-}
-
-src_compile() {
-   emake || die "Compile failed."
-}
-
-src_install() {
-   emake DESTDIR="${D}" install || die "Install failed."
-   dodoc ChangeLog README ToDo
-   newconfd "${FILESDIR}"/espeakup.confd espeakup
-   newinitd "${FILESDIR}"/espeakup.rc espeakup
-}
-
-pkg_postinst() {
-   elog "To get espeakup to start automatically, it is currently 
recommended"
-   elog "that you add it to the default run level, by giving the following"
-   elog "command as root."
-   elog
-   elog "rc-update add espeakup default"
-   elog
-   elog "You can also set a default voice now for espeakup."
-   elog "See /etc/conf.d/espeakup for how to do this."
-}



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeakup/, app-accessibility/espeakup/files/

2016-05-06 Thread William Hubbs
commit: 13609ac9fd7503d4d2fdef095a9ba016436e92c8
Author: William Hubbs  gentoo  org>
AuthorDate: Sat May  7 02:30:03 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sat May  7 02:32:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13609ac9

app-accessibility/espeakup:  revision bump for /sbin/openrc-run migration

Package-Manager: portage-2.2.26
RepoMan-Options: --force

 app-accessibility/espeakup/espeakup-0.71-r1.ebuild | 59 ++
 app-accessibility/espeakup/files/espeakup.rc   | 25 ++---
 2 files changed, 64 insertions(+), 20 deletions(-)

diff --git a/app-accessibility/espeakup/espeakup-0.71-r1.ebuild 
b/app-accessibility/espeakup/espeakup-0.71-r1.ebuild
new file mode 100644
index 000..93f546e
--- /dev/null
+++ b/app-accessibility/espeakup/espeakup-0.71-r1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit linux-info
+
+DESCRIPTION="espeakup is a small lightweight connector for espeak and speakup"
+HOMEPAGE="http://www.linux-speakup.org;
+SRC_URI="mirror://gentoo/${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE=""
+
+COMMON_DEPEND="|| (
+   app-accessibility/espeak[portaudio]
+   app-accessibility/espeak[pulseaudio] )"
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}"
+
+CONFIG_CHECK="~SPEAKUP ~SPEAKUP_SYNTH_SOFT"
+ERROR_SPEAKUP="CONFIG_SPEAKUP is not enabled in this kernel!"
+ERROR_SPEAKUP_SYNTH_SOFT="CONFIG_SPEAKUP_SYNTH_SOFT is not enabled in this 
kernel!"
+
+pkg_setup() {
+   if kernel_is -ge 2 6 37; then
+   check_extra_config
+   elif ! has_version app-accessibility/speakup; then
+   ewarn "Cannot find speakup on your system."
+   ewarn "Please upgrade your kernel to 2.6.37 or later and enable 
the"
+   ewarn "CONFIG_SPEAKUP and CONFIG_SPEAKUP_SYNTH_SOFT options"
+   ewarn "or install app-accessibility/speakup."
+   fi
+}
+
+src_compile() {
+   emake || die "Compile failed."
+}
+
+src_install() {
+   emake DESTDIR="${D}" install || die "Install failed."
+   dodoc ChangeLog README ToDo
+   newconfd "${FILESDIR}"/espeakup.confd espeakup
+   newinitd "${FILESDIR}"/espeakup.rc espeakup
+}
+
+pkg_postinst() {
+   elog "To get espeakup to start automatically, it is currently 
recommended"
+   elog "that you add it to the default run level, by giving the following"
+   elog "command as root."
+   elog
+   elog "rc-update add espeakup default"
+   elog
+   elog "You can also set a default voice now for espeakup."
+   elog "See /etc/conf.d/espeakup for how to do this."
+}

diff --git a/app-accessibility/espeakup/files/espeakup.rc 
b/app-accessibility/espeakup/files/espeakup.rc
index f0777e1..bdc2948 100644
--- a/app-accessibility/espeakup/files/espeakup.rc
+++ b/app-accessibility/espeakup/files/espeakup.rc
@@ -1,28 +1,13 @@
-#!/sbin/runscript
+#!/sbin/openrc-run
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+command=/usr/bin/espeakup
+command_args="${espeakup_opts:-${ESPEAKUP_OPTS}}"
+pidfile=/run/espeakup.pid
+
 depend() {
after modules
use alsasound pulseaudio
 }
-
-start() {
-   ebegin "Starting espeakup"
-   start-stop-daemon --start --exec /usr/bin/espeakup \
-   -- ${ESPEAKUP_OPTS}
-   eend $?
-}
-
-stop() {
-   ebegin "Stopping espeakup"
-   start-stop-daemon --stop --pidfile /var/run/espeakup.pid
-   eend $?
-}
-
-restart() {
-   svc_stop || exit 1
-   sleep 2
-   svc_start || exit 1
-}



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

2016-05-06 Thread Matt Thode
commit: c7f53104401aa1ea3c6fa7164bc581c74defe8ef
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat May  7 02:29:40 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat May  7 02:29:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7f53104

dev-libs/leatherman: bup

Package-Manager: portage-2.2.26

 dev-libs/leatherman/Manifest|  1 +
 dev-libs/leatherman/leatherman-0.6.3.ebuild | 51 +
 2 files changed, 52 insertions(+)

diff --git a/dev-libs/leatherman/Manifest b/dev-libs/leatherman/Manifest
index 438cafa..a019d78 100644
--- a/dev-libs/leatherman/Manifest
+++ b/dev-libs/leatherman/Manifest
@@ -1,2 +1,3 @@
 DIST leatherman-0.4.2.tar.gz 373142 SHA256 
5c1d9af54d803ba8a24320f55e3ec983265a60f9c8942bf53c745f1f1679 SHA512 
c82a3458fe813d0ccd9c5b7539b6d98d28c598be24803062b7a990eadf36fe3b4da70c4253af022bfe9eb4cfdf1d322ed3d04f56021ac09ae10f44fd33467981
 WHIRLPOOL 
afec9a9e773f68d2560f272a5eea11fa601667ccb38bba07f3bdb8e8cb528a6b61ecb35625f633faea6095e63eff172c9018420458d1ed2afeedcb07988962a9
 DIST leatherman-0.6.2.tar.gz 385105 SHA256 
69ef5420ba94f70ffca0dc3255ff0523f4052b2b43bfe3ceea1cb124ce18a786 SHA512 
155ac188c570743d54c57c2ea8c5f1b5b2ff6e468a7c10bb194d3332ad3301efb7607083e186015e4e7e0d5c353d194ba25421a171d9da7125e514bf2d185755
 WHIRLPOOL 
1ac712d86a01ca5b6acaf21c5f3aebb3ba9c6642f4c074d9e998aca9f288092b9764a8f85f3fc5f5fb3525098a4107943ad2daa6c527b89d52a39443d23ee32e
+DIST leatherman-0.6.3.tar.gz 387644 SHA256 
8951713aff2dd9a4e38016faa6fa6bd5634f1c9ffb59f03ffab24a91a6afcd1b SHA512 
bdda57d1816d6a7769f62b7e681453c3e71aff3deac3ed5d0f332440033520aba2cda8f0654b565c4d534eb307ebe02d554660c3502cdd36f842c168b4535535
 WHIRLPOOL 
62619d7ed688d3e34f90f3d64f77051ccb1df5e3a7d658f9405e74b11b2e128d7505dd21a04d0635d848c5ccc7e3f0d2efcea26437b684ee89403828a9d6d540

diff --git a/dev-libs/leatherman/leatherman-0.6.3.ebuild 
b/dev-libs/leatherman/leatherman-0.6.3.ebuild
new file mode 100644
index 000..2c1f42c
--- /dev/null
+++ b/dev-libs/leatherman/leatherman-0.6.3.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22"
+
+inherit cmake-utils multilib ruby-ng
+
+DESCRIPTION="A C++ toolkit"
+HOMEPAGE="https://github.com/puppetlabs/leatherman;
+SRC_URI="https://downloads.puppetlabs.com/facter/${P}.tar.gz;
+SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+S="${S}/all/${P}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="debug test"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
+
+CDEPEND="
+   >=sys-devel/gcc-4.8:*
+   >=dev-libs/boost-1.54[nls]
+   net-misc/curl"
+
+RDEPEND+=" ${CDEPEND}"
+DEPEND+=" test? ( ${CDEPEND} )"
+
+src_prepare() {
+   sed -i 's/\-Werror\ //g' "cmake/cflags.cmake" || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_VERBOSE_MAKEFILE=ON
+   -DCMAKE_BUILD_TYPE=None
+   -DCMAKE_INSTALL_PREFIX=/usr
+   -DCMAKE_INSTALL_SYSCONFDIR=/etc
+   -DCMAKE_INSTALL_LOCALSTATEDIR=/var
+   )
+   if use debug; then
+   mycmakeargs+=(
+ -DCMAKE_BUILD_TYPE=Debug
+   )
+   fi
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+}



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

2016-05-06 Thread Matt Thode
commit: af64983b269425c0cfd6d71262ac736ab297ba6e
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat May  7 01:55:12 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat May  7 01:55:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af64983b

sys-fs/zfs: fix systemd units for kernel-builtin

Package-Manager: portage-2.2.26

 sys-fs/zfs/zfs-.ebuild | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/sys-fs/zfs/zfs-.ebuild b/sys-fs/zfs/zfs-.ebuild
index 11f0637..6f514eb 100644
--- a/sys-fs/zfs/zfs-.ebuild
+++ b/sys-fs/zfs/zfs-.ebuild
@@ -88,6 +88,12 @@ src_prepare() {
-e "s|/sbin/parted|/usr/sbin/parted|" \
-i scripts/common.sh.in
 
+   if use kernel-builtin
+   then
+   einfo "kernel-builtin enabled, removing module loading from"
+   einfo "systemd units."
+   sed -i -e '/modprobe\ zfs/d' etc/systemd/system/*.service.in || 
die
+   fi
autotools-utils_src_prepare
 }
 
@@ -115,6 +121,10 @@ src_configure() {
sed -e "s:@sbindir@:${EPREFIX}/sbin:g" \
-e "s:@sysconfdir@:${EPREFIX}/etc:g" \
> "${T}/zfs-init.sh" || die
+   if use kernel-builtin
+   then
+   sed -i -e '/modprobe\ zfs/d' "${T}/zfs.service" || die
+   fi
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: games-arcade/ceferino/

2016-05-06 Thread Michael Sterrett
commit: c770d13c0e51258e7d922feafd00111b82227120
Author: Michael Sterrett  gentoo  org>
AuthorDate: Sat May  7 00:20:51 2016 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Sat May  7 00:22:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c770d13c

games-arcade/ceferino: use Debian tarball which include upstream svn changes.  
Fixes bug #129020

Package-Manager: portage-2.2.26

 games-arcade/ceferino/Manifest  |  1 +
 games-arcade/ceferino/ceferino-0.97.8-r1.ebuild | 52 +
 2 files changed, 53 insertions(+)

diff --git a/games-arcade/ceferino/Manifest b/games-arcade/ceferino/Manifest
index 361afea..e43c217 100644
--- a/games-arcade/ceferino/Manifest
+++ b/games-arcade/ceferino/Manifest
@@ -1 +1,2 @@
 DIST ceferino-0.97.8.tar.gz 2380632 SHA256 
6f0f2674a8a968950498570b89123e341dca50499d255e7bcdf3703a85aa3074 SHA512 
459e5b5e19ff9cfc8bd82af856dea68d5f8694ff2b4a04e35c1b3fa1d065c8d8c60025b5e9ea1918eae4bf12a9ca354187513a3cb2813a55d39ef57deb2a7d05
 WHIRLPOOL 
f989e81fc032ea6c65486d07ce80834052aa7ac31b3aceebe1580212817a3f59f6e0bb2b9fd1fa0fe1d14c11af164965675d164b836b7c032a0ddce21c39d3d4
+DIST ceferino_0.97.8+svn37.orig.tar.gz 2104956 SHA256 
b52ccce6051e78d8c368d76335d027442162e6bac44709ef06627a8fa8cb2fc6 SHA512 
83bccb39f0ecd9f41767c4d94cebb3266c77f11eb22d6cf517f6488af384bad88bdd538b5746e0a3c6e1a57481a4c946ec03afb97a000cd21664d3f179e1a9b6
 WHIRLPOOL 
d8bbba49f1864aaf92f52d45a45f46cb0d1d112e7868f979da903149119496faeee179849df949e904ed9ac39b0259d7210d1e4a7a4a38bc3a5131d1230575dd

diff --git a/games-arcade/ceferino/ceferino-0.97.8-r1.ebuild 
b/games-arcade/ceferino/ceferino-0.97.8-r1.ebuild
new file mode 100644
index 000..129298b
--- /dev/null
+++ b/games-arcade/ceferino/ceferino-0.97.8-r1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit autotools eutils games
+
+DESCRIPTION="Super-Pang clone (destroy bouncing balloons with your grapnel)"
+HOMEPAGE="http://www.loosersjuegos.com.ar/juegos/ceferino;
+SRC_URI="mirror://debian/pool/main/c/ceferino/${PN}_${PV}+svn37.orig.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="nls"
+
+RDEPEND=">=media-libs/libsdl-1.2[video]
+   >=media-libs/sdl-image-1.2
+   >=media-libs/sdl-mixer-1.2
+   nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}
+   nls? ( sys-devel/gettext )"
+
+S=${WORKDIR}/${P}+svn37
+
+src_prepare() {
+   sed -i \
+   -e '/^INCLUDES/s:\$(datadir)/locale:/usr/share/locale:' \
+   src/Makefile.am || die
+   eautoreconf
+}
+
+src_configure() {
+   egamesconf $(use_enable nls)
+}
+
+src_install() {
+   default
+   newicon data/ima/icono.png ${PN}.png
+   make_desktop_entry ceferino "Don Ceferino Hazaña"
+   prepgamesdirs
+}
+
+pkg_postinst() {
+   games_pkg_postinst
+   if ! has_version "media-libs/sdl-mixer[mod]" ; then
+   ewarn
+   ewarn "To hear music, you will have to rebuild 
media-libs/sdl-mixer"
+   ewarn "with the \"mod\" USE flag turned on."
+   ewarn
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/epos/

2016-05-06 Thread William Hubbs
commit: 61f80334f5b218e797f55287661d527f64d8e47d
Author: William Hubbs  gentoo  org>
AuthorDate: Fri May  6 22:39:48 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri May  6 22:39:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61f80334

app-accessibility/epos: remove old version

Package-Manager: portage-2.2.26

 app-accessibility/epos/epos-2.5.37-r1.ebuild | 43 
 1 file changed, 43 deletions(-)

diff --git a/app-accessibility/epos/epos-2.5.37-r1.ebuild 
b/app-accessibility/epos/epos-2.5.37-r1.ebuild
deleted file mode 100644
index 4cd66ac..000
--- a/app-accessibility/epos/epos-2.5.37-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-inherit eutils autotools
-
-DESCRIPTION="language independent text-to-speech system"
-HOMEPAGE="http://epos.ure.cas.cz/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 x86"
-IUSE=""
-
-DEPEND=">=app-text/sgmltools-lite-3.0.3-r9"
-RDEPEND=""
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-gcc43.patch \
-   "${FILESDIR}"/${P}-gcc45.patch \
-   "${FILESDIR}"/${P}-gcc47.patch \
-   "${FILESDIR}"/${P}-disable-tests.patch
-
-   sed -i -e "s/CCC/#CCC/" configure.ac || die
-
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   --enable-charsets \
-   --disable-portaudio
-}
-
-src_install() {
-   default
-
-   doinitd "${FILESDIR}/eposd"
-   dodoc WELCOME THANKS Changes "${FILESDIR}/README.gentoo"
-}



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/epos/files/, app-accessibility/epos/

2016-05-06 Thread William Hubbs
commit: 51ff0b1fe84a93efb239ad0f769a17f50b95be1c
Author: William Hubbs  gentoo  org>
AuthorDate: Fri May  6 22:35:41 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri May  6 22:35:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51ff0b1f

app-accessibility/epos: revision bump for /sbin/openrc-run migration

Package-Manager: portage-2.2.26
RepoMan-Options: --force

 app-accessibility/epos/epos-2.5.37-r2.ebuild | 43 
 app-accessibility/epos/files/eposd   |  2 +-
 2 files changed, 44 insertions(+), 1 deletion(-)

diff --git a/app-accessibility/epos/epos-2.5.37-r2.ebuild 
b/app-accessibility/epos/epos-2.5.37-r2.ebuild
new file mode 100644
index 000..0381723
--- /dev/null
+++ b/app-accessibility/epos/epos-2.5.37-r2.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils autotools
+
+DESCRIPTION="language independent text-to-speech system"
+HOMEPAGE="http://epos.ure.cas.cz/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 x86"
+IUSE=""
+
+DEPEND=">=app-text/sgmltools-lite-3.0.3-r9"
+RDEPEND=""
+
+src_prepare() {
+   epatch "${FILESDIR}"/${P}-gcc43.patch \
+   "${FILESDIR}"/${P}-gcc45.patch \
+   "${FILESDIR}"/${P}-gcc47.patch \
+   "${FILESDIR}"/${P}-disable-tests.patch
+
+   sed -i -e "s/CCC/#CCC/" configure.ac || die
+
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --enable-charsets \
+   --disable-portaudio
+}
+
+src_install() {
+   default
+
+   doinitd "${FILESDIR}/eposd"
+   dodoc WELCOME THANKS Changes "${FILESDIR}/README.gentoo"
+}

diff --git a/app-accessibility/epos/files/eposd 
b/app-accessibility/epos/files/eposd
index b245da9..8301c62 100644
--- a/app-accessibility/epos/files/eposd
+++ b/app-accessibility/epos/files/eposd
@@ -1,4 +1,4 @@
-#!/sbin/runscript
+#!/sbin/openrc-run
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/eflite/files/, app-accessibility/eflite/

2016-05-06 Thread William Hubbs
commit: c455513b974be658d3a118ff6daeef13498762a0
Author: William Hubbs  gentoo  org>
AuthorDate: Fri May  6 22:20:25 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri May  6 22:24:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c455513b

app-accessibility/eflite: revision bump for /sbin/openrc-run migration

Package-Manager: portage-2.2.26
RepoMan-Options: --force

 app-accessibility/eflite/eflite-0.4.1-r3.ebuild | 46 +
 app-accessibility/eflite/files/eflite.rc|  2 +-
 2 files changed, 47 insertions(+), 1 deletion(-)

diff --git a/app-accessibility/eflite/eflite-0.4.1-r3.ebuild 
b/app-accessibility/eflite/eflite-0.4.1-r3.ebuild
new file mode 100644
index 000..dfd1f5d
--- /dev/null
+++ b/app-accessibility/eflite/eflite-0.4.1-r3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+inherit autotools eutils user
+
+DESCRIPTION="A speech server that allows emacspeak and other screen readers to 
interact with festival lite"
+HOMEPAGE="http://eflite.sourceforge.net;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="alpha amd64 ppc ppc64 sparc x86"
+IUSE="+16k_voice"
+
+DEPEND=">=app-accessibility/flite-1.4"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   sed -i 's:/etc/es.conf:/etc/eflite/es.conf:g' *
+   epatch "${FILESDIR}"/${PN}-0.4.1-flite14.patch
+   eautoreconf
+}
+
+src_configure() {
+   local myconf
+   if use 16k_voice; then
+   myconf='--with-vox=cmu_us_kal16'
+   fi
+   econf ${myconf}
+}
+
+src_install() {
+   einstall
+   dodoc ChangeLog README INSTALL eflite_test.txt
+
+   insinto /etc/eflite
+   doins "${FILESDIR}"/es.conf
+
+   newinitd "${FILESDIR}"/eflite.rc eflite
+}
+
+pkg_postinst() {
+   enewgroup speech
+}

diff --git a/app-accessibility/eflite/files/eflite.rc 
b/app-accessibility/eflite/files/eflite.rc
index ff91540..69854e1 100644
--- a/app-accessibility/eflite/files/eflite.rc
+++ b/app-accessibility/eflite/files/eflite.rc
@@ -1,4 +1,4 @@
-#!/sbin/runscript
+#!/sbin/openrc-run
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/eflite/

2016-05-06 Thread William Hubbs
commit: 84b2d12cde132f601068ef07f5238b3ea8ec721d
Author: William Hubbs  gentoo  org>
AuthorDate: Fri May  6 22:24:24 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri May  6 22:24:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84b2d12c

app-accessibility/eflite: remove old version

Package-Manager: portage-2.2.26

 app-accessibility/eflite/eflite-0.4.1-r2.ebuild | 46 -
 1 file changed, 46 deletions(-)

diff --git a/app-accessibility/eflite/eflite-0.4.1-r2.ebuild 
b/app-accessibility/eflite/eflite-0.4.1-r2.ebuild
deleted file mode 100644
index 621a9ba..000
--- a/app-accessibility/eflite/eflite-0.4.1-r2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-inherit autotools eutils user
-
-DESCRIPTION="A speech server that allows emacspeak and other screen readers to 
interact with festival lite"
-HOMEPAGE="http://eflite.sourceforge.net;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ppc ppc64 sparc x86"
-IUSE="+16k_voice"
-
-DEPEND=">=app-accessibility/flite-1.4"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   sed -i 's:/etc/es.conf:/etc/eflite/es.conf:g' *
-   epatch "${FILESDIR}"/${PN}-0.4.1-flite14.patch
-   eautoreconf
-}
-
-src_configure() {
-   local myconf
-   if use 16k_voice; then
-   myconf='--with-vox=cmu_us_kal16'
-   fi
-   econf ${myconf}
-}
-
-src_install() {
-   einstall
-   dodoc ChangeLog README INSTALL eflite_test.txt
-
-   insinto /etc/eflite
-   doins "${FILESDIR}"/es.conf
-
-   newinitd "${FILESDIR}"/eflite.rc eflite
-}
-
-pkg_postinst() {
-   enewgroup speech
-}



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

2016-05-06 Thread Andreas Hüttel
commit: c3e0ea9112093ce8a66391ab564837d57abb0c94
Author: Kent Fredric  gmail  com>
AuthorDate: Thu May  5 18:42:03 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri May  6 22:30:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3e0ea91

dev-perl/Archive-Any: Bump to version 0.94.500

- EAPI6
- Add USE="examples" including an anonymization example

Upstream:
- Anonymize test files to avoid license complications
- More warnings
- More 'use base'

Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa ia64 
m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"

 dev-perl/Archive-Any/Archive-Any-0.94.500.ebuild | 32 
 dev-perl/Archive-Any/Manifest|  1 +
 dev-perl/Archive-Any/metadata.xml|  2 ++
 3 files changed, 35 insertions(+)

diff --git a/dev-perl/Archive-Any/Archive-Any-0.94.500.ebuild 
b/dev-perl/Archive-Any/Archive-Any-0.94.500.ebuild
new file mode 100644
index 000..2e82bad
--- /dev/null
+++ b/dev-perl/Archive-Any/Archive-Any-0.94.500.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=OALDERS
+DIST_VERSION=0.0945
+DIST_EXAMPLES=("anonymize-archives");
+inherit perl-module
+
+DESCRIPTION="Single interface to deal with file archives"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   virtual/perl-Archive-Tar
+   dev-perl/Archive-Zip
+   dev-perl/Module-Find
+   dev-perl/MIME-Types
+   dev-perl/File-MMagic
+   virtual/perl-File-Spec
+"
+DEPEND="${RDEPEND}
+   >=dev-perl/Module-Build-0.280.0
+   test? (
+   virtual/perl-Test-Simple
+   dev-perl/Test-Warn
+   )
+"

diff --git a/dev-perl/Archive-Any/Manifest b/dev-perl/Archive-Any/Manifest
index 636f4b6..1446b5b 100644
--- a/dev-perl/Archive-Any/Manifest
+++ b/dev-perl/Archive-Any/Manifest
@@ -1 +1,2 @@
 DIST Archive-Any-0.0941.tar.gz 78703 SHA256 
2f2172cf8ffb4f9338093c15025eeefeb634dba8d09a1ebbe5839ace1c74fdb7 SHA512 
13fa297792e367560c12d8d22aef8214dbba2a9e0c8cc2b9b01d6e5c21a07f49d45024c930891bf921e53fa9c4443ad14db5ce1ab46bb7825e37fd4881b07ba4
 WHIRLPOOL 
42bed5592f9305c7778d1fb2be57337553d3fee3f2a0ccb2ae59a92e14f407c4a6e57a2be39f1d9b3248b28af4e49d1cbf74028fd2cbc12f97509eb791e36dd7
+DIST Archive-Any-0.0945.tar.gz 193669 SHA256 
8c176cf649a7c3ef2cc2cc2d87eae79cfc0c13316cd4581404a99bc1a41a568f SHA512 
a362a6b85eb2aa3fa90aa004b2216492b06982d7c52b1c8feb7a90c506b57a492834ddb2d2d5ccebd6a340c95d82058bce6b1e2fba79160e38ff10ded82ea86a
 WHIRLPOOL 
51b5d1c639b5b6e34d5ea2464ed3b667a6b0037ad5a5e49b59c21fa1666f9ab403ed855c5ac2073104ecac1dc95d870c17506d6d8e77d7147a8950ae71cb2caf

diff --git a/dev-perl/Archive-Any/metadata.xml 
b/dev-perl/Archive-Any/metadata.xml
index a20728e..5833d58 100644
--- a/dev-perl/Archive-Any/metadata.xml
+++ b/dev-perl/Archive-Any/metadata.xml
@@ -11,5 +11,7 @@
 Archive::Any::Plugin
 Archive::Any::Plugin::Tar
 Archive::Any::Plugin::Zip
+Archive::Any::Tar
+Archive::Any::Zip
 
 



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

2016-05-06 Thread Andreas Hüttel
commit: abd95eaa6aa1af52083eff49862271e34a1a8b58
Author: Kent Fredric  gmail  com>
AuthorDate: Thu May  5 19:11:34 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri May  6 22:30:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abd95eaa

dev-perl/Archive-Zip: Bump to version 1.570.0

Upstream:
- Attempted fix "unzip" v 6.00 and 0-length headers.

Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa ia64 
m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"

 dev-perl/Archive-Zip/Archive-Zip-1.570.0.ebuild | 32 +
 dev-perl/Archive-Zip/Manifest   |  1 +
 2 files changed, 33 insertions(+)

diff --git a/dev-perl/Archive-Zip/Archive-Zip-1.570.0.ebuild 
b/dev-perl/Archive-Zip/Archive-Zip-1.570.0.ebuild
new file mode 100644
index 000..2194736
--- /dev/null
+++ b/dev-perl/Archive-Zip/Archive-Zip-1.570.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=PHRED
+DIST_VERSION=1.57
+DIST_EXAMPLES=("examples/*")
+inherit perl-module
+
+DESCRIPTION="A wrapper that lets you read Zip archive members as if they were 
files"
+
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="test"
+
+RDEPEND="
+   >=virtual/perl-Compress-Raw-Zlib-2.17.0
+   virtual/perl-File-Path
+   >=virtual/perl-File-Spec-0.800.0
+   virtual/perl-File-Temp
+   virtual/perl-IO
+   virtual/perl-Time-Local
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   dev-perl/Test-MockModule
+   >=virtual/perl-Test-Simple-0.880.0
+   )
+"

diff --git a/dev-perl/Archive-Zip/Manifest b/dev-perl/Archive-Zip/Manifest
index 6bc7d7f..db8a7f2 100644
--- a/dev-perl/Archive-Zip/Manifest
+++ b/dev-perl/Archive-Zip/Manifest
@@ -1,2 +1,3 @@
 DIST Archive-Zip-1.53.tar.gz 189493 SHA256 
c66f3cdfd1965d47d84af1e37b997e17d3f8c5f2cceffc1e90d04d64001424b9 SHA512 
ddf2f518e31c41b31c1ee66c1b4c09c8e964f1f458c6403b9a0f2ff6f41e54284a8995db7c0d1a8b08143f464b02a38fc0162bde9c0ad13f38e8b44a575482b3
 WHIRLPOOL 
69970596329334bcba3059bc5661880de5ae2938f32303e84c5f9f440b473ba3b37c8886d10358b48055abf8baefce100ef0d40c9b43121a7bc00bf5e81d21e5
 DIST Archive-Zip-1.56.tar.gz 190124 SHA256 
109f3ccaee5bc963144f700e96206c248dd83f855dffc9b796a76518c36400f8 SHA512 
f636cfbc9cff43a153e20621ab1f155a8eb9395ae59a7d97ce1dfd6f82335f0b9600d09e37e7f3e16c1d8054bbf000a7ffcb44629337ce6a94ca0e191924e801
 WHIRLPOOL 
431f1cb58a47657df05b60b7b97ac46cfb568c137d2f0da33dd7a710f35411c92e6c7c23d9ace3bc7dc5349274786ae82d03943def0167ba18654315b2b87afc
+DIST Archive-Zip-1.57.tar.gz 190218 SHA256 
4238b4df7e5f244c684dec83f75c0fa56819c01c61f9314c91f6a60fd41d3694 SHA512 
accf68cb2b7171cd244b8ff92dd9d24c945856700731cede249273a5d44364f9bd1008d06472befc1af9c2d1bc70706f5ac792bede54a58d22ac882f4f3c81aa
 WHIRLPOOL 
5ff0a2e2c493848e6d6c449be8d9c21e7301a7b8473441be68218b91edf79073a568fc3b3848e0d5bb05a31ab844781f2b1ca2ec452a3dd9b740dc8b287c6137



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

2016-05-06 Thread Andreas Hüttel
commit: 5112d4d29b72c9b332f0835666b8ed85b7d2242f
Author: Kent Fredric  gmail  com>
AuthorDate: Wed May  4 06:08:38 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri May  6 22:30:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5112d4d2

dev-perl/Test-Time: Fix missing test dependency on dev-perl/File-Slurp

Really, the right thing here to do would be install dev-perl/Test-Name-FromLine
as per stated dependencies in Makefile.PL, which then in turn will pull 
File-Slurp.

However, this module ships Test::Name::FromLine in inc/ and consumes it from 
there anyway,
  degrading this actual usage to only File::Slurp.

Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa ia64 
m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"

 dev-perl/Test-Time/Test-Time-0.40.0.ebuild | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Test-Time/Test-Time-0.40.0.ebuild 
b/dev-perl/Test-Time/Test-Time-0.40.0.ebuild
index a1a15aa..a3ff9e3 100644
--- a/dev-perl/Test-Time/Test-Time-0.40.0.ebuild
+++ b/dev-perl/Test-Time/Test-Time-0.40.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -12,11 +12,14 @@ DESCRIPTION="Overrides the time() and sleep() core 
functions for testing"
 
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
+IUSE="test"
 
 RDEPEND=""
 DEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.360.0
+   test? (
+   dev-perl/File-Slurp
+   )
 "
 
 SRC_TEST="do parallel"



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

2016-05-06 Thread Andreas Hüttel
commit: ae9adbcb60fc33782360371cba843e02f6127491
Author: Kent Fredric  gmail  com>
AuthorDate: Thu May  5 19:59:03 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri May  6 22:30:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae9adbcb

dev-perl/Array-Compare: Bump to version 2.110.0

- EAPI6
- Purge POD tests

Upstream:
- Migrate to Moo

Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa ia64 
m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"

 .../Array-Compare/Array-Compare-2.110.0.ebuild | 31 ++
 dev-perl/Array-Compare/Manifest|  1 +
 2 files changed, 32 insertions(+)

diff --git a/dev-perl/Array-Compare/Array-Compare-2.110.0.ebuild 
b/dev-perl/Array-Compare/Array-Compare-2.110.0.ebuild
new file mode 100644
index 000..687558a
--- /dev/null
+++ b/dev-perl/Array-Compare/Array-Compare-2.110.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=DAVECROSS
+DIST_VERSION=2.11
+inherit perl-module
+
+DESCRIPTION="Perl extension for comparing arrays"
+
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="test"
+
+RDEPEND="
+   virtual/perl-Carp
+   dev-perl/Moo
+   dev-perl/Type-Tiny
+"
+DEPEND=">=dev-perl/Module-Build-0.40
+   test? ( ${RDEPEND}
+   dev-perl/Test-NoWarnings
+   )
+"
+
+src_test() {
+   perl_rm_files t/pod.t t/pod_coverage.t
+   perl-module_src_test
+}

diff --git a/dev-perl/Array-Compare/Manifest b/dev-perl/Array-Compare/Manifest
index 443d151..049bd4d 100644
--- a/dev-perl/Array-Compare/Manifest
+++ b/dev-perl/Array-Compare/Manifest
@@ -1 +1,2 @@
 DIST Array-Compare-2.02.tar.gz 9554 SHA256 
9733844cd8a68b8474fbf349ae7e4a9140e61f695ab95cec89582f66d301f7ee SHA512 
33c1996841b2ede8fc5e68a06ae938bc09077767037306f13e30576af5a548cb1b30dcd24d2f4c13c47b04a43a45076a961cb9b829de65ed879f0a8300c5d093
 WHIRLPOOL 
90af652f6dc28286716aa50d5cb054ca004943a1c6af3784795a555b7dd28e2b269725dce6242ce127ebca8e861150ee961aa1d83988ddf85ecf050e0aa83325
+DIST Array-Compare-2.11.tar.gz 9653 SHA256 
9af158ef012186fd26ac58ffcbdd16c06472e93e9c470683ef5f967ca9783538 SHA512 
1c4356210f75f12605bb8b3805f3b9536dc218a4ab3853b0cd0efb7981e49c7d675bd491aa5d8f254016bf3f6fcaffa985c1b4cd7ac644fe6e39c8e182a7019f
 WHIRLPOOL 
370a6f59ec5c1477a622ad0dad525a650a0ff59a6b6d07dd604f39505e9973213f1a06c8e7696493b2574e409df187c8157d1c63d8f492bcebd3e6591ab28286



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

2016-05-06 Thread Andreas Hüttel
commit: abbd5bc1fb887a69220b3e1c70520c15eb0c55bd
Author: Kent Fredric  gmail  com>
AuthorDate: Wed May  4 12:20:48 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri May  6 22:30:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abbd5bc1

dev-perl/DBD-SQLite: Bump to version 1.500.0

- EAPI6
- Moved the use of system-sqlite into a USE="system-sqlite" useflag,
  as compiling against all present versions of dev-db/sqlite results
  in test failres that don't occur with the native version.
  Said Useflag is also off by default for that reason.

Upstream:
- Updated to bundled SQLite 3.10.2
- Added a ReadOnly connection flag.
- General improvments in ::Constants conveniences.
- Some bugs fixed in savepoint handling
- allow_multiple_statements retains contents of unprepared_statements

Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa ia64 
m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"

 dev-perl/DBD-SQLite/DBD-SQLite-1.500.0.ebuild | 47 +++
 dev-perl/DBD-SQLite/Manifest  |  1 +
 dev-perl/DBD-SQLite/metadata.xml  |  3 ++
 3 files changed, 51 insertions(+)

diff --git a/dev-perl/DBD-SQLite/DBD-SQLite-1.500.0.ebuild 
b/dev-perl/DBD-SQLite/DBD-SQLite-1.500.0.ebuild
new file mode 100644
index 000..83dd994
--- /dev/null
+++ b/dev-perl/DBD-SQLite/DBD-SQLite-1.500.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=ISHIGAKI
+DIST_VERSION=1.50
+inherit perl-module
+
+DESCRIPTION="Self Contained RDBMS in a DBI Driver"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
+IUSE="test system-sqlite"
+
+# NB: Get min sqlite version from sqlite3.c
+RDEPEND="
+   system-sqlite? (
+   >=dev-db/sqlite-3.10.2[extensions(+)]
+   )
+   >=dev-perl/DBI-1.570.0
+   !p...@gentoo.org
 Gentoo Perl Project
   
+  
+Use the system-wide dev-db/sqlite 
installation
+  
   
 DBD-SQLite
 DBD::SQLite



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

2016-05-06 Thread Andreas Hüttel
commit: 4446c8a0b1683ddf9d7d687b70915077e5875ad2
Author: Kent Fredric  gmail  com>
AuthorDate: Thu May  5 18:52:05 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri May  6 22:30:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4446c8a0

dev-perl/Archive-Extract: Bump to version 0.760.0

- EAPI6

Upstream:
- Prefer gtar where possible on netbsd
- Don't break on perl >5.20 on Win32 due to abuse of refs in $/

Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa ia64 
m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"

 .../Archive-Extract/Archive-Extract-0.760.0.ebuild | 29 ++
 dev-perl/Archive-Extract/Manifest  |  1 +
 dev-perl/Archive-Extract/metadata.xml  |  4 +++
 3 files changed, 34 insertions(+)

diff --git a/dev-perl/Archive-Extract/Archive-Extract-0.760.0.ebuild 
b/dev-perl/Archive-Extract/Archive-Extract-0.760.0.ebuild
new file mode 100644
index 000..8a7e819
--- /dev/null
+++ b/dev-perl/Archive-Extract/Archive-Extract-0.760.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=BINGOS
+DIST_VERSION=0.76
+inherit perl-module
+
+DESCRIPTION="Generic archive extracting mechanism"
+
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~x86"
+IUSE="test"
+
+RDEPEND="
+   virtual/perl-File-Path
+   virtual/perl-File-Spec
+   virtual/perl-IPC-Cmd
+   virtual/perl-Locale-Maketext-Simple
+   virtual/perl-Module-Load-Conditional
+   virtual/perl-Params-Check
+   virtual/perl-if
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? ( virtual/perl-Test-Simple )
+"

diff --git a/dev-perl/Archive-Extract/Manifest 
b/dev-perl/Archive-Extract/Manifest
index f454975..7a5c76d 100644
--- a/dev-perl/Archive-Extract/Manifest
+++ b/dev-perl/Archive-Extract/Manifest
@@ -1 +1,2 @@
 DIST Archive-Extract-0.72.tar.gz 27421 SHA256 
e86acd52e75a7cc3cb602a3b84c831cb408067b4ad2d7fb7ba122d156fd745df SHA512 
5a8de274500b3473236b53353c351020a893fac6cfa1d6daecb0820278e5e7ca490ca4be8e049d908d70afb5a39b72863cab9e72d92386a898e9a71f053cbb18
 WHIRLPOOL 
c377bdd5884d9b8f231913dd2cc23a5d7ebe6fee26b9ea5a9bcc6dc04cd0c557139d1627d187a7c418cb67a534dd1258a24031ceb524790b94a285dbd3605483
+DIST Archive-Extract-0.76.tar.gz 27530 SHA256 
9ae7080ca70346dd7d9845c581d2e112f4513ec0f7d79c2011c0e0a2ce874cfc SHA512 
b17a490fe6bd0535a3105929677e5f3fa1460aba391a4541bdcb838cca8c8d3f73f744d59b71306abc7c13835b35ebec2902692e4438f7dc8e8284372f5a7dec
 WHIRLPOOL 
b8d7298860b4b0f3ef3966f18d7a4eabf8aad20cc09161e1fbe23c4c85391be8313f0351ee6fc1f9e53ccb4e6de11c1549794324d4bb2e5910aa1d8c8e40b271

diff --git a/dev-perl/Archive-Extract/metadata.xml 
b/dev-perl/Archive-Extract/metadata.xml
index 2b9a936..1d95473 100644
--- a/dev-perl/Archive-Extract/metadata.xml
+++ b/dev-perl/Archive-Extract/metadata.xml
@@ -5,4 +5,8 @@
 p...@gentoo.org
 Gentoo Perl Project
   
+  
+Archive-Extract
+Archive::Extract
+  
 



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

2016-05-06 Thread Andreas Hüttel
commit: b465e074f69447cb31157f09547077909f16a210
Author: Kent Fredric  gmail  com>
AuthorDate: Thu May  5 18:26:34 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri May  6 22:30:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b465e074

dev-perl/App-perlbrew: Bump to version 0.750.0

Upstream:
- "--no-patchperl" install option added.
- "--destdir" install option added.
- "uninstall" now purges old perl's libs
- "mirror" and "config" commands removed.

Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa ia64 
m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"

 dev-perl/App-perlbrew/App-perlbrew-0.750.0.ebuild | 36 +++
 dev-perl/App-perlbrew/Manifest|  1 +
 2 files changed, 37 insertions(+)

diff --git a/dev-perl/App-perlbrew/App-perlbrew-0.750.0.ebuild 
b/dev-perl/App-perlbrew/App-perlbrew-0.750.0.ebuild
new file mode 100644
index 000..e58ace7
--- /dev/null
+++ b/dev-perl/App-perlbrew/App-perlbrew-0.750.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=GUGOD
+DIST_VERSION=0.75
+inherit perl-module
+
+DESCRIPTION='Manage perl installations in your $HOME'
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   >=dev-perl/CPAN-Perl-Releases-1.940.0
+   >=dev-perl/Capture-Tiny-0.250.0
+   >=dev-perl/Devel-PatchPerl-1.280.0
+   >=virtual/perl-Pod-Parser-1.620.0
+   >=dev-perl/local-lib-2.0.14
+"
+DEPEND="${RDEPEND}
+   >=virtual/perl-ExtUtils-MakeMaker-6.590.0
+   >=virtual/perl-File-Temp-0.230.400
+   >=dev-perl/IO-All-0.510.0
+   >=dev-perl/Path-Class-0.330.0
+   test? (
+   >=dev-perl/Test-Exception-0.320.0
+   >=virtual/perl-Test-Simple-1.1.2
+   >=dev-perl/Test-NoWarnings-1.40.0
+   >=dev-perl/Test-Output-1.30.0
+   >=dev-perl/Test-Spec-0.470.0
+   )
+"

diff --git a/dev-perl/App-perlbrew/Manifest b/dev-perl/App-perlbrew/Manifest
index 0279699..3fc48a0 100644
--- a/dev-perl/App-perlbrew/Manifest
+++ b/dev-perl/App-perlbrew/Manifest
@@ -1,2 +1,3 @@
 DIST App-perlbrew-0.73.tar.gz 82802 SHA256 
acbc9e7b9913ef453bcac3e6caa6620d4bd67e129e63f060a82f96542554a77a SHA512 
ceb78a62b179d4a6ad9e8788e849869cf9b45e526501d73cba004f96827d01ba03969307a1179840e6629e9f90385f7bae81b3662e0be81d00bcd462da59d28a
 WHIRLPOOL 
27655d050da48012e71598e0a03b87be542e8eebcf0a610a15e45eaab5c55d82e25755f59c7be9d51ea45028752dfce31e8bfbe8bb93059b08ed07d03cd4b6c3
 DIST App-perlbrew-0.74.tar.gz 84360 SHA256 
7134a9f858e3a3292ed879df04f6c880495300d727fa2b79dee7c81036d2d1c7 SHA512 
eb586649e199059b42d3a6b85b37e2efb2f6769989e05e37fc44c4a46976daf2bfe7d0f96312ce8401937e99d5cd4c51c2b17bc74b6b4fe11a915ddb4bfd405a
 WHIRLPOOL 
40e48a7de64e7672cb6f53920c8c1b3fcee85b56b3549a12452298ace1178faf0cadc010dffa98996f968b523575fcd086c12f8b5170315d62ad21b522d3398a
+DIST App-perlbrew-0.75.tar.gz 83229 SHA256 
c456d017836d6b30f7621515949ba3e1830826d54594da6b895391a2974b7f38 SHA512 
5ef172c010f86acdbc35bda73f072c7e2a86315d3b1982d41979be17186bb7dc4638a61109caf2de66a4167a67cb3d4774232b59dfdd3c638e2b38af45af27c6
 WHIRLPOOL 
25ad755def9cfee3f7ddc4f289c98fa95afabb31bfd35ce089a47953d4ba8ef14b45a383a304d33b54d744ea06c254b5be55d44e639a9475b038fe9d0c08690a



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Plack/files/, dev-perl/Plack/

2016-05-06 Thread Andreas Hüttel
commit: 3a9bf0c5d54cb56728037acb8da015c61c2a
Author: Kent Fredric  gmail  com>
AuthorDate: Wed May  4 08:13:15 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri May  6 22:30:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a9bf0c5

dev-perl/Plack: Patch tests to avoid parallel-testing race-condition.

This is already fixed upstream in git, so the patch is attached verbatim
until upstream get around to pushing a new release.

Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa ia64 
m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"

 dev-perl/Plack/Plack-1.3.900.ebuild|  4 +++-
 dev-perl/Plack/files/Plack-1.3.900-issue-545.patch | 22 ++
 2 files changed, 25 insertions(+), 1 deletion(-)

diff --git a/dev-perl/Plack/Plack-1.3.900.ebuild 
b/dev-perl/Plack/Plack-1.3.900.ebuild
index 4152bcc..1acafb0 100644
--- a/dev-perl/Plack/Plack-1.3.900.ebuild
+++ b/dev-perl/Plack/Plack-1.3.900.ebuild
@@ -13,7 +13,9 @@ DESCRIPTION="Perl Superglue for Web frameworks and Web 
Servers (PSGI toolkit)"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="test minimal examples"
-
+PATCHES=(
+   "${FILESDIR}/${P}-issue-545.patch"
+)
 RDEPEND="
!minimal? (
dev-perl/CGI-Compile

diff --git a/dev-perl/Plack/files/Plack-1.3.900-issue-545.patch 
b/dev-perl/Plack/files/Plack-1.3.900-issue-545.patch
new file mode 100644
index 000..b4a3fb7
--- /dev/null
+++ b/dev-perl/Plack/files/Plack-1.3.900-issue-545.patch
@@ -0,0 +1,22 @@
+From 86256c2af6115a2c99c310ba6979bf40f72a6864 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Richard=20Sim=C3=B5es?= 
+Date: Sun, 3 Jan 2016 19:49:51 -0600
+Subject: [PATCH] Allow log4perl.t and log4perl-category.t to run in parallel
+
+---
+ t/Plack-Middleware/log4perl-category.t | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/t/Plack-Middleware/log4perl-category.t 
b/t/Plack-Middleware/log4perl-category.t
+index 1951015..946edbf 100644
+--- a/t/Plack-Middleware/log4perl-category.t
 b/t/Plack-Middleware/log4perl-category.t
+@@ -6,7 +6,7 @@ use Test::More;
+ use Plack::Middleware::Log4perl;
+ use HTTP::Request::Common;
+ 
+-my $test_file = "t/Plack-Middleware/log4perl.log";
++my $test_file = "t/Plack-Middleware/log4perl-category.log";
+ 
+ my $conf = <

[gentoo-commits] repo/gentoo:master commit in: dev-perl/Apache-LogFormat-Compiler/

2016-05-06 Thread Andreas Hüttel
commit: 8c8027c1f4abe1f6ccf5e8d04d5c398b401e17a9
Author: Kent Fredric  gmail  com>
AuthorDate: Thu May  5 17:42:05 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri May  6 22:30:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c8027c1

dev-perl/Apache-LogFormat-Compiler: Bump to version 0.330.0

- EAPI6
- Add USE="examples"
- Remove redundant deps.

Upstream:
-  bugfix: Make `%T` to formatted in seconds

Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa ia64 
m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"

 .../Apache-LogFormat-Compiler-0.330.0.ebuild   | 37 ++
 dev-perl/Apache-LogFormat-Compiler/Manifest|  1 +
 dev-perl/Apache-LogFormat-Compiler/metadata.xml|  4 +++
 3 files changed, 42 insertions(+)

diff --git 
a/dev-perl/Apache-LogFormat-Compiler/Apache-LogFormat-Compiler-0.330.0.ebuild 
b/dev-perl/Apache-LogFormat-Compiler/Apache-LogFormat-Compiler-0.330.0.ebuild
new file mode 100644
index 000..4feabef
--- /dev/null
+++ 
b/dev-perl/Apache-LogFormat-Compiler/Apache-LogFormat-Compiler-0.330.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=KAZEBURO
+DIST_VERSION=0.33
+DIST_EXAMPLES=("eg/*")
+inherit perl-module
+
+DESCRIPTION="Compile an Apache log format string to perl-code"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+# POSIX -> perl
+RDEPEND="
+   >=dev-perl/POSIX-strftime-Compiler-0.300.0
+   virtual/perl-Time-Local
+   >=dev-lang/perl-5.8.4"
+
+# HTTP::Request::Common -> HTTP-Message
+# Test::More -> perl-Test-Simple
+# URI::Escape -> URI
+DEPEND="${RDEPEND}
+   >=dev-perl/Module-Build-0.380.0
+   test? (
+   dev-perl/HTTP-Message
+   dev-perl/Test-MockTime
+   >=virtual/perl-Test-Simple-0.980.0
+   dev-perl/Test-Requires
+   >=dev-perl/Try-Tiny-0.120.0
+   >=dev-perl/URI-1.600.0
+   )
+"

diff --git a/dev-perl/Apache-LogFormat-Compiler/Manifest 
b/dev-perl/Apache-LogFormat-Compiler/Manifest
index d77b7ea..acc0e08 100644
--- a/dev-perl/Apache-LogFormat-Compiler/Manifest
+++ b/dev-perl/Apache-LogFormat-Compiler/Manifest
@@ -1 +1,2 @@
 DIST Apache-LogFormat-Compiler-0.32.tar.gz 16354 SHA256 
bc112cdbc32f2e93c10bf661f39de509036e01c20c3a702a22cdb0be4426dd7f SHA512 
aee9443bd067dc9a623b8f694e3d0c8fd2d3b7e4fe6a547153eff0c2046f22a4503a9b999df2df92bee1eb06c17cbbe626555bd70018891784af51d7623ac27f
 WHIRLPOOL 
00bfe93bab32fb1b9030b5016183ed152fb72ead46e441a49800d9588e417ad54d2ea90990a5aa0410ffbf419d56e75137cfe5ac1a845db8cd4c11838e50c9bb
+DIST Apache-LogFormat-Compiler-0.33.tar.gz 16431 SHA256 
1bf36d92aa184236fbd9d1f795f273de9d365c6fbe087bfdfbaa800bff98749d SHA512 
2d098316d02dd9d81dbdb9b4852917430fad0e8e8599464500ee838b5eb6b26ec30fff04f1a9d0fad87141f38b6262c0a0a9bb14c13c559c9b92b53649225e21
 WHIRLPOOL 
d5da1f1c6ee993fe666c612fffc5ef6e98eb4beed2d97a3a0e4fcd06f7daf1cf7f545ce012a256c8da4f45a82ca9a46f1ac4a1d5aa3b834293a53fa2a4fb2721

diff --git a/dev-perl/Apache-LogFormat-Compiler/metadata.xml 
b/dev-perl/Apache-LogFormat-Compiler/metadata.xml
index 2b9a936..ff39e54 100644
--- a/dev-perl/Apache-LogFormat-Compiler/metadata.xml
+++ b/dev-perl/Apache-LogFormat-Compiler/metadata.xml
@@ -5,4 +5,8 @@
 p...@gentoo.org
 Gentoo Perl Project
   
+  
+Apache-LogFormat-Compiler
+Apache::LogFormat::Compiler
+  
 



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

2016-05-06 Thread Andreas Hüttel
commit: 13db339753db0ac6477348b53e734a1f0a755031
Author: Kent Fredric  gmail  com>
AuthorDate: Thu May  5 20:06:31 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri May  6 22:30:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13db3397

dev-perl/AtExit: Bump to version 2.30.0

- EAPI6

Upstream:
- warnings enabled.
- Test suite improved
- Other packaging and doc fixes

Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa ia64 
m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"

 dev-perl/AtExit/AtExit-2.30.0.ebuild | 26 ++
 dev-perl/AtExit/Manifest |  1 +
 2 files changed, 27 insertions(+)

diff --git a/dev-perl/AtExit/AtExit-2.30.0.ebuild 
b/dev-perl/AtExit/AtExit-2.30.0.ebuild
new file mode 100644
index 000..813a9e5
--- /dev/null
+++ b/dev-perl/AtExit/AtExit-2.30.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=NEILB
+DIST_VERSION=2.03
+inherit perl-module
+
+DESCRIPTION="atexit() function to register exit-callbacks"
+
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
+IUSE="test"
+
+RDEPEND="
+   virtual/perl-Exporter
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   dev-perl/Capture-Tiny
+   virtual/perl-Test-Simple
+   )
+"

diff --git a/dev-perl/AtExit/Manifest b/dev-perl/AtExit/Manifest
index 7bc7f42..8671110 100644
--- a/dev-perl/AtExit/Manifest
+++ b/dev-perl/AtExit/Manifest
@@ -1 +1,2 @@
 DIST AtExit-2.01.tar.gz 8081 SHA256 
9ab0a35c4f1bdd74398882560eb4fdc17a531f6761ac49fe9abef939c0fd9c7f SHA512 
5eed5c2ef0f3de66d2aebbf09293c4c03dc31947cc71e49a6cacc332f17f3e9ba9b35524713180a8dddbd72677b6d752e144720ca7b1b0190a91789a9f4a7f5d
 WHIRLPOOL 
865bf42f1f3487c9e8bc73cbcca67beb38e677f3ac4677d56248014e466e77ee573b4cb13bd7c115d1a6ec4d89e51d100708c95d622b0645deec96297bf1e1fa
+DIST AtExit-2.03.tar.gz 11263 SHA256 
6fa2f0aa06ab344de184c5ddc60bb51355a9e18593600680a55fd0df7ac2c037 SHA512 
ce522b44ad5c2360c8e7f7f49257fe50f0079bd2070ddaa33916b2484ef8e6f6430df045e5693356c37651aa96ef6a7e7694a04ecbc91817d12d032681105b60
 WHIRLPOOL 
c6f8cfe3b87d610118ab3f2d39617d0dd3efe55e0195b11b152f97c2764da66a1ec9785fcb10932bd18ce9fa23ea8f702fb368386692a14606dd5b2c579d682b



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

2016-05-06 Thread Andreas Hüttel
commit: dc6583af1da440a5f8cc0d6e2bc84c2d6ced4ad8
Author: Kent Fredric  gmail  com>
AuthorDate: Thu May  5 16:28:46 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri May  6 22:30:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc6583af

dev-perl/Algorithm-C3: Bump to version 0.100.0

- EAPI6
- Remove surplus author testing dependencies

Upstream:
- Minor packaging tweaks

Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa ia64 
m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"

 dev-perl/Algorithm-C3/Algorithm-C3-0.100.0.ebuild | 23 +++
 dev-perl/Algorithm-C3/Manifest|  1 +
 2 files changed, 24 insertions(+)

diff --git a/dev-perl/Algorithm-C3/Algorithm-C3-0.100.0.ebuild 
b/dev-perl/Algorithm-C3/Algorithm-C3-0.100.0.ebuild
new file mode 100644
index 000..bb29253
--- /dev/null
+++ b/dev-perl/Algorithm-C3/Algorithm-C3-0.100.0.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=HAARG
+DIST_VERSION=0.10
+inherit perl-module
+
+DESCRIPTION="A module for merging hierarchies using the C3 algorithm"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~ppc-macos 
~x64-macos ~x86-solaris"
+IUSE="test"
+
+RDEPEND="
+   >=virtual/perl-Carp-0.10.0
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? ( >=virtual/perl-Test-Simple-0.470.0 )
+"

diff --git a/dev-perl/Algorithm-C3/Manifest b/dev-perl/Algorithm-C3/Manifest
index 49a040c..3f697d9 100644
--- a/dev-perl/Algorithm-C3/Manifest
+++ b/dev-perl/Algorithm-C3/Manifest
@@ -1 +1,2 @@
 DIST Algorithm-C3-0.09.tar.gz 12430 SHA256 
0fe9b5f806c8679dd70fe8eeeaaa570d70a34d449f844759b16e805bbf7322a0 SHA512 
f3c0ecd703217158fae481c54e9d38860f51dc411b9238a01da5fa13c5d84f5e5ee5a41d683b2c05ae1322ce909ed40e0b4127d72a456c88e1081276c9aac5ee
 WHIRLPOOL 
ac63d6744b9fbab31aa4d9ff5d427cfe81898a348b5478078d2ff5b66b3abc7a1fcfb459cb01a1e7197a7c709485af7dd67a7183dfaa5f2e5b25881d1fa3a42d
+DIST Algorithm-C3-0.10.tar.gz 12523 SHA256 
5acf3a074025e9be10da352adc6d1ccadde4b61b6d6691e83248d366bb621406 SHA512 
2ace81679e8ff2f3f3fbe8028741aef0833b1415a7cde0d1b20c90557889347685d1135029cd849324b6d40c435a80b228549bf669bbf43f9a1b2ed7075b605e
 WHIRLPOOL 
c586a550df0d336ad7ee76419d4fa1d28c38c28e7838d042c68b5493a3d4ffdb766a8b4ae95615baef3c82b2a8ecc6091398f0ef193a324f7e51abe5995461db



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/brltty/

2016-05-06 Thread William Hubbs
commit: 94e723b6ed7ede38b6f06f5e0c320fbdc504f7d1
Author: William Hubbs  gentoo  org>
AuthorDate: Fri May  6 22:04:01 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri May  6 22:04:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94e723b6

app-accessibility/brltty: remove old version

Package-Manager: portage-2.2.26

 app-accessibility/brltty/brltty-5.2.ebuild | 189 -
 1 file changed, 189 deletions(-)

diff --git a/app-accessibility/brltty/brltty-5.2.ebuild 
b/app-accessibility/brltty/brltty-5.2.ebuild
deleted file mode 100644
index 8adcb66..000
--- a/app-accessibility/brltty/brltty-5.2.ebuild
+++ /dev/null
@@ -1,189 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_3 python3_4 python3_5 )
-FINDLIB_USE="ocaml"
-
-inherit findlib eutils multilib toolchain-funcs java-pkg-opt-2 flag-o-matic \
-   autotools udev systemd python-r1
-
-DESCRIPTION="Daemon that provides access to the Linux/Unix console for a blind 
person"
-HOMEPAGE="http://brltty.com/;
-SRC_URI="http://brltty.com/archive/${P}.tar.xz;
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 x86"
-IUSE="+api +beeper bluetooth +contracted-braille doc +fm gpm iconv icu
-   java +midi ncurses nls ocaml +pcm python usb +speech
-   tcl X"
-REQUIRED_USE="doc? ( api )
-   java? ( api )
-   ocaml? ( api )
-   python? ( api )
-   tcl? ( api )"
-
-COMMON_DEP="bluetooth? ( net-wireless/bluez )
-   gpm? ( >=sys-libs/gpm-1.20 )
-   iconv? ( virtual/libiconv )
-   icu? ( dev-libs/icu:= )
-   python? ( ${PYTHON_DEPS} )
-   ncurses? ( sys-libs/ncurses )
-   nls? ( virtual/libintl )
-   tcl? ( >=dev-lang/tcl-8.4.15:0= )
-   usb? ( virtual/libusb:0 )
-   X? ( x11-libs/libXaw )"
-DEPEND="virtual/pkgconfig
-   java? ( >=virtual/jdk-1.4 )
-   python? ( >=dev-python/cython-0.16[${PYTHON_USEDEP}] )
-   ${COMMON_DEP}"
-RDEPEND="java? ( >=virtual/jre-1.4 )
-   ${COMMON_DEP}"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-fix-ldflags.patch \
-   "${FILESDIR}"/${P}-udev.patch \
-   "${FILESDIR}"/${P}-respect-AR.patch
-
-   java-pkg-opt-2_src_prepare
-
-   # The code runs `pkg-config` directly instead of locating a suitable
-   # pkg-config wrapper (or respecting $PKG_CONFIG).
-   sed -i \
-   -e 's/\/${PKG_CONFIG:-pkg-config}/' \
-   aclocal.m4 configure.ac || die
-
-   # We run eautoconf instead of using eautoreconf because brltty uses
-   # a custom build system that uses autoconf without the rest of the
-   # autotools.
-   eautoconf
-   python_copy_sources
-}
-
-src_configure() {
-   tc-export AR LD PKG_CONFIG
-   # override prefix in order to install into /
-   # braille terminal needs to be available as soon in the boot process as
-   # possible
-   # Also override localstatedir so that the lib/brltty directory is 
installed
-   # correctly.
-   # Disable stripping since we do that ourselves.
-   local myconf=(
-   --prefix=/
-   --localedir=/usr/share/locale
-   --includedir=/usr/include
-   --localstatedir=/var
-   --disable-stripping
-   --with-install-root="${D}"
-   --with-writable-directory="/run/brltty"
-   $(use_enable api)
-   $(use_with beeper beep-package)
-   $(use_enable contracted-braille)
-   $(use_with fm fm-package)
-   $(use_enable gpm)
-   $(use_enable iconv)
-   $(use_enable icu)
-   $(use_enable java java-bindings)
-   $(use_with midi midi-package)
-   $(use_enable nls i18n)
-   $(use_enable ocaml ocaml-bindings)
-   $(use_with pcm pcm-package)
-   $(use_enable speech speech-support)
-   $(use_enable tcl tcl-bindings)
-   $(use_enable X x)
-   $(use_with bluetooth bluetooth-package)
-   $(use_with ncurses curses)
-   $(use_with usb usb-package) )
-
-   econf "${myconf[@]}"
-
-   if use python; then
-   myconf+=( $(use_enable python python-bindings ) )
-
-   python_configure() {
-   econf "${myconf[@]}"
-   }
-   python_foreach_impl run_in_build_dir python_configure
-   fi
-}
-
-src_compile() {
-   local JAVAC_CONF=""
-   local OUR_JNI_FLAGS=""
-   if use java; then
-   OUR_JNI_FLAGS="$(java-pkg_get-jni-cflags)"
-   JAVAC_CONF="${JAVAC} -encoding UTF-8 $(java-pkg_javac-args)"
-   fi
-
-   emake JAVA_JNI_FLAGS="${OUR_JNI_FLAGS}" JAVAC="${JAVAC_CONF}"
-
-   if use python; 

[gentoo-commits] repo/gentoo:master commit in: app-accessibility/brltty/, app-accessibility/brltty/files/

2016-05-06 Thread William Hubbs
commit: 76fdec9e939f7cd795eac1c21096d76016c4b20e
Author: William Hubbs  gentoo  org>
AuthorDate: Fri May  6 22:01:19 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri May  6 22:04:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76fdec9e

app-accessibility/brltty: revision bump to migrate to /sbin/openrc-run

Package-Manager: portage-2.2.26
RepoMan-Options: --force

 app-accessibility/brltty/brltty-5.2-r1.ebuild | 189 ++
 app-accessibility/brltty/files/brltty.rc  |   2 +-
 2 files changed, 190 insertions(+), 1 deletion(-)

diff --git a/app-accessibility/brltty/brltty-5.2-r1.ebuild 
b/app-accessibility/brltty/brltty-5.2-r1.ebuild
new file mode 100644
index 000..665c90e
--- /dev/null
+++ b/app-accessibility/brltty/brltty-5.2-r1.ebuild
@@ -0,0 +1,189 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 python3_5 )
+FINDLIB_USE="ocaml"
+
+inherit findlib eutils multilib toolchain-funcs java-pkg-opt-2 flag-o-matic \
+   autotools udev systemd python-r1
+
+DESCRIPTION="Daemon that provides access to the Linux/Unix console for a blind 
person"
+HOMEPAGE="http://brltty.com/;
+SRC_URI="http://brltty.com/archive/${P}.tar.xz;
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 x86"
+IUSE="+api +beeper bluetooth +contracted-braille doc +fm gpm iconv icu
+   java +midi ncurses nls ocaml +pcm python usb +speech
+   tcl X"
+REQUIRED_USE="doc? ( api )
+   java? ( api )
+   ocaml? ( api )
+   python? ( api )
+   tcl? ( api )"
+
+COMMON_DEP="bluetooth? ( net-wireless/bluez )
+   gpm? ( >=sys-libs/gpm-1.20 )
+   iconv? ( virtual/libiconv )
+   icu? ( dev-libs/icu:= )
+   python? ( ${PYTHON_DEPS} )
+   ncurses? ( sys-libs/ncurses )
+   nls? ( virtual/libintl )
+   tcl? ( >=dev-lang/tcl-8.4.15:0= )
+   usb? ( virtual/libusb:0 )
+   X? ( x11-libs/libXaw )"
+DEPEND="virtual/pkgconfig
+   java? ( >=virtual/jdk-1.4 )
+   python? ( >=dev-python/cython-0.16[${PYTHON_USEDEP}] )
+   ${COMMON_DEP}"
+RDEPEND="java? ( >=virtual/jre-1.4 )
+   ${COMMON_DEP}"
+
+src_prepare() {
+   epatch "${FILESDIR}"/${P}-fix-ldflags.patch \
+   "${FILESDIR}"/${P}-udev.patch \
+   "${FILESDIR}"/${P}-respect-AR.patch
+
+   java-pkg-opt-2_src_prepare
+
+   # The code runs `pkg-config` directly instead of locating a suitable
+   # pkg-config wrapper (or respecting $PKG_CONFIG).
+   sed -i \
+   -e 's/\/${PKG_CONFIG:-pkg-config}/' \
+   aclocal.m4 configure.ac || die
+
+   # We run eautoconf instead of using eautoreconf because brltty uses
+   # a custom build system that uses autoconf without the rest of the
+   # autotools.
+   eautoconf
+   python_copy_sources
+}
+
+src_configure() {
+   tc-export AR LD PKG_CONFIG
+   # override prefix in order to install into /
+   # braille terminal needs to be available as soon in the boot process as
+   # possible
+   # Also override localstatedir so that the lib/brltty directory is 
installed
+   # correctly.
+   # Disable stripping since we do that ourselves.
+   local myconf=(
+   --prefix=/
+   --localedir=/usr/share/locale
+   --includedir=/usr/include
+   --localstatedir=/var
+   --disable-stripping
+   --with-install-root="${D}"
+   --with-writable-directory="/run/brltty"
+   $(use_enable api)
+   $(use_with beeper beep-package)
+   $(use_enable contracted-braille)
+   $(use_with fm fm-package)
+   $(use_enable gpm)
+   $(use_enable iconv)
+   $(use_enable icu)
+   $(use_enable java java-bindings)
+   $(use_with midi midi-package)
+   $(use_enable nls i18n)
+   $(use_enable ocaml ocaml-bindings)
+   $(use_with pcm pcm-package)
+   $(use_enable speech speech-support)
+   $(use_enable tcl tcl-bindings)
+   $(use_enable X x)
+   $(use_with bluetooth bluetooth-package)
+   $(use_with ncurses curses)
+   $(use_with usb usb-package) )
+
+   econf "${myconf[@]}"
+
+   if use python; then
+   myconf+=( $(use_enable python python-bindings ) )
+
+   python_configure() {
+   econf "${myconf[@]}"
+   }
+   python_foreach_impl run_in_build_dir python_configure
+   fi
+}
+
+src_compile() {
+   local JAVAC_CONF=""
+   local OUR_JNI_FLAGS=""
+   if use java; then
+   OUR_JNI_FLAGS="$(java-pkg_get-jni-cflags)"
+   JAVAC_CONF="${JAVAC} -encoding UTF-8 

[gentoo-commits] repo/gentoo:master commit in: www-apps/wordpress/

2016-05-06 Thread Anthony G. Basile
commit: e52ef2ee8e83470e6a065b642e4422150af74e8e
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri May  6 22:02:25 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri May  6 22:02:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e52ef2ee

www-apps/wordpress: bump to version 4.5.2

Package-Manager: portage-2.2.26

 www-apps/wordpress/Manifest   |  1 +
 www-apps/wordpress/wordpress-4.5.2.ebuild | 56 +++
 2 files changed, 57 insertions(+)

diff --git a/www-apps/wordpress/Manifest b/www-apps/wordpress/Manifest
index 4704d61..6125acf 100644
--- a/www-apps/wordpress/Manifest
+++ b/www-apps/wordpress/Manifest
@@ -1,3 +1,4 @@
 DIST wordpress-4.4.2.tar.gz 7099520 SHA256 
c8a74c0f7cfc0d19989d235759e70cebd90f42aa0513bd9bc344230b0f79e08b SHA512 
dfced463ece13f266c15e1b45d8e7882e58ce9cd3b7146c81a4671bc51c58998ae318bd6e45b1f7bc657e2d49d7d39f971d814998e074375129c8dff7cfcac63
 WHIRLPOOL 
c74b1b6d303bbdb3c66c432838e12528f06c124475c3258ccbc6472143e4a9cf56bda4293d7556564eb878d0f701f0853f46f3be7a37b9a2eb035bc08815e6d4
 DIST wordpress-4.5.1.tar.gz 7772980 SHA256 
7bf2912bc23633fd69c80494d7ab83f69d3d222a4ca8300c7e8348e394264bb7 SHA512 
5570ffce5d5da53b43ac864e000174c62a4d3e870832cce3d25337e5036171a6fec1577f5db1dcee01fd0869aa895d4bafd032a3bce9734d1cd625eaa604c00e
 WHIRLPOOL 
7f2f943c94f7ea873247c4be2ed3926a7da8a1a228fefb5825e7654ccc3d7b9c8f7c32e3169e98a7309b98e5f4aca25601a142cf5a7e27e941b45f0cb8a68589
+DIST wordpress-4.5.2.tar.gz 7770470 SHA256 
1a4d9f05142701e72413609cc30029f66af0f3b29d4ff051e888f48026d20ac9 SHA512 
543a0a201881677ac249b65c281e9633f108327dc866ccd47b512734913aad3c30a8df5026ae7dca6d7cc9a38a8fd96669c53d3a4ca706d7bb77b45bf88e63bb
 WHIRLPOOL 
a18a721194dbfa3b58d064ec2735abfb3f79c883652d55d426a64f331f636397dbfb2ae60e4d8b9760d598476c55a92995bf7fa3b638c3ab886a372624a6b58d
 DIST wordpress-4.5.tar.gz 7762865 SHA256 
d99c9599d982c3e42e917e03628c2ced6b6b87b2a6fd05b38ebb724b4057faf0 SHA512 
2d3b5f0629be434e5e0785e373ca4e8d53171ecdde8720e26d70df661afcf0e2475087a54c3b3629a4d6101e11c1840ab90db38608eca4470436b34908d4c5a7
 WHIRLPOOL 
fa0ea4833c2237d343ebec510f966c57d5cb960bdd93abd746b25b2954adb7b103971112c7f101821fa74bb727e15ec5c1452c6a066cff6f8f9fd9f2aec71eca

diff --git a/www-apps/wordpress/wordpress-4.5.2.ebuild 
b/www-apps/wordpress/wordpress-4.5.2.ebuild
new file mode 100644
index 000..3f425a5
--- /dev/null
+++ b/www-apps/wordpress/wordpress-4.5.2.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit webapp
+
+DESCRIPTION="Wordpress PHP and MySQL based content management system (CMS)"
+HOMEPAGE="https://wordpress.org/;
+SRC_URI="https://wordpress.org/${P/_rc/-RC}.tar.gz;
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+
+RDEPEND="virtual/httpd-php
+   || ( dev-lang/php[mysql] dev-lang/php[mysqli] )"
+
+S=${WORKDIR}/${PN}
+
+need_httpd_cgi
+
+IUSE="+akismet examples +themes vhosts"
+
+src_install() {
+   webapp_src_preinst
+
+   dohtml readme.html
+   rm readme.html license.txt || die
+
+   if ! use akismet ; then
+   rm -R wp-content/plugins/akismet/ || die
+   fi
+   if ! use examples ; then
+   rm wp-content/plugins/hello.php || die
+   fi
+   if ! use themes ; then
+   rm -R wp-content/themes/*/ || die
+   fi
+
+   [[ -f wp-config.php ]] || cp wp-config-sample.php wp-config.php
+
+   insinto "${MY_HTDOCSDIR}"
+   doins -r .
+
+   webapp_serverowned "${MY_HTDOCSDIR}"/index.php
+   webapp_serverowned "${MY_HTDOCSDIR}"/wp-admin/menu.php
+   webapp_serverowned "${MY_HTDOCSDIR}"
+
+   webapp_configfile  "${MY_HTDOCSDIR}"/wp-config.php
+
+   webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
+   webapp_postupgrade_txt en "${FILESDIR}"/postupgrade-en.txt
+
+   webapp_src_install
+}



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

2016-05-06 Thread Patrice Clement
commit: d82f2e7289c01ea76266087108441878125d9e27
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri May  6 21:31:11 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri May  6 21:37:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d82f2e72

dev-java/portletapi: Stable for amd64. Retroactively mark stable for the 
remaining arches using the ALLARCHES policy.

Package-Manager: portage-2.2.26

 dev-java/portletapi/Manifest  |  1 -
 dev-java/portletapi/portletapi-1.0.ebuild | 32 ---
 2 files changed, 33 deletions(-)

diff --git a/dev-java/portletapi/Manifest b/dev-java/portletapi/Manifest
index 0f014f0..ab30bbc 100644
--- a/dev-java/portletapi/Manifest
+++ b/dev-java/portletapi/Manifest
@@ -1,3 +1,2 @@
-DIST jetspeed-2.0-src.tar.gz 31317896 SHA256 
c32a336810d934e4a627210e13e751bcd9b4257aaea78410ee1fba0c4a71cac0 SHA512 
26dc10670663f9cd1faf25a9a7ad03942acc69e7b3acebf0608a84f055d9dde5e38e6ee6bce917b3efe53fd2242d04286829fd5f793caba4ebf598d899b599e4
 WHIRLPOOL 
0ae444ae4174ed3a0dea90ff1574c9ccb4b5b0f1389946f06d817c3225c4aa6f4d85c4030b4ac305bfaced7d3b08857b756a3e7d4ccdbf95d604edfd23bf3b27
 DIST portletapi-1.0.tar.gz 212229 SHA256 
bd5e0b0e43286d0cf81d6c8896de39e879c587e19de9b0f8b14e2d86eead9be4 SHA512 
e47da8672be075036989774c90d7a512f7354e090eab3685af90295f07c2842d37a858665a5a2aa3b378e0172c65cbc520180f89e4f08673baeaf19105c0661b
 WHIRLPOOL 
1a3f3100d53247fd084df85c2ca464623e03c48bcd654b7ccb45345fc86ed19b63fa243460f0083957791e2dad57aa975147a9082f24e44aaab434ed986cfa53
 DIST portletapi-2.0.jar 124636 SHA256 
bdba11e796e1370317e2587523925836edfb59cde438759210718fbe1d72694a SHA512 
cf02030850d746b19b85bb3aa204fa7602af47fdda70d5be4c317dea01939abce96915d08186ac876b3081cd8023687e9c4bcef6f4f9a28e8a3456eaa56c8d8f
 WHIRLPOOL 
e5892a6dc6407cf1583d6b43c26d7e6a97531ed9cb42e30306638c8acd725e7df09bea744688fa2a3f8a74bd0b189a388cfd1be387fa354184565063f167c457

diff --git a/dev-java/portletapi/portletapi-1.0.ebuild 
b/dev-java/portletapi/portletapi-1.0.ebuild
deleted file mode 100644
index ebae3d4..000
--- a/dev-java/portletapi/portletapi-1.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-JAVA_PKG_IUSE="doc source"
-inherit java-pkg-2 java-ant-2
-
-JETSPEED_P="jetspeed-2.0-src"
-DESCRIPTION="Jetspeed 2 Portlet API implementation of JSR 168"
-HOMEPAGE="http://portals.apache.org/jetspeed-2/;
-SRC_URI="mirror://apache/portals/jetspeed-2/sources/${JETSPEED_P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="1"
-KEYWORDS="amd64 ppc64 x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND=">=virtual/jdk-1.4"
-RDEPEND=">=virtual/jre-1.4"
-
-S="${WORKDIR}/${JETSPEED_P}/portlet-api"
-
-src_unpack() {
-   unpack ${A}
-   cp "${FILESDIR}/${P}-build.xml" "${S}/build.xml" || die
-}
-
-src_install() {
-   java-pkg_dojar target/${PN}.jar
-   use doc && java-pkg_dojavadoc dist/docs/api
-   use source && java-pkg_dosrc src/java/javax
-}



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

2016-05-06 Thread Patrice Clement
commit: b6bb2cb4c58701d787b7b1fdc98d86feff7884a1
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri May  6 21:27:29 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri May  6 21:37:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6bb2cb4

dev-java/portletapi: Stable for amd64. Retroactively mark stable for the 
remaining arches using the ALLARCHES policy.

Package-Manager: portage-2.2.26

 dev-java/portletapi/portletapi-1.0-r1.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/dev-java/portletapi/portletapi-1.0-r1.ebuild 
b/dev-java/portletapi/portletapi-1.0-r1.ebuild
index 7689b60..ac7574d 100644
--- a/dev-java/portletapi/portletapi-1.0-r1.ebuild
+++ b/dev-java/portletapi/portletapi-1.0-r1.ebuild
@@ -14,12 +14,11 @@ 
SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.tar.gz;
 
 LICENSE="Apache-2.0"
 SLOT="1"
-KEYWORDS="~amd64 ~ppc64 ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc64 x86 ~x86-fbsd"
 IUSE=""
 
 RDEPEND="
>=virtual/jre-1.6"
 
 DEPEND="
-   >=virtual/jdk-1.6
-   source? ( app-arch/zip )"
+   >=virtual/jdk-1.6"



[gentoo-commits] repo/gentoo:master commit in: app-portage/g-cpan/

2016-05-06 Thread Andreas Hüttel
commit: 5fde9b5cebf8bcbe36f6901b740dd80db2ddb30b
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri May  6 20:51:28 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri May  6 20:51:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fde9b5c

app-portage/g-cpan: Various updates to live ebuild and version bump

Package-Manager: portage-2.2.28

 app-portage/g-cpan/Manifest|  1 +
 .../{g-cpan-.ebuild => g-cpan-0.16.7.ebuild}   | 27 ++
 app-portage/g-cpan/g-cpan-.ebuild  | 27 ++
 3 files changed, 37 insertions(+), 18 deletions(-)

diff --git a/app-portage/g-cpan/Manifest b/app-portage/g-cpan/Manifest
index a2f909a..d19ca60 100644
--- a/app-portage/g-cpan/Manifest
+++ b/app-portage/g-cpan/Manifest
@@ -1,2 +1,3 @@
 DIST g-cpan-0.16.5.tar.gz 33894 SHA256 
929c06ee2cdd3361121b6f359ea7fc9201bc42caff96ef1df45b4cb93ccfd988 SHA512 
f2eab23281abe567ee2df42895e3f0783228c6ab5e3a8230089e900fd2700367d736299da20fb228f2d4542491a24da05fd035a81aff7d79ce5132e35c48ad0b
 WHIRLPOOL 
01e0b9fc59264455d57fc64c432e683ae941c74d6efa6e2b3430dea6caac019cfad3e893a4b39de4386a3dadadecf95d828a9fbaa8e8b1260303081e2cc6ce65
 DIST g-cpan-0.16.6.tar.gz 33844 SHA256 
efd0a99483d8ce4a6c828f145592846e6076887b33f95431d7b8256c6973906d SHA512 
f8e9e211ffc09ca42d1444a42ad2b8111beb8988e4a01387cf8788f7e4a52e6133168820c2800ac82429fa022e2ff473a774c48ac140b5cde184b3d77cd6e1b1
 WHIRLPOOL 
95d7db1905df41f320b8876a02f53e3238d55ab1be30e4b086ed362797819629997edd06e167c21325cc8d13540247a842cedcfcf1a236737fec91835b952252
+DIST g-cpan-0.16.7.tar.gz 33621 SHA256 
35ead4120bee1b4158413eb1f5933baf1ce75500495d590163fbfef95c9c171f SHA512 
2412b30fa4c3432882db0f31da6ace841e353a363e15a3b536ea1febcf601a7f9c4e14968e3abcf848e3557098088012472179688caf36cd97ae9b528a3db7fb
 WHIRLPOOL 
646f76745023ae815ebecf57856b50dcd568657df68aee89099dd64904a4d43e9cef82f4f16518bd0b8db50e3ddd57aa200bf8fcffbd6539305f59be798bece1

diff --git a/app-portage/g-cpan/g-cpan-.ebuild 
b/app-portage/g-cpan/g-cpan-0.16.7.ebuild
similarity index 58%
copy from app-portage/g-cpan/g-cpan-.ebuild
copy to app-portage/g-cpan/g-cpan-0.16.7.ebuild
index 1ff7291..a547d86 100644
--- a/app-portage/g-cpan/g-cpan-.ebuild
+++ b/app-portage/g-cpan/g-cpan-0.16.7.ebuild
@@ -10,25 +10,34 @@ if [[ ${PV} == "" ]] ; then
inherit git-r3
SRC_URI=""
 else
-   SRC_URI="https://dev.gentoo.org/~dilfridge/distfiles/${P}.tar.gz;
+   
SRC_URI="https://github.com/gentoo-perl/g-cpan/releases/download/v${PV}/${P}.tar.gz;
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
 fi
 
-DESCRIPTION="g-cpan: generate and install CPAN modules using portage"
+DESCRIPTION="Autogenerate and install ebuilds for CPAN modules"
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Perl/g-cpan;
 
 LICENSE="|| ( Artistic GPL-2 )"
 SLOT="0"
-IUSE=""
+IUSE="test"
 
-DEPEND="
-   >=dev-perl/YAML-0.60
-   >=dev-perl/Shell-EnvImporter-1.70.0-r2
+COMMONDEPEND="
+   virtual/perl-File-Path
+   virtual/perl-File-Spec
dev-perl/Log-Agent
+   virtual/perl-Memoize
+   virtual/perl-IO
+   dev-perl/Shell-EnvImporter
+   virtual/perl-Term-ANSIColor
+   >=dev-perl/YAML-0.60
 "
-RDEPEND="${DEPEND}
+RDEPEND="${COMMONDEPEND}
>=sys-apps/portage-2.0.0
 "
+DEPEND="${COMMONDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? ( >=virtual/perl-Test-Simple-0.940.0 )
+"
 
 src_install() {
perl-module_src_install
@@ -39,8 +48,8 @@ src_install() {
 }
 
 pkg_postinst() {
-   elog "If you want to use g-cpan besides root you may wish to"
-   elog " adjust the permissions on /var/tmp/g-cpan or add users into 
portage group."
+   elog "If you want to use g-cpan as non root user you may wish to adjust"
+   elog "the permissions on /var/tmp/g-cpan or add users to the portage 
group."
elog "Please note that some CPAN packages need additional manual"
elog "parameters or tweaking, due to bugs in their build systems."
 }

diff --git a/app-portage/g-cpan/g-cpan-.ebuild 
b/app-portage/g-cpan/g-cpan-.ebuild
index 1ff7291..a547d86 100644
--- a/app-portage/g-cpan/g-cpan-.ebuild
+++ b/app-portage/g-cpan/g-cpan-.ebuild
@@ -10,25 +10,34 @@ if [[ ${PV} == "" ]] ; then
inherit git-r3
SRC_URI=""
 else
-   SRC_URI="https://dev.gentoo.org/~dilfridge/distfiles/${P}.tar.gz;
+   
SRC_URI="https://github.com/gentoo-perl/g-cpan/releases/download/v${PV}/${P}.tar.gz;
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
 fi
 
-DESCRIPTION="g-cpan: generate and install CPAN modules using portage"
+DESCRIPTION="Autogenerate and install ebuilds for CPAN modules"
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Perl/g-cpan;
 
 LICENSE="|| ( Artistic GPL-2 )"
 SLOT="0"
-IUSE=""
+IUSE="test"
 
-DEPEND="
-   

[gentoo-commits] repo/gentoo:master commit in: virtual/perl-Memoize/

2016-05-06 Thread Andreas Hüttel
commit: 5a2633add396c687d8daa9d9927d81f308b4389a
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri May  6 20:49:47 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri May  6 20:51:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a2633ad

virtual/perl-Memoize: Copy keywords from provider =dev-lang/perl-5.20.2

Package-Manager: portage-2.2.28

 virtual/perl-Memoize/perl-Memoize-1.30.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/perl-Memoize/perl-Memoize-1.30.0-r2.ebuild 
b/virtual/perl-Memoize/perl-Memoize-1.30.0-r2.ebuild
index e671034..d2f0d85 100644
--- a/virtual/perl-Memoize/perl-Memoize-1.30.0-r2.ebuild
+++ b/virtual/perl-Memoize/perl-Memoize-1.30.0-r2.ebuild
@@ -10,7 +10,7 @@ SRC_URI=""
 
 LICENSE=""
 SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux 
~x86-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux 
~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: games-arcade/digger/

2016-05-06 Thread Michael Sterrett
commit: 002bac8de7a6172ebd53741792c4107d56ec0c8d
Author: Michael Sterrett  gentoo  org>
AuthorDate: Fri May  6 20:36:57 2016 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Fri May  6 20:36:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=002bac8d

games-arcade/digger: use the mirrors since gitorious is going away (bug #544846)

Package-Manager: portage-2.2.26

 games-arcade/digger/digger-20140423.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-arcade/digger/digger-20140423.ebuild 
b/games-arcade/digger/digger-20140423.ebuild
index 6948570..45d0893 100644
--- a/games-arcade/digger/digger-20140423.ebuild
+++ b/games-arcade/digger/digger-20140423.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -7,7 +7,7 @@ inherit eutils games
 
 DESCRIPTION="Digger Remastered"
 HOMEPAGE="http://www.digger.org/;
-SRC_URI="https://gitorious.org/digger/digger/archive/8d5769c59d68b37a5b30aa7a9cbfa5a9e15e7ed3.tar.gz
 -> ${P}.tar.gz"
+SRC_URI="mirror://gentoo/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"



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

2016-05-06 Thread Michael Sterrett
commit: 9a559a0a7706b960be5b02d6404c79af1bd9021c
Author: Michael Sterrett  gentoo  org>
AuthorDate: Fri May  6 20:32:29 2016 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Fri May  6 20:32:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a559a0a

games-sports/xmoto: apply all the patches from Debian.  Fixes bug #572518

Package-Manager: portage-2.2.26

 games-sports/xmoto/Manifest|  1 +
 games-sports/xmoto/xmoto-0.5.11.ebuild | 15 ++-
 2 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/games-sports/xmoto/Manifest b/games-sports/xmoto/Manifest
index 8516078..4568381 100644
--- a/games-sports/xmoto/Manifest
+++ b/games-sports/xmoto/Manifest
@@ -1,2 +1,3 @@
 DIST inksmoto-0.7.0.tar.gz 2628941 SHA256 
60bd1369d4c347e127886a5813af13daf39b56ce818c9f8b2fc7d4bba0af7e11 SHA512 
af0ae49ea160a2274f6835abd82ccaa00dc9ff81875b7d4ea29789388c131b519cb77e6da42efeaf51d52b97090c67320af38145204a1d5418781c99cb23a704
 WHIRLPOOL 
e7137f1f23815cdef1061896b8dd687af38a79be341827dcaa437c39de95a98d94b4173d973899a8422c3e77088da11869957996f21c2822d8cfddf15b6a7ea6
 DIST xmoto-0.5.11-src.tar.gz 40785573 SHA256 
a584a6f9292b184686b72c78f16de4b82d5c5b72ad89e41912ff50d03eca26b2 SHA512 
7046745e8f7a045fa2ce1deb3fd75b73b233dc1092f5ecd6dd4e42938f70269a93a3a623a39a1f0520c90643a42dc1ce93c43ad07bf225ff6c50741cc02511f6
 WHIRLPOOL 
9301a6456dea420cc92706022b9003446363d90591f6c90977a1e85195419f42d168456db61077d4e757976ee7ccbb183e6337fda4a683334cea796aa65a7c3b
+DIST xmoto_0.5.11+dfsg-6.debian.tar.xz 25240 SHA256 
066a62c61c026a5bb698058023db058f6192c062e48c04edcae73abc608eb0d2 SHA512 
961f97a3427e77cf020d73820ff99fdc0ca81e5953a18ed9386a1b476eb2af897073adcd7141e993fbf4f8fdca9efdab8cf20b89bfc31196afdcb4f2095ab390
 WHIRLPOOL 
d1c57655ff095d4edb81643c65a4c9530c7287cf79d7a20247b33a4f33b0e3a83afc798ac5248e8f097c9a38cb54a104fb7e125071b27e3e27ba5a9bfccd8aa3

diff --git a/games-sports/xmoto/xmoto-0.5.11.ebuild 
b/games-sports/xmoto/xmoto-0.5.11.ebuild
index 5ecfe3d..82e62ac 100644
--- a/games-sports/xmoto/xmoto-0.5.11.ebuild
+++ b/games-sports/xmoto/xmoto-0.5.11.ebuild
@@ -1,15 +1,17 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-inherit eutils flag-o-matic games
+inherit autotools eutils flag-o-matic games
 
 LVL_PV="0.7.0" #they unfortunately don't release both at the same time, why ~ 
as separator :(
 LVL="inksmoto-${LVL_PV}"
+DEB_PV=6
 DESCRIPTION="A challenging 2D motocross platform game"
 HOMEPAGE="http://xmoto.tuxfamily.org;
 SRC_URI="http://download.tuxfamily.org/xmoto/xmoto/${PV}/${P}-src.tar.gz
+   
mirror://debian/pool/main/x/${PN}/${PN}_${PV}+dfsg-${DEB_PV}.debian.tar.xz
editor? ( 
http://download.tuxfamily.org/xmoto/svg2lvl/${LVL_PV}/${LVL}.tar.gz )"
 
 LICENSE="GPL-2"
@@ -36,24 +38,27 @@ RDEPEND="
media-fonts/dejavu
nls? ( virtual/libintl )"
 DEPEND="${RDEPEND}
+   app-arch/xz-utils
nls? ( sys-devel/gettext )"
 RDEPEND="${RDEPEND}
editor? ( media-gfx/inkscape )"
 
 src_prepare() {
+   EPATCH_SOURCE="${WORKDIR}/debian/patches" \
+   epatch $(cat ${WORKDIR}/debian/patches/series)
use editor && rm -vf "${WORKDIR}"/extensions/{bezmisc,inkex}.py
sed -i \
-e '/^gettextsrcdir/s:=.*:= @localedir@/gettext/po:' \
po/Makefile.in.in || die
-
-   epatch "${FILESDIR}"/${P}-utf8.patch
+   mv configure.{in,ac} || die
+   eautoreconf
 }
 
 src_configure() {
# bug #289792
filter-flags -DdDOUBLE -DdSINGLE
# bug #569624 - ode-0.13 needs one or the other defined
-   append-flags -Dd$(has_version 'dev-games/ode[double-precision]' && echo 
DOUBLE || echo SINGLE)
+   append-cppflags -Dd$(has_version 'dev-games/ode[double-precision]' && 
echo DOUBLE || echo SINGLE)
 
egamesconf \
--enable-threads=posix \



[gentoo-commits] proj/mozilla:master commit in: www-client/firefox/, eclass/

2016-05-06 Thread Ian Stakenvicius
commit: 953e7051d5ca66d42b3a56cbdc71af3e96f86152
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Fri May  6 20:24:10 2016 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Fri May  6 20:29:10 2016 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=953e7051

Minor ebuild and eclass reworking, for improved toolchain support

This commit migrated MOZILLA_FIVE_HOME as well as -Wl,-rpath ldflag settings
out of firefox-46.0.ebuild and into mozcoreconf-v4.eclass, via the inherit in
mozconfig-v6.46.eclass

mozconfig-v6.46.eclass also carries some modifications that are necessary
to properly support crossdev based builds.

(Note that this is not a complete fix for crossdev-build support, as currently
the build system does not find the in-crossdev copy of NSS properly)

 eclass/mozconfig-v6.46.eclass  |  20 ++-
 eclass/mozcoreconf-v4.eclass   | 277 +
 www-client/firefox/firefox-46.0.ebuild |  12 +-
 3 files changed, 291 insertions(+), 18 deletions(-)

diff --git a/eclass/mozconfig-v6.46.eclass b/eclass/mozconfig-v6.46.eclass
index 90b11ef..76de513 100644
--- a/eclass/mozconfig-v6.46.eclass
+++ b/eclass/mozconfig-v6.46.eclass
@@ -27,7 +27,7 @@ case ${EAPI} in
;;
 esac
 
-inherit flag-o-matic toolchain-funcs mozcoreconf-v3
+inherit flag-o-matic toolchain-funcs mozcoreconf-v4
 
 # @ECLASS-VARIABLE: MOZCONFIG_OPTIONAL_WIFI
 # @DESCRIPTION:
@@ -270,11 +270,11 @@ mozconfig_config() {
fi
 
# These are enabled by default in all mozilla applications
-   mozconfig_annotate '' --with-system-nspr 
--with-nspr-prefix="${EPREFIX}"/usr
-   mozconfig_annotate '' --with-system-nss 
--with-nss-prefix="${EPREFIX}"/usr
-   mozconfig_annotate '' --x-includes="${EPREFIX}"/usr/include 
--x-libraries="${EPREFIX}"/usr/$(get_libdir)
+   mozconfig_annotate '' --with-system-nspr 
--with-nspr-prefix="${SYSROOT}${EPREFIX}"/usr
+   mozconfig_annotate '' --with-system-nss 
--with-nss-prefix="${SYSROOT}${EPREFIX}"/usr
+   mozconfig_annotate '' --x-includes="${SYSROOT}${EPREFIX}"/usr/include 
--x-libraries="${SYSROOT}${EPREFIX}"/usr/$(get_libdir)
if use system-libevent; then
-   mozconfig_annotate '' --with-system-libevent="${EPREFIX}"/usr
+   mozconfig_annotate '' 
--with-system-libevent="${SYSROOT}${EPREFIX}"/usr
fi
mozconfig_annotate '' --prefix="${EPREFIX}"/usr
mozconfig_annotate '' --libdir="${EPREFIX}"/usr/$(get_libdir)
@@ -331,8 +331,14 @@ mozconfig_config() {
mozconfig_annotate '' --enable-replace-malloc
fi
 
-   mozconfig_annotate '' --target="${CTARGET:-${CHOST}}"
-   mozconfig_annotate '' --build="${CTARGET:-${CHOST}}"
+   # Instead of the standard --build= and --host=, mozilla uses --host 
instead
+   # of --build, and --target intstead of --host.
+   # Note, mozilla also has --build but it does not do what you think it 
does.
+   mozconfig_annotate '' --target="${CHOST}"
+   if [[ "${CBUILD:-${CHOST}}" != "${CHOST}" ]]; then
+   # set --host only when cross-compiling
+   mozconfig_annotate '' --host="${CBUILD:-${CHOST}}"
+   fi
 
use ffmpeg || mozconfig_annotate '-ffmpeg' --disable-ffmpeg
mozconfig_use_enable pulseaudio

diff --git a/eclass/mozcoreconf-v4.eclass b/eclass/mozcoreconf-v4.eclass
new file mode 100644
index 000..88f7b4b
--- /dev/null
+++ b/eclass/mozcoreconf-v4.eclass
@@ -0,0 +1,277 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+#
+# @ECLASS: mozcoreconf.eclass
+# @MAINTAINER:
+# Mozilla team 
+# @BLURB: core options and configuration functions for mozilla
+# @DESCRIPTION:
+#
+# inherit mozconfig-v5.* or above for mozilla configuration support
+
+# @ECLASS-VARIABLE: MOZILLA_FIVE_HOME
+# @DESCCRIPTION:
+# This is an eclass-generated variable that defines the rpath that the mozilla
+# product will be installed in.  Read-only
+
+if [[ ! ${_MOZCORECONF_V3} ]]; then
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE='ncurses,sqlite,ssl,threads'
+
+inherit multilib toolchain-funcs flag-o-matic python-any-r1 versionator
+
+IUSE="${IUSE} custom-cflags custom-optimization"
+
+DEPEND="virtual/pkgconfig
+   ${PYTHON_DEPS}"
+
+# @FUNCTION: mozconfig_annotate
+# @DESCRIPTION:
+# add an annotated line to .mozconfig
+#
+# Example:
+# mozconfig_annotate "building on ultrasparc" --enable-js-ultrasparc
+# => ac_add_options --enable-js-ultrasparc # building on ultrasparc
+mozconfig_annotate() {
+   declare reason=$1 x ; shift
+   [[ $# -gt 0 ]] || die "mozconfig_annotate missing flags for ${reason}\!"
+   for x in ${*}; do
+   echo "ac_add_options ${x} # ${reason}" >>.mozconfig
+   done
+}
+
+# @FUNCTION: mozconfig_use_enable
+# @DESCRIPTION:
+# add a line to .mozconfig based on a USE-flag
+#
+# Example:
+# 

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

2016-05-06 Thread Steve Arnold
commit: 418119d147082c5946977a882f719831d5e73323
Author: Stephen L Arnold  gentoo  org>
AuthorDate: Fri May  6 20:06:24 2016 +
Commit: Steve Arnold  gentoo  org>
CommitDate: Fri May  6 20:06:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=418119d1

sci-libs/libbufr: update config, remove lto use flag

This also fixes bug 566518 ([TRACKER] use* functions called in global
scope).  Works cleanly with LTO/gold enabled.

Package-Manager: portage-2.2.28

 sci-libs/libbufr/libbufr-000405.ebuild | 11 +--
 sci-libs/libbufr/metadata.xml  |  5 -
 2 files changed, 1 insertion(+), 15 deletions(-)

diff --git a/sci-libs/libbufr/libbufr-000405.ebuild 
b/sci-libs/libbufr/libbufr-000405.ebuild
index 982dbca..a6ea462 100644
--- a/sci-libs/libbufr/libbufr-000405.ebuild
+++ b/sci-libs/libbufr/libbufr-000405.ebuild
@@ -17,7 +17,7 @@ SLOT="0"
 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 # needs someone to test on these: ~alpha ~hppa ~ia64 ~sparc etc ...
 
-IUSE="debug doc examples lto"
+IUSE="debug doc examples"
 
 RDEPEND="
virtual/fortran
@@ -27,10 +27,6 @@ DEPEND="sys-apps/findutils"
 
 S=${WORKDIR}/${MY_P}
 
-if use lto; then
-   RESTRICT="strip"
-fi
-
 pkg_setup() {
fortran-2_pkg_setup
case "$(tc-getFC)" in
@@ -115,11 +111,6 @@ src_compile() {
TC_FLAGS="CC=$CC FC=$FC AR=$AR RANLIB=$RANLIB"
ARFLAGS="rv"
 
-   if use lto; then
-   PLUGIN_PATH="--plugin=$(gcc -print-prog-name=liblto_plugin.so)"
-   tc-ld-is-gold && ARFLAGS="rv ${PLUGIN_PATH}"
-   fi
-
# emake won't work with this fossil...
BUFRFLAGS="ARCH=$target R64=$R64 CNAME=$CNAME"
make $TC_FLAGS ARFLAGS="${ARFLAGS}" $BUFRFLAGS || die "make failed"

diff --git a/sci-libs/libbufr/metadata.xml b/sci-libs/libbufr/metadata.xml
index 2acd055..e650719 100644
--- a/sci-libs/libbufr/metadata.xml
+++ b/sci-libs/libbufr/metadata.xml
@@ -9,9 +9,4 @@
and comes with a few example tools (some of which are built
and installed).

-   
-   
-   Use gold linker and -flto (requires existing env setup)
-   
-   
 



[gentoo-commits] data/xml-schema:master commit in: /

2016-05-06 Thread Michał Górny
commit: 6070512ca8d633167fdcb976e386df7b834b7f61
Author: Michał Górny  gentoo  org>
AuthorDate: Fri May  6 19:48:22 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri May  6 19:48:22 2016 +
URL:https://gitweb.gentoo.org/data/xml-schema.git/commit/?id=6070512c

metadata: Fix allowing multiple s on maintainers

 metadata.xsd | 17 +
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/metadata.xsd b/metadata.xsd
index fe2c5d2..27039cd 100644
--- a/metadata.xsd
+++ b/metadata.xsd
@@ -41,6 +41,10 @@



+   
+   
+   
+   



@@ -112,14 +116,11 @@
 


-   
-   
-   
-   
-   
+   
+   
+   
+   
+   





[gentoo-commits] proj/releng:master commit in: tools/

2016-05-06 Thread Robin H. Johnson
commit: 56e7e887ecc07f873e3ae5a668cf63ba6be290a0
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Fri May  6 18:30:25 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri May  6 18:30:25 2016 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=56e7e887

catalyst-auto: fix whitespace.

Signed-off-by: Robin H. Johnson  gentoo.org>

 tools/catalyst-auto | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/catalyst-auto b/tools/catalyst-auto
index cc4da35..101cf82 100755
--- a/tools/catalyst-auto
+++ b/tools/catalyst-auto
@@ -253,7 +253,7 @@ for i in $(find -name '*.spec'); do
   sed -i 's|^snapshot:.*$|snapshot: '${DATESTAMP}'|' ${i}
 
   # We don't want to mangle the source_subpath for our stage1 spec
-  if ! [[grep -q '^target: *stage1$' ${i} || grep -q '^target: *stage4$' ${i} 
]]; then
+  if ! [[ grep -q '^target: *stage1$' ${i} || grep -q '^target: *stage4$' ${i} 
]]; then
 sed -i 's|^source_subpath:.*$|source_subpath: '${new_source_subpath}'|' 
${i}
   fi
 



[gentoo-commits] proj/releng:master commit in: scripts/

2016-05-06 Thread Robin H. Johnson
commit: 060a341e103a3e2801d8f0f6f3b69dad2378072b
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Fri May  6 18:31:55 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri May  6 18:31:55 2016 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=060a341e

copy_buildsync: squelch errors.

Signed-off-by: Robin H. Johnson  gentoo.org>

 scripts/copy_buildsync.sh | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/scripts/copy_buildsync.sh b/scripts/copy_buildsync.sh
index a917b9d..2b5c1ef 100755
--- a/scripts/copy_buildsync.sh
+++ b/scripts/copy_buildsync.sh
@@ -109,8 +109,8 @@ process_arch() {
cd "${outdir}"
# %T@
 
-   iso_list="$(find 20* -name '*.iso' -printf '%h %f %h/%f\n' |grep -v 
hardened | sort -n)"
-   stage3_list=$(find 20* -name "stage3*" -a "${EXTENSIONS[@]}" -printf 
'%h %f %h/%f\n' | grep -v hardened | sort -n)
+   iso_list="$(find 20* -name '*.iso' -printf '%h %f %h/%f\n' 2>/dev/null 
|grep -v hardened | sort -n)"
+   stage3_list=$(find 20* -name "stage3*" -a "${EXTENSIONS[@]}" -printf 
'%h %f %h/%f\n' 2>/dev/null| grep -v hardened | sort -n)
latest_iso_date="$(echo -e "${iso_list}" |awk '{print $1}' |cut -d/ -f1 
| tail -n1)"
latest_stage3_date="$(echo -e "${stage3_list}" |awk '{print $1}' |cut 
-d/ -f1 | tail -n1)"
header="$(echo -e "# Latest as of $(date -uR)\n# ts=$(date -u +%s)")"
@@ -154,10 +154,10 @@ process_arch() {
 
# New variant preserve code
find_variants=( '(' -iname '*.iso' -o -name 'netboot-*' -o 
"${EXTENSIONS[@]}" ')' )
-   variants=$(find 20* "${find_variants[@]}" -printf '%f\n' | sed  -e 
's,-20[012][0-9]\{5\}.*,,g' -r | sort -u)
+   variants=$(find 20* "${find_variants[@]}" -printf '%f\n' 2>/dev/null | 
sed  -e 's,-20[012][0-9]\{5\}.*,,g' -r | sort -u)
echo -n '' >"${tmpdir}"/.keep.${ARCH}.txt
for v in $variants ; do
-   variant_path=$(find 20* -iname "${v}-20*" "${find_variants[@]}" 
-print | sed -e "s,.*/$a/autobuilds/,,g" | sort -k1,1 -t/ | tail -n1 )
+   variant_path=$(find 20* -iname "${v}-20*" "${find_variants[@]}" 
-print 2>/dev/null | sed -e "s,.*/$a/autobuilds/,,g" | sort -k1,1 -t/ | tail 
-n1 )
if [ -z "${variant_path}" -o ! -e "${variant_path}" ]; then
echo "$ARCH: Variant ${v} is missing" 1>&2
continue



[gentoo-commits] repo/gentoo:master commit in: media-libs/libsdl2/, media-libs/libsdl2/files/

2016-05-06 Thread Michael Sterrett
commit: 4f9e81a49b1e76bd49e908a62de183b527fc9e08
Author: Michael Sterrett  gentoo  org>
AuthorDate: Fri May  6 16:59:43 2016 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Fri May  6 17:09:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f9e81a4

media-libs/libsdl2: clean old

Package-Manager: portage-2.2.26

 media-libs/libsdl2/Manifest|   1 -
 .../libsdl2/files/libsdl2-2.0.3-gles-wayland.patch |  59 
 .../libsdl2/files/libsdl2-2.0.3-static-libs.patch  |  89 
 media-libs/libsdl2/libsdl2-2.0.3-r200.ebuild   | 152 -
 4 files changed, 301 deletions(-)

diff --git a/media-libs/libsdl2/Manifest b/media-libs/libsdl2/Manifest
index 2f64355..b878bc5 100644
--- a/media-libs/libsdl2/Manifest
+++ b/media-libs/libsdl2/Manifest
@@ -1,2 +1 @@
-DIST SDL2-2.0.3.tar.gz 3871267 SHA256 
a5a69a6abf80bcce713fa873607735fe712f44276a7f048d60a61bb2f6b3c90c SHA512 
b6d2485154fbc07ab86a4305485e116d35fac25a97033b9e1c65ee0eb8251a18209cb1de3a914d9c0ddc53aa1ffac66c865b111d218e79eb5a10ed00dfec7540
 WHIRLPOOL 
d88658953cb668b8d4167b799b4a2e9b90a426fddd0cdddb4914420063e5768c609c2b4a954b50c14cbc5728894646db6bad0e5244ef6a563d4e2ec3da26298b
 DIST SDL2-2.0.4.tar.gz 4136230 SHA256 
da55e540bf6331824153805d58b590a29c39d2d506c6d02fa409aedeab21174b SHA512 
dd0a95878639856c0f4b8a579ace8071379ab64519fa139b22d3ed857a0f0db87a75bc8480c7207e02fbffd1fdbd448e3c0b882c451675b0e2f1a945af02e1d6
 WHIRLPOOL 
2203061d32d51552e5bcfaa9752de5cb3173c0c733698894de177f9a0c1bad73706633e2d232f9b893e4c3736a93aff00ae94eb044b19a05a1cdd7a4c030b574

diff --git a/media-libs/libsdl2/files/libsdl2-2.0.3-gles-wayland.patch 
b/media-libs/libsdl2/files/libsdl2-2.0.3-gles-wayland.patch
deleted file mode 100644
index e71f465..000
--- a/media-libs/libsdl2/files/libsdl2-2.0.3-gles-wayland.patch
+++ /dev/null
@@ -1,59 +0,0 @@
-# HG changeset patch
-# User Gabriel Jacobo 
-# Date 1400020960 10800
-# Node ID 3e2b3019a879f2efd846a6c04b55c20fc2752238
-# Parent  83077b1f989a44670a69286848034d7f4999b8fe
-Fixes #2541, build failure with Wayland enabled, OpenGL ES disabled
-
-Also includes an attempt at fixing building SDL on Ubuntu 13.10, which 
hopefully
-won't break 14.04
-
-diff -r 83077b1f989a -r 3e2b3019a879 configure.in
 a/configure.in Tue May 13 12:10:37 2014 -0700
-+++ b/configure.in Tue May 13 19:42:40 2014 -0300
-@@ -1174,7 +1174,9 @@
- AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
- AC_MSG_CHECKING(for Wayland support)
- video_wayland=no
--if test x$PKG_CONFIG != xno; then
-+if  test x$PKG_CONFIG != xno && \
-+test x$video_opengl_egl = xyes && \
-+test x$video_opengles_v2 = xyes; then
- if $PKG_CONFIG --exists wayland-client wayland-egl wayland-cursor 
egl xkbcommon ; then
- WAYLAND_CFLAGS=`$PKG_CONFIG --cflags wayland-client 
wayland-egl wayland-cursor xkbcommon`
- WAYLAND_LIBS=`$PKG_CONFIG --libs wayland-client wayland-egl 
wayland-cursor xkbcommon`
-@@ -1256,7 +1258,18 @@
- if $PKG_CONFIG --exists mirclient egl xkbcommon ; then
- MIR_CFLAGS=`$PKG_CONFIG --cflags mirclient egl xkbcommon`
- MIR_LIBS=`$PKG_CONFIG --libs mirclient egl xkbcommon`
-+save_CFLAGS="$CFLAGS"
-+CFLAGS="$save_CFLAGS $MIR_CFLAGS"
-+
-+dnl This will disable Mir on Ubuntu < 14.04
-+AC_TRY_COMPILE([
-+#include 
-+],[
-+MirMotionToolType tool = mir_motion_tool_type_mouse;
-+],[
- video_mir=yes
-+])
-+CFLAGS="$save_CFLAGS"
- fi
- fi
- AC_MSG_RESULT($video_mir)
-@@ -2691,12 +2704,12 @@
- CheckNAS
- CheckSNDIO
- CheckX11
--CheckWayland
--CheckMir
- CheckDirectFB
- CheckFusionSound
- CheckOpenGLX11
- CheckOpenGLESX11
-+CheckMir
-+CheckWayland
- CheckLibUDev
- CheckDBus
- CheckInputEvents
-

diff --git a/media-libs/libsdl2/files/libsdl2-2.0.3-static-libs.patch 
b/media-libs/libsdl2/files/libsdl2-2.0.3-static-libs.patch
deleted file mode 100644
index e4823e1..000
--- a/media-libs/libsdl2/files/libsdl2-2.0.3-static-libs.patch
+++ /dev/null
@@ -1,89 +0,0 @@
 SDL2-2.0.2.orig/Makefile.in
-+++ SDL2-2.0.2/Makefile.in
-@@ -33,10 +33,10 @@
- OBJECTS = @OBJECTS@
- VERSION_OBJECTS = @VERSION_OBJECTS@
- 
--SDLMAIN_TARGET = libSDL2main.a
-+SDLMAIN_TARGET = libSDL2main.la
- SDLMAIN_OBJECTS = @SDLMAIN_OBJECTS@
- 
--SDLTEST_TARGET = libSDL2_test.a
-+SDLTEST_TARGET = libSDL2_test.la
- SDLTEST_OBJECTS = @SDLTEST_OBJECTS@
- 
- SRC_DIST = *.txt acinclude Android.mk autogen.sh android-project 
build-scripts cmake configure configure.in debian include Makefile.* 
sdl2-config.in sdl2.m4 sdl2.pc.in 

[gentoo-commits] repo/gentoo:master commit in: games-simulation/pmars-sdl/

2016-05-06 Thread Michael Sterrett
commit: 79d57486b7eb17684a0fcd4c94cc081322f0edbb
Author: Michael Sterrett  gentoo  org>
AuthorDate: Fri May  6 17:01:06 2016 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Fri May  6 17:09:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79d57486

games-simulation/pmars-sdl: add slot to sys-libs/ncurses

Package-Manager: portage-2.2.26

 games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild 
b/games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild
index 1826340..c4489d1 100644
--- a/games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild
+++ b/games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild
@@ -20,7 +20,7 @@ IUSE="sdl X"
 
 DEPEND="sdl? ( x11-libs/libX11 media-libs/libsdl[video] )
X? ( x11-libs/libX11 )
-   !sdl? ( !X? ( sys-libs/ncurses ) )"
+   !sdl? ( !X? ( sys-libs/ncurses:0 ) )"
 RDEPEND=${DEPEND}
 
 S=${WORKDIR}/${MY_P}



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

2016-05-06 Thread Michael Palimaka
commit: 242a7e77aa3f94cf49df3f829f5aaf250ee423d8
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri May  6 16:48:27 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri May  6 16:48:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=242a7e77

profiles: drop obsolete KDE masks on arm

 profiles/arch/arm/package.use.mask | 14 ++
 1 file changed, 2 insertions(+), 12 deletions(-)

diff --git a/profiles/arch/arm/package.use.mask 
b/profiles/arch/arm/package.use.mask
index 6b5a15a..90c8667 100644
--- a/profiles/arch/arm/package.use.mask
+++ b/profiles/arch/arm/package.use.mask
@@ -190,11 +190,6 @@ dev-qt/qt-mobility messaging
 # Do it! No reason to ask permission before!
 >=media-sound/easytag-2.2.0 opus test
 
-# Johannes Huber  (16 Apr 2014)
-# unkeyworded deps
-kde-apps/gwenview semantic-desktop
-kde-apps/okular dpi
-
 # Yixun Lan  (12 Apr 2014)
 # app-emulation/qemu is not keyworded on arm arch.
 app-emulation/xen-tools system-qemu
@@ -391,16 +386,11 @@ app-accessibility/speech-dispatcher flite
 # Markus Meier  (23 Dec 2012)
 # mask kde-base/* flags due to unkeyworded dependencies
 kde-apps/kalzium editor solver
-kde-apps/krdc rdesktop
-kde-apps/kopete jingle msn sms
-kde-base/kdeplasma-addons fcitx oauth qwt scim
-kde-apps/okular ebook chm
+kde-apps/kopete jingle sms
+kde-base/kdeplasma-addons fcitx oauth
 kde-apps/kstars indi
 kde-apps/kdeutils-meta floppy
 kde-apps/kdenetwork-meta ppp
-kde-base/smokeqt qscintilla qwt
-kde-base/qtruby qscintilla qwt
-kde-base/perlqt qscintilla qwt
 
 # Alexandre Rostovtsev  (15 Dec 2012)
 # media-video/coherence not keyworded



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

2016-05-06 Thread Brian Evans
commit: 02670f31ea72e91544943778dfb52d557c4013f0
Author: Brian Evans  gentoo  org>
AuthorDate: Fri May  6 16:35:34 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Fri May  6 16:35:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02670f31

package.use.mask: remove old entries for obsoleted flags

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

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 8ed29dc..802eac7 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -78,10 +78,6 @@ app-text/atril ps
 # media-tv/xawtv is masked for removal
 net-im/ayttm webcam
 
-# Brian Evans  (17 Dec 2015)
-# Drizzle is slated for removal
-sys-cluster/gearmand drizzle
-
 # Patrice Clement  (27 Nov 2015)
 # Unsastified dependencies are upsetting repoman. Needs investigation.
 app-arch/cfv bittorrent
@@ -254,10 +250,6 @@ app-admin/clsync cluster mhash
 # Mask for all arches, can be unmasked on arm once keyworded there
 games-board/stockfish armv7
 
-# Brian Evans  (02 Feb 2015)
-# Masked for dev-php/PEAR-MDB2_Driver_sqlite last rites Bug 538584
-dev-php/PHPonTrax sqlite
-
 # Brian Evans  (22 Jan 2015)
 # PHP module split into dev-php/ming-php which is still ~arch
 

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

2016-05-06 Thread Michał Górny
commit: 5a3cc3108312a8982db95c0615361a4b1fe46884
Author: Michał Górny  gentoo  org>
AuthorDate: Fri May  6 16:21:27 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri May  6 16:32:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a3cc310

x11-misc/shutterbug: Fix global scope use* calls, #582206

Copy the solution for global scope use* calls from newer ebuilds.

 x11-misc/shutterbug/shutterbug-1.6.36.ebuild | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/x11-misc/shutterbug/shutterbug-1.6.36.ebuild 
b/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
index 89d7e03..0afa601 100644
--- a/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
+++ b/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
@@ -21,6 +21,8 @@ DEPEND="
 
 RDEPEND="${DEPEND}"
 
-FOXCONF="$(use_enable jpeg) \
-   $(use_enable png) \
-   $(use_enable tiff)"
+src_configure() {
+   FOXCONF="$(use_enable jpeg) \
+   $(use_enable png) \
+   $(use_enable tiff)" fox_src_configure
+}



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

2016-05-06 Thread Michał Górny
commit: e4333453f946ddfd571daf06738e947bab21a53b
Author: Michał Górny  gentoo  org>
AuthorDate: Fri May  6 16:29:48 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri May  6 16:32:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4333453

x11-misc/pathfinder: Fix global scope use* calls, #582206

Copy the solution to global scope use* calls from newer ebuilds.

 x11-misc/pathfinder/pathfinder-1.6.36.ebuild | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/x11-misc/pathfinder/pathfinder-1.6.36.ebuild 
b/x11-misc/pathfinder/pathfinder-1.6.36.ebuild
index 61802fd..7e5945b 100644
--- a/x11-misc/pathfinder/pathfinder-1.6.36.ebuild
+++ b/x11-misc/pathfinder/pathfinder-1.6.36.ebuild
@@ -21,6 +21,8 @@ DEPEND="
 
 RDEPEND="${DEPEND}"
 
-FOXCONF="$(use_enable jpeg) \
-   $(use_enable png) \
-   $(use_enable tiff)"
+src_configure() {
+   FOXCONF="$(use_enable jpeg) \
+   $(use_enable png) \
+   $(use_enable tiff)" fox_src_configure
+}



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

2016-05-06 Thread Michael Palimaka
commit: 63838a926c9ebd9839f903df054cf68b7a0c6861
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri May  6 16:29:03 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri May  6 16:29:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63838a92

profiles: drop obsolete dev-libs/libattica[qt5] mask

dev-libs/attica no longer has a qt5 USE flag.

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

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 91f31fd..8ed29dc 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -306,10 +306,6 @@ net-im/bitlbee skype
 # if anybody cares.
 net-libs/ortp zrtp
 
-# Johannes Huber  (14 Sep 2014)
-# Masked until dev-libs/extra-cmake-modules is in tree.
-dev-libs/libattica qt5
-
 # Michał Górny  (06 Sep 2014)
 # Mask the removed/deprecated flags for old ebuilds that do not use
 # the python-r1 eclass.



[gentoo-commits] repo/gentoo:master commit in: games-emulation/yabause/

2016-05-06 Thread Michael Palimaka
commit: 665cbdb7f4992b03e3eaae9469864cf1184d5a06
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri May  6 16:26:09 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri May  6 16:27:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=665cbdb7

games-emulation/yabause: drop 'opengl?' USE dependency on dev-qt/qtwidgets:5

OpenGL support is no longer optional in dev-qt/qtwidgets.

Package-Manager: portage-2.2.28

 games-emulation/yabause/yabause-0.9.14.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-emulation/yabause/yabause-0.9.14.ebuild 
b/games-emulation/yabause/yabause-0.9.14.ebuild
index 93e58c9..03d52f6 100644
--- a/games-emulation/yabause/yabause-0.9.14.ebuild
+++ b/games-emulation/yabause/yabause-0.9.14.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -28,7 +28,7 @@ RDEPEND="
)
qt5? (
dev-qt/qtcore:5
-   dev-qt/qtwidgets:5[opengl?]
+   dev-qt/qtwidgets:5
opengl? ( dev-qt/qtopengl:5 )
)
!qt5? (



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

2016-05-06 Thread Michael Palimaka
commit: a6493f99f98d86ad20c4b159b77a66a0d1095b25
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri May  6 16:27:07 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri May  6 16:27:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6493f99

profiles: drop obsolete games-emulation/yabause[qt5] mask

Qt 5 is now stable.

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

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 4492a8d..91f31fd 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -236,11 +236,6 @@ dev-db/percona-server cluster
 # Mask bdplus support and unmask on arches where libbdplus is keyworded.
 media-libs/libbluray bdplus
 
-# Michael Sterrett  (09 Mar 2015)
-# Mask qt5 support until qt5 is stable so as to not
-# hold up making yabause stable.
-games-emulation/yabause qt5
-
 # Michał Górny  (01 Mar 2015)
 # pidgin-opensteamworks is only available for amd64, ppc32 and x86
 net-im/telepathy-connection-managers steam



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

2016-05-06 Thread Michael Palimaka
commit: 511b2b1413e3c428283f32b4990bbc6c9c1ea6ff
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri May  6 16:23:43 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri May  6 16:27:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=511b2b14

profiles: drop obsolete games-strategy/freeciv[qt5] mask

Qt 5 is now stable.

 profiles/base/package.use.mask | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 60abb8a..4492a8d 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -222,8 +222,7 @@ dev-java/proguard j2me
 
 # Lars Wendler  (19 Mar 2015)
 # >=games-strategy/freeciv-2.5.0 requires >=dev-lang/lua-5.2
-# No stable qt5 yet.
-games-strategy/freeciv system-lua qt5
+games-strategy/freeciv system-lua
 
 # Brian Evans  (17 Mar 2015)
 # Mask the cluster flag for deprecation. Use dev-db/mysql-cluster if



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

2016-05-06 Thread Michael Palimaka
commit: 85d37084b7e52be6ee388ed17858505561045669
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri May  6 16:21:47 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri May  6 16:21:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85d37084

profiles: drop duplicate app-office/akonadi-server[qt5] mask

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

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 2918155..60abb8a 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -260,10 +260,6 @@ app-admin/clsync cluster mhash
 # Mask for all arches, can be unmasked on arm once keyworded there
 games-board/stockfish armv7
 
-# Michael Palimaka  (03 Feb 2015)
-# Requires unreleased version of dev-libs/soprano
-app-office/akonadi-server qt5
-
 # Brian Evans  (02 Feb 2015)
 # Masked for dev-php/PEAR-MDB2_Driver_sqlite last rites Bug 538584
 dev-php/PHPonTrax sqlite



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

2016-05-06 Thread Michael Palimaka
commit: a6a69ce240267e0d76e56ea79a5d60ae602fa614
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri May  6 16:20:09 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri May  6 16:20:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6a69ce2

profiles: drop net-irc/quassel[qt5] stable mask from base profile

As Qt 5 is now stable on various archs, masking is handled in arch-specific
profiles instead.

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

diff --git a/profiles/base/package.use.stable.mask 
b/profiles/base/package.use.stable.mask
index 0b1186d..8aa10bf 100644
--- a/profiles/base/package.use.stable.mask
+++ b/profiles/base/package.use.stable.mask
@@ -43,10 +43,6 @@ dev-lang/python-exec -python_targets_python3_5
 =app-office/libreoffice-5.0* gtk3
 =app-office/libreoffice-5.1* gtk3
 
-# Johannes Huber  (27 Aug 2015)
-# Needs KF 5 stable, bug #558460
-net-irc/quassel qt5
-
 # Davide Pesavento  (26 Aug 2015)
 # The corresponding Qt5 modules are not stable yet, and we don't want
 # to stabilize them solely because of PyQt5 when there are no other



[gentoo-commits] repo/gentoo:master commit in: games-action/bzflag/files/, games-action/bzflag/

2016-05-06 Thread Michael Sterrett
commit: 116dc605032bd5eb45643f78be8fdaaf54d8d8ee
Author: Michael Sterrett  gentoo  org>
AuthorDate: Fri May  6 16:13:18 2016 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Fri May  6 16:13:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=116dc605

games-action/bzflag: version bump

Package-Manager: portage-2.2.26

 games-action/bzflag/Manifest   |  1 +
 games-action/bzflag/bzflag-2.4.4.ebuild| 59 ++
 .../bzflag/files/bzflag-2.4.4-configure.patch  | 37 ++
 3 files changed, 97 insertions(+)

diff --git a/games-action/bzflag/Manifest b/games-action/bzflag/Manifest
index 84c0d87..71cf915 100644
--- a/games-action/bzflag/Manifest
+++ b/games-action/bzflag/Manifest
@@ -1 +1,2 @@
 DIST bzflag-2.4.2.tar.bz2 15971448 SHA256 
4f7bc52284cc4b39fc352855e555b2b064c1de6a18f7474e249073070762c811 SHA512 
e5645e825f19896ad4dc1e3bf97c9b52ed3838210d97d5532936a9306623283330c9535288af90f86e32c88a1a7996b2c872b9c081558eea48400b86b3a1a6ff
 WHIRLPOOL 
82a5e543a8fdcb80c516394c63901c80c77fc659090f952cb36f65a9fb14c5ca06d6547dc9d347c6abf0ee706c40437f80edf20c424775bf6e202423e025794c
+DIST bzflag-2.4.4.tar.bz2 13922761 SHA256 
5842941e53440d2e88c955ddb594964fc5145912f61100832d224c1a017e2ecb SHA512 
ee9eefe6a24250f1aa0ac808755f2e3700ea97c559019ca8beefb8d236afd1571314f07a8f19662677526ae364d38617a1a62b356e851c27669cb9acef1a8fd3
 WHIRLPOOL 
c96853e3f1053a9b53c9d6ba27a6f638c2913e87a26d6188151a66f8f78aeeb78fac28e8cefde10d23d65fe02e49b93cd4516993e5b48a6f3f240ec67ab0fc8e

diff --git a/games-action/bzflag/bzflag-2.4.4.ebuild 
b/games-action/bzflag/bzflag-2.4.4.ebuild
new file mode 100644
index 000..a840982
--- /dev/null
+++ b/games-action/bzflag/bzflag-2.4.4.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit autotools eutils flag-o-matic games
+
+DESCRIPTION="3D tank combat simulator game"
+HOMEPAGE="http://www.bzflag.org/;
+SRC_URI="https://download.bzflag.org/bzflag/source/${PV}/${P}.tar.bz2;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="dedicated upnp"
+
+UIDEPEND=""
+DEPEND=">=net-misc/curl-7.15.0
+   sys-libs/ncurses:0
+   net-dns/c-ares
+   sys-libs/zlib
+   upnp? ( net-libs/miniupnpc )
+   !dedicated? (
+   virtual/opengl
+   virtual/glu
+   media-libs/libsdl[sound,joystick,video] )"
+RDEPEND=${DEPEND}
+
+src_prepare() {
+   epatch "${FILESDIR}"/${P}-configure.patch
+   eautoreconf
+}
+
+src_configure() {
+   local myconf
+
+   if use dedicated ; then
+   ewarn
+   ewarn "You are building a server-only copy of BZFlag"
+   ewarn
+   myconf="--disable-client --without-SDL"
+   fi
+   egamesconf \
+   $(use_enable upnp UPnP) \
+   ${myconf}
+}
+
+src_install() {
+   DOCS="AUTHORS ChangeLog DEVINFO PORTING README README.Linux" \
+   default
+
+   if ! use dedicated ; then
+   newicon data/bzflag-48x48.png ${PN}.png
+   make_desktop_entry ${PN} "BZFlag"
+   fi
+
+   prune_libtool_files --modules
+   prepgamesdirs
+}

diff --git a/games-action/bzflag/files/bzflag-2.4.4-configure.patch 
b/games-action/bzflag/files/bzflag-2.4.4-configure.patch
new file mode 100644
index 000..b280621
--- /dev/null
+++ b/games-action/bzflag/files/bzflag-2.4.4-configure.patch
@@ -0,0 +1,37 @@
+diff -ru bzflag-2.4.4.orig/configure.ac bzflag-2.4.4/configure.ac
+--- bzflag-2.4.4.orig/configure.ac 2016-02-14 19:09:51.0 -0500
 bzflag-2.4.4/configure.ac  2016-05-05 16:35:35.475935345 -0400
+@@ -215,7 +215,7 @@
+ AC_SUBST(AR)
+ AC_SUBST(AR_FLAGS)
+ 
+-AC_PATH_PROG(CCACHE, ccache)
++AC_PATH_PROG(CCACHE, ccachex)
+ if test "$CCACHE" ; then
+ CC="ccache $CC"
+ CXX="ccache $CXX"
+@@ -747,13 +747,13 @@
+ #
+ # the GCC version is known to be at least 4.3 because it has C++0x support
+ # possible future warnings: -Wconversion (1894) -Wfloat-equal (317)
+-FLAGS="-Wall -Wextra -Wcast-qual -Wredundant-decls -Wshadow -Wundef -pedantic"
++FLAGSx="-Wall -Wextra -Wcast-qual -Wredundant-decls -Wshadow -Wundef 
-pedantic"
+ case $host_os in
+  linux*)
+   AC_DEFINE(HALF_RATE_AUDIO, 1, [Half rate Audio])
+   CONF_CFLAGS="$CONF_CFLAGS $FLAGS"
+   CONF_CXXFLAGS="$CONF_CXXFLAGS $FLAGS"
+-  case $host_vendor in
++  case $host_vendorx in
+pc)
+  if expr `$CC -dumpversion` \>= "3.4" > /dev/null ; then
+FLAGS=-mtune
+@@ -836,7 +836,7 @@
+ CXXFLAGS="$user_CXXFLAGS"
+ AC_DEFINE(DEBUG, 1, [Debugging enabled])
+ else
+-if test "$GCC" = yes ; then
++if test "$GCC" = yesx ; then
+   case "`$CC --version 2>&1`" in
+   *LLVM*)
+   # Apple LLVM falsely claims to be GCC



[gentoo-commits] repo/gentoo:master commit in: media-plugins/frei0r-plugins/files/

2016-05-06 Thread Michael Palimaka
commit: 2dbcf233bb85e3785ff8748d364c24ef42b84ffd
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri May  6 15:59:32 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri May  6 16:01:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dbcf233

media-plugins/frei0r-plugins: update patch to restore opencv-2 compatibility

Patch by PhobosK  fastmail.fm>.

Gentoo-bug: 568608

Package-Manager: portage-2.2.28

 .../files/frei0r-plugins-1.4-opencv3.patch | 48 ++
 1 file changed, 31 insertions(+), 17 deletions(-)

diff --git 
a/media-plugins/frei0r-plugins/files/frei0r-plugins-1.4-opencv3.patch 
b/media-plugins/frei0r-plugins/files/frei0r-plugins-1.4-opencv3.patch
index 6188c98..d6d96b0 100644
--- a/media-plugins/frei0r-plugins/files/frei0r-plugins-1.4-opencv3.patch
+++ b/media-plugins/frei0r-plugins/files/frei0r-plugins-1.4-opencv3.patch
@@ -1,50 +1,64 @@
 ./frei0r-plugins-1.4/src/filter/facedetect/facedetect.c.opencv3
2013-02-24 14:43:22.0 +0100
-+++ ./frei0r-plugins-1.4/src/filter/facedetect/facedetect.c2015-07-08 
12:44:30.987056878 +0200
-@@ -211,8 +211,8 @@ CvSeq* detect_and_draw( IplImage* img, C
+diff -ur a/frei0r-plugins-1.4/src/filter/facedetect/facedetect.c 
b/frei0r-plugins-1.4/src/filter/facedetect/facedetect.c
+--- a/frei0r-plugins-1.4/src/filter/facedetect/facedetect.c2013-02-24 
15:43:22.0 +0200
 b/frei0r-plugins-1.4/src/filter/facedetect/facedetect.c2015-12-19 
12:27:05.984180725 +0200
+@@ -211,8 +211,13 @@
  
double scale = 1.3;
IplImage* gray = cvCreateImage( cvSize(img->width,img->height), 8, 1 );
--  IplImage* small_img = cvCreateImage( cvSize( cvRound (img->width/scale),
--   cvRound (img->height/scale)),
++#if (CV_VERSION_EPOCH != 2)
 +  IplImage* small_img = cvCreateImage( cvSize( cvRound 
((double)img->width/scale),
 +   cvRound 
((double)img->height/scale)),
++#else
+   IplImage* small_img = cvCreateImage( cvSize( cvRound (img->width/scale),
+cvRound (img->height/scale)),
++#endif
 8, 1 );
int i;
  
 ./frei0r-plugins-1.4/src/filter/facedetect/facedetect.cpp.opencv3  
2013-02-24 14:43:22.0 +0100
-+++ ./frei0r-plugins-1.4/src/filter/facedetect/facedetect.cpp  2015-07-08 
12:48:32.754615885 +0200
-@@ -259,11 +259,11 @@ private:
+diff -ur a/frei0r-plugins-1.4/src/filter/facedetect/facedetect.cpp 
b/frei0r-plugins-1.4/src/filter/facedetect/facedetect.cpp
+--- a/frei0r-plugins-1.4/src/filter/facedetect/facedetect.cpp  2013-02-24 
15:43:22.0 +0200
 b/frei0r-plugins-1.4/src/filter/facedetect/facedetect.cpp  2015-12-19 
12:24:00.023349871 +0200
+@@ -259,11 +259,19 @@
  {
  double scale = this->scale == 0? 1.0 : this->scale;
  CvScalar colors[5] = {
--{{cvRound(color[0].r * 255), cvRound(color[0].g * 255), 
cvRound(color[0].b * 255), cvRound(alpha * 255)}},
--{{cvRound(color[1].r * 255), cvRound(color[1].g * 255), 
cvRound(color[1].b * 255), cvRound(alpha * 255)}},
--{{cvRound(color[2].r * 255), cvRound(color[2].g * 255), 
cvRound(color[2].b * 255), cvRound(alpha * 255)}},
--{{cvRound(color[3].r * 255), cvRound(color[3].g * 255), 
cvRound(color[3].b * 255), cvRound(alpha * 255)}},
--{{cvRound(color[4].r * 255), cvRound(color[4].g * 255), 
cvRound(color[4].b * 255), cvRound(alpha * 255)}},
++#if (CV_VERSION_EPOCH != 2)
 +CvScalar(cvRound(color[0].r * 255), cvRound(color[0].g * 255), 
cvRound(color[0].b * 255), cvRound(alpha * 255)),
 +CvScalar(cvRound(color[1].r * 255), cvRound(color[1].g * 255), 
cvRound(color[1].b * 255), cvRound(alpha * 255)),
 +CvScalar(cvRound(color[2].r * 255), cvRound(color[2].g * 255), 
cvRound(color[2].b * 255), cvRound(alpha * 255)),
 +CvScalar(cvRound(color[3].r * 255), cvRound(color[3].g * 255), 
cvRound(color[3].b * 255), cvRound(alpha * 255)),
 +CvScalar(cvRound(color[4].r * 255), cvRound(color[4].g * 255), 
cvRound(color[4].b * 255), cvRound(alpha * 255)),
++#else
+ {{cvRound(color[0].r * 255), cvRound(color[0].g * 255), 
cvRound(color[0].b * 255), cvRound(alpha * 255)}},
+ {{cvRound(color[1].r * 255), cvRound(color[1].g * 255), 
cvRound(color[1].b * 255), cvRound(alpha * 255)}},
+ {{cvRound(color[2].r * 255), cvRound(color[2].g * 255), 
cvRound(color[2].b * 255), cvRound(alpha * 255)}},
+ {{cvRound(color[3].r * 255), cvRound(color[3].g * 255), 
cvRound(color[3].b * 255), cvRound(alpha * 255)}},
+ {{cvRound(color[4].r * 255), cvRound(color[4].g * 255), 
cvRound(color[4].b * 255), cvRound(alpha * 255)}},
++#endif
  };
  
  for (int i = 0; i < (objects ? objects->total : 0); i++)
-@@ -287,14 +287,14 @@ private:
+@@ 

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

2016-05-06 Thread Mike Frysinger
commit: e951c2cf4d5f05789640ed4eb8b1a5ae38bc29ed
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri May  6 15:48:32 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri May  6 15:49:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e951c2cf

net-libs/nghttp2: mark 1.7.1 arm/arm64/m68k/s390/sh stable

 net-libs/nghttp2/nghttp2-1.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp2/nghttp2-1.7.1.ebuild 
b/net-libs/nghttp2/nghttp2-1.7.1.ebuild
index 118731f..f65b7c1 100644
--- a/net-libs/nghttp2/nghttp2-1.7.1.ebuild
+++ b/net-libs/nghttp2/nghttp2-1.7.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]] ; then
inherit git-2
 else

SRC_URI="https://github.com/tatsuhiro-t/nghttp2/releases/download/v${PV}/${P}.tar.gz;
-   KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh 
sparc x86"
 fi
 
 DESCRIPTION="HTTP/2 C Library"



[gentoo-commits] repo/gentoo:master commit in: mail-filter/opendkim/files/, mail-filter/opendkim/

2016-05-06 Thread Robin H. Johnson
commit: fb670812f05712a931096baf601235e3afc8759b
Author: Yuri Konotopov  gmail  com>
AuthorDate: Tue May  3 08:24:58 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri May  6 15:36:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb670812

mail-filter/opendkim: added runtime configuration to systemd unit.

Fixes: https://bugs.gentoo.org/show_bug.cgi?id=542936
(cherry picked from commit add2021a15b569224b4d50b1d072307d00de0eb9)
Signed-off-by: Robin H. Johnson  gentoo.org>

 mail-filter/opendkim/files/opendkim-r1.service |  15 ++
 mail-filter/opendkim/opendkim-2.10.3-r1.ebuild | 196 +
 2 files changed, 211 insertions(+)

diff --git a/mail-filter/opendkim/files/opendkim-r1.service 
b/mail-filter/opendkim/files/opendkim-r1.service
new file mode 100644
index 000..f2e937a
--- /dev/null
+++ b/mail-filter/opendkim/files/opendkim-r1.service
@@ -0,0 +1,15 @@
+[Unit]
+Description=DomainKeys Identified Mail (DKIM) Milter
+Documentation=man:opendkim(8) man:opendkim.conf(5) man:opendkim-genkey(8) 
man:opendkim-genzone(8) man:opendkim-testadsp(8) man:opendkim-testkey 
http://www.opendkim.org/docs.html
+After=network.target nss-lookup.target syslog.target
+
+[Service]
+ExecStart=/usr/sbin/opendkim -f -x /etc/opendkim/opendkim.conf
+ExecReload=/bin/kill -USR1 $MAINPID
+RuntimeDirectory=opendkim
+RuntimeDirectoryMode=0750
+User=milter
+Group=milter
+
+[Install]
+WantedBy=multi-user.target

diff --git a/mail-filter/opendkim/opendkim-2.10.3-r1.ebuild 
b/mail-filter/opendkim/opendkim-2.10.3-r1.ebuild
new file mode 100644
index 000..73ec108
--- /dev/null
+++ b/mail-filter/opendkim/opendkim-2.10.3-r1.ebuild
@@ -0,0 +1,196 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit autotools db-use eutils systemd user
+
+# for betas
+#MY_P=${P/_b/.B}
+#S=${WORKDIR}/${PN}-2.8.0
+#SRC_URI="mirror://sourceforge/opendkim/${MY_P}.tar.gz"
+
+DESCRIPTION="A milter-based application to provide DKIM signing and 
verification"
+HOMEPAGE="http://opendkim.org;
+SRC_URI="mirror://sourceforge/opendkim/${P}.tar.gz"
+
+LICENSE="Sendmail-Open-Source BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="+berkdb gnutls ldap lmdb lua memcached opendbx poll sasl selinux +ssl 
static-libs unbound"
+
+DEPEND="|| ( mail-filter/libmilter mail-mta/sendmail )
+   dev-libs/libbsd
+   ssl? ( >=dev-libs/openssl-0.9.8:* )
+   berkdb? ( >=sys-libs/db-3.2:* )
+   opendbx? ( >=dev-db/opendbx-1.4.0 )
+   lua? ( dev-lang/lua:* )
+   ldap? ( net-nds/openldap )
+   lmdb? ( dev-db/lmdb )
+   memcached? ( dev-libs/libmemcached )
+   sasl? ( dev-libs/cyrus-sasl )
+   unbound? ( >=net-dns/unbound-1.4.1 net-dns/dnssec-root )
+   !unbound? ( net-libs/ldns )
+   gnutls? ( >=net-libs/gnutls-2.11.7 )"
+
+RDEPEND="${DEPEND}
+   sys-process/psmisc
+   selinux? ( sec-policy/selinux-dkim )
+"
+
+REQUIRED_USE="sasl? ( ldap )"
+
+pkg_setup() {
+   enewgroup milter
+   # mail-milter/spamass-milter creates milter user with this home 
directory
+   # For consistency reasons, milter user must be created here with this 
home directory
+   # even though this package doesn't need a home directory for this user 
(#280571)
+   enewuser milter -1 -1 /var/lib/milter milter
+}
+
+src_prepare() {
+   sed -i -e 's:/var/db/dkim:/etc/opendkim:g' \
+  -e 's:/var/db/opendkim:/var/lib/opendkim:g' \
+  -e 's:/etc/mail:/etc/opendkim:g' \
+  -e 's:mailnull:milter:g' \
+  -e 's:^#[[:space:]]*PidFile.*:PidFile 
/run/opendkim/opendkim.pid:' \
+  opendkim/opendkim.conf.sample 
opendkim/opendkim.conf.simple.in \
+  stats/opendkim-reportstats{,.in} || die
+
+   sed -i -e 's:dist_doc_DATA:dist_html_DATA:' 
libopendkim/docs/Makefile.am \
+   || die
+
+   sed -i -e '/sock.*mt.getcwd/s:mt.getcwd():"/tmp":' opendkim/tests/*.lua
+   sed -i -e '/sock.*mt.getcwd/s:mt.getcwd():"/proc/self/cwd":' 
opendkim/tests/*.lua
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf
+   if use berkdb ; then
+   myconf=$(db_includedir)
+   myconf="--with-db-incdir=${myconf#-I}"
+   myconf+=" --enable-popauth"
+   myconf+=" --enable-query_cache"
+   myconf+=" --enable-stats"
+   fi
+   if use unbound; then
+   myconf+=" --with-unbound"
+   else
+   myconf+=" --with-ldns"
+   fi
+   if use ldap; then
+   myconf+=" $(use_with sasl)"
+   fi
+   econf \
+   $(use_with berkdb db) \
+   $(use_with opendbx odbx) \
+   $(use_with lua) \
+   $(use_enable lua rbl) \
+   $(use_with ldap openldap) \
+   $(use_with lmdb) \
+   $(use_enable poll) \
+   $(use_enable 

[gentoo-commits] proj/kde:master commit in: kde-apps/ktuberling/files/, kde-apps/ktuberling/

2016-05-06 Thread Johannes Huber
commit: 3f232e494278b6524275842dd6ec8b9e3eb65051
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri May  6 15:16:52 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri May  6 15:16:52 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=3f232e49

kde-apps/ktuberling: Update patch

Package-Manager: portage-2.2.28

 .../ktuberling/files/ktuberling-15.12.3-deps.patch | 53 --
 .../ktuberling/files/ktuberling-16.04.0-deps.patch | 38 
 kde-apps/ktuberling/ktuberling-16.04.0.ebuild  |  2 +-
 3 files changed, 39 insertions(+), 54 deletions(-)

diff --git a/kde-apps/ktuberling/files/ktuberling-15.12.3-deps.patch 
b/kde-apps/ktuberling/files/ktuberling-15.12.3-deps.patch
deleted file mode 100644
index e948222..000
--- a/kde-apps/ktuberling/files/ktuberling-15.12.3-deps.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-commit ed566185fe698c71714009602c4dfbe4a91e0313
-Author: Andreas Sturmlechner 
-Date:   Thu May 5 00:32:34 2016 +0200
-
-Fix dependencies (drop unused, add missing)
-
-REVIEW: 127832
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 2df6ca6..884a4b5 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -6,23 +6,18 @@ set (QT_MIN_VERSION "5.3.0")
- find_package(ECM 1.7.0 REQUIRED CONFIG)
- set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} 
${ECM_KDE_MODULE_DIR})
- 
--find_package(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS Widgets Qml 
Quick QuickWidgets Svg Test)
--find_package(KF5 REQUIRED COMPONENTS 
--CoreAddons
--Config
--ItemModels
--WidgetsAddons
--WindowSystem
-+find_package(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS PrintSupport 
Svg Widgets Xml)
-+find_package(KF5 REQUIRED COMPONENTS
-+Completion
- Config
-+ConfigWidgets
-+CoreAddons
- DBusAddons
- I18n
--ConfigWidgets
--TextWidgets
-+KDELibs4Support #TODO eventually remove kdelibs4support
-+WidgetsAddons
- XmlGui
--KIO
--NotifyConfig
--NewStuff
--KDELibs4Support) #TODO eventually remove kdelibs4support
-+)
- 
- find_package(KF5KDEGames 4.9.0 REQUIRED)
- find_package(Phonon4Qt5 CONFIG REQUIRED)
-@@ -58,7 +53,7 @@ file(GLOB ICONS_SRCS 
"${CMAKE_CURRENT_SOURCE_DIR}/*-apps-ktuberling.png")
- ecm_add_app_icon(ktuberling_SRCS ICONS ${ICONS_SRCS})
- add_executable(ktuberling ${ktuberling_SRCS})
- 
--target_link_libraries(ktuberling   KF5::KIOCore KF5KDEGames 
Phonon::phonon4qt5 Qt5::Svg Phonon::phonon4qt5 KF5::DBusAddons KF5::XmlGui 
KF5::Completion Qt5::PrintSupport KF5::KDELibs4Support)
-+target_link_libraries(ktuberling  KF5KDEGames Phonon::phonon4qt5 Qt5::Svg 
KF5::DBusAddons KF5::XmlGui KF5::Completion Qt5::PrintSupport 
KF5::KDELibs4Support)
- 
- install(TARGETS ktuberling  ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} )
- 

diff --git a/kde-apps/ktuberling/files/ktuberling-16.04.0-deps.patch 
b/kde-apps/ktuberling/files/ktuberling-16.04.0-deps.patch
new file mode 100644
index 000..542b7a6
--- /dev/null
+++ b/kde-apps/ktuberling/files/ktuberling-16.04.0-deps.patch
@@ -0,0 +1,38 @@
+From: Andreas Sturmlechner 
+Date: Thu, 05 May 2016 21:21:24 +
+Subject: Fix dependencies (drop unused, add missing)
+X-Git-Url: 
http://quickgit.kde.org/?p=ktuberling.git=commitdiff=dd1831de7ac2944b3cb2c07679be58369cfa1635
+---
+Fix dependencies (drop unused, add missing)
+---
+
+
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -7,22 +7,17 @@
+ find_package(ECM 1.7.0 REQUIRED CONFIG)
+ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} 
${ECM_KDE_MODULE_DIR})
+ 
+-find_package(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS Widgets Qml 
Quick QuickWidgets Svg Test)
++find_package(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS PrintSupport 
Svg Widgets Xml)
+ find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS
++Completion
+ Config
+ ConfigWidgets
+ CoreAddons
+ Crash
+ DBusAddons
+ I18n
+-ItemModels
+ KDELibs4Support #TODO eventually remove kdelibs4support
+-KIO
+-NewStuff
+-NotifyConfig
+-TextWidgets
+ WidgetsAddons
+-WindowSystem
+ XmlGui
+ )
+ 
+@@ -68,7 +63,6 @@
+ 

diff --git a/kde-apps/ktuberling/ktuberling-16.04.0.ebuild 
b/kde-apps/ktuberling/ktuberling-16.04.0.ebuild
index c7f5b15..41cff21 100644
--- a/kde-apps/ktuberling/ktuberling-16.04.0.ebuild
+++ b/kde-apps/ktuberling/ktuberling-16.04.0.ebuild
@@ -37,4 +37,4 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
-PATCHES=( "${FILESDIR}/${PN}-15.12.3-deps.patch" )
+PATCHES=( "${FILESDIR}/${P}-deps.patch" )



[gentoo-commits] proj/kde:master commit in: kde-apps/ktuberling/files/, kde-apps/ktuberling/

2016-05-06 Thread Johannes Huber
commit: 618392fb940724c28c42fb2a0deeaa14c4ce166d
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri May  6 15:12:22 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri May  6 15:12:22 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=618392fb

kde-apps/ktuberling: Sync with main tree

Package-Manager: portage-2.2.28

 .../ktuberling/files/ktuberling-15.12.3-deps.patch | 53 ++
 kde-apps/ktuberling/ktuberling-16.04.0.ebuild  |  5 +-
 .../ktuberling/ktuberling-16.04.49..ebuild |  3 +-
 kde-apps/ktuberling/ktuberling-.ebuild |  3 +-
 4 files changed, 58 insertions(+), 6 deletions(-)

diff --git a/kde-apps/ktuberling/files/ktuberling-15.12.3-deps.patch 
b/kde-apps/ktuberling/files/ktuberling-15.12.3-deps.patch
new file mode 100644
index 000..e948222
--- /dev/null
+++ b/kde-apps/ktuberling/files/ktuberling-15.12.3-deps.patch
@@ -0,0 +1,53 @@
+commit ed566185fe698c71714009602c4dfbe4a91e0313
+Author: Andreas Sturmlechner 
+Date:   Thu May 5 00:32:34 2016 +0200
+
+Fix dependencies (drop unused, add missing)
+
+REVIEW: 127832
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 2df6ca6..884a4b5 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -6,23 +6,18 @@ set (QT_MIN_VERSION "5.3.0")
+ find_package(ECM 1.7.0 REQUIRED CONFIG)
+ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} 
${ECM_KDE_MODULE_DIR})
+ 
+-find_package(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS Widgets Qml 
Quick QuickWidgets Svg Test)
+-find_package(KF5 REQUIRED COMPONENTS 
+-CoreAddons
+-Config
+-ItemModels
+-WidgetsAddons
+-WindowSystem
++find_package(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS PrintSupport 
Svg Widgets Xml)
++find_package(KF5 REQUIRED COMPONENTS
++Completion
+ Config
++ConfigWidgets
++CoreAddons
+ DBusAddons
+ I18n
+-ConfigWidgets
+-TextWidgets
++KDELibs4Support #TODO eventually remove kdelibs4support
++WidgetsAddons
+ XmlGui
+-KIO
+-NotifyConfig
+-NewStuff
+-KDELibs4Support) #TODO eventually remove kdelibs4support
++)
+ 
+ find_package(KF5KDEGames 4.9.0 REQUIRED)
+ find_package(Phonon4Qt5 CONFIG REQUIRED)
+@@ -58,7 +53,7 @@ file(GLOB ICONS_SRCS 
"${CMAKE_CURRENT_SOURCE_DIR}/*-apps-ktuberling.png")
+ ecm_add_app_icon(ktuberling_SRCS ICONS ${ICONS_SRCS})
+ add_executable(ktuberling ${ktuberling_SRCS})
+ 
+-target_link_libraries(ktuberling   KF5::KIOCore KF5KDEGames 
Phonon::phonon4qt5 Qt5::Svg Phonon::phonon4qt5 KF5::DBusAddons KF5::XmlGui 
KF5::Completion Qt5::PrintSupport KF5::KDELibs4Support)
++target_link_libraries(ktuberling  KF5KDEGames Phonon::phonon4qt5 Qt5::Svg 
KF5::DBusAddons KF5::XmlGui KF5::Completion Qt5::PrintSupport 
KF5::KDELibs4Support)
+ 
+ install(TARGETS ktuberling  ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} )
+ 

diff --git a/kde-apps/ktuberling/ktuberling-16.04.0.ebuild 
b/kde-apps/ktuberling/ktuberling-16.04.0.ebuild
index 2295d95..c7f5b15 100644
--- a/kde-apps/ktuberling/ktuberling-16.04.0.ebuild
+++ b/kde-apps/ktuberling/ktuberling-16.04.0.ebuild
@@ -4,8 +4,7 @@
 
 EAPI=6
 
-KDE_HANDBOOK="true"
-KDE_PUNT_BOGUS_DEPS="true"
+KDE_HANDBOOK="forceoptional"
 KDE_SELINUX_MODULE="games"
 inherit kde5
 
@@ -37,3 +36,5 @@ DEPEND="
media-libs/phonon[qt5]
 "
 RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${PN}-15.12.3-deps.patch" )

diff --git a/kde-apps/ktuberling/ktuberling-16.04.49..ebuild 
b/kde-apps/ktuberling/ktuberling-16.04.49..ebuild
index b9ced51..345ebe7 100644
--- a/kde-apps/ktuberling/ktuberling-16.04.49..ebuild
+++ b/kde-apps/ktuberling/ktuberling-16.04.49..ebuild
@@ -4,8 +4,7 @@
 
 EAPI=6
 
-KDE_HANDBOOK="true"
-KDE_PUNT_BOGUS_DEPS="true"
+KDE_HANDBOOK="forceoptional"
 KDE_SELINUX_MODULE="games"
 inherit kde5
 

diff --git a/kde-apps/ktuberling/ktuberling-.ebuild 
b/kde-apps/ktuberling/ktuberling-.ebuild
index b9ced51..345ebe7 100644
--- a/kde-apps/ktuberling/ktuberling-.ebuild
+++ b/kde-apps/ktuberling/ktuberling-.ebuild
@@ -4,8 +4,7 @@
 
 EAPI=6
 
-KDE_HANDBOOK="true"
-KDE_PUNT_BOGUS_DEPS="true"
+KDE_HANDBOOK="forceoptional"
 KDE_SELINUX_MODULE="games"
 inherit kde5
 



[gentoo-commits] repo/gentoo:master commit in: kde-apps/ktuberling/files/, kde-apps/ktuberling/

2016-05-06 Thread Johannes Huber
commit: ee16002c620a2a56bfbccfc8e4a231fe1a5468a0
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Wed May  4 23:06:58 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri May  6 15:07:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee16002c

kde-apps/ktuberling: Drop unused deps

Gentoo-bug: 581588

Package-Manager: portage-2.2.27

Signed-off-by: Johannes Huber  gentoo.org>

 .../ktuberling/files/ktuberling-15.12.3-deps.patch | 53 ++
 kde-apps/ktuberling/ktuberling-15.12.3.ebuild  |  6 +--
 2 files changed, 56 insertions(+), 3 deletions(-)

diff --git a/kde-apps/ktuberling/files/ktuberling-15.12.3-deps.patch 
b/kde-apps/ktuberling/files/ktuberling-15.12.3-deps.patch
new file mode 100644
index 000..e948222
--- /dev/null
+++ b/kde-apps/ktuberling/files/ktuberling-15.12.3-deps.patch
@@ -0,0 +1,53 @@
+commit ed566185fe698c71714009602c4dfbe4a91e0313
+Author: Andreas Sturmlechner 
+Date:   Thu May 5 00:32:34 2016 +0200
+
+Fix dependencies (drop unused, add missing)
+
+REVIEW: 127832
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 2df6ca6..884a4b5 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -6,23 +6,18 @@ set (QT_MIN_VERSION "5.3.0")
+ find_package(ECM 1.7.0 REQUIRED CONFIG)
+ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} 
${ECM_KDE_MODULE_DIR})
+ 
+-find_package(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS Widgets Qml 
Quick QuickWidgets Svg Test)
+-find_package(KF5 REQUIRED COMPONENTS 
+-CoreAddons
+-Config
+-ItemModels
+-WidgetsAddons
+-WindowSystem
++find_package(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS PrintSupport 
Svg Widgets Xml)
++find_package(KF5 REQUIRED COMPONENTS
++Completion
+ Config
++ConfigWidgets
++CoreAddons
+ DBusAddons
+ I18n
+-ConfigWidgets
+-TextWidgets
++KDELibs4Support #TODO eventually remove kdelibs4support
++WidgetsAddons
+ XmlGui
+-KIO
+-NotifyConfig
+-NewStuff
+-KDELibs4Support) #TODO eventually remove kdelibs4support
++)
+ 
+ find_package(KF5KDEGames 4.9.0 REQUIRED)
+ find_package(Phonon4Qt5 CONFIG REQUIRED)
+@@ -58,7 +53,7 @@ file(GLOB ICONS_SRCS 
"${CMAKE_CURRENT_SOURCE_DIR}/*-apps-ktuberling.png")
+ ecm_add_app_icon(ktuberling_SRCS ICONS ${ICONS_SRCS})
+ add_executable(ktuberling ${ktuberling_SRCS})
+ 
+-target_link_libraries(ktuberling   KF5::KIOCore KF5KDEGames 
Phonon::phonon4qt5 Qt5::Svg Phonon::phonon4qt5 KF5::DBusAddons KF5::XmlGui 
KF5::Completion Qt5::PrintSupport KF5::KDELibs4Support)
++target_link_libraries(ktuberling  KF5KDEGames Phonon::phonon4qt5 Qt5::Svg 
KF5::DBusAddons KF5::XmlGui KF5::Completion Qt5::PrintSupport 
KF5::KDELibs4Support)
+ 
+ install(TARGETS ktuberling  ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} )
+ 

diff --git a/kde-apps/ktuberling/ktuberling-15.12.3.ebuild 
b/kde-apps/ktuberling/ktuberling-15.12.3.ebuild
index 9fd065c..ceea7be 100644
--- a/kde-apps/ktuberling/ktuberling-15.12.3.ebuild
+++ b/kde-apps/ktuberling/ktuberling-15.12.3.ebuild
@@ -4,8 +4,7 @@
 
 EAPI=6
 
-KDE_HANDBOOK="true"
-KDE_PUNT_BOGUS_DEPS="true"
+KDE_HANDBOOK="forceoptional"
 KDE_SELINUX_MODULE="games"
 inherit kde5
 
@@ -35,5 +34,6 @@ DEPEND="
$(add_qt_dep qtxml)
media-libs/phonon[qt5]
 "
-
 RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${P}-deps.patch" )



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

2016-05-06 Thread Johannes Huber
commit: 4f5b4b3a825182a8ca2fa8b757adb7a59fef803d
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri May  6 14:58:53 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri May  6 14:58:53 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=4f5b4b3a

kde-apps/kcalc: Drop patch from live

Issue solved upstream.

Gentoo-bug: 582244
Reported-by: Duncan <1i5t5.duncan  cox.net>

Package-Manager: portage-2.2.28

 kde-apps/kcalc/kcalc-16.04.49..ebuild | 2 --
 kde-apps/kcalc/kcalc-.ebuild  | 2 --
 2 files changed, 4 deletions(-)

diff --git a/kde-apps/kcalc/kcalc-16.04.49..ebuild 
b/kde-apps/kcalc/kcalc-16.04.49..ebuild
index 9114e81..26b9e70 100644
--- a/kde-apps/kcalc/kcalc-16.04.49..ebuild
+++ b/kde-apps/kcalc/kcalc-16.04.49..ebuild
@@ -34,5 +34,3 @@ DEPEND="${RDEPEND}
dev-libs/mpfr:0
sys-devel/gettext
 "
-
-PATCHES=( "${FILESDIR}/${PN}-15.12.3-fixsetsize.patch" )

diff --git a/kde-apps/kcalc/kcalc-.ebuild b/kde-apps/kcalc/kcalc-.ebuild
index 9114e81..26b9e70 100644
--- a/kde-apps/kcalc/kcalc-.ebuild
+++ b/kde-apps/kcalc/kcalc-.ebuild
@@ -34,5 +34,3 @@ DEPEND="${RDEPEND}
dev-libs/mpfr:0
sys-devel/gettext
 "
-
-PATCHES=( "${FILESDIR}/${PN}-15.12.3-fixsetsize.patch" )



[gentoo-commits] repo/gentoo:master commit in: games-arcade/savagewheels/files/

2016-05-06 Thread Sam Jorna
commit: c0ccc55ee184f3ee105ece6118c7706cdbeacebb
Author: Sam Jorna  gentoo  org>
AuthorDate: Fri May  6 14:09:21 2016 +
Commit: Sam Jorna  gentoo  org>
CommitDate: Fri May  6 14:09:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0ccc55e

games-arcade/savagewheels: fix broken patch

Line endings in patch got mangled when originally added.

Gentoo-bug: 582268
Package-Manager: portage-2.2.28

 .../files/savagewheels-1.6.0-linux_dirs.patch  | 628 ++---
 1 file changed, 314 insertions(+), 314 deletions(-)

diff --git 
a/games-arcade/savagewheels/files/savagewheels-1.6.0-linux_dirs.patch 
b/games-arcade/savagewheels/files/savagewheels-1.6.0-linux_dirs.patch
index b407657..13ca801 100644
--- a/games-arcade/savagewheels/files/savagewheels-1.6.0-linux_dirs.patch
+++ b/games-arcade/savagewheels/files/savagewheels-1.6.0-linux_dirs.patch
@@ -1,174 +1,174 @@
 --- savagewheels-1.6.0/src/Main.cpp.old2016-04-14 21:18:38.115071742 
-0700
 +++ savagewheels-1.6.0/src/Main.cpp2016-04-14 22:01:42.375422000 -0700
 @@ -43,10 +43,17 @@
-  * Alpha Release: 29.06.2003
-  */
- 
- #include "Main.h"
- 
-+const char *sys_datadir;
-+const char *usr_cfgdir;
-+const char *usr_datadir;
-+
-+char *ART_FILE;
-+char *BINDINGS_FILE;
-+
- int main( int argc, char *argv[] )
- {
-   bool hardware_support = true;
-   /*
-* Start the game in a window by default.
+  * Alpha Release: 29.06.2003
+  */
+ 
+ #include "Main.h"
+ 
++const char *sys_datadir;
++const char *usr_cfgdir;
++const char *usr_datadir;
++
++char *ART_FILE;
++char *BINDINGS_FILE;
++
+ int main( int argc, char *argv[] )
+ {
+   bool hardware_support = true;
+   /*
+* Start the game in a window by default.
 @@ -57,16 +64,92 @@ int main( int argc, char *argv[] )
-* Linux Note: Running the game in fullscreen would sometimes crash the 
gfx manager.
-* This is probably due to some video drivers. I was so far able to 
reproduce it on
-* ATI Mobility type of video cards.
-*/
-   bool fullscreen = false;
-+  String tmp;
- 
- #ifdef LINUX_BUILD
-+  sys_datadir = getenv("SAVAGEWHEELS_SYS_DATADIR");
-+  if (sys_datadir == NULL)
-+  {
-+  fprintf(stderr, "SAVAGEWHEELS_SYS_DATADIR not set.\n");
-+  return 1;
-+  }
-+  sys_datadir = strdup(sys_datadir);
-+
-+  usr_cfgdir = getenv("SAVAGEWHEELS_USR_CONFDIR");
-+  if (usr_cfgdir == NULL)
-+  {
-+  fprintf(stderr, "SAVAGEWHEELS_USR_CONFDIR not set.\n");
-+  return 1;
-+  }
-+  usr_cfgdir = strdup(usr_cfgdir);
-+
-+  usr_datadir = getenv("SAVAGEWHEELS_USR_DATADIR");
-+  if (usr_datadir == NULL)
-+  {
-+  fprintf(stderr, "SAVAGEWHEELS_USR_DATADIR not set.\n");
-+  return 1;
-+  }
-+  usr_datadir = strdup(usr_datadir);
-+
-+  if (sys_datadir == NULL || usr_cfgdir == NULL || usr_datadir == NULL)
-+  {
-+  fprintf(stderr, "Insufficient memory.  Execution aborted.\n");
-+  return 1;
-+  }
-+
-   setenv("SDL_VIDEO_CENTERED", "1", 1);
- #else
-+  sys_datadir = usr_cfgdir = usr_datadir = "./";
-   _putenv("SDL_VIDEO_CENTERED=1");
- #endif
-+  int len;
-+  len = snprintf(NULL, 0, "%s/graphics/gfxdata.kdf", sys_datadir);
-+  if (len < 0)
-+  {
-+  fprintf(stderr,
-+  "Unable to store '%s/graphics/gfxdata.kdf': %s\n",
-+  sys_datadir, strerror(errno));
-+  return 1;
-+  }
-+  if (len == INT_MAX)
-+  {
-+  fprintf(stderr, "Unable to store '%s/graphics/gfxdata.kdf': "
-+  "Path too log\n", sys_datadir);
-+  return 1;
-+  }
-+  ART_FILE = new (std::nothrow) char[len + 1];
-+  if (ART_FILE == NULL)
-+  {
-+  fprintf(stderr, "Insufficent memory.  Execution aborted.\n");
-+  return 1;
-+  }
-+  sprintf(ART_FILE, "%s/graphics/gfxdata.kdf", sys_datadir);
-+
-+  len = snprintf(NULL, 0, "%s/bindings.xml", usr_cfgdir);
-+  if (len < 0)
-+  {
-+  fprintf(stderr,
-+  "Unable to store '%s/bindings.xml': %s\n", usr_cfgdir,
-+  strerror(errno));
-+  return 1;
-+  }
-+  if (len == INT_MAX)
-+  {
-+  fprintf(stderr, "Unable to store '%s/bindings.xml': "
-+  "Path too log\n", usr_cfgdir);
-+  return 1;
-+  }
-+  BINDINGS_FILE = new (std::nothrow) char[len + 1];
-+  if (BINDINGS_FILE == NULL)
-+  {
-+  fprintf(stderr, "Insufficent memory.  Execution aborted.\n");
-+  return 1;
-+  }
-+  sprintf(BINDINGS_FILE, "%s/bindings.xml", usr_cfgdir);
- 
-   if (argc > 1) {
-   for (int i = 1; i < argc; i++) {
-   if (!strncmp(argv[i], "-wnd", 4)) {
-   fullscreen = false;
+

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

2016-05-06 Thread Tobias Klausmann
commit: e77c0681ab6d17915a7c250c0297cf026f46b21f
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Fri May  6 13:39:52 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Fri May  6 13:40:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e77c0681

dev-python/progressbar-2.3-r2: add x86 keyword

Gentoo-Bug: 582274

Package-Manager: portage-2.2.28

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

diff --git a/dev-python/progressbar/progressbar-2.3-r2.ebuild 
b/dev-python/progressbar/progressbar-2.3-r2.ebuild
index 1359399..017e9eb 100644
--- a/dev-python/progressbar/progressbar-2.3-r2.ebuild
+++ b/dev-python/progressbar/progressbar-2.3-r2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://python-${PN}.googlecode.com/files/${P}.tar.gz;
 
 LICENSE="|| ( LGPL-2.1 BSD )"
 SLOT="0"
-KEYWORDS="amd64 ~arm ppc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ppc x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2016-05-06 Thread Tobias Klausmann
commit: 36c344a1e01d1258e29079d0a29da0638373dbbe
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Fri May  6 13:39:12 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Fri May  6 13:39:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36c344a1

dev-python/progressbar-2.3-r2: add ppc keyword

Gentoo-Bug: 582274

Package-Manager: portage-2.2.28

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

diff --git a/dev-python/progressbar/progressbar-2.3-r2.ebuild 
b/dev-python/progressbar/progressbar-2.3-r2.ebuild
index 915b79c..1359399 100644
--- a/dev-python/progressbar/progressbar-2.3-r2.ebuild
+++ b/dev-python/progressbar/progressbar-2.3-r2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://python-${PN}.googlecode.com/files/${P}.tar.gz;
 
 LICENSE="|| ( LGPL-2.1 BSD )"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ppc ~x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2016-05-06 Thread Brian Evans
commit: ec21645592ef5a5d96e35d56e5522580083f14e2
Author: Brian Evans  gentoo  org>
AuthorDate: Fri May  6 13:38:35 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Fri May  6 13:39:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec216455

net-mail/queue-repair: Non-maintainer commit - Revbump to fix bug 405899

Bump EAPI from 0 to 6
Use the python-single-r1 eclass

Package-Manager: portage-2.2.28

 net-mail/queue-repair/queue-repair-0.9.0-r1.ebuild | 27 ++
 1 file changed, 27 insertions(+)

diff --git a/net-mail/queue-repair/queue-repair-0.9.0-r1.ebuild 
b/net-mail/queue-repair/queue-repair-0.9.0-r1.ebuild
new file mode 100644
index 000..33bcb55
--- /dev/null
+++ b/net-mail/queue-repair/queue-repair-0.9.0-r1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+inherit python-single-r1
+
+DESCRIPTION="A toolkit for dealing with the qmail queue directory structure"
+HOMEPAGE="http://pyropus.ca/software/queue-repair/;
+SRC_URI="http://pyropus.ca/software/queue-repair/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd"
+IUSE=""
+
+RDEPEND="${PYTHON_DEPS}"
+REQURIED_USE="${PYTHON_REQUIRED_USE}"
+DOCS=( BLURB TODO CHANGELOG )
+
+src_install () {
+   python_newscript queue_repair.py queue-repair.py
+   dosym /usr/bin/queue-repair.py /usr/bin/queue-repair
+   einstalldocs
+}



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

2016-05-06 Thread Tobias Klausmann
commit: f889542b8dd1a2da0c5cfa45de58dbb9810bfbdc
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Fri May  6 13:38:21 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Fri May  6 13:38:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f889542b

dev-python/progressbar-2.3-r2: add amd64 keyword

Gentoo-Bug: 582274

Package-Manager: portage-2.2.28

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

diff --git a/dev-python/progressbar/progressbar-2.3-r2.ebuild 
b/dev-python/progressbar/progressbar-2.3-r2.ebuild
index f7983ac..915b79c 100644
--- a/dev-python/progressbar/progressbar-2.3-r2.ebuild
+++ b/dev-python/progressbar/progressbar-2.3-r2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://python-${PN}.googlecode.com/files/${P}.tar.gz;
 
 LICENSE="|| ( LGPL-2.1 BSD )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2016-05-06 Thread Ulrich Müller
commit: e945b8d45690b407b400ae5e2e6a61063b8df37c
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri May  6 13:26:05 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri May  6 13:27:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e945b8d4

app-emacs/ess: Remove old.

Package-Manager: portage-2.2.28

 app-emacs/ess/Manifest |  1 -
 app-emacs/ess/ess-15.09.ebuild | 44 --
 2 files changed, 45 deletions(-)

diff --git a/app-emacs/ess/Manifest b/app-emacs/ess/Manifest
index 9ddebb6..945e262 100644
--- a/app-emacs/ess/Manifest
+++ b/app-emacs/ess/Manifest
@@ -1,4 +1,3 @@
 DIST ess-14.09.tgz 3350987 SHA256 
b6f1badd065e2e42f1d9d75a4e7a04290849d6f7a2bdb8413f73e0eae4014571 SHA512 
91e275810f7a8c856f3392194ad3fb3d5f5b966e887568b22c133a362164e71ff5306d1d1a70e97f9d10261fe82eecb5f14e99a0dad4a4e239f5b810d7bba8ac
 WHIRLPOOL 
5eabe6d65d7b5d420a7c6989b82d9901ac20d7b6376223f5aee39da7212ea395d15a98ce86c49fb2782706ba524532ceb38fd23dafaae5891a55958d1c676221
 DIST ess-15.03-1.tgz 3177102 SHA256 
ad2f1b48dd4671848709d226aab72427129ac2fd5f85c0c0b39b96be24eee66f SHA512 
5260d8afa10e1382cac3c70a4b6f753dd77e9f24bb2f68247732605b0f5fbb1b06e090dbcb45d747a484333f0779959c9213a4792103839b11c9e239bf35534d
 WHIRLPOOL 
eb1e6917a05b7444f4c37949a51554b6b33a0841bad5dae6aa93f575a7914fb36299c7c63ec27ec24944104a39b5844ada12b1c74a64daa04a682d5e97001834
 DIST ess-15.09-2.tgz 3248241 SHA256 
706c41237e1edf33a369902f503bb25254b2bbb750b9ed1adee244e875264afb SHA512 
9ba2f8800ece437e18749e29b6ecec3cf52297fa1c5a149dbf8eeb991df4f5dc99a76925458bd03203b7e8418347c4bcb5226e08dc64bd95d16e9a5b32f8634b
 WHIRLPOOL 
3ad3cba11dc33f7b9c909017e6db2850fa078c736e4637e5bc15a8bbb23e2f66996186c31092caf3bb522d5e5d15543c9f4df6fe4f013ac8744695faf19bbd4f
-DIST ess-15.09.tgz 3239642 SHA256 
3438683af3232280d9281938ad101a1e0bb92aa7c97f330c07d8ef7d10489465 SHA512 
95350c1d558ba2bc8582978441569f40ba4c59609c21cd473908cc152c8cc6e4e38b9236cc47dd73469dcf14c8a359652e54de5632a21700835350764f401d4f
 WHIRLPOOL 
426659087f7ace498cf99bcc67502c0d83c140ae8e5576d80747ba9fe22db641e2ef48dbbb0771231d880dddfc9fcf3ca8c482578e77c15c2d1b6a114509da46

diff --git a/app-emacs/ess/ess-15.09.ebuild b/app-emacs/ess/ess-15.09.ebuild
deleted file mode 100644
index 6953117..000
--- a/app-emacs/ess/ess-15.09.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit readme.gentoo elisp
-
-DESCRIPTION="Emacs Speaks Statistics"
-HOMEPAGE="http://ess.r-project.org/;
-SRC_URI="http://ess.r-project.org/downloads/ess/${P}.tgz;
-
-LICENSE="GPL-2+ GPL-3+ Texinfo-manual"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
-
-DEPEND="app-text/texi2html
-   virtual/latex-base"
-
-SITEFILE="50${PN}-gentoo.el"
-
-src_compile() {
-   default
-}
-
-src_install() {
-   emake PREFIX="${ED}/usr" \
-   INFODIR="${ED}/usr/share/info" \
-   LISPDIR="${ED}${SITELISP}/ess" \
-   DOCDIR="${ED}/usr/share/doc/${PF}" \
-   install
-
-   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-
-   # Most documentation is installed by the package's build system.
-   rm -f "${ED}${SITELISP}/${PN}/ChangeLog"
-   dodoc ChangeLog *NEWS doc/{TODO,ess-intro.pdf}
-   newdoc doc/ChangeLog ChangeLog-doc
-   newdoc lisp/ChangeLog ChangeLog-lisp
-
-   DOC_CONTENTS="Please see /usr/share/doc/${PF} for the complete
-   documentation. Usage hints are in ${SITELISP}/${PN}/ess-site.el 
."
-   readme.gentoo_create_doc
-}



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

2016-05-06 Thread Alexis Ballier
commit: e4332ff42193d9e40c2f555e6c3dbe0524ba
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri May  6 13:18:50 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri May  6 13:26:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4332ff4

dev-ml/camlimages: bump to 4.2.2

Package-Manager: portage-2.2.28

 dev-ml/camlimages/Manifest|  1 +
 dev-ml/camlimages/camlimages-4.2.2.ebuild | 66 +++
 2 files changed, 67 insertions(+)

diff --git a/dev-ml/camlimages/Manifest b/dev-ml/camlimages/Manifest
index 0e91b43..d0a659a 100644
--- a/dev-ml/camlimages/Manifest
+++ b/dev-ml/camlimages/Manifest
@@ -2,3 +2,4 @@ DIST camlimages-4.0.1.tar.bz2 2010729 SHA256 
b6a5e79abcfba1316a516f2e0290e6f06c9
 DIST camlimages-4.1.1.tar.bz2 1098450 SHA256 
22c4485f69ddda6fa94fcb62c1f996756c93ceb59d6d61962d41df59fa27e346 SHA512 
79dc5680ef632968d39513cac161f0e5daf4faecec12f100d56755051d257b1c0e4e45990d4215c4b95596b5d94cebc93b6d828953450b15a4e48993013637b2
 WHIRLPOOL 
f18c3b7046c39c7ae05c91845cd4bd7f8cc52043180be6e21d9f19cfd055aba630cc7f9fc839d2caaba47946269008e952ee31e27aee5e0f184366ab2a183f7c
 DIST camlimages-4.1.2.tar.bz2 1099399 SHA256 
71de393656d60555ce3fb0ca7da13a6e0a74fdebad541a7790395e3b1d6cedde SHA512 
8c41eef07418719643fc69d62f2d02b248731cb64efd81bc02cc61363da71ad11cf85eb9010674a10d17f9e90d169ca98e5c61d95ae835d0476cf9cfc492f453
 WHIRLPOOL 
d6b3908b6d9c18462b69d7806113e423a5835812148e6e835329c3ab378a351c7f58423e63c942771e37bb30bdf4d61c089ab2d0212936150f0b1831b961d966
 DIST camlimages-4.2.1.tar.bz2 1098703 SHA256 
3d9b9d6a41f4b80e36574e8046acbe0514c1fcf2c5ffa11d375891485be1f266 SHA512 
611a5f1eb383efed9b3ffd4801b28386f8317abe7bb25ff45a61a7e7ba911b6632852c8d3082b830d9e780fc70c03cb480c7a9f1440aa1259c60036813d07792
 WHIRLPOOL 
eecf3a4ff1adfc458c2a48d5091ff4432fdd137e127a496cf288e13a071dbc0421045242a3fc43b8efe0d3041e8cc490d8e941290dd3f52e1888762eb69cd585
+DIST camlimages-4.2.2.tar.bz2 789441 SHA256 
eb96aa60afb139797836c2569ba1d4e3f2d0e4dbb025c117d7325468ce6c9633 SHA512 
672e192255a9335c45d208b7589a344f712baa798dfc7bc7ccee7d3bda71e603bc06c7b012761f9c6372c683560c67ffa9d2af2742552884211ad4ffb541e3dd
 WHIRLPOOL 
dfe61d34da78b1d70feba1c2cf2717430ae4c99386d39fde3cfe14163665bd35a02947fcbc05f67c03de56b2fba1a13cd60a40031e1adbf6320ac239c1485c15

diff --git a/dev-ml/camlimages/camlimages-4.2.2.ebuild 
b/dev-ml/camlimages/camlimages-4.2.2.ebuild
new file mode 100644
index 000..87c3252
--- /dev/null
+++ b/dev-ml/camlimages/camlimages-4.2.2.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils vcs-snapshot findlib multilib
+
+DESCRIPTION="An image manipulation library for ocaml"
+HOMEPAGE="http://gallium.inria.fr/camlimages/;
+SRC_URI="https://bitbucket.org/camlspotter/camlimages/get/${PV}.tar.bz2 -> 
${P}.tar.bz2"
+
+LICENSE="LGPL-2.1"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="doc exif gif gtk jpeg png postscript tiff truetype X xpm"
+
+RDEPEND=">=dev-lang/ocaml-3.10.2:=[X?,ocamlopt]
+   exif? ( media-libs/libexif )
+   gif? ( media-libs/giflib )
+   gtk? ( dev-ml/lablgtk )
+   jpeg? ( virtual/jpeg )
+   tiff? ( media-libs/tiff )
+   png? ( >=media-libs/libpng-1.4:0 )
+   postscript? ( app-text/ghostscript-gpl )
+   truetype? ( >=media-libs/freetype-2 )
+   xpm? ( x11-libs/libXpm )
+   X? ( x11-apps/rgb )
+   sys-libs/zlib
+   "
+DEPEND="${DEPEND}
+   doc? ( dev-python/sphinx[latex] )
+   dev-util/omake
+   virtual/pkgconfig
+   dev-ml/findlib"
+
+camlimages_arg_want() {
+   echo "ARG_WANT_${2}=$(usex $1 1 0)"
+}
+
+src_compile() {
+   omake \
+   $(camlimages_arg_want exifEXIF) \
+   $(camlimages_arg_want gif GIF ) \
+   $(camlimages_arg_want png PNG ) \
+   $(camlimages_arg_want jpegJPEG) \
+   $(camlimages_arg_want tiffTIFF) \
+   $(camlimages_arg_want xpm XPM ) \
+   $(camlimages_arg_want postscript  GS  ) \
+   $(camlimages_arg_want gtk LABLGTK2) \
+   $(camlimages_arg_want X   GRAPHICS) \
+   $(camlimages_arg_want truetypeFREETYPE) \
+   PATH_GS=/bin/true \
+   --force-dotomake || die
+
+   if use doc ; then
+   sphinx-build doc/sphinx sphinxdoc || die
+   fi
+}
+
+src_install() {
+   findlib_src_preinst
+   omake --force-dotomake DESTDIR="${D}" install || die
+   dodoc README.md
+   use doc && dohtml -r sphinxdoc/*
+}



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

2016-05-06 Thread Alexis Ballier
commit: 4bdf4b4496195ba2fcd9bab588f462ddbc6590c3
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri May  6 13:19:39 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri May  6 13:26:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bdf4b44

dev-ml/ocaml-dns: bump to 0.18.1

Package-Manager: portage-2.2.28

 dev-ml/ocaml-dns/Manifest|  1 +
 dev-ml/ocaml-dns/ocaml-dns-0.18.1.ebuild | 50 
 2 files changed, 51 insertions(+)

diff --git a/dev-ml/ocaml-dns/Manifest b/dev-ml/ocaml-dns/Manifest
index f2a00cc..5b5ac92 100644
--- a/dev-ml/ocaml-dns/Manifest
+++ b/dev-ml/ocaml-dns/Manifest
@@ -1,3 +1,4 @@
 DIST ocaml-dns-0.15.3.tar.gz 143042 SHA256 
cc1361e51d1a7b6fa8d552dc06cad09288ba00e78a9ddcd5a0e49ab3d12a9619 SHA512 
7176e93a263975d31a6757acf01ac5be10eb34b19a2c3a5d5e92b087a574e76db16861923162ad73833379dc5132868d0b91e1f2ed692e2bdff5667938a76db6
 WHIRLPOOL 
9b282ffdaf9fd834d449e33176fb9e5a231e6a7f2a1a12b0da4825a96f820b3f87a73c9e4751c19bbf80c9b8ab2f30c1730003b010bd6153b83bb9009334986d
 DIST ocaml-dns-0.16.0.tar.gz 146761 SHA256 
b8b56f9979b650ae3f1a9a52385027c5a80e7f5bd25e6326d0fef480a5f0a56f SHA512 
8d5f8c63074dae68d31dd1a592d3fa6b69e0963aa674110e501a575b4cb75c3a9a5ad6b1efffd118d69eff6dcf71f34b102264a127c9b336b2f04de5a90ee976
 WHIRLPOOL 
f927983e894c65c1ed007897bd0dae2f2b45fdf215a12c50e15c4a554f6c9c9f69e5ea5defd60f71478ad527995957698b63cf48b24601f82098c55e97002e05
 DIST ocaml-dns-0.18.0.tar.gz 144807 SHA256 
f4d0911814c98534a92a5aadc2978153e849752b4f59276adc9a3c8e53e81a5d SHA512 
a614bac04ffc7eedd6a83865d9ee93416faac7a1cb500d0cca2462993a08864ec5081e9c05b432f623f388bbc87a67c2d401ad44a3e14bf24be2fb520d7706a3
 WHIRLPOOL 
2e26fb43888147859a15a639b9d90151bde5c2d89dfa2f226a1a2aadfb417f6cf5832f5023cfdc3ac59bfbbd035026f0f73777a0cbf6fc94f837c5f072190241
+DIST ocaml-dns-0.18.1.tar.gz 144857 SHA256 
c570a9f215bbafacb83319fd1d21fd393357c97359c237b941767d81764cc5e6 SHA512 
909e7de8b434769aee04c4837cbcecd2856ad11b863f061eca650621b0caab81327107b58ecf20d65270f36b192d438baa3868b906cd9243163b2c697bf68684
 WHIRLPOOL 
043200a93926bc67859e6ff6f03ecfc1184ad3e13595fa71891a9e8ba3932ab2d3e46f32a145b11989d185e519548693af605b617ce7914dda1711d40a2d2d88

diff --git a/dev-ml/ocaml-dns/ocaml-dns-0.18.1.ebuild 
b/dev-ml/ocaml-dns/ocaml-dns-0.18.1.ebuild
new file mode 100644
index 000..c0c9038
--- /dev/null
+++ b/dev-ml/ocaml-dns/ocaml-dns-0.18.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+OASIS_BUILD_DOCS=1
+OASIS_BUILD_TESTS=1
+
+inherit oasis
+
+DESCRIPTION="A pure OCaml implementation of the DNS protocol"
+HOMEPAGE="https://github.com/mirage/ocaml-dns https://mirage.io;
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2 LGPL-2.1-with-linking-exception ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +lwt"
+
+RDEPEND="
+   async? ( >=dev-ml/async-112.24.00:= )
+   lwt? ( >=dev-ml/lwt-2.4.7:=
+   dev-ml/ocaml-cstruct:=[lwt(-)] )
+   >=dev-lang/ocaml-4:=
+   dev-ml/cmdliner:=
+   dev-ml/mirage-profile:=
+   >=dev-ml/ocaml-base64-2.0.0:=
+   >=dev-ml/ocaml-cstruct-1.9.0:=
+   >=dev-ml/ocaml-ipaddr-2.6.0:=
+   dev-ml/ocaml-re:=
+   >=dev-ml/ocaml-uri-1.7.0:=
+   dev-ml/ocaml-hashcons:=[ocamlopt?]
+   !

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

2016-05-06 Thread Alexis Ballier
commit: 946b9f7887d9cefbfcff492e0fa87bf0d2758ba5
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri May  6 13:25:52 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri May  6 13:26:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=946b9f78

dev-ml/csv: bump to 1.5

Package-Manager: portage-2.2.28

 dev-ml/csv/Manifest   |  1 +
 dev-ml/csv/csv-1.5.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-ml/csv/Manifest b/dev-ml/csv/Manifest
index 9c06c78..442bf10 100644
--- a/dev-ml/csv/Manifest
+++ b/dev-ml/csv/Manifest
@@ -1 +1,2 @@
 DIST csv-1.4.2.tar.gz 83091 SHA256 
d6185e9ef8e600493aa32db3e56c095b7d4912168b027602dce879671734b2e8 SHA512 
efba3ca4d48439dbea241b348d851c12fb0dbd784eece20766a2dc7e7f3675c9de0a98b893bd450dcadce6be9eedeeb933d2cc401cc63b38459136b4fee82e15
 WHIRLPOOL 
80f34d9b33c077ca69a81efbd56e8e665272d167444a5d91b22b226fe005d188c36e523c241fb466952297132a4055a1c42a71e0eac7fc469a8fcad579588e5a
+DIST csv-1.5.tar.gz 83642 SHA256 
f6307634e5f5fe3d64b90fdf8841b3f50dac80ed45b40d390ee44490c62bf58f SHA512 
1c8af0ce8abd8a5710115c194eee34928399964447309ee974665cf427396def42bca4f983904bfec706f7944aea419a87bf54bc6c379cb8b7372be801be4126
 WHIRLPOOL 
fe39114b74cb12b382da64307b8253297614f537ef4309cdcec58e9ec68ff49791d6ef90b4870200f24f6726471ceb925d0a79336853c27769af07413a3c373d

diff --git a/dev-ml/csv/csv-1.5.ebuild b/dev-ml/csv/csv-1.5.ebuild
new file mode 100644
index 000..b74ab2b
--- /dev/null
+++ b/dev-ml/csv/csv-1.5.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+OASIS_BUILD_DOCS=1
+OASIS_BUILD_TESTS=1
+
+inherit oasis
+
+DESCRIPTION="A pure OCaml library to read and write CSV files"
+HOMEPAGE="https://github.com/Chris00/ocaml-csv;
+SRC_URI="https://github.com/Chris00/ocaml-csv/releases/download/${PV}/${P}.tar.gz;
+
+LICENSE="LGPL-2.1-with-linking-exception"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+DOCS=( "README.txt" "AUTHORS.txt" )



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

2016-05-06 Thread Alexis Ballier
commit: 7a65def575aea9ebe28beb37929eff4f6afba181
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri May  6 13:20:50 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri May  6 13:26:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a65def5

dev-ml/ocaml-cstruct: bump to 2.1.0

Package-Manager: portage-2.2.28

 dev-ml/ocaml-cstruct/Manifest   |  1 +
 dev-ml/ocaml-cstruct/ocaml-cstruct-2.1.0.ebuild | 43 +
 2 files changed, 44 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index c9d402c..f41d8c4 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -2,3 +2,4 @@ DIST ocaml-cstruct-1.7.1.tar.gz 245894 SHA256 
7869d096fe7c6231bbceefe3b2205417b2
 DIST ocaml-cstruct-1.8.0.tar.gz 250696 SHA256 
e1635072283ae5db7889966ce92e916749bcd192012a0c46285827beba1263d7 SHA512 
38ea6301b48603f8b63c73a7aa42312d25bbd16fb8524e1de2b69a54e45e9e1c1326201e19fcf2953d2719607139c903d76296a32fb7058998c079ac112adc9c
 WHIRLPOOL 
6fdabfc1143331662757826de11c62c3947fb59155ba68e866a2f9939963deacd52d5832417997833deff9a9ff902675d266a98b41e0d2cf9f29c4d4c628601e
 DIST ocaml-cstruct-1.9.0.tar.gz 254162 SHA256 
2d175bf1e2cdc5ca43cb30bd3fa507beee2f18b2cbecae801ab6ffaecde16c9c SHA512 
fad3788c0888599a3171d4062b9d9f4c539c0cbb1d8b6d4f6be2f3456ffe235444def4e619a94ca75336cf555b5133e6e60edc07a03dc0abdd772acf9371b666
 WHIRLPOOL 
99984c32625d9dbf452a7191f4103228bedbd7eee23bfb1eee7834022a023dee1582fca9704fcbe09ed37424ca7d684c482426d3b30b5f1dc66cc55b78769532
 DIST ocaml-cstruct-2.0.0.tar.gz 250245 SHA256 
285341c6b5bdfc456f2b63c072210771aeb7110d777bbdaec5087234a505acf5 SHA512 
4fc1f09824bf943c45a2afe8908d80fb3d9857f5e9f426479520713c92c04eac588a38fbf036352a17e787165476a7a5647f34df9c89f6c93a195f80ae11c3dd
 WHIRLPOOL 
ef8c3770ed73323c292152b5b29b8b0737158b84f0f738ac0841257e07d787edf5e0c7c55c0d5630c7f44fcd878d00585e320b12d9ece22a98a906cc7e86c08c
+DIST ocaml-cstruct-2.1.0.tar.gz 251162 SHA256 
fab6525753af5f726810b321a97b8a0b226bf0318a3ed594e2ed93f2f293c9a1 SHA512 
129650ec17d8c96d6e68fc6a814e2b44cecc6fc69dfd5327c48d842447caf172c36112ef4fe0fa85c7391172ba72e2f2d3c119f44075cf1240a89134830ec428
 WHIRLPOOL 
4daf175682710cc0b102858df5b66c8cc14caf0ab35d4d8430324ed65bcaab9d951f391bdb3c39c5b6edfca4fac50300f4c394a3adbae43269a31abf04955661

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.1.0.ebuild 
b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.1.0.ebuild
new file mode 100644
index 000..7c5d31d
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.1.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+OASIS_BUILD_DOCS=1
+OASIS_BUILD_TESTS=1
+
+inherit oasis
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io;
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +lwt +ppx"
+
+RDEPEND="
+   async? ( dev-ml/async:= )
+   lwt? ( dev-ml/lwt:= )
+   ppx? ( dev-ml/ppx_tools:= )
+   >=dev-lang/ocaml-4.01:=
+   dev-ml/ocplib-endian:=
+   dev-ml/sexplib:=
+   dev-ml/type-conv:=
+"
+DEPEND="
+   test? ( dev-ml/ounit )
+   ${RDEPEND}
+"
+
+src_configure() {
+   oasis_configure_opts="
+   $(use_enable lwt)
+   $(use_enable async)
+   $(use_enable ppx)
+   --enable-unix
+   " oasis_src_configure
+}
+
+DOCS=( CHANGES README.md TODO.md )



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

2016-05-06 Thread Sam Jorna
commit: a5b732589937dfc6da6faff69670900a110acdb8
Author: Sam Jorna  gentoo  org>
AuthorDate: Fri May  6 13:23:21 2016 +
Commit: Sam Jorna  gentoo  org>
CommitDate: Fri May  6 13:24:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5b73258

app-misc/mosquitto: new ebuild

Mosquitto is an open source MQTT broker. Ebuild added with proxied
maintainer Neil Bothwick under the Proxy Maintainers project.

Gentoo-bug: 320159
Package-Manager: portage-2.2.28

 app-misc/mosquitto/Manifest|  1 +
 app-misc/mosquitto/files/mosquitto | 24 ++
 .../files/mosquitto-1.4.8-conditional-tests.patch  | 41 +
 app-misc/mosquitto/files/mosquitto.service | 12 +++
 app-misc/mosquitto/metadata.xml| 17 
 app-misc/mosquitto/mosquitto-1.4.8.ebuild  | 97 ++
 6 files changed, 192 insertions(+)

diff --git a/app-misc/mosquitto/Manifest b/app-misc/mosquitto/Manifest
new file mode 100644
index 000..7e0827a
--- /dev/null
+++ b/app-misc/mosquitto/Manifest
@@ -0,0 +1 @@
+DIST mosquitto-1.4.8.tar.gz 326120 SHA256 
d96eb5610e57cc3e273f4527d3f54358ab7711459941a9e64bc4d0a85c2acfda SHA512 
4bad8683e98ec858468c53f85f53b42a417cebf665d11d3dabe604711f5031da007c8f6d6cb49b8bc91b87eb452bc1f8bfa6adf2d439d2223180b316f9bc
 WHIRLPOOL 
b2931c55f3e70316cb57ae180f361c1dedf67e86fec9f235aa3b817884e6af13b8b9b8dc83e375a877d85b1d423ea586ee0698b08af88873a1131d58b4ed402a

diff --git a/app-misc/mosquitto/files/mosquitto 
b/app-misc/mosquitto/files/mosquitto
new file mode 100644
index 000..39b1eb9
--- /dev/null
+++ b/app-misc/mosquitto/files/mosquitto
@@ -0,0 +1,24 @@
+#!/sbin/runscript
+
+depend() {
+   need net
+}
+
+checkconfig() {
+   if [ ! -f /etc/${SVCNAME}/${SVCNAME}.conf ] ; then
+   eerror "No /etc/${SVCNAME}/${SVCNAME}.conf file exists!"
+   fi
+}
+
+start() {
+   checkconfig || return 1
+   ebegin "Starting ${SVCNAME}"
+   start-stop-daemon --start --exec /usr/sbin/${SVCNAME} --background 
--make-pidfile --pidfile /var/run/${SVCNAME}.pid -- --config-file 
/etc/${SVCNAME}/${SVCNAME}.conf
+   eend $?
+}
+
+stop() {
+   ebegin "Stopping ${SVCNAME}"
+   start-stop-daemon --stop --exec /usr/sbin/${SVCNAME} --pidfile 
/var/run/${SVCNAME}.pid
+   eend $?
+}

diff --git a/app-misc/mosquitto/files/mosquitto-1.4.8-conditional-tests.patch 
b/app-misc/mosquitto/files/mosquitto-1.4.8-conditional-tests.patch
new file mode 100644
index 000..811cee6
--- /dev/null
+++ b/app-misc/mosquitto/files/mosquitto-1.4.8-conditional-tests.patch
@@ -0,0 +1,41 @@
+--- a/test/broker/Makefile 2016-02-14 14:36:55.0 +
 b/test/broker/Makefile 2016-05-05 09:53:30.548519257 +0100
+@@ -63,11 +63,13 @@
+   ./05-clean-session-qos1.py 
+ 
+ 06 :
++ifeq ($(WITH_BRIDGE),yes)
+   ./06-bridge-reconnect-local-out.py
+   ./06-bridge-br2b-disconnect-qos1.py
+   ./06-bridge-br2b-disconnect-qos2.py
+   ./06-bridge-b2br-disconnect-qos1.py
+   ./06-bridge-b2br-disconnect-qos2.py
++endif
+ 
+ 07 :
+   ./07-will-qos0.py
+@@ -85,10 +87,12 @@
+   ./08-ssl-connect-cert-auth-crl.py
+   ./08-ssl-connect-identity.py
+   ./08-ssl-connect-no-identity.py
++ifeq ($(WITH_BRIDGE),yes)
+   ./08-ssl-bridge.py
+   ./08-tls-psk-pub.py
+   ./08-tls-psk-bridge.py
+ endif
++endif
+ 
+ 09 :
+   ./09-plugin-auth-unpwd-success.py
+--- a/test/broker/c/Makefile   2016-02-14 14:36:55.0 +
 b/test/broker/c/Makefile   2016-05-05 09:40:31.440608209 +0100
+@@ -13,7 +13,9 @@
+   $(CC) ${CFLAGS} $^ -o $@ ../../../lib/libmosquitto.so.1
+ 
+ 08-tls-psk-bridge.test : 08-tls-psk-bridge.c
++ifeq ($(WITH_BRIDGE),yes)
+   $(CC) ${CFLAGS} $^ -o $@ ../../../lib/libmosquitto.so.1
++endif
+ 
+ 
+ reallyclean : clean

diff --git a/app-misc/mosquitto/files/mosquitto.service 
b/app-misc/mosquitto/files/mosquitto.service
new file mode 100644
index 000..ebdc28e
--- /dev/null
+++ b/app-misc/mosquitto/files/mosquitto.service
@@ -0,0 +1,12 @@
+[Unit]
+Description=Mosquitto MQTT Broker daemon
+ConditionPathExists=/etc/mosquitto/mosquitto.conf
+Requires=network.target
+
+[Service]
+Type=simple
+ExecStart=/usr/sbin/mosquitto -c /etc/mosquitto/mosquitto.conf
+Restart=always
+
+[Install]
+WantedBy=multi-user.target

diff --git a/app-misc/mosquitto/metadata.xml b/app-misc/mosquitto/metadata.xml
new file mode 100644
index 000..da548ae
--- /dev/null
+++ b/app-misc/mosquitto/metadata.xml
@@ -0,0 +1,17 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   n...@digimed.co.uk
+   Neil Bothwick
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   Enable bridge support in the MQTT 
broker.
+   Store messages and subscriptions to a 
file.
+   Include SRV lookup support.
+   
+

diff --git 

[gentoo-commits] proj/emacs-tools:emacs-daemon commit in: /

2016-05-06 Thread Ulrich Müller
commit: 7342873eb24c5d7c4ca4e4bda4230b0df402dff0
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri May  6 13:05:56 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri May  6 13:05:56 2016 +
URL:https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=7342873e

Update copyright years.

 10emacs-daemon-gentoo.el | 2 +-
 ChangeLog| 2 +-
 Makefile | 2 +-
 emacs-stop.sh| 2 +-
 emacs-wrapper.sh | 2 +-
 emacs.rc | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/10emacs-daemon-gentoo.el b/10emacs-daemon-gentoo.el
index 45cea39..462ca79 100644
--- a/10emacs-daemon-gentoo.el
+++ b/10emacs-daemon-gentoo.el
@@ -1,6 +1,6 @@
 ;;; emacs-daemon site-lisp configuration
 
-;; Copyright 2008-2014 Gentoo Foundation
+;; Copyright 2008-2016 Gentoo Foundation
 ;; Distributed under the terms of the GNU General Public License v2 or later
 
 (and

diff --git a/ChangeLog b/ChangeLog
index 5e32173..6e53e42 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -224,5 +224,5 @@
 
* emacs.rc, 10emacs-daemon-gentoo.el, Makefile: New files.
 
-Copyright 2008-2014 Gentoo Foundation
+Copyright 2008-2016 Gentoo Foundation
 Distributed under the terms of the GNU General Public License v2 or later

diff --git a/Makefile b/Makefile
index 1677ed7..738fd7e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Copyright 2008-2014 Gentoo Foundation
+# Copyright 2008-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2 or later
 
 PN = emacs-daemon

diff --git a/emacs-stop.sh b/emacs-stop.sh
index 3b111b5..574230d 100644
--- a/emacs-stop.sh
+++ b/emacs-stop.sh
@@ -1,5 +1,5 @@
 #!/bin/bash
-# Copyright 2008-2014 Gentoo Foundation
+# Copyright 2008-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2 or later
 
 # Lisp expression to be evaluated when stopping Emacs.

diff --git a/emacs-wrapper.sh b/emacs-wrapper.sh
index ab9a5fb..da21d72 100644
--- a/emacs-wrapper.sh
+++ b/emacs-wrapper.sh
@@ -1,5 +1,5 @@
 #!/bin/bash
-# Copyright 2008-2014 Gentoo Foundation
+# Copyright 2008-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2 or later
 
 # Save output in a temporary file and display in case of error

diff --git a/emacs.rc b/emacs.rc
index 702de56..651255d 100644
--- a/emacs.rc
+++ b/emacs.rc
@@ -1,5 +1,5 @@
 #!/sbin/runscript
-# Copyright 2008-2014 Gentoo Foundation
+# Copyright 2008-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2 or later
 
 : ${EMACS:=/usr/bin/emacs}



[gentoo-commits] proj/emacs-tools:emacs-daemon commit in: /

2016-05-06 Thread Ulrich Müller
commit: 318b154b018c2236f7c4c9e9f7d965485fb54ea0
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri May  6 13:10:14 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri May  6 13:10:14 2016 +
URL:https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=318b154b

Update shebang line for new OpenRC versions.

* emacs.rc: Update shebang line to /sbin/openrc-run which is used
by new OpenRC versions.

 ChangeLog | 5 +
 emacs-stop.sh | 4 ++--
 emacs.conf| 2 +-
 emacs.rc  | 2 +-
 4 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 6e53e42..6e5a605 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-05-06  Ulrich Müller  
+
+   * emacs.rc: Update shebang line to /sbin/openrc-run which is used
+   by new OpenRC versions.
+
 2014-02-02  Ulrich Müller  
 
* Version 0.21 released.

diff --git a/emacs-stop.sh b/emacs-stop.sh
index 574230d..0577359 100644
--- a/emacs-stop.sh
+++ b/emacs-stop.sh
@@ -20,6 +20,6 @@ done
 echo "${0##*/}: timeout waiting for emacsclient" >&2
 kill ${pid} 2>/dev/null
 
-# exit 0: runscript shall continue and (forcibly) kill the emacs process
-# exit 1: runscript shall exit with an error
+# exit 0: openrc-run shall continue and (forcibly) kill the emacs process
+# exit 1: openrc-run shall exit with an error
 exit 0

diff --git a/emacs.conf b/emacs.conf
index 4c7549c..b6303d8 100644
--- a/emacs.conf
+++ b/emacs.conf
@@ -1,5 +1,5 @@
 # /etc/conf.d/emacs: config file for /etc/init.d/emacs.
-# This can also be used as multiplexed configuration, i.e. runscript
+# This can also be used as multiplexed configuration, i.e. openrc-run
 # looks for both /etc/conf.d/emacs and /etc/conf.d/emacs..
 
 # Absolute path to the emacs and emacsclient binaries

diff --git a/emacs.rc b/emacs.rc
index 651255d..9fffe02 100644
--- a/emacs.rc
+++ b/emacs.rc
@@ -1,4 +1,4 @@
-#!/sbin/runscript
+#!/sbin/openrc-run
 # Copyright 2008-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2 or later
 



[gentoo-commits] proj/emacs-tools: New tag: emacs-23.4-patches-19

2016-05-06 Thread Ulrich Müller
commit: 
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri May  6 13:21:03 2016 +

New tag: emacs-23.4-patches-19




[gentoo-commits] proj/emacs-tools:emacs-daemon commit in: /

2016-05-06 Thread Ulrich Müller
commit: d0a7227898d508370a541901fa7d345d23f9b0de
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri May  6 13:12:37 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri May  6 13:12:37 2016 +
URL:https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=d0a72278

Version 0.22 released.

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

diff --git a/ChangeLog b/ChangeLog
index 6e5a605..3485c9a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2016-05-06  Ulrich Müller  
 
+   * Version 0.22 released.
+
* emacs.rc: Update shebang line to /sbin/openrc-run which is used
by new OpenRC versions.
 



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

2016-05-06 Thread Ulrich Müller
commit: 654863a00e893f2e060adfdc8fbecd37c6e93349
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri May  6 13:19:25 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri May  6 13:19:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=654863a0

app-emacs/emacs-daemon: Version bump.

Package-Manager: portage-2.2.28

 app-emacs/emacs-daemon/Manifest |  1 +
 app-emacs/emacs-daemon/emacs-daemon-0.22.ebuild | 54 +
 2 files changed, 55 insertions(+)

diff --git a/app-emacs/emacs-daemon/Manifest b/app-emacs/emacs-daemon/Manifest
index 2b3fd2b..76f4f98 100644
--- a/app-emacs/emacs-daemon/Manifest
+++ b/app-emacs/emacs-daemon/Manifest
@@ -1,2 +1,3 @@
 DIST emacs-daemon-0.20.tar.xz 5120 SHA256 
5c0f0bc9a1fab391657737fc3b6af4088eff1ead2e05987fe50e02f5b6e50eb3 SHA512 
ac1bfc543f38dd86aeef544a8d03aa2f2a6cb02ee2042ecb3f339baed98294deac1fc6d3d002e654f3d9f32f00379c4de40efa226ddd07715aee7fe0fcb41e43
 WHIRLPOOL 
5941c1ea18d238275aab312123eb598f3d3265f279674191a75bec6bfd6efeebadb20dc7e6db6454a9da10ed8e98b2916fad195741b4d5fddbb270528e040d63
 DIST emacs-daemon-0.21.tar.xz 5212 SHA256 
e07c24d3a92f77d49cecaffdc9dc20d9268505d4ee4879557d0656e6b3c7acd3 SHA512 
7131cbd78bb2f11ce3dc5686a3729b8ec11a673e9011c70d72bc04bd5d36373507c9f446ef100d2d37b569850740bf4fb68e06c9e78f3a3bc2b9cdfef8418062
 WHIRLPOOL 
5c51f985c460a440e6f2b282ad7d289700f621ee1a90c023b4a6f8f317cfd29297ba20f6a8714f27746ee41f9cbae02f200c8bfd39b26d32b0d1c20a56fba48b
+DIST emacs-daemon-0.22.tar.xz 5276 SHA256 
62743bc32f48bd5406dedb1d5356e7959c413dbc295977de0315a6ea8c1c6272 SHA512 
f013cd00d3a24ca348bf718dd20dec7bea89107c0a27c921d6b58595b611991830604fc658d57681708218fbee1dae6dd0b277a2a9da67639e3553e0fd133094
 WHIRLPOOL 
ccc9a7bc1d378b4b64873f9458284bef9008b1380a58700d5210404a216a62fe98d0b4547e28a2f52d0b3e958b45c84e8654eddb4fab48854629cb513462b948

diff --git a/app-emacs/emacs-daemon/emacs-daemon-0.22.ebuild 
b/app-emacs/emacs-daemon/emacs-daemon-0.22.ebuild
new file mode 100644
index 000..0374115
--- /dev/null
+++ b/app-emacs/emacs-daemon/emacs-daemon-0.22.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit elisp
+
+DESCRIPTION="Gentoo support for Emacs running as a server in the background"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs;
+SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd"
+
+DEPEND=">=virtual/emacs-23"
+RDEPEND="${DEPEND}"
+
+SITEFILE="10${PN}-gentoo.el"
+
+pkg_setup() {
+   local has_daemon has_gtk line
+   has_daemon=$(${EMACS} ${EMACSFLAGS} --eval "(princ (fboundp 'daemonp))")
+   has_gtk=$(${EMACS} ${EMACSFLAGS} --eval "(princ (featurep 'gtk))")
+
+   if [[ ${has_daemon} != t ]]; then
+   while read line; do ewarn "${line}"; done <<-EOF
+   Your current Emacs version does not support running as a daemon 
which
+   is required for ${CATEGORY}/${PN}.
+   Use "eselect emacs" to select an Emacs version >= 23.
+   EOF
+   elif [[ ${has_gtk} == t ]]; then
+   while read line; do ewarn "${line}"; done <<-EOF
+   Your current Emacs is compiled with GTK+. There is a 
long-standing bug
+   in GTK+ that prevents Emacs from recovering from X disconnects:
+   
+   If you run Emacs as a daemon, then it is strongly recommended 
that you
+   compile it with the Lucid or the Motif toolkit instead, i.e. 
with
+   USE="athena Xaw3d -gtk -motif" or USE="motif -gtk -athena 
-Xaw3d".
+   EOF
+   fi
+}
+
+src_compile() { :; }
+
+src_install() {
+   newinitd emacs.rc emacs
+   newconfd emacs.conf emacs
+   exeinto /usr/libexec/emacs
+   doexe emacs-wrapper.sh emacs-stop.sh
+   elisp-site-file-install "${SITEFILE}"
+   dodoc README ChangeLog
+}



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

2016-05-06 Thread Ian Delaney
commit: 526e1b77a7a433cf9f3694f9b6189f87e87b5464
Author: Jan Vesely  gmail  com>
AuthorDate: Thu May  5 12:04:38 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Fri May  6 13:16:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=526e1b77

app-text/po4a: revbump to vn. 0.45-r3

Fix LINGUAS support, fix array "perl_rm_files" to take relative paths
remove translated man pages

Signed-off-by: Jan Vesely  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/1408
Signed-off-by: Ian Delaney  gentoo.org>

 app-text/po4a/po4a-0.45-r3.ebuild | 62 +++
 1 file changed, 62 insertions(+)

diff --git a/app-text/po4a/po4a-0.45-r3.ebuild 
b/app-text/po4a/po4a-0.45-r3.ebuild
new file mode 100644
index 000..fb6c05f
--- /dev/null
+++ b/app-text/po4a/po4a-0.45-r3.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PLOCALES="af ca cs da de eo es et eu fr hr id it ja kn ko nb nl pl pt_BR pt ru 
sl sv uk vi zh_CN zh_HK"
+PLOCALES_BACKUP="en"
+
+# Needed because this package also installs to vendor_perl
+GENTOO_DEPEND_ON_PERL_SUBSLOT="yes"
+inherit perl-app perl-module l10n
+
+DESCRIPTION="Tools for helping translation of documentation"
+HOMEPAGE="http://po4a.alioth.debian.org;
+SRC_URI="mirror://debian/pool/main/p/po4a/${PN}_${PV}.orig.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x64-solaris ~x86-solaris"
+IUSE="test"
+
+RDEPEND="dev-perl/SGMLSpm
+   >=sys-devel/gettext-0.13
+   app-text/openjade
+   dev-libs/libxslt
+   dev-perl/Locale-gettext
+   dev-perl/TermReadKey
+   dev-perl/Text-WrapI18N"
+DEPEND="${RDEPEND}
+   >=dev-perl/Module-Build-0.380.0
+   app-text/docbook-xsl-stylesheets
+   app-text/docbook-xml-dtd:4.1.2
+   test? ( app-text/docbook-sgml-dtd
+   app-text/docbook-sgml-utils
+   virtual/tex-base )"
+
+SRC_TEST="do"
+
+src_prepare() {
+   # Check against locale files in ${S}/pod/bin for mismatches
+   # with languages listed in PLOCALES
+   local locales_path="$S/po/bin"
+   l10n_find_plocales_changes "$locales_path" "" ".po"
+
+   # Array containing locale files to remove
+   local locales_to_remove=( )
+
+   # Get rid of disabled locales
+   my_get_disabled_locales() {
+   locales_to_remove=( "${locales_to_remove[@]}" "po/bin/${1}.po" 
"po/pod/${1}.po" )
+   }
+
+   l10n_for_each_disabled_locale_do my_get_disabled_locales
+
+   einfo "Your LINGUAS lists the following languages: $LINGUAS"
+   einfo "Removing locale files not listed in it ..."
+
+   # perl_rm_files also updates the Manifest file
+   # and therefore silences Perl as to .po files we're about to clean
+   perl_rm_files "${locales_to_remove[@]}"
+}



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

2016-05-06 Thread Ian Delaney
commit: a6f9a96fdec54406ab34904b13db89c0af9de89c
Author: Oliver Freyermuth  googlemail  com>
AuthorDate: Thu May  5 21:53:14 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Fri May  6 13:16:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6f9a96f

dev-util/serialtalk: Initial commit.

This packages the released version 1.2
and adds a live-ebuild.

Gentoo-Bug: https://bugs.gentoo.org/582182

Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/1416

Signed-off-by: Ian Delaney  gentoo.org>

 dev-util/serialtalk/Manifest   |  1 +
 dev-util/serialtalk/metadata.xml   | 16 
 dev-util/serialtalk/serialtalk-1.2.ebuild  | 25 +
 dev-util/serialtalk/serialtalk-.ebuild | 25 +
 4 files changed, 67 insertions(+)

diff --git a/dev-util/serialtalk/Manifest b/dev-util/serialtalk/Manifest
new file mode 100644
index 000..b5804eb
--- /dev/null
+++ b/dev-util/serialtalk/Manifest
@@ -0,0 +1 @@
+DIST serialtalk-1.2.tar.gz 19214 SHA256 
0dde1167ef1d3494e43ec5c8c5715122e68efb3b83e8c725673326fd0160ab9f SHA512 
4634e4a044915841bf4c2ba141b479207237b1d078a3af47515adebbca3feeb8e1a8e86a673b8a77595255b017e51bbe3e3567e4914b9d603ba676525a7f1dc2
 WHIRLPOOL 
280368d5b3f6bb670d7d56e1e0aa038ba6709af6be990be64b38fe50c9b0c585f2f49164cf89ccfb8c22c157cadeea3e4ea0948bfb65970a772f6d0e5b11ceec

diff --git a/dev-util/serialtalk/metadata.xml b/dev-util/serialtalk/metadata.xml
new file mode 100644
index 000..cdeb0f4
--- /dev/null
+++ b/dev-util/serialtalk/metadata.xml
@@ -0,0 +1,16 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+o.freyerm...@googlemail.com
+Oliver Freyermuth
+Proxy-maintainer, assign bugs
+  
+  
+proxy-ma...@gentoo.org
+Proxy Maintainers
+  
+  
+BGO-OD/serialtalk
+  
+

diff --git a/dev-util/serialtalk/serialtalk-1.2.ebuild 
b/dev-util/serialtalk/serialtalk-1.2.ebuild
new file mode 100644
index 000..b083e3f
--- /dev/null
+++ b/dev-util/serialtalk/serialtalk-1.2.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cmake-utils
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/BGO-OD/serialtalk.git;
+else
+   SRC_URI="https://github.com/BGO-OD/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="simple command-line tool to talk to serial devices"
+HOMEPAGE="https://github.com/BGO-OD/serialtalk;
+
+LICENSE="GPL-3"
+SLOT="0"
+
+src_install() {
+   cmake-utils_src_install
+}

diff --git a/dev-util/serialtalk/serialtalk-.ebuild 
b/dev-util/serialtalk/serialtalk-.ebuild
new file mode 100644
index 000..b083e3f
--- /dev/null
+++ b/dev-util/serialtalk/serialtalk-.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cmake-utils
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/BGO-OD/serialtalk.git;
+else
+   SRC_URI="https://github.com/BGO-OD/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="simple command-line tool to talk to serial devices"
+HOMEPAGE="https://github.com/BGO-OD/serialtalk;
+
+LICENSE="GPL-3"
+SLOT="0"
+
+src_install() {
+   cmake-utils_src_install
+}



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

2016-05-06 Thread Alexis Ballier
commit: ee40a808229ad9d50e5afbf25585c8e098655c30
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri May  6 12:48:07 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri May  6 12:48:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee40a808

dev-ml/batteries: make ocaml 4.03 patches conditional to having ocaml 4.03.

It fails to build with older versions otherwise, bug #582246

Package-Manager: portage-2.2.28

 dev-ml/batteries/batteries-2.4.0.ebuild | 12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/dev-ml/batteries/batteries-2.4.0.ebuild 
b/dev-ml/batteries/batteries-2.4.0.ebuild
index 7ea0d79..b5a7c8f 100644
--- a/dev-ml/batteries/batteries-2.4.0.ebuild
+++ b/dev-ml/batteries/batteries-2.4.0.ebuild
@@ -22,8 +22,10 @@ DEPEND="${RDEPEND}
 DOCS=( "ChangeLog" "FAQ" "README.folders" "README.md" )
 
 S="${WORKDIR}/${PN}-included-${PV}"
-PATCHES=(
-   "${FILESDIR}/oc43-1.patch"
-   "${FILESDIR}/oc43-2.patch"
-   "${FILESDIR}/oc43-3.patch"
-)
+
+src_prepare() {
+   has_version '>=dev-lang/ocaml-4.03' && epatch \
+   "${FILESDIR}/oc43-1.patch" \
+   "${FILESDIR}/oc43-2.patch" \
+   "${FILESDIR}/oc43-3.patch"
+}



[gentoo-commits] repo/gentoo:master commit in: app-leechcraft/lc-core/, app-leechcraft/lc-core/files/

2016-05-06 Thread David Seifert
commit: 348c3c06fbcc4d6c84bdec267e0929030dba7230
Author: David Seifert  gentoo  org>
AuthorDate: Fri May  6 11:15:29 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri May  6 11:15:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=348c3c06

app-leechcraft/lc-core: Require USE="threads" for dev-libs/boost

Gentoo-Bug: 574030, 580850
* Also fix C++11 direct initialization bug

Package-Manager: portage-2.2.28

 ...e-0.6.70-c++11-direct-list-initialization.patch | 35 ++
 app-leechcraft/lc-core/lc-core-0.6.70.ebuild   |  8 +++--
 2 files changed, 41 insertions(+), 2 deletions(-)

diff --git 
a/app-leechcraft/lc-core/files/lc-core-0.6.70-c++11-direct-list-initialization.patch
 
b/app-leechcraft/lc-core/files/lc-core-0.6.70-c++11-direct-list-initialization.patch
new file mode 100644
index 000..b5b6700
--- /dev/null
+++ 
b/app-leechcraft/lc-core/files/lc-core-0.6.70-c++11-direct-list-initialization.patch
@@ -0,0 +1,35 @@
+GCC 5.1 and upwards are more strict with direct initialization:
+* 
/var/tmp/portage/app-leechcraft/lc-core-0.6.70/work/leechcraft-0.6.70/src/util/network/addresses.cpp:46:3:
 error: direct-list-* initialization of ‘auto’ requires exactly one element 
[-fpermissive]
+*};
+See also:
+https://bugs.gentoo.org/show_bug.cgi?id=574030
+
+--- leechcraft-0.6.70/src/util/network/addresses.cpp
 leechcraft-0.6.70/src/util/network/addresses.cpp
+@@ -38,7 +38,7 @@
+   AddrList_t GetLocalAddresses (int defaultPort)
+   {
+   AddrList_t defaultAddrs;
+-  const auto locals
++  const auto locals =
+   {
+   QHostAddress::parseSubnet ("10.0.0.0/8"),
+   QHostAddress::parseSubnet ("172.16.0.0/12"),
+--- leechcraft-0.6.70/src/util/xdg/xdg.cpp
 leechcraft-0.6.70/src/util/xdg/xdg.cpp
+@@ -44,13 +44,13 @@
+ 
+   QPixmap GetAppPixmap (const QString& name)
+   {
+-  const auto prefixes
++  const auto prefixes =
+   {
+   "/usr/share/pixmaps/",
+   "/usr/local/share/pixmaps/"
+   };
+ 
+-  const auto sizes { "192", "128", "96", "72", "64", "48", "36", 
"32" };
++  const auto sizes = { "192", "128", "96", "72", "64", "48", 
"36", "32" };
+   const QStringList themes
+   {
+   "/usr/local/share/icons/hicolor/",

diff --git a/app-leechcraft/lc-core/lc-core-0.6.70.ebuild 
b/app-leechcraft/lc-core/lc-core-0.6.70.ebuild
index f7ca3c9..2f10cae 100644
--- a/app-leechcraft/lc-core/lc-core-0.6.70.ebuild
+++ b/app-leechcraft/lc-core/lc-core-0.6.70.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -15,7 +15,7 @@ SLOT="0"
 KEYWORDS=" amd64 ~x86"
 IUSE="debug doc +sqlite postgres +qwt"
 
-COMMON_DEPEND=">=dev-libs/boost-1.46
+COMMON_DEPEND=">=dev-libs/boost-1.46:=[threads]
dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtdeclarative:4
@@ -36,6 +36,10 @@ RDEPEND="${COMMON_DEPEND}
 
 REQUIRED_USE="|| ( postgres sqlite )"
 
+PATCHES=(
+   "${FILESDIR}/${P}-c++11-direct-list-initialization.patch"
+)
+
 src_configure() {
local mycmakeargs=(
-DWITH_PLUGINS=False



[gentoo-commits] repo/gentoo:master commit in: app-editors/kakoune/files/, app-editors/kakoune/

2016-05-06 Thread Ian Delaney
commit: fbffc0e8d920f3492b682511ed24435388693c7e
Author: Mykyta Holubakha  gmail  com>
AuthorDate: Thu May  5 18:14:19 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Fri May  6 10:54:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbffc0e8

app-editors/kakoune: new ebuild

initial vns.; a snapshot 2016.05.05ebuild, and a live ebuild

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

Signed-off-by: Ian Delaney  gentoo.org>

 app-editors/kakoune/Manifest |  1 +
 app-editors/kakoune/files/kakoune-makefile.patch | 38 +++
 app-editors/kakoune/kakoune-2016.05.05.ebuild| 48 
 app-editors/kakoune/kakoune-.ebuild  | 46 +++
 app-editors/kakoune/metadata.xml | 15 
 5 files changed, 148 insertions(+)

diff --git a/app-editors/kakoune/Manifest b/app-editors/kakoune/Manifest
new file mode 100644
index 000..f74622d
--- /dev/null
+++ b/app-editors/kakoune/Manifest
@@ -0,0 +1 @@
+DIST kakoune-2016.05.05.tar.gz 367575 SHA256 
e79655b89d6138547d7158e715b520c98316b0358ced6c356496b361c9ea0049 SHA512 
9b6cc2c9c6c356a27f5a42a226ba2fb2ce32e21e795423a6354127f9dce7edd423e61a9356a0582d609efc4c28dd012788556cc32ba3f8f791a901f07a36bbc8
 WHIRLPOOL 
e71748f69bca77dd9cd6c02c92f032123d322861bf86ab63bd5561b1f7957ec68c6b7ce0e1f8dd493166cf22aceae7cd49e6ffd42816c7c265712e554b224fe0

diff --git a/app-editors/kakoune/files/kakoune-makefile.patch 
b/app-editors/kakoune/files/kakoune-makefile.patch
new file mode 100644
index 000..076c42f
--- /dev/null
+++ b/app-editors/kakoune/files/kakoune-makefile.patch
@@ -0,0 +1,38 @@
+diff --git a/src/Makefile b/src/Makefile
+index c79c270..9409a8c 100644
+--- a/src/Makefile
 b/src/Makefile
+@@ -3,10 +3,10 @@ pedantic ?= yes
+ 
+ ifeq ($(debug),yes)
+ CPPFLAGS += -DKAK_DEBUG
++CXXFLAGS += -g
+ suffix := .debug
+ else
+ ifeq ($(debug),no)
+-CXXFLAGS += -O3
+ suffix := .opt
+ else
+ $(error debug should be either yes or no)
+@@ -26,8 +26,6 @@ mandocs := $(docs:.asciidoc=.gz)
+ PREFIX ?= /usr/local
+ DESTDIR ?= # root dir
+ 
+-NCURSESW_INCLUDE ?= /usr/include/ncursesw
+-
+ bindir := $(DESTDIR)$(PREFIX)/bin
+ sharedir := $(DESTDIR)$(PREFIX)/share/kak
+ docdir := $(DESTDIR)$(PREFIX)/share/doc/kak
+@@ -53,11 +51,10 @@ else ifneq (,$(findstring CYGWIN,$(os)))
+ LIBS += -lncursesw -lboost_regex -ldbghelp
+ else
+ LIBS += -lncursesw -lboost_regex
+-CPPFLAGS += -I$(NCURSESW_INCLUDE)
+ LDFLAGS += -rdynamic
+ endif
+ 
+-CXXFLAGS += -std=gnu++11 -g -Wall -Wno-reorder -Wno-sign-compare -Wno-address
++CXXFLAGS += -std=gnu++11 -Wall -Wno-reorder -Wno-sign-compare -Wno-address
+ 
+ kak : $(objects)
+   $(CXX) $(LDFLAGS) $(CXXFLAGS) $(objects) $(LIBS) -o $@

diff --git a/app-editors/kakoune/kakoune-2016.05.05.ebuild 
b/app-editors/kakoune/kakoune-2016.05.05.ebuild
new file mode 100644
index 000..da48501
--- /dev/null
+++ b/app-editors/kakoune/kakoune-2016.05.05.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit flag-o-matic toolchain-funcs vcs-snapshot
+
+REF="9298efd19bd024f96df3eab0cef92d03581969ba"
+
+DESCRIPTION="Selection-oriented code editor inspired by vim"
+HOMEPAGE="https://github.com/mawww/kakoune;
+SRC_URI="https://github.com/mawww/${PN}/tarball/${REF} -> ${P}.tar.gz"
+
+LICENSE="Unlicense"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug"
+
+RDEPEND="
+   sys-libs/ncurses:*[unicode]
+   dev-libs/boost
+"
+DEPEND="
+   app-text/asciidoc
+   virtual/pkgconfig
+   ${RDEPEND}
+"
+
+PATCHES=( "${FILESDIR}/${PN}-makefile.patch" )
+
+src_configure() {
+   append-cppflags $(pkg-config --cflags ncursesw)
+   export CXX=$(tc-getCXX)
+   export debug=$(usex debug)
+}
+
+src_compile() {
+   emake -C src
+}
+
+src_test() {
+   emake -C src test
+}
+
+src_install() {
+   emake -C src DESTDIR="${D}" PREFIX="/usr" install
+}

diff --git a/app-editors/kakoune/kakoune-.ebuild 
b/app-editors/kakoune/kakoune-.ebuild
new file mode 100644
index 000..f448c1b
--- /dev/null
+++ b/app-editors/kakoune/kakoune-.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit flag-o-matic toolchain-funcs git-r3
+
+DESCRIPTION="Selection-oriented code editor inspired by vim"
+HOMEPAGE="https://github.com/mawww/kakoune;
+EGIT_REPO_URI="https://github.com/mawww/kakoune.git;
+
+LICENSE="Unlicense"
+SLOT="0"
+KEYWORDS=""
+IUSE="debug"
+
+RDEPEND="
+   sys-libs/ncurses:*[unicode]
+   dev-libs/boost
+"
+DEPEND="
+   app-text/asciidoc
+   virtual/pkgconfig
+   ${RDEPEND}
+"
+
+PATCHES=( "${FILESDIR}/${PN}-makefile.patch" )
+
+src_configure() {
+   append-cppflags $(pkg-config --cflags ncursesw)
+   export 

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

2016-05-06 Thread Patrick Lauer
commit: 21dc3e1a5708d888c4d5fefdf124b03a309d5db0
Author: Patrick Lauer  gentoo  org>
AuthorDate: Fri May  6 10:50:02 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Fri May  6 10:50:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21dc3e1a

app-misc/elasticsearch: Bump

Fix #569116
New init script and systemd unit, closer to upstream
Small bugfixes etc.
Thanks to Ferenc Erki for preparing and testing

Package-Manager: portage-2.2.28

 app-misc/elasticsearch/Manifest|   1 +
 app-misc/elasticsearch/elasticsearch-2.3.2.ebuild  |  76 +++
 .../files/elasticsearch-systemd-pre-exec   |   7 ++
 app-misc/elasticsearch/files/elasticsearch.conf2   |  67 ++
 app-misc/elasticsearch/files/elasticsearch.init6   | 102 +
 .../elasticsearch/files/elasticsearch.service5 |  53 +++
 6 files changed, 306 insertions(+)

diff --git a/app-misc/elasticsearch/Manifest b/app-misc/elasticsearch/Manifest
index cab832a..cf1672e 100644
--- a/app-misc/elasticsearch/Manifest
+++ b/app-misc/elasticsearch/Manifest
@@ -6,3 +6,4 @@ DIST elasticsearch-2.2.0.tar.gz 29419005 SHA256 
ed70cc81e1f55cd5f0032beea2907227
 DIST elasticsearch-2.2.2.tar.gz 29425370 SHA256 
c706db594f1feb5051d90697c6c412eadd60e00a9ec3b4f345a122801183af69 SHA512 
144ca47dd3b9730e5ff81dd93e5db09d57a6f0d61d4445e8609c0ece833f57ca05d81fdf702d56008bc5e370604deb83d2d527132783467d5ae1eddc6cefeb84
 WHIRLPOOL 
4d6ced926237490a6ee8531ccf09128cc6bff5d73cff6f36159552a4a7a0dfbe01df0dfafb583d1c7ddc47ad5fa054ab6dd8c188cc7e3fe196f6917519e1afac
 DIST elasticsearch-2.3.0.tar.gz 27556947 SHA256 
d68482c7633f2986263bc5f11f93b8a58c54c6cf5e337b615446d0a7c6fdcd8b SHA512 
26671d64e6cd3406ad1de4543d84c66f58be4906d00ad22584350c5b28359c2b878850fb7cd0e49c9913d968380e8e386d77376c4f32fc37d3a43913c21558db
 WHIRLPOOL 
d26a3128d12630fca4defb669b7e23749f9742e1bf7c9497860effdbe6f51c8e86b467d3a16c78c77b7dd93efaa25e21c9694308292567eaa8e07794c57d60db
 DIST elasticsearch-2.3.1.tar.gz 27540442 SHA256 
f0092e73038e0472fcdd923e5f2792e13692ea0f09ca034a54dd49b217110ebb SHA512 
447d8824c4bfbec9b8431d213e3a8ae6720d1486e1389c271cc67cce5546861a817ef8c7db1c3c3669a50a61b5305739ac26f46b04d5674bbca203c3b5dbcf2f
 WHIRLPOOL 
e55501ca7fa702c33cd826d51c2d90dcfcc2843fb5b24b2d20df917cc291fe53f203360bfac6249b57c4c2914d92da92ca56b6505b6be885ece196983c176b9c
+DIST elasticsearch-2.3.2.tar.gz 27543334 SHA256 
04c4d3913d496d217e038da88df939108369ae2e78eea29cb1adf1c4ab3a000a SHA512 
73c4ca82eb0f4dc22907a94b9025e79183f6fcd38dbb82795800d10fc810dbee412784e62f9247390f0fb9aa19545976584bd2b62f1afe79d2cd64bb55f76dc8
 WHIRLPOOL 
5cc44a827de5281a9fb823a8a2e43755e0853dc5aa27f5ef7f8d1c5605d80a2dbf4c8756f01811a54307938cb3030634be6c8af2ffa465e2f35cd2a4aabeeb20

diff --git a/app-misc/elasticsearch/elasticsearch-2.3.2.ebuild 
b/app-misc/elasticsearch/elasticsearch-2.3.2.ebuild
new file mode 100644
index 000..a0baa8b
--- /dev/null
+++ b/app-misc/elasticsearch/elasticsearch-2.3.2.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils systemd user
+
+MY_PN="${PN%-bin}"
+DESCRIPTION="Open Source, Distributed, RESTful, Search Engine"
+HOMEPAGE="https://www.elastic.co/products/elasticsearch;
+SRC_URI="https://download.elasticsearch.org/${MY_PN}/release/org/${MY_PN}/distribution/tar/${MY_PN}/${PV}/${P}.tar.gz;
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RESTRICT="strip"
+
+RDEPEND="|| ( virtual/jre:1.8 virtual/jre:1.7 )"
+
+pkg_preinst() {
+   if has_version 'http://www.elastic.co
+Wants=network.target
+After=network.target
+
+[Service]
+Environment=ES_HOME=/usr/share/elasticsearch
+Environment=CONF_DIR=/etc/elasticsearch
+Environment=DATA_DIR=/var/lib/elasticsearch
+Environment=LOG_DIR=/var/log/elasticsearch
+Environment=PID_DIR=/run/elasticsearch
+EnvironmentFile=-/etc/conf.d/elasticsearch
+
+WorkingDirectory=/usr/share/elasticsearch
+
+User=elasticsearch
+Group=elasticsearch
+
+ExecStartPre=/usr/share/elasticsearch/bin/elasticsearch-systemd-pre-exec
+
+ExecStart=/usr/share/elasticsearch/bin/elasticsearch \
+
-Des.pidfile=${PID_DIR}/elasticsearch.pid \
+
-Des.default.path.home=${ES_HOME} \
+
-Des.default.path.logs=${LOG_DIR} \
+
-Des.default.path.data=${DATA_DIR} \
+
-Des.default.path.conf=${CONF_DIR}
+
+StandardOutput=journal
+StandardError=inherit
+
+# Specifies the maximum file descriptor number that can be opened by this 
process
+LimitNOFILE=65535
+
+# Specifies the maximum number of bytes of memory that may be locked into RAM
+# Set to "infinity" if you use the 'bootstrap.mlockall: true' option
+# in elasticsearch.yml and 'MAX_LOCKED_MEMORY=unlimited' 

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

2016-05-06 Thread David Seifert
commit: 4fbe9bb3ad3d253d99a3e231bcc836b1e2dc65d9
Author: David Seifert  gentoo  org>
AuthorDate: Fri May  6 10:02:42 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri May  6 10:02:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fbe9bb3

sci-mathematics/cgal: Remove old

Package-Manager: portage-2.2.28

 sci-mathematics/cgal/Manifest |  4 --
 sci-mathematics/cgal/cgal-4.6.1-r1.ebuild | 75 
 sci-mathematics/cgal/cgal-4.7.ebuild  | 81 ---
 3 files changed, 160 deletions(-)

diff --git a/sci-mathematics/cgal/Manifest b/sci-mathematics/cgal/Manifest
index 2e114da..0c05231 100644
--- a/sci-mathematics/cgal/Manifest
+++ b/sci-mathematics/cgal/Manifest
@@ -1,8 +1,4 @@
 DIST CGAL-4.3-doc_html.tar.xz 15582924 SHA256 
dd28989ee950178b3f22d8b14111510312586c1a2c0b29a73a2a14d7d7eb5059 SHA512 
41125ab3b5135ae539365e6c128f79119a679292e734e1669cc43a35996363951f5a5d494f8c25c3b1eab75a69137ed51bf7b65ad6d47e56756212565ec245ec
 WHIRLPOOL 
961c4fea224e2c94a65a7dd07b16326159e9fe95f9176abd0cc96be3cb53060c076a80d5efd2d9c640c2aa2eea0d3d06ce64839961906a588706647830849972
 DIST CGAL-4.3.tar.xz 10108992 SHA256 
cc475885b4ca4b15ab5d446c0e554b7b69f6980969bc3a8c5b83f8da4ee1bb04 SHA512 
dcf329232f6511be6b7eecef7afbfd505529385cb29a3717b762068a3dac52b3706b1d55c6e30b677c6cf2f99aae937de7d730d30cc33680fc39df0f0ff76e70
 WHIRLPOOL 
862d5bc3387afa1b6702974b7fab3b7d4c35334023eb813bb52a6c7092d6f89104db8c7b851fd7ebb7dfdd38392f9d6459e9afab34bf237b0484f7d395035873
-DIST CGAL-4.6.1-doc_html-1.tar.xz 22890352 SHA256 
d7259defe9980fa0d333d55050902a443f967889c9fd5217ca77b7042ed1bf27 SHA512 
13558742b9baa8c58117a7ebd549d6fce931906c145145e917af3218b05eb7f8f889ee19015a36cc5c70e4699ae6288d6151727f627cf3b0717b8d0ef26a099f
 WHIRLPOOL 
dc13ccc90694c4c098941d0b5480017aecbdf49247e950bd93ca298a6e150aaf1b60f4e47938fea07013a7418b42ac3703a2523729b6d2b18e93494eea6faaf7
-DIST CGAL-4.6.1.tar.xz 12014652 SHA256 
33bd82871ccbaf16dc509f78f3f91dd35d44197cad64bffa63a1671a1812351a SHA512 
4227ea03c23f3858a47e0559bc0a3df34e447e18e2b053048378c479b9b7fa2a157cf9aa546d7659a1d4d640218944fe1104a21769144cdfdc8a5144299f4b61
 WHIRLPOOL 
309deea6268d036b14796b411a7dcdbe75433a6d5eb2296387b05f2957e538cce6e6fe0b23be3921a500eae74db954058ed57aeef8759e44f4038d2fbab884f7
-DIST cgal-4.7-doc_html-1.tar.xz 25248068 SHA256 
2a15a16229dd90f991ea976761c8ae3c1f9e09f4023bb4446629c3b948a3b9bd SHA512 
7542d1937c8cd8cfd174aa67b74b1e242c1dbbd40ca772eb0b7bdc80a947f0851222b10d098193b5c2cab1fe3f32cd40ab2555248bd99b7a29c296df288dabf7
 WHIRLPOOL 
f7657994ffa71e4c5f30b75060cd87fc46686b5d2e1a05012b36a0c0f2a6b2ddcf40b9fb1ae038c69e3f363d12e92acf6455c2ad2838567d3a1cc31dd4722c54
-DIST cgal-4.7.tar.xz 13673360 SHA256 
50bd0a1cad7a8957b09012f831eebaf7d670e2a3467e8f365ec0c71fa5436369 SHA512 
8126e861fb091a21a0eaf777205d5d688a0d33f005b91c85b2e5fb91afa66796611ec8a314647a322141169483ab8ff0dba769840bf4fb0f4397cf167172b21f
 WHIRLPOOL 
6f1b0c9855161c0841faf1022742fd09157d5605fb5d5046d2b3bde1f1027b3ee6813ac631fb981f026239e0027434102c16d25b1dfda8619c571adc8639a921
 DIST cgal-4.8-doc_html-1.tar.xz 25996928 SHA256 
27e63a868d6103fbedf43d4adf518de94dd8209d65e352aa60b8773a0e3ee1a2 SHA512 
f2363b3a21065b079ee192235cfeac66e87466a5f9646b33cf880f12ea646f87caf957dafd1d22199d5414f0ee378e540db42617641b4627106490ed33f21a80
 WHIRLPOOL 
34e830e0aad057108d9cb16cc12db0a1477351e866ae50b9af5d268b74bc15037c306f869c3f76406c8d8fa88192e3c5471517806589691b8b6502d8a306326f
 DIST cgal-4.8.tar.xz 13509916 SHA256 
2483ccf34ae41e830a3e33f2f471aadecf43316fb56bf632e403765ad035ce25 SHA512 
9640ba855b968f812876a694502c678737046d1c5ed30c766ceba7ae91ca2731d07b31841aa62c6817b0bacbd36f3bf492f71e0a709ef56cab7ad66ffbfee8d5
 WHIRLPOOL 
7747ef95005c2f93cef7442becc5a1e6209ad04b9d45ff187b919ea7f3cadf8087634865e177aa2129bb6d8ff054859197d76234b7f55a636eee6fe1dc7dbfce

diff --git a/sci-mathematics/cgal/cgal-4.6.1-r1.ebuild 
b/sci-mathematics/cgal/cgal-4.6.1-r1.ebuild
deleted file mode 100644
index 99fe2a9..000
--- a/sci-mathematics/cgal/cgal-4.6.1-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-CMAKE_BUILD_TYPE=Release
-
-inherit multilib cmake-utils
-
-MY_P=CGAL-${PV}
-PID=34900
-DPID=34904
-
-DESCRIPTION="C++ library for geometric algorithms and data structures"
-HOMEPAGE="http://www.cgal.org/ https://gforge.inria.fr/projects/cgal/;
-SRC_URI="
-   http://gforge.inria.fr/frs/download.php/${PID}/${MY_P}.tar.xz
-   doc? ( 
http://gforge.inria.fr/frs/download.php/${DPID}/${MY_P}-doc_html.tar.xz -> 
${MY_P}-doc_html-1.tar.xz )"
-
-LICENSE="LGPL-3 GPL-3 Boost-1.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples +gmp mpfi qt4"
-
-RDEPEND="
-   dev-libs/boost:=
-   dev-libs/mpfr:0
-   sys-libs/zlib
-   x11-libs/libX11
-   virtual/glu
-   virtual/opengl
-   gmp? 

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

2016-05-06 Thread Hans de Graaff
commit: cc450cd9fb2e907d1663c1ba5368ff1f7d7c0b6e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri May  6 09:39:35 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri May  6 09:41:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc450cd9

ruby-single.eclass: Support EAPI=6

The current implementation is compatible with EAPI=6.
Thanks to Poly-C for additional testing.

 eclass/ruby-single.eclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/ruby-single.eclass b/eclass/ruby-single.eclass
index b76faae..f8ef648 100644
--- a/eclass/ruby-single.eclass
+++ b/eclass/ruby-single.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -26,7 +26,7 @@ case "${EAPI:-0}" in
0|1|2|3)
die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}"
;;
-   4|5)
+   4|5|6)
;;
*)
die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}"



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

2016-05-06 Thread Patrick Lauer
commit: 036015b1313e93f2ec7a99288e0ae12fd8aaa7d5
Author: Patrick Lauer  gentoo  org>
AuthorDate: Fri May  6 09:17:04 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Fri May  6 09:17:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=036015b1

dev-lang/elixir: Bump #582092

Package-Manager: portage-2.2.28

 dev-lang/elixir/Manifest|  1 +
 dev-lang/elixir/elixir-1.2.5.ebuild | 28 
 2 files changed, 29 insertions(+)

diff --git a/dev-lang/elixir/Manifest b/dev-lang/elixir/Manifest
index 8a2b1d4..3d116f7 100644
--- a/dev-lang/elixir/Manifest
+++ b/dev-lang/elixir/Manifest
@@ -1,3 +1,4 @@
 DIST elixir-1.0.5.tar.gz 1043275 SHA256 
5ce5c226b3d11d751b41ad79b915b86f13f8a1b89ef3e733321d3f46ff4d81b8 SHA512 
1f621e1a3939433dc91a0e2f7e62512b074ce2e8dc7190535570056875f82eda2001a333a51627e39b0f710e104409c8d17aea9635235b0963265d39b32c9f6c
 WHIRLPOOL 
eea70416f08132654e9cc4b65342971cdd7793b45d97fbe5cb1b8e6739a3befb16d72ce15b485a8c2a3204462c8b54afc9c2d934c924863e3a6342e8067644fe
 DIST elixir-1.1.1.tar.gz 1094432 SHA256 
3b7d6e4fdbcc82d19fa76f4e384f8a87535abcd00ef04528dc6b6706f32a106a SHA512 
24b1ccf6877098cf5539607a13d4c408314c01b3bac8aaa9cfda59299113affd173cb29606f57110e44104095360ca81f084cceb561fc30e795c0d15d6140772
 WHIRLPOOL 
7bf3dd5ed2b95bed8eca5eddfd97666e69e024395e7f8a684f69d36249230f0775d80c3be6c587a8a884cdf94dd3ba29e94fd5f61b4c7d150e4bce39be076f98
 DIST elixir-1.2.3.tar.gz 1662478 SHA256 
886e4efea0e94ba55ea659986fb3460c5b77045410c10144838192214827 SHA512 
fefdc490c266045c29ea513f77b45c82c01ca3e60f1cd35afd1214e14c23d1d008724801c102a006271916073707027666c98687b4878d280b836a2dbf25062b
 WHIRLPOOL 
40cb6d462e026b138e3ba85e198a730f99df75900ab937bc48b123b23c38a3c5b084f9d9ae1335210e873d092b93279b86ef1cdf51d34e182b440b13bd8b220b
+DIST elixir-1.2.5.tar.gz 1666179 SHA256 
8ed65722aeb55cbfe6022d77d0e36293d463d7b4922198f5c157e8286d896eee SHA512 
62b09650002cc4ea01d1210765750706feb926bdc81ff30a3665b49722f8231f4e790e0fecb2fdc06a1d64dfc71213eaf187c8724c52841d91d5b5a7e3ca6749
 WHIRLPOOL 
067c090d6d6f80fcab5e8d32f7e588b33b3f78c25c31252ddb8d901acf707682b95a98c89d64afd842c16ea6ceaae44373b98079235aa3fecb587259f9f41afe

diff --git a/dev-lang/elixir/elixir-1.2.5.ebuild 
b/dev-lang/elixir/elixir-1.2.5.ebuild
new file mode 100644
index 000..19f6fbc
--- /dev/null
+++ b/dev-lang/elixir/elixir-1.2.5.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit multilib
+
+DESCRIPTION="Elixir programming language"
+HOMEPAGE="http://elixir-lang.org;
+SRC_URI="https://github.com/elixir-lang/elixir/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0 ErlPL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=">=dev-lang/erlang-18"
+RDEPEND="${DEPEND}"
+
+src_compile() {
+   emake Q=""
+}
+
+src_install() {
+   emake DESTDIR="${D}" LIBDIR="$(get_libdir)" PREFIX="/usr" install
+   dodoc README.md CHANGELOG.md CONTRIBUTING.md
+}



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

2016-05-06 Thread Michael Weber
commit: b51cffc87a3fdc9c029d96a5610ddd1d779d375e
Author: Michael Weber  gentoo  org>
AuthorDate: Fri May  6 08:40:06 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Fri May  6 08:40:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b51cffc8

dev-util/apitrace: Set EoD as proxy-maintainer.

Package-Manager: portage-2.2.28

 dev-util/apitrace/metadata.xml | 15 ++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/dev-util/apitrace/metadata.xml b/dev-util/apitrace/metadata.xml
index 6ff1698..7e0a3f3 100644
--- a/dev-util/apitrace/metadata.xml
+++ b/dev-util/apitrace/metadata.xml
@@ -1,7 +1,20 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   e...@xmw.de
+   EoD
+   Maintainer. Assign bugs to him.
+   
+   
+   x...@gentoo.org
+   Michael Weber
+   Proxy maintainer. CC him on bugs.
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

Enable command line interface
Enable EGL support



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

2016-05-06 Thread Michael Weber
commit: 4eec892b2e50ceabc5b6370e122ee8387f739696
Author: Michael Weber  gentoo  org>
AuthorDate: Fri May  6 08:36:36 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Fri May  6 08:40:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eec892b

dev-util/apitrace: Version bump by EoD (bug 559566).

Package-Manager: portage-2.2.28

 dev-util/apitrace/Manifest |  1 +
 dev-util/apitrace/apitrace-7.1.ebuild  | 99 ++
 .../files/apitrace-7.1-disable-multiarch.patch | 35 
 .../apitrace/files/apitrace-7.1-docs-install.patch | 23 +
 .../files/apitrace-7.1-glxtrace-only.patch | 32 +++
 .../files/apitrace-7.1-snappy-license.patch| 11 +++
 dev-util/apitrace/metadata.xml |  1 +
 7 files changed, 202 insertions(+)

diff --git a/dev-util/apitrace/Manifest b/dev-util/apitrace/Manifest
index 77da9dd..80ca682 100644
--- a/dev-util/apitrace/Manifest
+++ b/dev-util/apitrace/Manifest
@@ -2,3 +2,4 @@ DIST apitrace-4.0.tar.gz 1736912 SHA256 
078cfe09a5a021559326e8ee92ce863dd99d48c3
 DIST apitrace-5.0.tar.gz 1868044 SHA256 
c11e97452b3b74533b82af28951382c77e3d639bd434cbc4e1dc43bc799c8ea6 SHA512 
af83860c8bfd49a2a2b1483fe13a83f2e1aa93ca474f1efb12cb311a99f2ca29ce4c39831a941efdde80fe2ae76b11cdfc6fde3349d325c71fc2a3ecae6b1424
 WHIRLPOOL 
ba6fe7c354db3e6ba8edd46675631ef6d2edfc01c9201ffd951fc48110d0120463d52b4778984b01ae766d662edfc386a1965240377bcd2b2bae71936e94d42a
 DIST apitrace-6.0.tar.gz 1738830 SHA256 
4ac99fbd5076c9e4db9d09ef22fb1958f28115f162b6ee40a23130aacc1e2acb SHA512 
e937ca8ddece11d180ed306083788fc7e5fa5d4ceeef0ae69ab5a8140e4169c583b281f6f4806b5c4d71c72fb79ac8399e2f0f49fa1052b90f14306247a4091c
 WHIRLPOOL 
1d5f43f5576a4f258f249f3d2777ad221dce3d7dc9489db924568c5c26af3542d016d722ef9c9be7ae50e380684c597840cc869c4d11cf3f3dcb96f952cc4ee0
 DIST apitrace-6.1.tar.gz 1741041 SHA256 
0285610a6afbe9fbc47c0ecb80cafabb34dc1998c1c8308bacb7fdd15817930b SHA512 
218fc8e59bc6cff6733c98f53c57b0e793d2f7aa530560f8da0dff83c4fa255c5fd5db97a9a43c364490c355ddb1ea6557ced64eae3e6c5e0c6f4504b9299bcd
 WHIRLPOOL 
6334a96a0d70fce927faed0923efe1e320d4a52909ab01223f0486774a13e3cef53d2920933bc3167d9d766d647da6ab36b95ccbbcf78a0af55d16775000f2ea
+DIST apitrace-7.1.tar.gz 2343156 SHA256 
2103386d747d34f3d6fb1d01fde9078a45ad2e9976afab3a7489c95b08dde0a2 SHA512 
b4ebe4eb0b16770a156cffe7cff2166634bee7b147d124c78c6e5b37e2ef5f0cb78d30ab7df9a489f25234073023c8bbee67e2b6c59aacfcf4e5ff2ceb84
 WHIRLPOOL 
d61aa9470faf61d4ffa3cd12a24fa13f993f9e21fc0bfcf0f2b9bf3d15803bc1c2120a1ed7e8c43668082dfe61f86434d5e297c5e21e4f2bbb1b88bf80b9bbe3

diff --git a/dev-util/apitrace/apitrace-7.1.ebuild 
b/dev-util/apitrace/apitrace-7.1.ebuild
new file mode 100644
index 000..47c58bf
--- /dev/null
+++ b/dev-util/apitrace/apitrace-7.1.ebuild
@@ -0,0 +1,99 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+PYTHON_COMPAT=( python2_7 )
+
+inherit cmake-multilib eutils python-single-r1
+
+DESCRIPTION="A tool for tracing, analyzing, and debugging graphics APIs"
+HOMEPAGE="https://github.com/apitrace/apitrace;
+SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+LICENSE+=" BSD CC-BY-3.0 CC-BY-4.0 public-domain" #bundled snappy
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="+cli egl qt5 system-snappy"
+
+RDEPEND="${PYTHON_DEPS}
+   >=sys-devel/gcc-4.7:*
+   system-snappy? ( >=app-arch/snappy-1.1.1[${MULTILIB_USEDEP}] )
+   >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
+   >=media-libs/mesa-9.1.6[egl?,${MULTILIB_USEDEP}]
+   egl? ( || (
+   >=media-libs/mesa-8.0[gles1,gles2]
+
${CMAKE_CURRENT_BINARY_DIR}/glretrace_gl.cpp
+@@ -368,3 +370,5 @@
+ install (TARGETS d3dretrace RUNTIME DESTINATION bin)
+ install_pdb (d3dretrace DESTINATION bin)
+ endif ()
++
++endif (NOT BUILD_LIB_ONLY)

diff --git a/dev-util/apitrace/files/apitrace-7.1-snappy-license.patch 
b/dev-util/apitrace/files/apitrace-7.1-snappy-license.patch
new file mode 100644
index 000..2b211dc
--- /dev/null
+++ b/dev-util/apitrace/files/apitrace-7.1-snappy-license.patch
@@ -0,0 +1,11 @@
+--- apitrace-7.1/thirdparty/snappy/CMakeLists.txt
 apitrace-7.1/thirdparty/snappy/CMakeLists.txt
+@@ -16,8 +16,3 @@
+ snappy-c.cc
+ )
+ 
+-install (
+-FILES COPYING
+-DESTINATION ${DOC_INSTALL_DIR}
+-RENAME LICENSE-snappy.txt
+-)

diff --git a/dev-util/apitrace/metadata.xml b/dev-util/apitrace/metadata.xml
index 7fe2270..6ff1698 100644
--- a/dev-util/apitrace/metadata.xml
+++ b/dev-util/apitrace/metadata.xml
@@ -5,6 +5,7 @@

Enable command line interface
Enable EGL support
+   Link dynamic against 
app-arch/snappy


apitrace/apitrace



[gentoo-commits] repo/gentoo:master commit in: app-emacs/nxml-gentoo-schemas/

2016-05-06 Thread Ulrich Müller
commit: 1c5176edbb2ee72b053cde28d41738f8dae5616f
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri May  6 08:21:41 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri May  6 08:21:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c5176ed

app-emacs/nxml-gentoo-schemas: Version bump.

Package-Manager: portage-2.2.28

 app-emacs/nxml-gentoo-schemas/Manifest |  1 +
 .../nxml-gentoo-schemas-20160506.ebuild| 26 ++
 2 files changed, 27 insertions(+)

diff --git a/app-emacs/nxml-gentoo-schemas/Manifest 
b/app-emacs/nxml-gentoo-schemas/Manifest
index 72d1529..447d619 100644
--- a/app-emacs/nxml-gentoo-schemas/Manifest
+++ b/app-emacs/nxml-gentoo-schemas/Manifest
@@ -1,2 +1,3 @@
 DIST nxml-gentoo-schemas-20160125.tar.xz 11920 SHA256 
2db910f6391663953838bf4acee56b4f28a03abf56089cba0c0f7ea8844cfe4a SHA512 
bf1aabc2275e6a4ff9a736385b8cb97ded63ac44a43608991012ea818e4f9e908e451b781f15d32a8dc744e73cadf032637e44ad93a08c6fcad2912c5d755789
 WHIRLPOOL 
09b6580f2af817db6db6023c901f4f7f50daa1bad228e0e2c619d3a4b99f08d5c717de514ee99beeb26266c631e596e3e1fa985b6b787ec8641fa44035b737b2
 DIST nxml-gentoo-schemas-20160312.tar.xz 11460 SHA256 
ab19cccfacaadf96d881cebd065d16526affa2f85a7cab4d104d4350c45d2a68 SHA512 
91d8ab4849bef6a54981c205cfd215f3e9bb1fb3c86fcd70a7ac2c6272fa58c29db08f4a1671487299c5ccbcfd388f0d2cd5953d13bf949798f135b230fa764a
 WHIRLPOOL 
b0495a1e1c25674efc60bfcd8256b3a9b47ee37a19eecb3b8bedeebb2394f86aee5221eddc03045414bbed7dea873cff283f2f75e84329d76101896514f9bd10
+DIST nxml-gentoo-schemas-20160506.tar.xz 11472 SHA256 
c900fb55047071c749e07ba081101ccc229c7048989c057b1067ed0a9c2922df SHA512 
5f826342e3af11a93ca22abe4333838f3f26cb01ff98a270929d6e5091e65b4ab9971b1f7e52404b235bd208f195d51eef868580d19a4c113ddb7925a9118b8d
 WHIRLPOOL 
865b1771cfe2a5adb4e3e3f0b9ffeaaf26e519173cbdc8624fd137becf15765f640ab33eb64362fc52f3a93af40dd59382db3b4648c0455605fc2b835d700cde

diff --git a/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20160506.ebuild 
b/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20160506.ebuild
new file mode 100644
index 000..86ad694
--- /dev/null
+++ b/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20160506.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit elisp
+
+DESCRIPTION="Extension for nxml-mode with Gentoo-specific schemas"
+HOMEPAGE="https://gitweb.gentoo.org/proj/nxml-gentoo-schemas.git/;
+SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz;
+
+LICENSE="HPND"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+
+SITEFILE="60${PN}-gentoo.el"
+
+src_compile() { :; }
+
+src_install() {
+   insinto "${SITEETC}/${PN}"
+   doins schemas.xml *.rnc
+   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+   dodoc DONATING
+}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/nxml-gentoo-schemas/

2016-05-06 Thread Ulrich Müller
commit: e882e99df7c0edad63b76b2e0c580ba338bdaf3f
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri May  6 08:24:21 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri May  6 08:24:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e882e99d

app-emacs/nxml-gentoo-schemas: Remove old.

Package-Manager: portage-2.2.28

 app-emacs/nxml-gentoo-schemas/Manifest |  1 -
 .../nxml-gentoo-schemas-20160125.ebuild| 26 --
 2 files changed, 27 deletions(-)

diff --git a/app-emacs/nxml-gentoo-schemas/Manifest 
b/app-emacs/nxml-gentoo-schemas/Manifest
index 447d619..b2db8b6 100644
--- a/app-emacs/nxml-gentoo-schemas/Manifest
+++ b/app-emacs/nxml-gentoo-schemas/Manifest
@@ -1,3 +1,2 @@
-DIST nxml-gentoo-schemas-20160125.tar.xz 11920 SHA256 
2db910f6391663953838bf4acee56b4f28a03abf56089cba0c0f7ea8844cfe4a SHA512 
bf1aabc2275e6a4ff9a736385b8cb97ded63ac44a43608991012ea818e4f9e908e451b781f15d32a8dc744e73cadf032637e44ad93a08c6fcad2912c5d755789
 WHIRLPOOL 
09b6580f2af817db6db6023c901f4f7f50daa1bad228e0e2c619d3a4b99f08d5c717de514ee99beeb26266c631e596e3e1fa985b6b787ec8641fa44035b737b2
 DIST nxml-gentoo-schemas-20160312.tar.xz 11460 SHA256 
ab19cccfacaadf96d881cebd065d16526affa2f85a7cab4d104d4350c45d2a68 SHA512 
91d8ab4849bef6a54981c205cfd215f3e9bb1fb3c86fcd70a7ac2c6272fa58c29db08f4a1671487299c5ccbcfd388f0d2cd5953d13bf949798f135b230fa764a
 WHIRLPOOL 
b0495a1e1c25674efc60bfcd8256b3a9b47ee37a19eecb3b8bedeebb2394f86aee5221eddc03045414bbed7dea873cff283f2f75e84329d76101896514f9bd10
 DIST nxml-gentoo-schemas-20160506.tar.xz 11472 SHA256 
c900fb55047071c749e07ba081101ccc229c7048989c057b1067ed0a9c2922df SHA512 
5f826342e3af11a93ca22abe4333838f3f26cb01ff98a270929d6e5091e65b4ab9971b1f7e52404b235bd208f195d51eef868580d19a4c113ddb7925a9118b8d
 WHIRLPOOL 
865b1771cfe2a5adb4e3e3f0b9ffeaaf26e519173cbdc8624fd137becf15765f640ab33eb64362fc52f3a93af40dd59382db3b4648c0455605fc2b835d700cde

diff --git a/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20160125.ebuild 
b/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20160125.ebuild
deleted file mode 100644
index 86ad694..000
--- a/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20160125.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit elisp
-
-DESCRIPTION="Extension for nxml-mode with Gentoo-specific schemas"
-HOMEPAGE="https://gitweb.gentoo.org/proj/nxml-gentoo-schemas.git/;
-SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz;
-
-LICENSE="HPND"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
-
-SITEFILE="60${PN}-gentoo.el"
-
-src_compile() { :; }
-
-src_install() {
-   insinto "${SITEETC}/${PN}"
-   doins schemas.xml *.rnc
-   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-   dodoc DONATING
-}



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

2016-05-06 Thread Patrick Lauer
commit: 3e74719d5481232805f0922af0ec316b91e6d5b6
Author: Patrick Lauer  gentoo  org>
AuthorDate: Fri May  6 08:08:00 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Fri May  6 08:08:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e74719d

dev-python/werkzeug: Bump

Package-Manager: portage-2.2.28

 dev-python/werkzeug/Manifest   |  1 +
 dev-python/werkzeug/werkzeug-0.11.9.ebuild | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/dev-python/werkzeug/Manifest b/dev-python/werkzeug/Manifest
index 7b58d4f..123d99e 100644
--- a/dev-python/werkzeug/Manifest
+++ b/dev-python/werkzeug/Manifest
@@ -7,4 +7,5 @@ DIST Werkzeug-0.11.3.tar.gz 1152396 SHA256 
eb5f700a9bfc96420b055635af9002d3662e4
 DIST Werkzeug-0.11.4.tar.gz 1152770 SHA256 
e48fb7e3f2bb5a740dd9a24699a4d83e2e028555f9c46bcc8ecfc2cd8c32 SHA512 
c9851e38576251432c054b12e64097c3c81925d8bb413d209f33d44283779456974d3af43d9f7e15b227e2f7e18539496aef33eb9d533ebcf8398a9ac35aba2c
 WHIRLPOOL 
c763260397bac54429bfcb40fce27f7b2e5bcdd9a69866937aaeafb55b0eb488a8fde8cb962e66a5e449b8565ac7f77a091118493b5f3444576b846c611167d9
 DIST Werkzeug-0.11.5.tar.gz 1154970 SHA256 
afdb04f183eef3b20827eb4520dcb75c1cd1f0ba7a7de3f463ff7a462eee8164 SHA512 
04e26dcf3705c544f10c63a1eec1002798ba4f33c549ab34b7ce44ed47c7a0cc0215e148267032bc32411bc06092ade1304d9ef9da6bfdae62dd26fb2b525d64
 WHIRLPOOL 
344c4959a2a2ae6e0ec9f47f29c26944610a3ef3b85d502ff30032b8c5d2a09e0aacadfd55f3e0bfa00a823c336d44ff81fa078b194a183ddc39537496c364c4
 DIST Werkzeug-0.11.8.tar.gz 1154973 SHA256 
729730a25f43a29ac6a79f08384ea18a3a125d07079492e15c3b3c2a3f090c37 SHA512 
da05afb481bd8e7fc71dc25ca6fd2cf7ea39d5afc43c57e7bb3e5d61d34b6dd251137ba596bbb80c702426b09a76141c6b8220087ce768cd45f827e29f8ac593
 WHIRLPOOL 
bfec98a8b6081b2d0fcaa5fcb0af675d51a30389abdf80a0980d18380aaa0a40e2a3da5028b0341aea64ed1ba41aaa96b57a2b7a50b0b7fe2b3df2e541aaf9f8
+DIST Werkzeug-0.11.9.tar.gz 1157394 SHA256 
837b71338794634c24713a79c3b9c287301433f2d18cd0adefcbcf885e60c8a1 SHA512 
be2c2f6a6f1ef37d49e8724749a621d63bb7d8e9aaf56b1c4fae3ae4829fd0e6c8e799255d6e27930d4b001d9d7a011f503db9ffb05a72c1bfc3216fd254333b
 WHIRLPOOL 
d5b6bf90af272a0f8245ba8e0a0e0a936eebe1eec513c789600954e6f0c21f4d1fd531217b45a253e83ee3b4bf485c4abc7d69de454309c9b672bdfeb0c0ede3
 DIST Werkzeug-0.9.6.tar.gz 1128428 SHA256 
7f11e7e2e73eb22677cac1b3eb6106f66cedef13d140e83cf6563c90b79c SHA512 
0b36df25d5f69a0353f7a9321b9197ace2926b6d8e983a91ef372c270ff51462f7d86184447a5f74b4ad05ffdc6411098f77b45a4f1c906dd525d7edf220399c
 WHIRLPOOL 
db153036e9dc36c70239001a6b451adeaafa3819f4903bb8c297bb4313c9a064926a2aad6e4457810b53796b3e492228a9ee1ec165fe5dce0522ab0d2c7407f9

diff --git a/dev-python/werkzeug/werkzeug-0.11.9.ebuild 
b/dev-python/werkzeug/werkzeug-0.11.9.ebuild
new file mode 100644
index 000..de3c144
--- /dev/null
+++ b/dev-python/werkzeug/werkzeug-0.11.9.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
+
+inherit distutils-r1
+
+MY_PN="Werkzeug"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Collection of various utilities for WSGI applications"
+HOMEPAGE="http://werkzeug.pocoo.org/ https://pypi.python.org/pypi/Werkzeug;
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+IUSE="test"
+
+RDEPEND="dev-python/simplejson[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/pytest-xprocess[${PYTHON_USEDEP}]
+   )"
+
+S="${WORKDIR}/${MY_P}"
+
+python_test() {
+   esetup.py test
+}



[gentoo-commits] proj/nxml-gentoo-schemas:master commit in: /

2016-05-06 Thread Ulrich Müller
commit: 3bc35f466f90b36c76f72dde69f3f2809b618e11
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri May  6 07:58:41 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri May  6 07:58:41 2016 +
URL:
https://gitweb.gentoo.org/proj/nxml-gentoo-schemas.git/commit/?id=3bc35f46

Update metadata.rnc from DTD.

 metadata.rnc | 41 +++--
 1 file changed, 19 insertions(+), 22 deletions(-)

diff --git a/metadata.rnc b/metadata.rnc
index 2ed65b0..3919793 100644
--- a/metadata.rnc
+++ b/metadata.rnc
@@ -10,12 +10,7 @@ attlist.catmetadata &=
 pkgmetadata =
   element pkgmetadata {
 attlist.pkgmetadata,
-(maintainer
- | natural-name
- | longdescription
- | slots
- | use
- | upstream)*
+(maintainer | longdescription | slots | use | upstream)*
   }
 attlist.pkgmetadata &=
   [ a:defaultValue = "" ] attribute pkgname { text }?
@@ -30,9 +25,6 @@ maintainer =
 attlist.maintainer &=
   [ a:defaultValue = "unknown" ]
   attribute type { "person" | "project" | "unknown" }?
-# Natural name for package, example: LibreOffice (for app-office/libreoffice)
-natural-name = element natural-name { attlist.natural-name, text }
-attlist.natural-name &= empty
 #  A long description of the package in freetext
 longdescription =
   element longdescription {
@@ -42,7 +34,10 @@ longdescription =
 slots = element slots { attlist.slots, slot*, subslots? }
 # A particular SLOT
 slot = element slot { attlist.slot, text* }
-# name attribute holds the name of the SLOT, for sub-SLOTS use the subslots 
element
+# name attribute holds the name of the SLOT, for sub-SLOTS
+# use the subslots element. A slot name of '*' can be used to
+# indicate a single description applying to all the slots in which
+# case no other  elements may be present.
 attlist.slot &= attribute name { text }
 # The meaning of sub-SLOTs for the whole package
 subslots = element subslots { attlist.subslots, text* }
@@ -71,7 +66,7 @@ changelog = element changelog { attlist.changelog, text }
 attlist.changelog &= empty
 # URL where the location of the upstream documentation can be found
 doc = element doc { attlist.doc, text }
-attlist.doc &= [ a:defaultValue = "C" ] attribute lang { text }?
+attlist.doc &= [ a:defaultValue = "en" ] attribute lang { text }?
 # location where to report bugs
 # (may also be an email address prefixed with mailto:)
 bugs-to = element bugs-to { attlist.bugs-to, text }
@@ -110,20 +105,22 @@ cat = element cat { attlist.cat, text }
 attlist.cat &= empty
 # Common attributes
 
-# the lang attribute, specifies the language of this tag. This is 
-# only useful for descriptions of various kinds. If a tag with this 
-# attribute is included there must be a description in the default 
-# language "C" or "en", which is equivalent
-attlist.description &= [ a:defaultValue = "C" ] attribute lang { text }?
+# the lang attribute, specifies the language of this tag in the
+# form of a ISO 639-1 language code. This is only useful for
+# descriptions of various kinds. If a tag with this attribute is
+# included there must be a description in the default language "en"
+attlist.description &=
+  [ a:defaultValue = "en" ] attribute lang { text }?
 attlist.longdescription &=
-  [ a:defaultValue = "C" ] attribute lang { text }?
-attlist.slots &= [ a:defaultValue = "C" ] attribute lang { text }?
-attlist.use &= [ a:defaultValue = "C" ] attribute lang { text }?
+  [ a:defaultValue = "en" ] attribute lang { text }?
+attlist.slots &= [ a:defaultValue = "en" ] attribute lang { text }?
+attlist.use &= [ a:defaultValue = "en" ] attribute lang { text }?
 # The restrict attribute, this attribute specifies restrictions on 
 # the applicability of tags on versions. The format of this attribute is 
-# equal to the format of DEPEND lines in ebuilds. There is one special 
-# value though: restrict="*". A tag that specifies this only applies if 
-# there are no other tags that apply.
+# equal to the format of DEPEND lines in ebuilds. Only package
+# dependency specifications conforming to EAPI=0 syntax are allowed.
+# The dependency specification may only contain references to the
+# package itself and no other package.
 # 
 # For required tags, there must be either an unrestricted version, or a 
 # version that is default restricted.



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

2016-05-06 Thread Patrick Lauer
commit: 6dca58fbffbb65e1b8bbdf12f8799be72fe999bb
Author: Patrick Lauer  gentoo  org>
AuthorDate: Fri May  6 07:43:35 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Fri May  6 07:49:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dca58fb

media-libs/avidemux-plugins: Remove unneeded useflag descriptions from 
metadata.xml

Package-Manager: portage-2.2.28

 media-libs/avidemux-plugins/metadata.xml | 2 --
 1 file changed, 2 deletions(-)

diff --git a/media-libs/avidemux-plugins/metadata.xml 
b/media-libs/avidemux-plugins/metadata.xml
index 23d4d94..e43fb48 100644
--- a/media-libs/avidemux-plugins/metadata.xml
+++ b/media-libs/avidemux-plugins/metadata.xml
@@ -8,8 +8,6 @@
   
 Enable A/52 (AC-3) audio encoder support.
 Enable Adaptive Multi-Rate format support via 
media-libs/opencore-amr.
-Enable free MPEG-4 audio codecs support via 
media-libs/faac.
-Enable AAC audio decoding library support via 
media-libs/faad2.
 Enable unicode bidirectional algorithm support via 
dev-libs/fribidi.
 Enable TwoLAME support via 
media-sound/twolame, an optimised MPEG Audio Layer 2 (MP2) 
encoder.
 Enable WebM VP8 Codec SDK support via 
media-libs/libvpx.



  1   2   >